From 97c10aa7ca773e6faa72ff3ed47ccedc2e493a45 Mon Sep 17 00:00:00 2001 From: Sergey Reshetnikov Date: Tue, 17 Sep 2024 13:27:56 +0500 Subject: [PATCH] add `macro_invocation_parameter_list` --- grammar.js | 16 +- src/grammar.json | 116 +- src/node-types.json | 25 +- src/parser.c | 206034 +++++++++++++++++++++-------------------- 4 files changed, 104040 insertions(+), 102151 deletions(-) diff --git a/grammar.js b/grammar.js index c604cf0..6a79f0d 100644 --- a/grammar.js +++ b/grammar.js @@ -48,6 +48,8 @@ module.exports = grammar({ [$.enum_specifier], [$.type_specifier, $._old_style_parameter_list], [$.parameter_list, $._old_style_parameter_list], + [$.parameter_list, $.macro_invocation_parameter_list], + [$.type_qualifier, $.macro_invocation_parameter_list], [$.function_declarator, $._function_declaration_declarator], [$._block_item, $.statement], [$._top_level_item, $._top_level_statement], @@ -791,7 +793,19 @@ module.exports = grammar({ macro_invocation: $ => seq( field('declarator', $._declarator), - field('parameters', $.parameter_list), + field('parameters', $.macro_invocation_parameter_list), + ), + + macro_invocation_parameter_list: $ => seq( + '(', + commaSep( + choice( + $.parameter_declaration, + $.variadic_parameter, + seq(optional('__extension__'), $.expression), + ) + ), + ')', ), field_declaration: $ => seq( diff --git a/src/grammar.json b/src/grammar.json index 2cdbeb7..4f57c13 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -5892,11 +5892,117 @@ "name": "parameters", "content": { "type": "SYMBOL", - "name": "parameter_list" + "name": "macro_invocation_parameter_list" } } ] }, + "macro_invocation_parameter_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "variadic_parameter" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "__extension__" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "variadic_parameter" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "__extension__" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, "field_declaration": { "type": "SEQ", "members": [ @@ -10093,6 +10199,14 @@ "parameter_list", "_old_style_parameter_list" ], + [ + "parameter_list", + "macro_invocation_parameter_list" + ], + [ + "type_qualifier", + "macro_invocation_parameter_list" + ], [ "function_declarator", "_function_declaration_declarator" diff --git a/src/node-types.json b/src/node-types.json index 6c67e4f..0523dbe 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2342,13 +2342,36 @@ "required": true, "types": [ { - "type": "parameter_list", + "type": "macro_invocation_parameter_list", "named": true } ] } } }, + { + "type": "macro_invocation_parameter_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "parameter_declaration", + "named": true + }, + { + "type": "variadic_parameter", + "named": true + } + ] + } + }, { "type": "macro_modifier", "named": true, diff --git a/src/parser.c b/src/parser.c index 8709b42..4d5e18e 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,9 +13,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 3461 -#define LARGE_STATE_COUNT 611 -#define SYMBOL_COUNT 372 +#define STATE_COUNT 3488 +#define LARGE_STATE_COUNT 621 +#define SYMBOL_COUNT 374 #define ALIAS_COUNT 3 #define TOKEN_COUNT 169 #define EXTERNAL_TOKEN_COUNT 0 @@ -287,117 +287,119 @@ enum ts_symbol_identifiers { sym_field_declaration_list = 261, sym__field_declaration_list_item = 262, sym_macro_invocation = 263, - sym_field_declaration = 264, - sym__field_declaration_declarator = 265, - sym_bitfield_clause = 266, - sym_enumerator = 267, - sym_variadic_parameter = 268, - sym_parameter_list = 269, - sym__old_style_parameter_list = 270, - sym_parameter_declaration = 271, - sym_attributed_statement = 272, - sym_statement = 273, - sym__top_level_statement = 274, - sym_labeled_statement = 275, - sym__top_level_expression_statement = 276, - sym_expression_statement = 277, - sym_if_statement = 278, - sym_else_clause = 279, - sym_switch_statement = 280, - sym_case_statement = 281, - sym_while_statement = 282, - sym_do_statement = 283, - sym_for_statement = 284, - sym__for_statement_body = 285, - sym_return_statement = 286, - sym_break_statement = 287, - sym_continue_statement = 288, - sym_goto_statement = 289, - sym_seh_try_statement = 290, - sym_seh_except_clause = 291, - sym_seh_finally_clause = 292, - sym_seh_leave_statement = 293, - sym_expression = 294, - sym__string = 295, - sym_comma_expression = 296, - sym_conditional_expression = 297, - sym_assignment_expression = 298, - sym_pointer_expression = 299, - sym_unary_expression = 300, - sym_binary_expression = 301, - sym_update_expression = 302, - sym_cast_expression = 303, - sym_type_descriptor = 304, - sym_sizeof_expression = 305, - sym_alignof_expression = 306, - sym_offsetof_expression = 307, - sym_generic_expression = 308, - sym_subscript_expression = 309, - sym_call_expression = 310, - sym_gnu_asm_expression = 311, - sym_gnu_asm_qualifier = 312, - sym_gnu_asm_output_operand_list = 313, - sym_gnu_asm_output_operand = 314, - sym_gnu_asm_input_operand_list = 315, - sym_gnu_asm_input_operand = 316, - sym_gnu_asm_clobber_list = 317, - sym_gnu_asm_goto_list = 318, - sym_argument_list = 319, - sym_field_expression = 320, - sym_compound_literal_expression = 321, - sym_parenthesized_expression = 322, - sym_initializer_list = 323, - sym_initializer_pair = 324, - sym_subscript_designator = 325, - sym_subscript_range_designator = 326, - sym_field_designator = 327, - sym_char_literal = 328, - sym_concatenated_string = 329, - sym_string_literal = 330, - sym_null = 331, - sym__empty_declaration = 332, - sym_macro_type_specifier = 333, - aux_sym_translation_unit_repeat1 = 334, - aux_sym_preproc_params_repeat1 = 335, - aux_sym_preproc_if_repeat1 = 336, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 337, - aux_sym_preproc_if_in_enumerator_list_repeat1 = 338, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 339, - aux_sym_preproc_arg_repeat1 = 340, - aux_sym_preproc_argument_list_repeat1 = 341, - aux_sym__old_style_function_definition_repeat1 = 342, - aux_sym_declaration_repeat1 = 343, - aux_sym_type_definition_repeat1 = 344, - aux_sym__type_definition_type_repeat1 = 345, - aux_sym__type_definition_declarators_repeat1 = 346, - aux_sym__declaration_specifiers_repeat1 = 347, - aux_sym_attribute_specifier_repeat1 = 348, - aux_sym_attribute_declaration_repeat1 = 349, - aux_sym_attributed_declarator_repeat1 = 350, - aux_sym_pointer_declarator_repeat1 = 351, - aux_sym_function_declarator_repeat1 = 352, - aux_sym_array_declarator_repeat1 = 353, - aux_sym_sized_type_specifier_repeat1 = 354, - aux_sym_enumerator_list_repeat1 = 355, - aux_sym__field_declaration_declarator_repeat1 = 356, - aux_sym_parameter_list_repeat1 = 357, - aux_sym__old_style_parameter_list_repeat1 = 358, - aux_sym_case_statement_repeat1 = 359, - aux_sym_generic_expression_repeat1 = 360, - aux_sym_gnu_asm_expression_repeat1 = 361, - aux_sym_gnu_asm_output_operand_list_repeat1 = 362, - aux_sym_gnu_asm_input_operand_list_repeat1 = 363, - aux_sym_gnu_asm_clobber_list_repeat1 = 364, - aux_sym_gnu_asm_goto_list_repeat1 = 365, - aux_sym_argument_list_repeat1 = 366, - aux_sym_initializer_list_repeat1 = 367, - aux_sym_initializer_pair_repeat1 = 368, - aux_sym_char_literal_repeat1 = 369, - aux_sym_concatenated_string_repeat1 = 370, - aux_sym_string_literal_repeat1 = 371, - alias_sym_field_identifier = 372, - alias_sym_statement_identifier = 373, - alias_sym_type_identifier = 374, + sym_macro_invocation_parameter_list = 264, + sym_field_declaration = 265, + sym__field_declaration_declarator = 266, + sym_bitfield_clause = 267, + sym_enumerator = 268, + sym_variadic_parameter = 269, + sym_parameter_list = 270, + sym__old_style_parameter_list = 271, + sym_parameter_declaration = 272, + sym_attributed_statement = 273, + sym_statement = 274, + sym__top_level_statement = 275, + sym_labeled_statement = 276, + sym__top_level_expression_statement = 277, + sym_expression_statement = 278, + sym_if_statement = 279, + sym_else_clause = 280, + sym_switch_statement = 281, + sym_case_statement = 282, + sym_while_statement = 283, + sym_do_statement = 284, + sym_for_statement = 285, + sym__for_statement_body = 286, + sym_return_statement = 287, + sym_break_statement = 288, + sym_continue_statement = 289, + sym_goto_statement = 290, + sym_seh_try_statement = 291, + sym_seh_except_clause = 292, + sym_seh_finally_clause = 293, + sym_seh_leave_statement = 294, + sym_expression = 295, + sym__string = 296, + sym_comma_expression = 297, + sym_conditional_expression = 298, + sym_assignment_expression = 299, + sym_pointer_expression = 300, + sym_unary_expression = 301, + sym_binary_expression = 302, + sym_update_expression = 303, + sym_cast_expression = 304, + sym_type_descriptor = 305, + sym_sizeof_expression = 306, + sym_alignof_expression = 307, + sym_offsetof_expression = 308, + sym_generic_expression = 309, + sym_subscript_expression = 310, + sym_call_expression = 311, + sym_gnu_asm_expression = 312, + sym_gnu_asm_qualifier = 313, + sym_gnu_asm_output_operand_list = 314, + sym_gnu_asm_output_operand = 315, + sym_gnu_asm_input_operand_list = 316, + sym_gnu_asm_input_operand = 317, + sym_gnu_asm_clobber_list = 318, + sym_gnu_asm_goto_list = 319, + sym_argument_list = 320, + sym_field_expression = 321, + sym_compound_literal_expression = 322, + sym_parenthesized_expression = 323, + sym_initializer_list = 324, + sym_initializer_pair = 325, + sym_subscript_designator = 326, + sym_subscript_range_designator = 327, + sym_field_designator = 328, + sym_char_literal = 329, + sym_concatenated_string = 330, + sym_string_literal = 331, + sym_null = 332, + sym__empty_declaration = 333, + sym_macro_type_specifier = 334, + aux_sym_translation_unit_repeat1 = 335, + aux_sym_preproc_params_repeat1 = 336, + aux_sym_preproc_if_repeat1 = 337, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 338, + aux_sym_preproc_if_in_enumerator_list_repeat1 = 339, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 340, + aux_sym_preproc_arg_repeat1 = 341, + aux_sym_preproc_argument_list_repeat1 = 342, + aux_sym__old_style_function_definition_repeat1 = 343, + aux_sym_declaration_repeat1 = 344, + aux_sym_type_definition_repeat1 = 345, + aux_sym__type_definition_type_repeat1 = 346, + aux_sym__type_definition_declarators_repeat1 = 347, + aux_sym__declaration_specifiers_repeat1 = 348, + aux_sym_attribute_specifier_repeat1 = 349, + aux_sym_attribute_declaration_repeat1 = 350, + aux_sym_attributed_declarator_repeat1 = 351, + aux_sym_pointer_declarator_repeat1 = 352, + aux_sym_function_declarator_repeat1 = 353, + aux_sym_array_declarator_repeat1 = 354, + aux_sym_sized_type_specifier_repeat1 = 355, + aux_sym_enumerator_list_repeat1 = 356, + aux_sym_macro_invocation_parameter_list_repeat1 = 357, + aux_sym__field_declaration_declarator_repeat1 = 358, + aux_sym_parameter_list_repeat1 = 359, + aux_sym__old_style_parameter_list_repeat1 = 360, + aux_sym_case_statement_repeat1 = 361, + aux_sym_generic_expression_repeat1 = 362, + aux_sym_gnu_asm_expression_repeat1 = 363, + aux_sym_gnu_asm_output_operand_list_repeat1 = 364, + aux_sym_gnu_asm_input_operand_list_repeat1 = 365, + aux_sym_gnu_asm_clobber_list_repeat1 = 366, + aux_sym_gnu_asm_goto_list_repeat1 = 367, + aux_sym_argument_list_repeat1 = 368, + aux_sym_initializer_list_repeat1 = 369, + aux_sym_initializer_pair_repeat1 = 370, + aux_sym_char_literal_repeat1 = 371, + aux_sym_concatenated_string_repeat1 = 372, + aux_sym_string_literal_repeat1 = 373, + alias_sym_field_identifier = 374, + alias_sym_statement_identifier = 375, + alias_sym_type_identifier = 376, }; static const char * const ts_symbol_names[] = { @@ -665,6 +667,7 @@ static const char * const ts_symbol_names[] = { [sym_field_declaration_list] = "field_declaration_list", [sym__field_declaration_list_item] = "_field_declaration_list_item", [sym_macro_invocation] = "macro_invocation", + [sym_macro_invocation_parameter_list] = "macro_invocation_parameter_list", [sym_field_declaration] = "field_declaration", [sym__field_declaration_declarator] = "_field_declaration_declarator", [sym_bitfield_clause] = "bitfield_clause", @@ -757,6 +760,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_array_declarator_repeat1] = "array_declarator_repeat1", [aux_sym_sized_type_specifier_repeat1] = "sized_type_specifier_repeat1", [aux_sym_enumerator_list_repeat1] = "enumerator_list_repeat1", + [aux_sym_macro_invocation_parameter_list_repeat1] = "macro_invocation_parameter_list_repeat1", [aux_sym__field_declaration_declarator_repeat1] = "_field_declaration_declarator_repeat1", [aux_sym_parameter_list_repeat1] = "parameter_list_repeat1", [aux_sym__old_style_parameter_list_repeat1] = "_old_style_parameter_list_repeat1", @@ -1043,6 +1047,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_field_declaration_list] = sym_field_declaration_list, [sym__field_declaration_list_item] = sym__field_declaration_list_item, [sym_macro_invocation] = sym_macro_invocation, + [sym_macro_invocation_parameter_list] = sym_macro_invocation_parameter_list, [sym_field_declaration] = sym_field_declaration, [sym__field_declaration_declarator] = sym__field_declaration_declarator, [sym_bitfield_clause] = sym_bitfield_clause, @@ -1135,6 +1140,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_array_declarator_repeat1] = aux_sym_array_declarator_repeat1, [aux_sym_sized_type_specifier_repeat1] = aux_sym_sized_type_specifier_repeat1, [aux_sym_enumerator_list_repeat1] = aux_sym_enumerator_list_repeat1, + [aux_sym_macro_invocation_parameter_list_repeat1] = aux_sym_macro_invocation_parameter_list_repeat1, [aux_sym__field_declaration_declarator_repeat1] = aux_sym__field_declaration_declarator_repeat1, [aux_sym_parameter_list_repeat1] = aux_sym_parameter_list_repeat1, [aux_sym__old_style_parameter_list_repeat1] = aux_sym__old_style_parameter_list_repeat1, @@ -2218,6 +2224,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_macro_invocation_parameter_list] = { + .visible = true, + .named = true, + }, [sym_field_declaration] = { .visible = true, .named = true, @@ -2588,6 +2598,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_macro_invocation_parameter_list_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym__field_declaration_declarator_repeat1] = { .visible = false, .named = false, @@ -3384,49 +3398,49 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 4, + [4] = 2, [5] = 5, [6] = 6, - [7] = 5, + [7] = 7, [8] = 8, - [9] = 4, - [10] = 5, - [11] = 3, - [12] = 3, - [13] = 13, - [14] = 5, - [15] = 3, - [16] = 8, - [17] = 8, - [18] = 4, - [19] = 4, - [20] = 20, - [21] = 8, + [9] = 9, + [10] = 9, + [11] = 11, + [12] = 9, + [13] = 3, + [14] = 11, + [15] = 11, + [16] = 9, + [17] = 11, + [18] = 2, + [19] = 2, + [20] = 3, + [21] = 3, [22] = 22, [23] = 23, [24] = 24, [25] = 24, - [26] = 26, - [27] = 27, - [28] = 27, - [29] = 24, + [26] = 22, + [27] = 24, + [28] = 28, + [29] = 23, [30] = 23, [31] = 24, - [32] = 27, - [33] = 33, - [34] = 22, - [35] = 24, - [36] = 36, - [37] = 27, - [38] = 27, + [32] = 23, + [33] = 28, + [34] = 34, + [35] = 34, + [36] = 28, + [37] = 34, + [38] = 28, [39] = 24, - [40] = 23, - [41] = 22, - [42] = 27, - [43] = 23, - [44] = 26, - [45] = 26, - [46] = 26, + [40] = 22, + [41] = 23, + [42] = 34, + [43] = 43, + [44] = 24, + [45] = 23, + [46] = 46, [47] = 47, [48] = 48, [49] = 49, @@ -3438,31 +3452,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [55] = 50, [56] = 52, [57] = 51, - [58] = 50, - [59] = 49, - [60] = 51, + [58] = 49, + [59] = 51, + [60] = 50, [61] = 53, - [62] = 50, - [63] = 49, + [62] = 52, + [63] = 52, [64] = 53, - [65] = 52, - [66] = 49, - [67] = 52, + [65] = 49, + [66] = 50, + [67] = 49, [68] = 51, [69] = 51, [70] = 53, - [71] = 50, - [72] = 49, - [73] = 52, + [71] = 52, + [72] = 50, + [73] = 49, [74] = 74, - [75] = 74, + [75] = 75, [76] = 74, - [77] = 74, - [78] = 74, - [79] = 74, - [80] = 80, - [81] = 81, - [82] = 82, + [77] = 75, + [78] = 75, + [79] = 75, + [80] = 74, + [81] = 75, + [82] = 75, [83] = 83, [84] = 84, [85] = 85, @@ -3542,572 +3556,572 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [159] = 159, [160] = 160, [161] = 161, - [162] = 80, - [163] = 80, - [164] = 80, - [165] = 88, - [166] = 123, - [167] = 97, - [168] = 87, - [169] = 86, - [170] = 119, - [171] = 116, - [172] = 93, - [173] = 94, - [174] = 110, - [175] = 101, - [176] = 82, - [177] = 88, - [178] = 102, - [179] = 99, - [180] = 96, - [181] = 97, - [182] = 99, - [183] = 101, - [184] = 102, - [185] = 103, - [186] = 101, - [187] = 102, - [188] = 103, - [189] = 97, - [190] = 119, - [191] = 104, - [192] = 96, - [193] = 81, - [194] = 116, - [195] = 124, - [196] = 98, - [197] = 104, - [198] = 95, - [199] = 85, - [200] = 123, - [201] = 111, - [202] = 114, - [203] = 107, - [204] = 85, - [205] = 108, - [206] = 104, - [207] = 111, - [208] = 117, - [209] = 118, - [210] = 120, - [211] = 114, - [212] = 122, - [213] = 121, - [214] = 117, - [215] = 118, - [216] = 120, - [217] = 124, - [218] = 83, - [219] = 115, - [220] = 121, - [221] = 84, - [222] = 113, - [223] = 112, - [224] = 109, - [225] = 106, - [226] = 105, - [227] = 81, - [228] = 100, - [229] = 81, - [230] = 82, - [231] = 85, - [232] = 103, - [233] = 124, - [234] = 123, - [235] = 122, - [236] = 115, - [237] = 108, - [238] = 98, - [239] = 82, - [240] = 107, + [162] = 162, + [163] = 163, + [164] = 164, + [165] = 165, + [166] = 166, + [167] = 85, + [168] = 85, + [169] = 85, + [170] = 89, + [171] = 113, + [172] = 99, + [173] = 96, + [174] = 116, + [175] = 112, + [176] = 123, + [177] = 87, + [178] = 113, + [179] = 102, + [180] = 114, + [181] = 106, + [182] = 104, + [183] = 105, + [184] = 99, + [185] = 107, + [186] = 94, + [187] = 93, + [188] = 109, + [189] = 126, + [190] = 91, + [191] = 128, + [192] = 121, + [193] = 122, + [194] = 120, + [195] = 95, + [196] = 119, + [197] = 118, + [198] = 120, + [199] = 117, + [200] = 124, + [201] = 121, + [202] = 122, + [203] = 125, + [204] = 127, + [205] = 129, + [206] = 128, + [207] = 126, + [208] = 129, + [209] = 115, + [210] = 106, + [211] = 86, + [212] = 115, + [213] = 127, + [214] = 114, + [215] = 90, + [216] = 87, + [217] = 112, + [218] = 88, + [219] = 92, + [220] = 92, + [221] = 88, + [222] = 96, + [223] = 89, + [224] = 116, + [225] = 91, + [226] = 93, + [227] = 94, + [228] = 95, + [229] = 88, + [230] = 125, + [231] = 97, + [232] = 98, + [233] = 100, + [234] = 101, + [235] = 103, + [236] = 108, + [237] = 110, + [238] = 111, + [239] = 124, + [240] = 109, [241] = 98, - [242] = 99, - [243] = 96, - [244] = 95, - [245] = 84, - [246] = 83, - [247] = 92, - [248] = 91, - [249] = 83, - [250] = 86, - [251] = 84, - [252] = 90, - [253] = 89, - [254] = 88, - [255] = 86, - [256] = 87, - [257] = 121, - [258] = 87, - [259] = 93, - [260] = 94, - [261] = 93, - [262] = 110, - [263] = 94, - [264] = 110, - [265] = 113, - [266] = 112, - [267] = 107, - [268] = 108, - [269] = 111, - [270] = 120, - [271] = 118, - [272] = 109, - [273] = 106, - [274] = 100, - [275] = 105, - [276] = 106, - [277] = 117, - [278] = 105, - [279] = 109, - [280] = 114, - [281] = 100, - [282] = 112, - [283] = 113, - [284] = 115, - [285] = 95, - [286] = 92, - [287] = 119, - [288] = 91, - [289] = 90, - [290] = 89, - [291] = 116, - [292] = 122, - [293] = 92, - [294] = 91, - [295] = 90, - [296] = 89, - [297] = 159, - [298] = 145, - [299] = 139, - [300] = 159, - [301] = 131, - [302] = 130, - [303] = 158, - [304] = 157, - [305] = 134, - [306] = 143, - [307] = 156, - [308] = 155, - [309] = 153, - [310] = 150, - [311] = 127, - [312] = 151, - [313] = 145, - [314] = 148, - [315] = 144, - [316] = 128, - [317] = 141, - [318] = 136, - [319] = 132, - [320] = 133, - [321] = 132, - [322] = 128, - [323] = 146, - [324] = 147, - [325] = 148, - [326] = 129, - [327] = 154, - [328] = 152, - [329] = 125, - [330] = 150, - [331] = 133, - [332] = 143, - [333] = 136, - [334] = 142, - [335] = 130, - [336] = 141, - [337] = 153, - [338] = 151, - [339] = 140, - [340] = 131, - [341] = 155, - [342] = 160, - [343] = 147, - [344] = 161, - [345] = 146, - [346] = 127, - [347] = 139, - [348] = 149, - [349] = 161, - [350] = 134, - [351] = 129, - [352] = 154, - [353] = 138, - [354] = 149, - [355] = 160, - [356] = 137, - [357] = 152, - [358] = 126, - [359] = 126, - [360] = 125, - [361] = 135, - [362] = 137, - [363] = 142, - [364] = 140, - [365] = 157, - [366] = 156, - [367] = 158, - [368] = 135, - [369] = 144, - [370] = 138, - [371] = 146, - [372] = 134, - [373] = 137, - [374] = 150, - [375] = 127, - [376] = 131, - [377] = 136, - [378] = 126, - [379] = 158, - [380] = 139, - [381] = 153, - [382] = 149, - [383] = 130, - [384] = 128, - [385] = 160, - [386] = 159, - [387] = 387, - [388] = 388, - [389] = 143, - [390] = 154, - [391] = 391, - [392] = 144, - [393] = 156, - [394] = 155, - [395] = 129, - [396] = 133, - [397] = 141, - [398] = 151, - [399] = 132, - [400] = 145, - [401] = 142, + [242] = 97, + [243] = 116, + [244] = 91, + [245] = 123, + [246] = 93, + [247] = 94, + [248] = 120, + [249] = 119, + [250] = 95, + [251] = 89, + [252] = 100, + [253] = 118, + [254] = 111, + [255] = 92, + [256] = 117, + [257] = 96, + [258] = 107, + [259] = 105, + [260] = 112, + [261] = 87, + [262] = 113, + [263] = 114, + [264] = 115, + [265] = 101, + [266] = 104, + [267] = 97, + [268] = 98, + [269] = 100, + [270] = 106, + [271] = 103, + [272] = 108, + [273] = 110, + [274] = 111, + [275] = 126, + [276] = 128, + [277] = 129, + [278] = 127, + [279] = 90, + [280] = 125, + [281] = 124, + [282] = 117, + [283] = 118, + [284] = 119, + [285] = 86, + [286] = 122, + [287] = 121, + [288] = 110, + [289] = 108, + [290] = 99, + [291] = 103, + [292] = 102, + [293] = 123, + [294] = 86, + [295] = 109, + [296] = 101, + [297] = 107, + [298] = 105, + [299] = 104, + [300] = 90, + [301] = 102, + [302] = 154, + [303] = 141, + [304] = 147, + [305] = 153, + [306] = 152, + [307] = 151, + [308] = 130, + [309] = 149, + [310] = 146, + [311] = 164, + [312] = 145, + [313] = 159, + [314] = 160, + [315] = 162, + [316] = 163, + [317] = 131, + [318] = 138, + [319] = 165, + [320] = 140, + [321] = 166, + [322] = 133, + [323] = 157, + [324] = 134, + [325] = 135, + [326] = 136, + [327] = 137, + [328] = 153, + [329] = 142, + [330] = 143, + [331] = 144, + [332] = 161, + [333] = 155, + [334] = 148, + [335] = 150, + [336] = 147, + [337] = 155, + [338] = 132, + [339] = 138, + [340] = 164, + [341] = 139, + [342] = 146, + [343] = 150, + [344] = 157, + [345] = 163, + [346] = 165, + [347] = 132, + [348] = 166, + [349] = 154, + [350] = 162, + [351] = 160, + [352] = 159, + [353] = 158, + [354] = 156, + [355] = 161, + [356] = 156, + [357] = 139, + [358] = 148, + [359] = 152, + [360] = 144, + [361] = 151, + [362] = 158, + [363] = 143, + [364] = 142, + [365] = 137, + [366] = 136, + [367] = 130, + [368] = 149, + [369] = 145, + [370] = 131, + [371] = 141, + [372] = 140, + [373] = 135, + [374] = 134, + [375] = 133, + [376] = 376, + [377] = 147, + [378] = 132, + [379] = 138, + [380] = 135, + [381] = 136, + [382] = 137, + [383] = 160, + [384] = 142, + [385] = 140, + [386] = 143, + [387] = 166, + [388] = 152, + [389] = 159, + [390] = 165, + [391] = 131, + [392] = 145, + [393] = 146, + [394] = 149, + [395] = 130, + [396] = 396, + [397] = 133, + [398] = 134, + [399] = 141, + [400] = 163, + [401] = 157, [402] = 161, - [403] = 148, - [404] = 125, - [405] = 147, - [406] = 157, - [407] = 140, - [408] = 152, - [409] = 409, - [410] = 409, - [411] = 411, - [412] = 412, - [413] = 413, + [403] = 162, + [404] = 404, + [405] = 155, + [406] = 153, + [407] = 151, + [408] = 156, + [409] = 144, + [410] = 154, + [411] = 139, + [412] = 158, + [413] = 150, [414] = 414, [415] = 415, - [416] = 413, - [417] = 412, - [418] = 412, - [419] = 415, - [420] = 414, - [421] = 412, - [422] = 412, - [423] = 415, - [424] = 411, - [425] = 411, + [416] = 416, + [417] = 416, + [418] = 416, + [419] = 414, + [420] = 420, + [421] = 421, + [422] = 422, + [423] = 423, + [424] = 424, + [425] = 421, [426] = 426, - [427] = 427, - [428] = 426, - [429] = 429, - [430] = 411, - [431] = 426, + [427] = 426, + [428] = 420, + [429] = 426, + [430] = 430, + [431] = 431, [432] = 414, - [433] = 429, - [434] = 429, - [435] = 427, - [436] = 427, - [437] = 427, - [438] = 415, - [439] = 414, - [440] = 429, - [441] = 413, - [442] = 409, - [443] = 426, - [444] = 429, - [445] = 413, - [446] = 426, - [447] = 411, - [448] = 413, - [449] = 427, - [450] = 415, - [451] = 426, - [452] = 411, - [453] = 414, - [454] = 415, - [455] = 414, - [456] = 413, - [457] = 429, - [458] = 412, - [459] = 427, - [460] = 409, - [461] = 461, - [462] = 461, - [463] = 461, - [464] = 461, - [465] = 461, - [466] = 461, - [467] = 461, - [468] = 461, + [433] = 426, + [434] = 431, + [435] = 420, + [436] = 424, + [437] = 420, + [438] = 421, + [439] = 422, + [440] = 430, + [441] = 431, + [442] = 423, + [443] = 420, + [444] = 426, + [445] = 423, + [446] = 422, + [447] = 422, + [448] = 424, + [449] = 424, + [450] = 421, + [451] = 421, + [452] = 430, + [453] = 430, + [454] = 424, + [455] = 422, + [456] = 431, + [457] = 430, + [458] = 423, + [459] = 422, + [460] = 424, + [461] = 421, + [462] = 430, + [463] = 423, + [464] = 426, + [465] = 423, + [466] = 431, + [467] = 431, + [468] = 420, [469] = 469, - [470] = 80, - [471] = 471, - [472] = 99, - [473] = 102, - [474] = 84, - [475] = 86, - [476] = 476, - [477] = 477, - [478] = 476, - [479] = 476, - [480] = 477, - [481] = 98, - [482] = 87, - [483] = 476, - [484] = 93, - [485] = 94, - [486] = 115, - [487] = 477, + [470] = 469, + [471] = 469, + [472] = 414, + [473] = 469, + [474] = 469, + [475] = 469, + [476] = 469, + [477] = 469, + [478] = 85, + [479] = 479, + [480] = 480, + [481] = 103, + [482] = 121, + [483] = 483, + [484] = 484, + [485] = 116, + [486] = 123, + [487] = 120, [488] = 119, - [489] = 122, - [490] = 116, - [491] = 123, - [492] = 477, - [493] = 477, - [494] = 124, - [495] = 110, - [496] = 476, - [497] = 476, - [498] = 88, - [499] = 96, - [500] = 97, - [501] = 501, - [502] = 502, - [503] = 109, - [504] = 85, - [505] = 477, - [506] = 101, - [507] = 103, - [508] = 95, - [509] = 477, - [510] = 113, - [511] = 104, - [512] = 82, - [513] = 81, - [514] = 112, - [515] = 476, - [516] = 477, - [517] = 92, - [518] = 91, - [519] = 107, - [520] = 90, - [521] = 108, - [522] = 111, - [523] = 83, - [524] = 114, - [525] = 89, - [526] = 100, - [527] = 476, - [528] = 117, - [529] = 118, + [489] = 118, + [490] = 117, + [491] = 491, + [492] = 106, + [493] = 90, + [494] = 86, + [495] = 99, + [496] = 102, + [497] = 483, + [498] = 104, + [499] = 483, + [500] = 483, + [501] = 122, + [502] = 115, + [503] = 105, + [504] = 483, + [505] = 107, + [506] = 484, + [507] = 109, + [508] = 483, + [509] = 124, + [510] = 125, + [511] = 127, + [512] = 129, + [513] = 92, + [514] = 128, + [515] = 126, + [516] = 114, + [517] = 113, + [518] = 87, + [519] = 112, + [520] = 96, + [521] = 88, + [522] = 89, + [523] = 91, + [524] = 484, + [525] = 483, + [526] = 111, + [527] = 484, + [528] = 484, + [529] = 484, [530] = 530, - [531] = 120, - [532] = 121, - [533] = 105, - [534] = 106, - [535] = 535, - [536] = 536, - [537] = 537, - [538] = 538, - [539] = 539, - [540] = 538, - [541] = 541, - [542] = 541, - [543] = 537, - [544] = 535, - [545] = 538, - [546] = 537, + [531] = 93, + [532] = 110, + [533] = 94, + [534] = 534, + [535] = 108, + [536] = 95, + [537] = 97, + [538] = 484, + [539] = 98, + [540] = 483, + [541] = 484, + [542] = 100, + [543] = 101, + [544] = 414, + [545] = 545, + [546] = 546, [547] = 547, - [548] = 541, + [548] = 548, [549] = 549, - [550] = 549, - [551] = 535, - [552] = 541, + [550] = 550, + [551] = 551, + [552] = 545, [553] = 553, - [554] = 549, - [555] = 541, - [556] = 409, - [557] = 557, - [558] = 558, - [559] = 409, - [560] = 409, - [561] = 561, - [562] = 562, - [563] = 563, - [564] = 558, - [565] = 562, + [554] = 554, + [555] = 554, + [556] = 549, + [557] = 549, + [558] = 554, + [559] = 553, + [560] = 553, + [561] = 545, + [562] = 545, + [563] = 545, + [564] = 551, + [565] = 551, [566] = 566, - [567] = 562, - [568] = 566, - [569] = 562, - [570] = 566, - [571] = 562, - [572] = 558, - [573] = 562, - [574] = 566, - [575] = 562, - [576] = 566, - [577] = 562, - [578] = 566, - [579] = 566, - [580] = 566, - [581] = 409, + [567] = 567, + [568] = 414, + [569] = 414, + [570] = 479, + [571] = 571, + [572] = 567, + [573] = 573, + [574] = 573, + [575] = 571, + [576] = 571, + [577] = 573, + [578] = 573, + [579] = 571, + [580] = 571, + [581] = 573, [582] = 582, [583] = 583, - [584] = 584, - [585] = 585, - [586] = 586, - [587] = 584, - [588] = 588, - [589] = 589, - [590] = 590, - [591] = 591, + [584] = 571, + [585] = 567, + [586] = 573, + [587] = 573, + [588] = 571, + [589] = 573, + [590] = 571, + [591] = 414, [592] = 592, - [593] = 592, - [594] = 585, + [593] = 593, + [594] = 594, [595] = 595, - [596] = 591, + [596] = 596, [597] = 597, - [598] = 597, - [599] = 597, - [600] = 600, + [598] = 594, + [599] = 596, + [600] = 595, [601] = 601, - [602] = 601, - [603] = 600, - [604] = 600, - [605] = 601, + [602] = 602, + [603] = 593, + [604] = 604, + [605] = 605, [606] = 606, - [607] = 606, - [608] = 606, - [609] = 609, - [610] = 606, + [607] = 607, + [608] = 607, + [609] = 607, + [610] = 610, [611] = 611, [612] = 611, [613] = 611, - [614] = 611, - [615] = 615, + [614] = 610, + [615] = 610, [616] = 616, [617] = 616, [618] = 618, - [619] = 619, - [620] = 620, + [619] = 616, + [620] = 616, [621] = 621, - [622] = 622, - [623] = 623, - [624] = 624, - [625] = 621, + [622] = 621, + [623] = 621, + [624] = 621, + [625] = 625, [626] = 626, [627] = 627, [628] = 628, [629] = 629, [630] = 630, - [631] = 631, - [632] = 630, + [631] = 628, + [632] = 632, [633] = 633, [634] = 634, - [635] = 620, - [636] = 619, + [635] = 635, + [636] = 636, [637] = 637, - [638] = 638, - [639] = 628, - [640] = 619, - [641] = 619, - [642] = 619, + [638] = 635, + [639] = 639, + [640] = 640, + [641] = 641, + [642] = 642, [643] = 643, - [644] = 626, - [645] = 645, - [646] = 620, - [647] = 620, - [648] = 623, - [649] = 630, - [650] = 626, - [651] = 621, - [652] = 622, - [653] = 622, - [654] = 638, - [655] = 619, - [656] = 623, - [657] = 657, - [658] = 624, - [659] = 630, - [660] = 630, - [661] = 657, + [644] = 479, + [645] = 635, + [646] = 635, + [647] = 626, + [648] = 635, + [649] = 649, + [650] = 641, + [651] = 643, + [652] = 652, + [653] = 632, + [654] = 654, + [655] = 642, + [656] = 642, + [657] = 642, + [658] = 635, + [659] = 659, + [660] = 649, + [661] = 637, [662] = 628, - [663] = 630, - [664] = 620, - [665] = 628, - [666] = 657, - [667] = 624, - [668] = 657, - [669] = 621, - [670] = 670, - [671] = 623, - [672] = 623, + [663] = 637, + [664] = 629, + [665] = 665, + [666] = 666, + [667] = 667, + [668] = 633, + [669] = 629, + [670] = 632, + [671] = 642, + [672] = 641, [673] = 673, - [674] = 674, - [675] = 675, - [676] = 620, - [677] = 638, - [678] = 633, - [679] = 623, - [680] = 623, - [681] = 619, - [682] = 619, - [683] = 616, - [684] = 616, - [685] = 471, - [686] = 686, - [687] = 623, - [688] = 626, - [689] = 622, - [690] = 624, - [691] = 638, - [692] = 692, - [693] = 693, - [694] = 694, - [695] = 695, + [674] = 642, + [675] = 633, + [676] = 642, + [677] = 641, + [678] = 642, + [679] = 634, + [680] = 639, + [681] = 628, + [682] = 643, + [683] = 637, + [684] = 643, + [685] = 635, + [686] = 634, + [687] = 632, + [688] = 629, + [689] = 633, + [690] = 629, + [691] = 634, + [692] = 639, + [693] = 629, + [694] = 635, + [695] = 639, [696] = 696, - [697] = 697, - [698] = 694, - [699] = 696, - [700] = 692, - [701] = 701, + [697] = 649, + [698] = 698, + [699] = 699, + [700] = 700, + [701] = 698, [702] = 702, [703] = 703, - [704] = 693, + [704] = 704, [705] = 705, [706] = 706, [707] = 707, - [708] = 708, - [709] = 707, + [708] = 705, + [709] = 709, [710] = 710, - [711] = 705, + [711] = 711, [712] = 712, - [713] = 696, - [714] = 696, + [713] = 713, + [714] = 714, [715] = 715, - [716] = 716, - [717] = 717, - [718] = 718, - [719] = 719, - [720] = 720, - [721] = 721, + [716] = 709, + [717] = 703, + [718] = 705, + [719] = 705, + [720] = 715, + [721] = 714, [722] = 722, [723] = 723, [724] = 724, [725] = 725, - [726] = 724, - [727] = 719, + [726] = 726, + [727] = 727, [728] = 728, [729] = 729, [730] = 730, @@ -4117,332 +4131,332 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [734] = 734, [735] = 735, [736] = 736, - [737] = 737, - [738] = 738, + [737] = 724, + [738] = 725, [739] = 739, - [740] = 723, - [741] = 737, - [742] = 736, - [743] = 737, - [744] = 744, - [745] = 737, - [746] = 730, - [747] = 735, - [748] = 731, - [749] = 734, - [750] = 736, - [751] = 735, - [752] = 736, - [753] = 737, + [740] = 739, + [741] = 741, + [742] = 742, + [743] = 729, + [744] = 739, + [745] = 730, + [746] = 746, + [747] = 747, + [748] = 739, + [749] = 749, + [750] = 750, + [751] = 726, + [752] = 752, + [753] = 753, [754] = 754, - [755] = 739, - [756] = 722, - [757] = 738, - [758] = 733, - [759] = 720, - [760] = 734, - [761] = 735, - [762] = 731, - [763] = 730, - [764] = 729, - [765] = 728, - [766] = 723, - [767] = 719, + [755] = 727, + [756] = 741, + [757] = 742, + [758] = 727, + [759] = 754, + [760] = 722, + [761] = 734, + [762] = 723, + [763] = 754, + [764] = 754, + [765] = 723, + [766] = 747, + [767] = 726, [768] = 733, - [769] = 724, - [770] = 725, - [771] = 717, - [772] = 754, - [773] = 733, - [774] = 725, - [775] = 731, - [776] = 730, - [777] = 729, - [778] = 720, - [779] = 728, - [780] = 719, - [781] = 724, - [782] = 724, - [783] = 719, - [784] = 725, - [785] = 785, - [786] = 735, - [787] = 722, - [788] = 723, - [789] = 789, - [790] = 738, - [791] = 754, - [792] = 735, + [769] = 727, + [770] = 770, + [771] = 739, + [772] = 734, + [773] = 752, + [774] = 726, + [775] = 733, + [776] = 736, + [777] = 747, + [778] = 735, + [779] = 726, + [780] = 742, + [781] = 750, + [782] = 742, + [783] = 724, + [784] = 739, + [785] = 733, + [786] = 727, + [787] = 741, + [788] = 788, + [789] = 734, + [790] = 735, + [791] = 725, + [792] = 747, [793] = 729, - [794] = 732, - [795] = 728, - [796] = 728, - [797] = 734, - [798] = 737, + [794] = 725, + [795] = 723, + [796] = 741, + [797] = 750, + [798] = 724, [799] = 729, - [800] = 722, - [801] = 754, - [802] = 785, - [803] = 725, - [804] = 723, - [805] = 725, - [806] = 724, - [807] = 719, - [808] = 728, - [809] = 729, - [810] = 735, - [811] = 730, - [812] = 730, - [813] = 731, - [814] = 723, - [815] = 720, - [816] = 722, - [817] = 731, - [818] = 736, - [819] = 723, - [820] = 733, - [821] = 821, - [822] = 754, - [823] = 720, - [824] = 720, - [825] = 720, - [826] = 722, - [827] = 735, - [828] = 717, - [829] = 821, - [830] = 733, - [831] = 736, - [832] = 739, - [833] = 833, - [834] = 732, - [835] = 737, - [836] = 836, - [837] = 837, - [838] = 785, - [839] = 836, - [840] = 737, - [841] = 739, - [842] = 734, - [843] = 754, - [844] = 723, - [845] = 754, - [846] = 736, - [847] = 722, - [848] = 725, - [849] = 724, - [850] = 719, - [851] = 728, - [852] = 729, - [853] = 730, - [854] = 731, - [855] = 733, - [856] = 754, - [857] = 736, - [858] = 720, - [859] = 836, - [860] = 733, - [861] = 836, - [862] = 731, - [863] = 730, - [864] = 729, - [865] = 728, - [866] = 717, - [867] = 719, - [868] = 724, - [869] = 725, - [870] = 722, - [871] = 618, - [872] = 872, - [873] = 873, - [874] = 874, - [875] = 875, - [876] = 873, - [877] = 873, + [800] = 725, + [801] = 750, + [802] = 730, + [803] = 724, + [804] = 804, + [805] = 741, + [806] = 733, + [807] = 770, + [808] = 730, + [809] = 725, + [810] = 734, + [811] = 735, + [812] = 735, + [813] = 752, + [814] = 729, + [815] = 734, + [816] = 730, + [817] = 730, + [818] = 722, + [819] = 749, + [820] = 735, + [821] = 733, + [822] = 724, + [823] = 823, + [824] = 727, + [825] = 749, + [826] = 741, + [827] = 742, + [828] = 739, + [829] = 752, + [830] = 754, + [831] = 754, + [832] = 742, + [833] = 729, + [834] = 725, + [835] = 736, + [836] = 747, + [837] = 726, + [838] = 747, + [839] = 733, + [840] = 750, + [841] = 747, + [842] = 722, + [843] = 731, + [844] = 742, + [845] = 823, + [846] = 741, + [847] = 729, + [848] = 754, + [849] = 730, + [850] = 850, + [851] = 770, + [852] = 730, + [853] = 729, + [854] = 725, + [855] = 750, + [856] = 750, + [857] = 754, + [858] = 750, + [859] = 724, + [860] = 735, + [861] = 742, + [862] = 724, + [863] = 741, + [864] = 735, + [865] = 734, + [866] = 722, + [867] = 727, + [868] = 733, + [869] = 747, + [870] = 736, + [871] = 726, + [872] = 734, + [873] = 739, + [874] = 823, + [875] = 727, + [876] = 726, + [877] = 877, [878] = 878, - [879] = 879, - [880] = 873, + [879] = 878, + [880] = 878, [881] = 881, - [882] = 874, - [883] = 874, - [884] = 618, + [882] = 878, + [883] = 883, + [884] = 884, [885] = 885, - [886] = 874, - [887] = 879, - [888] = 879, - [889] = 889, - [890] = 879, + [886] = 886, + [887] = 886, + [888] = 884, + [889] = 886, + [890] = 884, [891] = 891, - [892] = 892, - [893] = 891, - [894] = 875, + [892] = 886, + [893] = 884, + [894] = 894, [895] = 895, - [896] = 889, - [897] = 897, - [898] = 872, - [899] = 127, + [896] = 895, + [897] = 891, + [898] = 885, + [899] = 899, [900] = 900, - [901] = 901, + [901] = 877, [902] = 902, [903] = 903, [904] = 904, [905] = 905, - [906] = 149, - [907] = 157, - [908] = 159, - [909] = 145, - [910] = 151, + [906] = 906, + [907] = 132, + [908] = 908, + [909] = 909, + [910] = 147, [911] = 911, - [912] = 912, + [912] = 154, [913] = 913, [914] = 914, [915] = 915, - [916] = 916, + [916] = 146, [917] = 917, [918] = 918, - [919] = 885, - [920] = 878, - [921] = 897, + [919] = 163, + [920] = 920, + [921] = 921, [922] = 922, - [923] = 918, - [924] = 918, - [925] = 918, - [926] = 895, - [927] = 881, + [923] = 923, + [924] = 165, + [925] = 899, + [926] = 926, + [927] = 927, [928] = 881, - [929] = 878, - [930] = 885, - [931] = 922, - [932] = 932, - [933] = 501, - [934] = 934, - [935] = 935, - [936] = 892, - [937] = 937, - [938] = 938, + [929] = 900, + [930] = 927, + [931] = 883, + [932] = 926, + [933] = 883, + [934] = 926, + [935] = 926, + [936] = 881, + [937] = 894, + [938] = 534, [939] = 939, - [940] = 502, + [940] = 940, [941] = 941, - [942] = 942, + [942] = 530, [943] = 943, - [944] = 915, - [945] = 904, - [946] = 922, - [947] = 912, - [948] = 157, - [949] = 903, - [950] = 913, - [951] = 916, - [952] = 917, - [953] = 902, - [954] = 911, - [955] = 159, - [956] = 956, - [957] = 151, - [958] = 902, - [959] = 904, - [960] = 900, - [961] = 145, - [962] = 901, - [963] = 157, - [964] = 149, - [965] = 901, - [966] = 914, - [967] = 127, - [968] = 912, - [969] = 151, - [970] = 127, - [971] = 145, - [972] = 900, - [973] = 973, - [974] = 917, + [944] = 944, + [945] = 945, + [946] = 946, + [947] = 947, + [948] = 948, + [949] = 913, + [950] = 903, + [951] = 918, + [952] = 915, + [953] = 922, + [954] = 163, + [955] = 163, + [956] = 906, + [957] = 911, + [958] = 908, + [959] = 959, + [960] = 960, + [961] = 911, + [962] = 147, + [963] = 922, + [964] = 906, + [965] = 132, + [966] = 146, + [967] = 967, + [968] = 903, + [969] = 904, + [970] = 165, + [971] = 921, + [972] = 927, + [973] = 914, + [974] = 974, [975] = 975, - [976] = 916, - [977] = 149, - [978] = 978, - [979] = 979, - [980] = 905, - [981] = 981, - [982] = 922, - [983] = 914, - [984] = 922, - [985] = 911, - [986] = 159, - [987] = 915, - [988] = 913, - [989] = 989, - [990] = 905, - [991] = 903, - [992] = 992, - [993] = 993, - [994] = 994, - [995] = 995, - [996] = 996, - [997] = 997, - [998] = 998, - [999] = 999, - [1000] = 1000, - [1001] = 1001, - [1002] = 1002, - [1003] = 501, - [1004] = 1004, - [1005] = 922, + [976] = 918, + [977] = 154, + [978] = 915, + [979] = 917, + [980] = 980, + [981] = 165, + [982] = 923, + [983] = 923, + [984] = 908, + [985] = 920, + [986] = 904, + [987] = 902, + [988] = 988, + [989] = 914, + [990] = 147, + [991] = 154, + [992] = 927, + [993] = 913, + [994] = 920, + [995] = 909, + [996] = 909, + [997] = 905, + [998] = 905, + [999] = 132, + [1000] = 902, + [1001] = 921, + [1002] = 917, + [1003] = 146, + [1004] = 927, + [1005] = 1005, [1006] = 1006, [1007] = 1007, [1008] = 1008, [1009] = 1009, - [1010] = 897, + [1010] = 1010, [1011] = 1011, - [1012] = 939, + [1012] = 1012, [1013] = 1013, [1014] = 1014, [1015] = 1015, - [1016] = 937, - [1017] = 938, + [1016] = 534, + [1017] = 1017, [1018] = 1018, - [1019] = 1019, - [1020] = 895, - [1021] = 1021, + [1019] = 900, + [1020] = 1020, + [1021] = 941, [1022] = 1022, [1023] = 1023, - [1024] = 1024, + [1024] = 1007, [1025] = 1025, - [1026] = 1026, + [1026] = 530, [1027] = 1027, [1028] = 1028, - [1029] = 996, + [1029] = 1029, [1030] = 1030, [1031] = 1031, [1032] = 1032, [1033] = 1033, - [1034] = 1034, - [1035] = 932, - [1036] = 995, - [1037] = 502, + [1034] = 945, + [1035] = 1035, + [1036] = 1036, + [1037] = 1037, [1038] = 1038, [1039] = 1039, - [1040] = 1040, + [1040] = 944, [1041] = 1041, - [1042] = 1042, - [1043] = 1040, + [1042] = 899, + [1043] = 1043, [1044] = 1044, [1045] = 1045, [1046] = 1046, [1047] = 1047, - [1048] = 1048, - [1049] = 1049, - [1050] = 1040, + [1048] = 1010, + [1049] = 939, + [1050] = 927, [1051] = 1051, [1052] = 1052, [1053] = 1053, [1054] = 1054, [1055] = 1055, [1056] = 1056, - [1057] = 1040, - [1058] = 934, + [1057] = 1057, + [1058] = 1058, [1059] = 1059, [1060] = 1060, [1061] = 1061, - [1062] = 1062, + [1062] = 940, [1063] = 1063, [1064] = 1064, [1065] = 1065, @@ -4452,1434 +4466,1434 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1069] = 1069, [1070] = 1070, [1071] = 1071, - [1072] = 1072, - [1073] = 1049, + [1072] = 1056, + [1073] = 1073, [1074] = 1074, [1075] = 1075, [1076] = 1076, [1077] = 1077, [1078] = 1078, [1079] = 1079, - [1080] = 1080, + [1080] = 1073, [1081] = 1081, [1082] = 1082, - [1083] = 1083, - [1084] = 1084, + [1083] = 1073, + [1084] = 1073, [1085] = 1085, - [1086] = 941, + [1086] = 1086, [1087] = 1087, [1088] = 1088, [1089] = 1089, - [1090] = 942, + [1090] = 1090, [1091] = 1091, - [1092] = 1034, + [1092] = 1092, [1093] = 1093, [1094] = 1094, [1095] = 1095, [1096] = 1096, - [1097] = 1096, + [1097] = 1097, [1098] = 1098, - [1099] = 1096, - [1100] = 1004, + [1099] = 948, + [1100] = 1100, [1101] = 1101, - [1102] = 943, - [1103] = 1096, + [1102] = 1008, + [1103] = 1028, [1104] = 1104, - [1105] = 999, - [1106] = 1106, + [1105] = 1105, + [1106] = 1051, [1107] = 1107, [1108] = 1108, - [1109] = 1008, - [1110] = 1110, - [1111] = 1026, + [1109] = 1101, + [1110] = 1013, + [1111] = 1101, [1112] = 1112, - [1113] = 1096, - [1114] = 1096, - [1115] = 992, - [1116] = 956, + [1113] = 947, + [1114] = 1114, + [1115] = 1115, + [1116] = 946, [1117] = 1117, - [1118] = 922, - [1119] = 1119, + [1118] = 1118, + [1119] = 1101, [1120] = 1120, - [1121] = 1121, + [1121] = 1044, [1122] = 1122, [1123] = 1123, - [1124] = 1124, - [1125] = 1087, - [1126] = 1126, - [1127] = 1034, + [1124] = 1101, + [1125] = 1031, + [1126] = 1101, + [1127] = 1127, [1128] = 1128, - [1129] = 1018, + [1129] = 1129, [1130] = 1130, - [1131] = 1131, - [1132] = 1132, - [1133] = 1133, - [1134] = 979, + [1131] = 940, + [1132] = 1096, + [1133] = 980, + [1134] = 960, [1135] = 1135, - [1136] = 1011, + [1136] = 1031, [1137] = 1137, - [1138] = 1008, - [1139] = 934, - [1140] = 1140, - [1141] = 1141, + [1138] = 975, + [1139] = 1139, + [1140] = 959, + [1141] = 1051, [1142] = 1142, - [1143] = 1143, - [1144] = 1014, + [1143] = 988, + [1144] = 1039, [1145] = 1145, - [1146] = 1146, + [1146] = 1018, [1147] = 1147, - [1148] = 1000, + [1148] = 1148, [1149] = 1149, [1150] = 1150, [1151] = 1151, - [1152] = 1013, - [1153] = 1021, - [1154] = 978, - [1155] = 975, - [1156] = 989, - [1157] = 973, - [1158] = 1093, - [1159] = 1027, + [1152] = 1152, + [1153] = 1105, + [1154] = 1044, + [1155] = 1155, + [1156] = 1156, + [1157] = 1157, + [1158] = 967, + [1159] = 1159, [1160] = 1022, - [1161] = 981, - [1162] = 1019, + [1161] = 1161, + [1162] = 1012, [1163] = 1163, [1164] = 1164, - [1165] = 1002, + [1165] = 1165, [1166] = 1166, - [1167] = 1031, + [1167] = 1167, [1168] = 1168, - [1169] = 1026, - [1170] = 1004, - [1171] = 1006, + [1169] = 1169, + [1170] = 1170, + [1171] = 1171, [1172] = 1172, [1173] = 1173, - [1174] = 1174, - [1175] = 1175, - [1176] = 1176, + [1174] = 1027, + [1175] = 1025, + [1176] = 1015, [1177] = 1177, - [1178] = 1038, - [1179] = 1033, - [1180] = 1032, - [1181] = 1030, - [1182] = 1007, - [1183] = 1028, - [1184] = 1001, - [1185] = 1069, - [1186] = 1064, - [1187] = 1068, - [1188] = 1060, - [1189] = 1061, - [1190] = 1062, - [1191] = 1070, - [1192] = 997, - [1193] = 1053, - [1194] = 1069, - [1195] = 1074, - [1196] = 1059, - [1197] = 1046, - [1198] = 1072, - [1199] = 1048, - [1200] = 1048, - [1201] = 1053, - [1202] = 995, - [1203] = 1041, - [1204] = 1045, - [1205] = 1049, - [1206] = 1081, - [1207] = 1065, - [1208] = 1079, - [1209] = 1070, - [1210] = 1068, - [1211] = 1047, - [1212] = 1076, - [1213] = 1065, - [1214] = 1063, - [1215] = 1076, - [1216] = 1216, - [1217] = 1078, - [1218] = 1061, - [1219] = 1067, - [1220] = 1056, - [1221] = 1044, - [1222] = 1049, - [1223] = 1064, + [1178] = 1017, + [1179] = 1028, + [1180] = 927, + [1181] = 974, + [1182] = 1182, + [1183] = 1046, + [1184] = 1184, + [1185] = 1185, + [1186] = 1045, + [1187] = 1032, + [1188] = 1043, + [1189] = 1041, + [1190] = 1037, + [1191] = 1014, + [1192] = 1023, + [1193] = 1029, + [1194] = 1030, + [1195] = 1195, + [1196] = 1196, + [1197] = 1038, + [1198] = 1059, + [1199] = 1077, + [1200] = 1007, + [1201] = 1052, + [1202] = 1067, + [1203] = 1079, + [1204] = 1066, + [1205] = 1056, + [1206] = 1033, + [1207] = 1052, + [1208] = 1082, + [1209] = 1069, + [1210] = 1094, + [1211] = 1087, + [1212] = 1087, + [1213] = 1090, + [1214] = 1005, + [1215] = 1054, + [1216] = 1057, + [1217] = 1054, + [1218] = 1009, + [1219] = 1082, + [1220] = 1088, + [1221] = 530, + [1222] = 1088, + [1223] = 1063, [1224] = 1056, - [1225] = 1039, - [1226] = 1045, - [1227] = 1227, - [1228] = 1067, - [1229] = 1059, - [1230] = 1063, - [1231] = 502, - [1232] = 1079, - [1233] = 1072, - [1234] = 1071, - [1235] = 1046, - [1236] = 1052, - [1237] = 993, - [1238] = 998, - [1239] = 1081, - [1240] = 1052, - [1241] = 1042, - [1242] = 1023, - [1243] = 1074, - [1244] = 1042, - [1245] = 1039, - [1246] = 1080, - [1247] = 1044, - [1248] = 1025, - [1249] = 996, - [1250] = 1049, - [1251] = 994, - [1252] = 1071, - [1253] = 1062, - [1254] = 1080, - [1255] = 934, - [1256] = 501, - [1257] = 1027, - [1258] = 1047, - [1259] = 1001, - [1260] = 1028, - [1261] = 1030, - [1262] = 1032, - [1263] = 1033, - [1264] = 1038, - [1265] = 1031, - [1266] = 1002, - [1267] = 1267, - [1268] = 1060, - [1269] = 1269, - [1270] = 1011, - [1271] = 1227, - [1272] = 1078, - [1273] = 1018, - [1274] = 1022, - [1275] = 1006, - [1276] = 1276, - [1277] = 1019, - [1278] = 1007, - [1279] = 1009, - [1280] = 1015, - [1281] = 1021, - [1282] = 1014, - [1283] = 1024, - [1284] = 1013, - [1285] = 1041, - [1286] = 87, - [1287] = 1287, - [1288] = 93, - [1289] = 86, - [1290] = 94, - [1291] = 110, - [1292] = 1049, - [1293] = 1054, - [1294] = 1294, - [1295] = 113, - [1296] = 112, - [1297] = 109, - [1298] = 106, - [1299] = 105, - [1300] = 1051, - [1301] = 100, - [1302] = 89, - [1303] = 1287, - [1304] = 90, - [1305] = 91, - [1306] = 92, - [1307] = 95, - [1308] = 84, - [1309] = 1075, - [1310] = 1310, - [1311] = 1287, - [1312] = 83, - [1313] = 1066, - [1314] = 1077, + [1225] = 1069, + [1226] = 1068, + [1227] = 1058, + [1228] = 1061, + [1229] = 1067, + [1230] = 1070, + [1231] = 1085, + [1232] = 1011, + [1233] = 1078, + [1234] = 1053, + [1235] = 1006, + [1236] = 1076, + [1237] = 1056, + [1238] = 1068, + [1239] = 1063, + [1240] = 1010, + [1241] = 1077, + [1242] = 1092, + [1243] = 1092, + [1244] = 1244, + [1245] = 1071, + [1246] = 1066, + [1247] = 1247, + [1248] = 1090, + [1249] = 1059, + [1250] = 1058, + [1251] = 1076, + [1252] = 1065, + [1253] = 1055, + [1254] = 1070, + [1255] = 1071, + [1256] = 534, + [1257] = 940, + [1258] = 1020, + [1259] = 1094, + [1260] = 1089, + [1261] = 1085, + [1262] = 1086, + [1263] = 1060, + [1264] = 1055, + [1265] = 1078, + [1266] = 1053, + [1267] = 1057, + [1268] = 1065, + [1269] = 1089, + [1270] = 1029, + [1271] = 1038, + [1272] = 1015, + [1273] = 1273, + [1274] = 1039, + [1275] = 1275, + [1276] = 1035, + [1277] = 1046, + [1278] = 1079, + [1279] = 1045, + [1280] = 1043, + [1281] = 1041, + [1282] = 1037, + [1283] = 1014, + [1284] = 1023, + [1285] = 1017, + [1286] = 1030, + [1287] = 1061, + [1288] = 1086, + [1289] = 1027, + [1290] = 1025, + [1291] = 1032, + [1292] = 1018, + [1293] = 1247, + [1294] = 1047, + [1295] = 1060, + [1296] = 1022, + [1297] = 1036, + [1298] = 1298, + [1299] = 1299, + [1300] = 1093, + [1301] = 125, + [1302] = 124, + [1303] = 113, + [1304] = 1074, + [1305] = 1299, + [1306] = 1299, + [1307] = 109, + [1308] = 107, + [1309] = 105, + [1310] = 104, + [1311] = 102, + [1312] = 114, + [1313] = 1299, + [1314] = 87, [1315] = 1315, - [1316] = 1055, - [1317] = 1287, - [1318] = 1287, - [1319] = 1108, - [1320] = 1091, - [1321] = 1026, - [1322] = 1008, - [1323] = 1034, - [1324] = 1004, - [1325] = 1087, - [1326] = 1093, - [1327] = 1327, - [1328] = 1269, - [1329] = 1094, - [1330] = 1104, - [1331] = 1098, - [1332] = 1106, - [1333] = 1095, - [1334] = 1084, - [1335] = 1110, - [1336] = 1107, - [1337] = 1082, - [1338] = 1101, - [1339] = 1112, - [1340] = 1089, - [1341] = 1083, - [1342] = 1088, - [1343] = 1006, - [1344] = 1123, - [1345] = 1164, - [1346] = 1149, - [1347] = 1137, - [1348] = 1128, - [1349] = 1168, - [1350] = 1141, - [1351] = 1087, - [1352] = 1093, - [1353] = 1011, - [1354] = 1140, - [1355] = 1135, - [1356] = 1014, - [1357] = 1021, - [1358] = 1022, - [1359] = 1013, - [1360] = 1166, - [1361] = 1018, - [1362] = 1163, - [1363] = 1117, - [1364] = 1002, - [1365] = 1031, - [1366] = 1038, - [1367] = 1033, - [1368] = 1032, - [1369] = 1030, - [1370] = 1001, - [1371] = 1122, - [1372] = 1027, - [1373] = 1019, - [1374] = 1028, - [1375] = 1145, - [1376] = 1126, - [1377] = 1150, - [1378] = 1130, - [1379] = 1172, - [1380] = 1176, - [1381] = 1132, - [1382] = 1124, - [1383] = 1131, - [1384] = 1142, - [1385] = 1143, - [1386] = 1175, - [1387] = 1174, - [1388] = 1151, - [1389] = 1147, - [1390] = 1119, - [1391] = 1120, - [1392] = 1177, - [1393] = 1146, - [1394] = 1173, - [1395] = 1007, - [1396] = 1121, - [1397] = 1047, - [1398] = 1078, - [1399] = 1060, - [1400] = 1400, - [1401] = 1400, - [1402] = 1402, - [1403] = 1041, - [1404] = 1404, - [1405] = 1405, - [1406] = 1049, - [1407] = 1402, - [1408] = 1404, - [1409] = 1405, - [1410] = 1410, - [1411] = 1031, + [1316] = 1056, + [1317] = 1299, + [1318] = 126, + [1319] = 1319, + [1320] = 112, + [1321] = 1075, + [1322] = 1322, + [1323] = 1081, + [1324] = 128, + [1325] = 86, + [1326] = 127, + [1327] = 90, + [1328] = 96, + [1329] = 1091, + [1330] = 1064, + [1331] = 129, + [1332] = 1117, + [1333] = 1097, + [1334] = 1031, + [1335] = 1100, + [1336] = 1028, + [1337] = 1118, + [1338] = 1115, + [1339] = 1127, + [1340] = 1122, + [1341] = 1098, + [1342] = 1298, + [1343] = 1123, + [1344] = 1051, + [1345] = 1044, + [1346] = 1114, + [1347] = 1105, + [1348] = 1104, + [1349] = 1112, + [1350] = 1120, + [1351] = 1128, + [1352] = 1095, + [1353] = 1096, + [1354] = 1354, + [1355] = 1108, + [1356] = 1032, + [1357] = 1196, + [1358] = 1155, + [1359] = 1025, + [1360] = 1161, + [1361] = 1151, + [1362] = 1152, + [1363] = 1150, + [1364] = 1159, + [1365] = 1149, + [1366] = 1165, + [1367] = 1022, + [1368] = 1017, + [1369] = 1137, + [1370] = 1139, + [1371] = 1027, + [1372] = 1145, + [1373] = 1030, + [1374] = 1142, + [1375] = 1148, + [1376] = 1156, + [1377] = 1157, + [1378] = 1166, + [1379] = 1135, + [1380] = 1018, + [1381] = 1038, + [1382] = 1029, + [1383] = 1023, + [1384] = 1014, + [1385] = 1168, + [1386] = 1037, + [1387] = 1184, + [1388] = 1096, + [1389] = 1169, + [1390] = 1163, + [1391] = 1039, + [1392] = 1105, + [1393] = 1041, + [1394] = 1164, + [1395] = 1130, + [1396] = 1170, + [1397] = 1182, + [1398] = 1173, + [1399] = 1043, + [1400] = 1172, + [1401] = 1045, + [1402] = 1129, + [1403] = 1185, + [1404] = 1046, + [1405] = 1171, + [1406] = 1167, + [1407] = 1177, + [1408] = 1195, + [1409] = 1015, + [1410] = 1056, + [1411] = 1061, [1412] = 1412, - [1413] = 1021, - [1414] = 110, - [1415] = 94, - [1416] = 93, - [1417] = 87, - [1418] = 1002, - [1419] = 91, - [1420] = 86, - [1421] = 84, - [1422] = 83, - [1423] = 92, - [1424] = 113, - [1425] = 100, - [1426] = 105, - [1427] = 106, - [1428] = 1038, - [1429] = 1033, - [1430] = 95, - [1431] = 90, - [1432] = 112, - [1433] = 1032, - [1434] = 1022, - [1435] = 1027, - [1436] = 1019, - [1437] = 109, + [1413] = 1412, + [1414] = 1414, + [1415] = 1414, + [1416] = 1416, + [1417] = 1086, + [1418] = 1416, + [1419] = 1419, + [1420] = 1079, + [1421] = 1419, + [1422] = 1060, + [1423] = 1423, + [1424] = 127, + [1425] = 1023, + [1426] = 96, + [1427] = 124, + [1428] = 112, + [1429] = 129, + [1430] = 128, + [1431] = 109, + [1432] = 126, + [1433] = 107, + [1434] = 87, + [1435] = 105, + [1436] = 104, + [1437] = 102, [1438] = 1030, - [1439] = 89, - [1440] = 1001, - [1441] = 1028, - [1442] = 1442, - [1443] = 1443, - [1444] = 1444, - [1445] = 1445, - [1446] = 1446, - [1447] = 1001, - [1448] = 1448, - [1449] = 1038, + [1439] = 1029, + [1440] = 1017, + [1441] = 125, + [1442] = 1014, + [1443] = 1037, + [1444] = 1041, + [1445] = 1032, + [1446] = 1043, + [1447] = 1045, + [1448] = 90, + [1449] = 113, [1450] = 1450, - [1451] = 1451, - [1452] = 1002, - [1453] = 1022, - [1454] = 1454, + [1451] = 1046, + [1452] = 86, + [1453] = 1015, + [1454] = 114, [1455] = 1455, - [1456] = 1019, + [1456] = 1456, [1457] = 1457, - [1458] = 1031, - [1459] = 1027, - [1460] = 1021, + [1458] = 1458, + [1459] = 1459, + [1460] = 1460, [1461] = 1461, - [1462] = 1028, - [1463] = 1030, - [1464] = 1454, - [1465] = 1455, - [1466] = 1450, - [1467] = 1467, - [1468] = 1448, - [1469] = 1032, - [1470] = 1033, - [1471] = 994, - [1472] = 997, - [1473] = 998, - [1474] = 993, + [1462] = 1462, + [1463] = 1463, + [1464] = 1461, + [1465] = 1465, + [1466] = 1462, + [1467] = 1032, + [1468] = 1459, + [1469] = 1469, + [1470] = 1015, + [1471] = 1471, + [1472] = 1046, + [1473] = 1045, + [1474] = 1043, [1475] = 1475, - [1476] = 1476, - [1477] = 1031, - [1478] = 1002, - [1479] = 1021, - [1480] = 1480, - [1481] = 1480, - [1482] = 1482, - [1483] = 1038, - [1484] = 1033, - [1485] = 1485, - [1486] = 1032, - [1487] = 1487, - [1488] = 1030, - [1489] = 1028, - [1490] = 1001, - [1491] = 1027, - [1492] = 1487, - [1493] = 1485, + [1476] = 1041, + [1477] = 1037, + [1478] = 1014, + [1479] = 1023, + [1480] = 1017, + [1481] = 1029, + [1482] = 1030, + [1483] = 1463, + [1484] = 1005, + [1485] = 1006, + [1486] = 1011, + [1487] = 1009, + [1488] = 1488, + [1489] = 1017, + [1490] = 1488, + [1491] = 1491, + [1492] = 1492, + [1493] = 1493, [1494] = 1494, - [1495] = 1480, - [1496] = 1480, - [1497] = 1475, - [1498] = 1487, - [1499] = 1476, + [1495] = 1493, + [1496] = 1036, + [1497] = 1488, + [1498] = 1047, + [1499] = 1499, [1500] = 1500, - [1501] = 1019, - [1502] = 1022, - [1503] = 1475, - [1504] = 1024, - [1505] = 1476, - [1506] = 1500, - [1507] = 1015, - [1508] = 1485, - [1509] = 1480, - [1510] = 1485, - [1511] = 1009, - [1512] = 1500, - [1513] = 1476, - [1514] = 1485, - [1515] = 1515, - [1516] = 1516, - [1517] = 1516, - [1518] = 1075, - [1519] = 1077, - [1520] = 1520, - [1521] = 1055, - [1522] = 1051, - [1523] = 1066, - [1524] = 1520, - [1525] = 1515, - [1526] = 1054, - [1527] = 1527, - [1528] = 1528, - [1529] = 1529, - [1530] = 1529, - [1531] = 1083, - [1532] = 997, + [1501] = 1494, + [1502] = 1015, + [1503] = 1488, + [1504] = 1032, + [1505] = 1505, + [1506] = 1505, + [1507] = 1493, + [1508] = 1491, + [1509] = 1499, + [1510] = 1494, + [1511] = 1494, + [1512] = 1041, + [1513] = 1030, + [1514] = 1505, + [1515] = 1494, + [1516] = 1488, + [1517] = 1046, + [1518] = 1499, + [1519] = 1045, + [1520] = 1505, + [1521] = 1043, + [1522] = 1029, + [1523] = 1491, + [1524] = 1037, + [1525] = 1023, + [1526] = 1035, + [1527] = 1014, + [1528] = 1075, + [1529] = 1093, + [1530] = 1091, + [1531] = 1531, + [1532] = 1532, [1533] = 1533, [1534] = 1534, - [1535] = 994, - [1536] = 1087, - [1537] = 1104, + [1535] = 1535, + [1536] = 1531, + [1537] = 1081, [1538] = 1538, - [1539] = 1539, - [1540] = 1534, - [1541] = 1538, - [1542] = 1533, - [1543] = 1534, - [1544] = 1093, - [1545] = 1094, - [1546] = 1091, - [1547] = 1533, - [1548] = 1534, - [1549] = 1549, - [1550] = 1533, - [1551] = 1095, - [1552] = 998, - [1553] = 1539, - [1554] = 1538, - [1555] = 1539, - [1556] = 1089, - [1557] = 1101, - [1558] = 1558, - [1559] = 1009, - [1560] = 1560, - [1561] = 1561, - [1562] = 1562, - [1563] = 1563, - [1564] = 1142, - [1565] = 1561, - [1566] = 1558, - [1567] = 1019, - [1568] = 1568, - [1569] = 1022, - [1570] = 1028, - [1571] = 1558, - [1572] = 1093, + [1539] = 1538, + [1540] = 1074, + [1541] = 1535, + [1542] = 1532, + [1543] = 1064, + [1544] = 1108, + [1545] = 1120, + [1546] = 1006, + [1547] = 1547, + [1548] = 1548, + [1549] = 1096, + [1550] = 1550, + [1551] = 1551, + [1552] = 1547, + [1553] = 1553, + [1554] = 1554, + [1555] = 1005, + [1556] = 1551, + [1557] = 1115, + [1558] = 1551, + [1559] = 1554, + [1560] = 1105, + [1561] = 1547, + [1562] = 1548, + [1563] = 1550, + [1564] = 1553, + [1565] = 1553, + [1566] = 1009, + [1567] = 1554, + [1568] = 1118, + [1569] = 1550, + [1570] = 1551, + [1571] = 1104, + [1572] = 1127, [1573] = 1573, - [1574] = 1574, - [1575] = 1561, - [1576] = 1576, - [1577] = 1560, + [1574] = 1117, + [1575] = 1548, + [1576] = 1554, + [1577] = 1577, [1578] = 1578, - [1579] = 1001, - [1580] = 1002, - [1581] = 1031, - [1582] = 1038, - [1583] = 1560, - [1584] = 1584, - [1585] = 1560, - [1586] = 1586, - [1587] = 1027, - [1588] = 1561, - [1589] = 1030, - [1590] = 1560, - [1591] = 1560, - [1592] = 1558, + [1579] = 1045, + [1580] = 1043, + [1581] = 1041, + [1582] = 1037, + [1583] = 1014, + [1584] = 1023, + [1585] = 1585, + [1586] = 1029, + [1587] = 1030, + [1588] = 1161, + [1589] = 1167, + [1590] = 1590, + [1591] = 1590, + [1592] = 1592, [1593] = 1593, - [1594] = 1594, - [1595] = 1568, - [1596] = 1087, - [1597] = 1597, - [1598] = 1568, - [1599] = 1599, - [1600] = 1021, - [1601] = 1568, + [1594] = 1046, + [1595] = 1595, + [1596] = 1036, + [1597] = 1032, + [1598] = 1598, + [1599] = 1590, + [1600] = 1578, + [1601] = 1601, [1602] = 1602, - [1603] = 1561, - [1604] = 1604, - [1605] = 1605, - [1606] = 1561, - [1607] = 1033, - [1608] = 1608, - [1609] = 1560, - [1610] = 1117, + [1603] = 1017, + [1604] = 1578, + [1605] = 1602, + [1606] = 1606, + [1607] = 1590, + [1608] = 1593, + [1609] = 1609, + [1610] = 1610, [1611] = 1611, - [1612] = 1032, - [1613] = 1613, - [1614] = 1568, - [1615] = 1147, - [1616] = 993, - [1617] = 1560, - [1618] = 1015, - [1619] = 1568, - [1620] = 1457, - [1621] = 1024, - [1622] = 1622, - [1623] = 1623, + [1612] = 1612, + [1613] = 1602, + [1614] = 1593, + [1615] = 1602, + [1616] = 1475, + [1617] = 1578, + [1618] = 1618, + [1619] = 1619, + [1620] = 1620, + [1621] = 1621, + [1622] = 1590, + [1623] = 1590, [1624] = 1624, - [1625] = 1055, + [1625] = 1035, [1626] = 1626, - [1627] = 1054, - [1628] = 1628, - [1629] = 1051, - [1630] = 1630, - [1631] = 1631, - [1632] = 1632, - [1633] = 1633, - [1634] = 1632, - [1635] = 1632, - [1636] = 1636, - [1637] = 1633, - [1638] = 1638, - [1639] = 1624, - [1640] = 1624, - [1641] = 1641, - [1642] = 1066, - [1643] = 1624, - [1644] = 1644, - [1645] = 1641, + [1627] = 1590, + [1628] = 1590, + [1629] = 1629, + [1630] = 1011, + [1631] = 1602, + [1632] = 1096, + [1633] = 1015, + [1634] = 1634, + [1635] = 1635, + [1636] = 1578, + [1637] = 1637, + [1638] = 1593, + [1639] = 1639, + [1640] = 1105, + [1641] = 1602, + [1642] = 1182, + [1643] = 1047, + [1644] = 1578, + [1645] = 1645, [1646] = 1646, - [1647] = 1632, - [1648] = 1626, - [1649] = 1075, - [1650] = 1077, - [1651] = 1636, + [1647] = 1081, + [1648] = 1648, + [1649] = 1649, + [1650] = 1650, + [1651] = 1075, [1652] = 1652, - [1653] = 1630, - [1654] = 1632, - [1655] = 1630, - [1656] = 1624, + [1653] = 1653, + [1654] = 1091, + [1655] = 1650, + [1656] = 1093, [1657] = 1657, - [1658] = 1628, - [1659] = 1633, - [1660] = 1660, - [1661] = 1661, - [1662] = 1662, - [1663] = 1663, - [1664] = 1091, - [1665] = 1094, - [1666] = 1087, - [1667] = 1083, - [1668] = 996, - [1669] = 1669, + [1658] = 1658, + [1659] = 1659, + [1660] = 1650, + [1661] = 1649, + [1662] = 1650, + [1663] = 1650, + [1664] = 1649, + [1665] = 1665, + [1666] = 1666, + [1667] = 1649, + [1668] = 1648, + [1669] = 1659, [1670] = 1670, - [1671] = 995, - [1672] = 993, - [1673] = 1104, - [1674] = 1674, - [1675] = 1089, - [1676] = 1676, - [1677] = 1093, - [1678] = 1678, + [1671] = 1648, + [1672] = 1064, + [1673] = 1646, + [1674] = 1659, + [1675] = 1645, + [1676] = 1666, + [1677] = 1677, + [1678] = 1670, [1679] = 1679, - [1680] = 1101, + [1680] = 1680, [1681] = 1681, - [1682] = 1682, - [1683] = 1669, - [1684] = 1095, + [1682] = 1649, + [1683] = 1074, + [1684] = 1105, [1685] = 1685, - [1686] = 1686, + [1686] = 1096, [1687] = 1687, - [1688] = 1687, - [1689] = 1147, - [1690] = 1482, - [1691] = 1686, - [1692] = 1692, - [1693] = 1693, - [1694] = 1686, - [1695] = 1087, - [1696] = 1093, - [1697] = 1685, - [1698] = 1142, - [1699] = 1699, - [1700] = 1686, + [1688] = 1688, + [1689] = 1127, + [1690] = 1690, + [1691] = 1104, + [1692] = 1011, + [1693] = 1118, + [1694] = 1694, + [1695] = 1010, + [1696] = 1120, + [1697] = 1697, + [1698] = 1007, + [1699] = 1687, + [1700] = 1700, [1701] = 1117, - [1702] = 1702, - [1703] = 941, - [1704] = 1693, + [1702] = 1115, + [1703] = 1703, + [1704] = 1108, [1705] = 1705, [1706] = 1706, - [1707] = 943, - [1708] = 1706, - [1709] = 1705, - [1710] = 1706, + [1707] = 1707, + [1708] = 1708, + [1709] = 1709, + [1710] = 1710, [1711] = 1706, - [1712] = 942, - [1713] = 1705, - [1714] = 1706, - [1715] = 1706, + [1712] = 1500, + [1713] = 1709, + [1714] = 1167, + [1715] = 1182, [1716] = 1716, - [1717] = 1706, - [1718] = 1705, - [1719] = 1719, - [1720] = 1720, - [1721] = 1721, - [1722] = 1722, - [1723] = 1723, - [1724] = 1724, - [1725] = 1594, - [1726] = 989, - [1727] = 1727, + [1717] = 1710, + [1718] = 1718, + [1719] = 1105, + [1720] = 948, + [1721] = 1161, + [1722] = 1706, + [1723] = 1706, + [1724] = 1096, + [1725] = 1708, + [1726] = 1726, + [1727] = 1726, [1728] = 1728, - [1729] = 1034, - [1730] = 1730, - [1731] = 973, - [1732] = 941, - [1733] = 1733, - [1734] = 1728, - [1735] = 1735, - [1736] = 1735, - [1737] = 1008, - [1738] = 1735, - [1739] = 981, - [1740] = 1728, - [1741] = 1004, + [1729] = 1726, + [1730] = 1726, + [1731] = 1728, + [1732] = 1732, + [1733] = 947, + [1734] = 1726, + [1735] = 1726, + [1736] = 946, + [1737] = 1726, + [1738] = 1728, + [1739] = 1728, + [1740] = 1740, + [1741] = 1741, [1742] = 1742, - [1743] = 978, - [1744] = 956, - [1745] = 1735, - [1746] = 975, - [1747] = 1747, - [1748] = 1026, + [1743] = 1743, + [1744] = 1744, + [1745] = 1745, + [1746] = 1746, + [1747] = 967, + [1748] = 1031, [1749] = 1749, - [1750] = 1000, - [1751] = 1597, - [1752] = 979, - [1753] = 1753, - [1754] = 1754, - [1755] = 1733, - [1756] = 1753, - [1757] = 1754, - [1758] = 1107, - [1759] = 1759, - [1760] = 973, - [1761] = 1004, - [1762] = 975, - [1763] = 1754, - [1764] = 956, - [1765] = 978, - [1766] = 943, - [1767] = 1753, + [1750] = 975, + [1751] = 1751, + [1752] = 1752, + [1753] = 1746, + [1754] = 980, + [1755] = 1746, + [1756] = 1749, + [1757] = 1624, + [1758] = 1758, + [1759] = 1620, + [1760] = 1012, + [1761] = 948, + [1762] = 1051, + [1763] = 959, + [1764] = 1749, + [1765] = 1746, + [1766] = 1028, + [1767] = 988, [1768] = 1768, [1769] = 1769, - [1770] = 1026, - [1771] = 1771, - [1772] = 979, - [1773] = 981, - [1774] = 1771, - [1775] = 1110, - [1776] = 1771, - [1777] = 1106, - [1778] = 1000, - [1779] = 1753, - [1780] = 1088, - [1781] = 1098, - [1782] = 1008, - [1783] = 1082, - [1784] = 1771, - [1785] = 1108, - [1786] = 1112, - [1787] = 989, - [1788] = 1084, - [1789] = 1034, - [1790] = 942, - [1791] = 1754, - [1792] = 1769, - [1793] = 1141, - [1794] = 1175, - [1795] = 1795, + [1770] = 1044, + [1771] = 974, + [1772] = 960, + [1773] = 1773, + [1774] = 974, + [1775] = 1012, + [1776] = 1114, + [1777] = 1777, + [1778] = 946, + [1779] = 1777, + [1780] = 1128, + [1781] = 1123, + [1782] = 959, + [1783] = 1773, + [1784] = 960, + [1785] = 1785, + [1786] = 1100, + [1787] = 1097, + [1788] = 1098, + [1789] = 1789, + [1790] = 967, + [1791] = 947, + [1792] = 1792, + [1793] = 988, + [1794] = 1794, + [1795] = 1112, [1796] = 1796, - [1797] = 1797, - [1798] = 1798, - [1799] = 1146, - [1800] = 1800, - [1801] = 1798, - [1802] = 1800, - [1803] = 1803, - [1804] = 1797, - [1805] = 1795, - [1806] = 1796, - [1807] = 1807, - [1808] = 1808, - [1809] = 1809, - [1810] = 1810, - [1811] = 1811, - [1812] = 1145, - [1813] = 1135, - [1814] = 1814, - [1815] = 1140, - [1816] = 1816, - [1817] = 1817, - [1818] = 1818, - [1819] = 1150, - [1820] = 1149, - [1821] = 1164, + [1797] = 1796, + [1798] = 1796, + [1799] = 1777, + [1800] = 975, + [1801] = 980, + [1802] = 1122, + [1803] = 1794, + [1804] = 1794, + [1805] = 1777, + [1806] = 1031, + [1807] = 1028, + [1808] = 1095, + [1809] = 1796, + [1810] = 1051, + [1811] = 1044, + [1812] = 1794, + [1813] = 1785, + [1814] = 1165, + [1815] = 1815, + [1816] = 1142, + [1817] = 1150, + [1818] = 1196, + [1819] = 1184, + [1820] = 1173, + [1821] = 1821, [1822] = 1822, - [1823] = 1807, + [1823] = 1823, [1824] = 1824, - [1825] = 1825, - [1826] = 1826, - [1827] = 1126, - [1828] = 1828, - [1829] = 1829, - [1830] = 1151, - [1831] = 1807, - [1832] = 1080, - [1833] = 1822, - [1834] = 1834, - [1835] = 1824, - [1836] = 1130, - [1837] = 1826, + [1825] = 1177, + [1826] = 1157, + [1827] = 1135, + [1828] = 1156, + [1829] = 1155, + [1830] = 1148, + [1831] = 1831, + [1832] = 1832, + [1833] = 1149, + [1834] = 1151, + [1835] = 1152, + [1836] = 1836, + [1837] = 1837, [1838] = 1838, - [1839] = 1839, - [1840] = 1840, - [1841] = 1132, - [1842] = 1842, - [1843] = 1124, - [1844] = 1177, - [1845] = 1845, - [1846] = 1176, - [1847] = 1809, + [1839] = 1166, + [1840] = 1824, + [1841] = 1168, + [1842] = 1169, + [1843] = 1838, + [1844] = 1170, + [1845] = 1172, + [1846] = 1846, + [1847] = 1159, [1848] = 1848, [1849] = 1849, [1850] = 1850, - [1851] = 1174, - [1852] = 1128, - [1853] = 1122, - [1854] = 1854, - [1855] = 1166, - [1856] = 1143, + [1851] = 1851, + [1852] = 1852, + [1853] = 1815, + [1854] = 1195, + [1855] = 1855, + [1856] = 1185, [1857] = 1857, - [1858] = 1168, - [1859] = 1173, - [1860] = 1860, - [1861] = 1172, - [1862] = 1862, - [1863] = 1816, - [1864] = 1163, - [1865] = 1549, - [1866] = 1866, - [1867] = 1867, - [1868] = 1868, - [1869] = 1869, - [1870] = 1816, - [1871] = 1871, - [1872] = 1872, - [1873] = 1807, - [1874] = 1131, + [1858] = 1858, + [1859] = 1859, + [1860] = 1855, + [1861] = 1085, + [1862] = 1850, + [1863] = 1849, + [1864] = 1848, + [1865] = 1846, + [1866] = 1837, + [1867] = 1573, + [1868] = 1129, + [1869] = 1130, + [1870] = 1164, + [1871] = 1163, + [1872] = 1859, + [1873] = 1858, + [1874] = 1857, [1875] = 1875, [1876] = 1876, - [1877] = 1123, - [1878] = 1828, + [1877] = 1877, + [1878] = 1878, [1879] = 1879, - [1880] = 1825, - [1881] = 1121, - [1882] = 1120, - [1883] = 1818, - [1884] = 1119, - [1885] = 1137, - [1886] = 1869, + [1880] = 1838, + [1881] = 1881, + [1882] = 1882, + [1883] = 1883, + [1884] = 1884, + [1885] = 1885, + [1886] = 1886, [1887] = 1887, [1888] = 1888, - [1889] = 1042, - [1890] = 1814, - [1891] = 1887, - [1892] = 1892, - [1893] = 1811, - [1894] = 1894, - [1895] = 1866, + [1889] = 1889, + [1890] = 1890, + [1891] = 1891, + [1892] = 1171, + [1893] = 1145, + [1894] = 1139, + [1895] = 1895, [1896] = 1896, - [1897] = 1887, - [1898] = 885, - [1899] = 1814, - [1900] = 1900, - [1901] = 1866, - [1902] = 1067, + [1897] = 1879, + [1898] = 1832, + [1899] = 1899, + [1900] = 1838, + [1901] = 1879, + [1902] = 1137, [1903] = 1903, - [1904] = 1875, + [1904] = 1904, [1905] = 1905, - [1906] = 1004, - [1907] = 1034, - [1908] = 1871, - [1909] = 1070, - [1910] = 1068, - [1911] = 1008, - [1912] = 1026, - [1913] = 1903, - [1914] = 1914, - [1915] = 881, - [1916] = 1052, - [1917] = 1834, - [1918] = 1867, - [1919] = 1056, - [1920] = 1839, + [1906] = 1906, + [1907] = 1051, + [1908] = 1882, + [1909] = 1909, + [1910] = 1085, + [1911] = 1911, + [1912] = 1912, + [1913] = 1886, + [1914] = 1076, + [1915] = 1065, + [1916] = 1916, + [1917] = 1912, + [1918] = 1887, + [1919] = 1919, + [1920] = 1885, [1921] = 1921, - [1922] = 878, - [1923] = 1063, + [1922] = 1916, + [1923] = 1923, [1924] = 1924, - [1925] = 1857, - [1926] = 1868, - [1927] = 1839, - [1928] = 1080, - [1929] = 1044, - [1930] = 1894, - [1931] = 1850, - [1932] = 1905, - [1933] = 1848, - [1934] = 1046, - [1935] = 1894, - [1936] = 1072, - [1937] = 1838, - [1938] = 1887, - [1939] = 1876, - [1940] = 1848, - [1941] = 1840, - [1942] = 1842, - [1943] = 1849, - [1944] = 1944, - [1945] = 1026, - [1946] = 1946, - [1947] = 1106, - [1948] = 1948, - [1949] = 1008, - [1950] = 1088, - [1951] = 1110, - [1952] = 1082, - [1953] = 1034, - [1954] = 1008, - [1955] = 1026, - [1956] = 1956, - [1957] = 1098, - [1958] = 1034, - [1959] = 1004, - [1960] = 1084, - [1961] = 1107, - [1962] = 1962, - [1963] = 1112, - [1964] = 1108, - [1965] = 1004, - [1966] = 1164, - [1967] = 1145, - [1968] = 1173, - [1969] = 1132, - [1970] = 1172, - [1971] = 1126, - [1972] = 1972, - [1973] = 1174, - [1974] = 1972, - [1975] = 1972, - [1976] = 1137, - [1977] = 1972, - [1978] = 1978, - [1979] = 1978, - [1980] = 1175, - [1981] = 1150, - [1982] = 1128, - [1983] = 1168, - [1984] = 1122, - [1985] = 1985, - [1986] = 1978, - [1987] = 1176, - [1988] = 1131, - [1989] = 1177, - [1990] = 995, - [1991] = 996, - [1992] = 1135, - [1993] = 1972, - [1994] = 1140, - [1995] = 1119, - [1996] = 1996, - [1997] = 1123, - [1998] = 1141, - [1999] = 1999, - [2000] = 1163, - [2001] = 1149, - [2002] = 1978, - [2003] = 1978, - [2004] = 1124, - [2005] = 1143, - [2006] = 1121, - [2007] = 1146, - [2008] = 2008, - [2009] = 2009, - [2010] = 1120, - [2011] = 1166, - [2012] = 1151, - [2013] = 1130, - [2014] = 2014, - [2015] = 2015, - [2016] = 2015, - [2017] = 2017, - [2018] = 2018, - [2019] = 2017, - [2020] = 2020, - [2021] = 2015, - [2022] = 2022, - [2023] = 2020, - [2024] = 2024, - [2025] = 2015, - [2026] = 2026, - [2027] = 2017, - [2028] = 2028, - [2029] = 2029, - [2030] = 2030, - [2031] = 2017, - [2032] = 2028, - [2033] = 2017, - [2034] = 2017, + [1925] = 1925, + [1926] = 1891, + [1927] = 1884, + [1928] = 1912, + [1929] = 1929, + [1930] = 1930, + [1931] = 1044, + [1932] = 1916, + [1933] = 1899, + [1934] = 1028, + [1935] = 1904, + [1936] = 1875, + [1937] = 1031, + [1938] = 1090, + [1939] = 1911, + [1940] = 1088, + [1941] = 1082, + [1942] = 1883, + [1943] = 1852, + [1944] = 1822, + [1945] = 1052, + [1946] = 1890, + [1947] = 1822, + [1948] = 1916, + [1949] = 1889, + [1950] = 1950, + [1951] = 1089, + [1952] = 1909, + [1953] = 1851, + [1954] = 1899, + [1955] = 1831, + [1956] = 1881, + [1957] = 1888, + [1958] = 1958, + [1959] = 1831, + [1960] = 1063, + [1961] = 1875, + [1962] = 1066, + [1963] = 1067, + [1964] = 1964, + [1965] = 1965, + [1966] = 1028, + [1967] = 1967, + [1968] = 1051, + [1969] = 1969, + [1970] = 1122, + [1971] = 1095, + [1972] = 1128, + [1973] = 1112, + [1974] = 1100, + [1975] = 1097, + [1976] = 1098, + [1977] = 1114, + [1978] = 1044, + [1979] = 1031, + [1980] = 1044, + [1981] = 1051, + [1982] = 1123, + [1983] = 1983, + [1984] = 1031, + [1985] = 1028, + [1986] = 1986, + [1987] = 1173, + [1988] = 1169, + [1989] = 1155, + [1990] = 1156, + [1991] = 1157, + [1992] = 1992, + [1993] = 1177, + [1994] = 1994, + [1995] = 1994, + [1996] = 1135, + [1997] = 1145, + [1998] = 1998, + [1999] = 1139, + [2000] = 1007, + [2001] = 2001, + [2002] = 2002, + [2003] = 1137, + [2004] = 1163, + [2005] = 1164, + [2006] = 1998, + [2007] = 1994, + [2008] = 1195, + [2009] = 1130, + [2010] = 1129, + [2011] = 1998, + [2012] = 1185, + [2013] = 2013, + [2014] = 1196, + [2015] = 1159, + [2016] = 1168, + [2017] = 1010, + [2018] = 1151, + [2019] = 1998, + [2020] = 1994, + [2021] = 1171, + [2022] = 1172, + [2023] = 1166, + [2024] = 1149, + [2025] = 1148, + [2026] = 1165, + [2027] = 1142, + [2028] = 1150, + [2029] = 1170, + [2030] = 1184, + [2031] = 1152, + [2032] = 2032, + [2033] = 1994, + [2034] = 1998, [2035] = 2035, [2036] = 2036, - [2037] = 2017, - [2038] = 2038, - [2039] = 2039, + [2037] = 2037, + [2038] = 2036, + [2039] = 2037, [2040] = 2040, [2041] = 2041, [2042] = 2042, - [2043] = 2043, + [2043] = 2036, [2044] = 2044, - [2045] = 2045, - [2046] = 2046, + [2045] = 2037, + [2046] = 2037, [2047] = 2047, - [2048] = 502, - [2049] = 2049, - [2050] = 2045, - [2051] = 2051, - [2052] = 2052, - [2053] = 2045, + [2048] = 2040, + [2049] = 2036, + [2050] = 2050, + [2051] = 2036, + [2052] = 2041, + [2053] = 2036, [2054] = 2054, - [2055] = 881, - [2056] = 2056, - [2057] = 2052, - [2058] = 2052, - [2059] = 2045, - [2060] = 501, - [2061] = 2052, - [2062] = 878, + [2055] = 2055, + [2056] = 2036, + [2057] = 2057, + [2058] = 2058, + [2059] = 2059, + [2060] = 2060, + [2061] = 2061, + [2062] = 2062, [2063] = 2063, - [2064] = 2064, - [2065] = 2046, + [2064] = 534, + [2065] = 1965, [2066] = 2066, [2067] = 2067, [2068] = 2068, [2069] = 2069, - [2070] = 885, - [2071] = 2071, + [2070] = 2070, + [2071] = 1958, [2072] = 2072, [2073] = 2073, [2074] = 2074, [2075] = 2075, [2076] = 2076, - [2077] = 2077, - [2078] = 2073, - [2079] = 2077, - [2080] = 2080, + [2077] = 2074, + [2078] = 2078, + [2079] = 530, + [2080] = 2072, [2081] = 2081, - [2082] = 2077, + [2082] = 2082, [2083] = 2083, [2084] = 2084, - [2085] = 2085, + [2085] = 1930, [2086] = 2086, - [2087] = 2087, - [2088] = 2084, + [2087] = 2074, + [2088] = 2074, [2089] = 2089, - [2090] = 2090, + [2090] = 2073, [2091] = 2073, - [2092] = 2074, - [2093] = 2084, - [2094] = 2086, - [2095] = 2095, - [2096] = 2077, - [2097] = 2080, - [2098] = 2084, - [2099] = 2077, - [2100] = 2084, - [2101] = 2074, + [2092] = 2073, + [2093] = 2093, + [2094] = 2094, + [2095] = 2094, + [2096] = 2096, + [2097] = 2097, + [2098] = 2098, + [2099] = 2099, + [2100] = 2098, + [2101] = 2101, [2102] = 2102, - [2103] = 2103, - [2104] = 2104, - [2105] = 2080, - [2106] = 2084, - [2107] = 2084, - [2108] = 2073, - [2109] = 2077, - [2110] = 2110, + [2103] = 2094, + [2104] = 2096, + [2105] = 2105, + [2106] = 2099, + [2107] = 2099, + [2108] = 2108, + [2109] = 2101, + [2110] = 2098, [2111] = 2111, - [2112] = 2080, - [2113] = 2113, - [2114] = 2074, - [2115] = 2086, - [2116] = 2086, - [2117] = 2077, - [2118] = 2118, - [2119] = 2119, + [2112] = 2112, + [2113] = 2094, + [2114] = 2099, + [2115] = 2102, + [2116] = 2096, + [2117] = 2117, + [2118] = 2102, + [2119] = 2102, [2120] = 2120, [2121] = 2121, - [2122] = 2119, - [2123] = 2121, - [2124] = 2119, - [2125] = 2125, - [2126] = 2035, - [2127] = 1269, - [2128] = 1004, - [2129] = 2119, - [2130] = 2121, - [2131] = 1034, - [2132] = 2121, - [2133] = 1008, - [2134] = 1026, - [2135] = 2135, + [2122] = 2098, + [2123] = 2123, + [2124] = 2124, + [2125] = 2101, + [2126] = 2098, + [2127] = 2127, + [2128] = 2101, + [2129] = 2102, + [2130] = 2130, + [2131] = 2098, + [2132] = 2132, + [2133] = 2102, + [2134] = 2134, + [2135] = 2098, [2136] = 2136, - [2137] = 2137, - [2138] = 2138, + [2137] = 2102, + [2138] = 2096, [2139] = 2139, [2140] = 2140, - [2141] = 2141, - [2142] = 2142, - [2143] = 2143, - [2144] = 2144, + [2141] = 2140, + [2142] = 2054, + [2143] = 2140, + [2144] = 1044, [2145] = 2145, - [2146] = 2146, - [2147] = 2135, - [2148] = 2137, - [2149] = 2149, - [2150] = 2137, - [2151] = 2151, - [2152] = 2152, + [2146] = 2145, + [2147] = 2140, + [2148] = 2145, + [2149] = 1051, + [2150] = 2145, + [2151] = 1028, + [2152] = 1298, [2153] = 2153, [2154] = 2154, - [2155] = 2136, + [2155] = 1031, [2156] = 2156, - [2157] = 2151, - [2158] = 2138, - [2159] = 2136, + [2157] = 2157, + [2158] = 2158, + [2159] = 2159, [2160] = 2160, [2161] = 2161, - [2162] = 2135, - [2163] = 2160, - [2164] = 2135, - [2165] = 2151, + [2162] = 2162, + [2163] = 2163, + [2164] = 2164, + [2165] = 2165, [2166] = 2166, - [2167] = 2160, - [2168] = 2137, - [2169] = 2160, - [2170] = 2151, + [2167] = 2163, + [2168] = 2164, + [2169] = 2169, + [2170] = 2157, [2171] = 2171, [2172] = 2172, - [2173] = 2160, + [2173] = 2173, [2174] = 2174, [2175] = 2175, - [2176] = 2176, - [2177] = 2138, + [2176] = 2157, + [2177] = 2162, [2178] = 2178, - [2179] = 2175, + [2179] = 2179, [2180] = 2180, [2181] = 2181, [2182] = 2182, - [2183] = 2138, - [2184] = 2161, + [2183] = 2183, + [2184] = 2184, [2185] = 2185, [2186] = 2186, - [2187] = 2136, - [2188] = 2136, - [2189] = 2189, - [2190] = 2137, - [2191] = 2151, + [2187] = 2157, + [2188] = 2158, + [2189] = 2164, + [2190] = 2163, + [2191] = 2191, [2192] = 2192, - [2193] = 2193, - [2194] = 1327, - [2195] = 2195, - [2196] = 2196, - [2197] = 502, - [2198] = 2198, - [2199] = 2199, - [2200] = 2200, + [2193] = 2181, + [2194] = 2162, + [2195] = 2169, + [2196] = 2169, + [2197] = 2169, + [2198] = 2162, + [2199] = 2181, + [2200] = 2161, [2201] = 2201, - [2202] = 2198, - [2203] = 2201, + [2202] = 2164, + [2203] = 2163, [2204] = 2204, - [2205] = 2205, - [2206] = 501, + [2205] = 2163, + [2206] = 2181, [2207] = 2207, - [2208] = 2201, + [2208] = 2169, [2209] = 2209, - [2210] = 2198, - [2211] = 2211, - [2212] = 2201, + [2210] = 2210, + [2211] = 2181, + [2212] = 2164, [2213] = 2213, [2214] = 2214, [2215] = 2215, [2216] = 2216, [2217] = 2216, - [2218] = 2215, + [2218] = 2218, [2219] = 2219, - [2220] = 2216, - [2221] = 2219, + [2220] = 2220, + [2221] = 2221, [2222] = 2222, - [2223] = 2215, - [2224] = 2222, - [2225] = 2215, - [2226] = 2222, - [2227] = 2216, - [2228] = 2222, - [2229] = 2219, + [2223] = 534, + [2224] = 2224, + [2225] = 2214, + [2226] = 2226, + [2227] = 530, + [2228] = 2228, + [2229] = 2216, [2230] = 2214, - [2231] = 2231, - [2232] = 2232, - [2233] = 2219, + [2231] = 2216, + [2232] = 1354, + [2233] = 2233, [2234] = 2234, - [2235] = 2214, - [2236] = 2214, + [2235] = 2235, + [2236] = 2236, [2237] = 2237, - [2238] = 2238, + [2238] = 2236, [2239] = 2239, - [2240] = 2240, + [2240] = 2239, [2241] = 2241, - [2242] = 2242, - [2243] = 2243, - [2244] = 2244, + [2242] = 2239, + [2243] = 2241, + [2244] = 2234, [2245] = 2245, - [2246] = 2246, - [2247] = 2245, - [2248] = 2238, - [2249] = 2242, - [2250] = 2238, + [2246] = 2234, + [2247] = 2236, + [2248] = 2237, + [2249] = 2234, + [2250] = 2241, [2251] = 2241, - [2252] = 2252, - [2253] = 2252, - [2254] = 2241, - [2255] = 2240, - [2256] = 2245, - [2257] = 2257, - [2258] = 2240, - [2259] = 2241, - [2260] = 2252, - [2261] = 2238, - [2262] = 2245, - [2263] = 2239, - [2264] = 2252, - [2265] = 2242, - [2266] = 2239, - [2267] = 2242, - [2268] = 2240, - [2269] = 2239, + [2252] = 2236, + [2253] = 2253, + [2254] = 2239, + [2255] = 2255, + [2256] = 2237, + [2257] = 2237, + [2258] = 2258, + [2259] = 2259, + [2260] = 2258, + [2261] = 2261, + [2262] = 2262, + [2263] = 2259, + [2264] = 2264, + [2265] = 2265, + [2266] = 2266, + [2267] = 2266, + [2268] = 2268, + [2269] = 2259, [2270] = 2270, - [2271] = 2022, + [2271] = 2258, [2272] = 2272, - [2273] = 2273, - [2274] = 2009, + [2273] = 2266, + [2274] = 2264, [2275] = 2275, - [2276] = 2008, - [2277] = 2277, + [2276] = 2270, + [2277] = 2264, [2278] = 2278, - [2279] = 2279, - [2280] = 2278, - [2281] = 2281, + [2279] = 2261, + [2280] = 2270, + [2281] = 2258, [2282] = 2282, - [2283] = 2036, - [2284] = 1996, - [2285] = 2285, - [2286] = 2286, - [2287] = 2026, - [2288] = 2282, - [2289] = 2289, - [2290] = 2290, - [2291] = 2289, - [2292] = 2290, - [2293] = 2272, - [2294] = 1985, - [2295] = 2275, - [2296] = 2030, + [2283] = 2259, + [2284] = 2270, + [2285] = 2261, + [2286] = 2278, + [2287] = 2278, + [2288] = 2264, + [2289] = 2261, + [2290] = 2266, + [2291] = 2278, + [2292] = 2292, + [2293] = 2293, + [2294] = 2002, + [2295] = 2295, + [2296] = 2035, [2297] = 2297, [2298] = 2298, [2299] = 2299, - [2300] = 2300, - [2301] = 2300, + [2300] = 2032, + [2301] = 2301, [2302] = 2302, [2303] = 2303, [2304] = 2304, - [2305] = 2300, + [2305] = 2305, [2306] = 2306, - [2307] = 2307, + [2307] = 2298, [2308] = 2308, - [2309] = 2309, - [2310] = 2299, - [2311] = 2311, - [2312] = 2312, - [2313] = 2313, - [2314] = 2314, - [2315] = 2309, - [2316] = 2300, - [2317] = 881, - [2318] = 2318, - [2319] = 2303, - [2320] = 2042, - [2321] = 2309, - [2322] = 2303, + [2309] = 2305, + [2310] = 2042, + [2311] = 2302, + [2312] = 2297, + [2313] = 2299, + [2314] = 2044, + [2315] = 2058, + [2316] = 2302, + [2317] = 2303, + [2318] = 2295, + [2319] = 2319, + [2320] = 2320, + [2321] = 1992, + [2322] = 2001, [2323] = 2323, - [2324] = 2324, + [2324] = 1958, [2325] = 2325, - [2326] = 2326, + [2326] = 1930, [2327] = 2327, - [2328] = 2328, + [2328] = 1965, [2329] = 2329, - [2330] = 2323, - [2331] = 2331, - [2332] = 2323, - [2333] = 2299, - [2334] = 2313, - [2335] = 2313, - [2336] = 2312, - [2337] = 2299, - [2338] = 878, + [2330] = 2330, + [2331] = 2327, + [2332] = 2330, + [2333] = 2333, + [2334] = 2334, + [2335] = 2335, + [2336] = 2327, + [2337] = 2337, + [2338] = 2338, [2339] = 2339, - [2340] = 2309, - [2341] = 2024, - [2342] = 111, - [2343] = 2343, - [2344] = 2344, - [2345] = 2303, - [2346] = 97, - [2347] = 2347, - [2348] = 2348, + [2340] = 2047, + [2341] = 2341, + [2342] = 2333, + [2343] = 2333, + [2344] = 2327, + [2345] = 2345, + [2346] = 2330, + [2347] = 2327, + [2348] = 2330, [2349] = 2349, - [2350] = 2313, - [2351] = 2300, - [2352] = 2352, - [2353] = 2323, - [2354] = 2299, - [2355] = 2355, - [2356] = 2356, - [2357] = 2309, - [2358] = 2303, - [2359] = 2300, - [2360] = 2309, - [2361] = 2312, - [2362] = 2299, - [2363] = 2300, - [2364] = 885, - [2365] = 2303, - [2366] = 2299, - [2367] = 2309, - [2368] = 2303, + [2350] = 100, + [2351] = 2351, + [2352] = 2333, + [2353] = 2353, + [2354] = 2354, + [2355] = 2349, + [2356] = 2333, + [2357] = 88, + [2358] = 2329, + [2359] = 2327, + [2360] = 2360, + [2361] = 2354, + [2362] = 2329, + [2363] = 2363, + [2364] = 2327, + [2365] = 2354, + [2366] = 2329, + [2367] = 2354, + [2368] = 2330, [2369] = 2369, [2370] = 2370, [2371] = 2371, - [2372] = 2372, - [2373] = 2372, + [2372] = 2329, + [2373] = 2373, [2374] = 2374, [2375] = 2375, - [2376] = 2374, - [2377] = 2372, - [2378] = 2374, - [2379] = 2374, - [2380] = 2380, - [2381] = 2381, + [2376] = 2333, + [2377] = 2377, + [2378] = 2378, + [2379] = 2330, + [2380] = 2349, + [2381] = 2349, [2382] = 2382, - [2383] = 2383, - [2384] = 2384, + [2383] = 2330, + [2384] = 2333, [2385] = 2385, - [2386] = 2386, - [2387] = 2386, - [2388] = 2388, - [2389] = 2389, + [2386] = 2329, + [2387] = 2387, + [2388] = 2063, + [2389] = 2329, [2390] = 2390, - [2391] = 2386, - [2392] = 2372, - [2393] = 1269, + [2391] = 2391, + [2392] = 2392, + [2393] = 1298, [2394] = 2394, - [2395] = 2372, - [2396] = 2372, + [2395] = 2395, + [2396] = 2396, [2397] = 2397, - [2398] = 2386, + [2398] = 2398, [2399] = 2399, [2400] = 2400, [2401] = 2401, - [2402] = 2372, - [2403] = 2403, + [2402] = 2402, + [2403] = 2398, [2404] = 2404, [2405] = 2405, [2406] = 2406, - [2407] = 2407, - [2408] = 2049, - [2409] = 2409, - [2410] = 2102, + [2407] = 2404, + [2408] = 2398, + [2409] = 2404, + [2410] = 2391, [2411] = 2411, - [2412] = 2412, - [2413] = 2083, - [2414] = 2411, - [2415] = 2415, - [2416] = 2416, + [2412] = 2391, + [2413] = 2413, + [2414] = 2398, + [2415] = 2391, + [2416] = 2398, [2417] = 2417, - [2418] = 2416, - [2419] = 2417, - [2420] = 2118, + [2418] = 2398, + [2419] = 2419, + [2420] = 2420, [2421] = 2421, - [2422] = 2054, - [2423] = 2113, + [2422] = 2398, + [2423] = 2423, [2424] = 2424, - [2425] = 2071, - [2426] = 2051, + [2425] = 2404, + [2426] = 2117, [2427] = 2427, [2428] = 2428, - [2429] = 2043, - [2430] = 2068, - [2431] = 2411, - [2432] = 2076, + [2429] = 2108, + [2430] = 2430, + [2431] = 2431, + [2432] = 2066, [2433] = 2433, - [2434] = 2069, - [2435] = 2095, - [2436] = 2424, - [2437] = 2411, - [2438] = 2438, - [2439] = 2439, + [2434] = 2097, + [2435] = 2121, + [2436] = 2436, + [2437] = 2081, + [2438] = 2076, + [2439] = 2084, [2440] = 2440, [2441] = 2441, - [2442] = 2416, - [2443] = 2072, - [2444] = 2444, + [2442] = 2442, + [2443] = 2443, + [2444] = 2440, [2445] = 2445, - [2446] = 2424, - [2447] = 2417, - [2448] = 2417, - [2449] = 2063, - [2450] = 2090, - [2451] = 2089, - [2452] = 2087, - [2453] = 2103, - [2454] = 2416, - [2455] = 2411, - [2456] = 2411, - [2457] = 2424, - [2458] = 2066, - [2459] = 2417, + [2446] = 2433, + [2447] = 2447, + [2448] = 2448, + [2449] = 2124, + [2450] = 2105, + [2451] = 2123, + [2452] = 2136, + [2453] = 2127, + [2454] = 2083, + [2455] = 2455, + [2456] = 2430, + [2457] = 2112, + [2458] = 2458, + [2459] = 2139, [2460] = 2460, - [2461] = 2416, + [2461] = 2461, [2462] = 2462, [2463] = 2463, [2464] = 2464, - [2465] = 2424, - [2466] = 2466, - [2467] = 2467, - [2468] = 2047, - [2469] = 2460, - [2470] = 2470, - [2471] = 2471, - [2472] = 2472, - [2473] = 2472, - [2474] = 2474, + [2465] = 2433, + [2466] = 2430, + [2467] = 2070, + [2468] = 2067, + [2469] = 2442, + [2470] = 2433, + [2471] = 2443, + [2472] = 2441, + [2473] = 2440, + [2474] = 2078, [2475] = 2475, - [2476] = 2476, - [2477] = 2474, - [2478] = 2478, - [2479] = 2479, - [2480] = 2480, + [2476] = 2068, + [2477] = 2441, + [2478] = 2443, + [2479] = 2441, + [2480] = 2443, [2481] = 2481, [2482] = 2482, - [2483] = 2483, - [2484] = 2484, - [2485] = 2485, + [2483] = 2433, + [2484] = 2089, + [2485] = 2443, [2486] = 2486, [2487] = 2487, - [2488] = 2243, - [2489] = 2489, - [2490] = 2476, - [2491] = 2475, - [2492] = 2492, + [2488] = 2430, + [2489] = 2430, + [2490] = 2490, + [2491] = 2430, + [2492] = 2441, [2493] = 2493, [2494] = 2494, [2495] = 2495, [2496] = 2496, - [2497] = 2470, + [2497] = 2497, [2498] = 2498, - [2499] = 2479, + [2499] = 2499, [2500] = 2500, [2501] = 2501, [2502] = 2502, @@ -5887,482 +5901,482 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2504] = 2504, [2505] = 2505, [2506] = 2506, - [2507] = 2480, - [2508] = 2481, + [2507] = 2507, + [2508] = 2508, [2509] = 2509, - [2510] = 2471, - [2511] = 2475, - [2512] = 2512, - [2513] = 2470, + [2510] = 2510, + [2511] = 2500, + [2512] = 2501, + [2513] = 2504, [2514] = 2514, [2515] = 2515, [2516] = 2516, [2517] = 2517, - [2518] = 2518, + [2518] = 2510, [2519] = 2519, [2520] = 2520, [2521] = 2521, - [2522] = 2482, + [2522] = 2522, [2523] = 2523, [2524] = 2524, - [2525] = 2525, + [2525] = 2524, [2526] = 2526, - [2527] = 2527, - [2528] = 2484, + [2527] = 2516, + [2528] = 2514, [2529] = 2529, [2530] = 2530, [2531] = 2531, - [2532] = 2532, - [2533] = 2533, - [2534] = 2475, + [2532] = 2526, + [2533] = 2523, + [2534] = 2524, [2535] = 2535, [2536] = 2536, - [2537] = 2500, - [2538] = 2487, + [2537] = 2519, + [2538] = 2538, [2539] = 2539, - [2540] = 2536, - [2541] = 2526, - [2542] = 2524, - [2543] = 2523, - [2544] = 2521, - [2545] = 2535, - [2546] = 2520, - [2547] = 2547, - [2548] = 2532, - [2549] = 2531, - [2550] = 2489, - [2551] = 2529, - [2552] = 2552, - [2553] = 2518, - [2554] = 2493, + [2540] = 2540, + [2541] = 2541, + [2542] = 2516, + [2543] = 2514, + [2544] = 2544, + [2545] = 2545, + [2546] = 2508, + [2547] = 2510, + [2548] = 2548, + [2549] = 2520, + [2550] = 2550, + [2551] = 2497, + [2552] = 2544, + [2553] = 2504, + [2554] = 2554, [2555] = 2555, - [2556] = 2527, - [2557] = 2525, - [2558] = 2516, - [2559] = 2515, - [2560] = 2494, - [2561] = 2495, - [2562] = 2514, - [2563] = 2496, - [2564] = 2494, - [2565] = 2565, - [2566] = 2566, - [2567] = 2498, - [2568] = 2568, - [2569] = 2569, - [2570] = 2517, - [2571] = 2519, - [2572] = 2475, - [2573] = 2471, - [2574] = 2500, - [2575] = 2471, - [2576] = 2471, - [2577] = 2506, - [2578] = 2506, - [2579] = 2500, - [2580] = 2471, - [2581] = 2500, - [2582] = 2472, - [2583] = 2471, - [2584] = 2501, - [2585] = 2519, - [2586] = 2520, - [2587] = 2521, - [2588] = 2523, - [2589] = 2498, - [2590] = 2496, - [2591] = 2495, - [2592] = 2529, - [2593] = 2527, - [2594] = 2525, - [2595] = 2493, + [2556] = 2556, + [2557] = 2497, + [2558] = 2509, + [2559] = 2502, + [2560] = 2508, + [2561] = 2502, + [2562] = 2501, + [2563] = 2500, + [2564] = 2497, + [2565] = 2556, + [2566] = 2539, + [2567] = 2544, + [2568] = 2536, + [2569] = 2539, + [2570] = 2570, + [2571] = 2536, + [2572] = 2572, + [2573] = 2573, + [2574] = 2573, + [2575] = 2498, + [2576] = 2555, + [2577] = 2577, + [2578] = 2531, + [2579] = 2496, + [2580] = 2580, + [2581] = 2581, + [2582] = 2554, + [2583] = 2570, + [2584] = 2584, + [2585] = 2516, + [2586] = 2514, + [2587] = 2587, + [2588] = 2530, + [2589] = 2541, + [2590] = 2508, + [2591] = 2529, + [2592] = 2495, + [2593] = 2530, + [2594] = 2495, + [2595] = 2530, [2596] = 2514, - [2597] = 2515, + [2597] = 2597, [2598] = 2516, - [2599] = 2516, - [2600] = 2515, - [2601] = 2525, - [2602] = 2527, - [2603] = 2529, - [2604] = 2471, - [2605] = 2489, - [2606] = 2496, - [2607] = 2495, - [2608] = 2494, - [2609] = 2500, - [2610] = 2531, - [2611] = 2532, - [2612] = 2484, - [2613] = 2535, - [2614] = 2482, - [2615] = 2504, - [2616] = 2536, - [2617] = 2487, - [2618] = 2500, - [2619] = 2472, - [2620] = 2501, - [2621] = 2519, - [2622] = 2520, - [2623] = 2521, - [2624] = 2523, - [2625] = 2535, - [2626] = 2529, - [2627] = 2527, - [2628] = 2526, - [2629] = 2524, - [2630] = 2523, - [2631] = 2521, - [2632] = 2520, - [2633] = 2519, - [2634] = 2525, - [2635] = 2484, - [2636] = 2518, - [2637] = 2503, - [2638] = 2517, - [2639] = 2516, - [2640] = 2482, - [2641] = 2515, - [2642] = 2471, - [2643] = 2506, - [2644] = 2496, - [2645] = 2495, - [2646] = 2494, + [2599] = 2550, + [2600] = 2520, + [2601] = 2601, + [2602] = 2602, + [2603] = 2520, + [2604] = 2573, + [2605] = 2605, + [2606] = 2509, + [2607] = 2607, + [2608] = 2531, + [2609] = 2609, + [2610] = 2507, + [2611] = 2500, + [2612] = 2612, + [2613] = 2501, + [2614] = 2614, + [2615] = 2503, + [2616] = 2616, + [2617] = 2617, + [2618] = 2618, + [2619] = 2504, + [2620] = 2620, + [2621] = 2580, + [2622] = 2577, + [2623] = 2536, + [2624] = 2539, + [2625] = 2519, + [2626] = 2508, + [2627] = 2544, + [2628] = 2497, + [2629] = 2502, + [2630] = 2630, + [2631] = 2631, + [2632] = 2510, + [2633] = 2633, + [2634] = 2634, + [2635] = 2635, + [2636] = 2631, + [2637] = 2522, + [2638] = 2573, + [2639] = 2639, + [2640] = 2510, + [2641] = 2550, + [2642] = 2517, + [2643] = 2524, + [2644] = 2502, + [2645] = 2645, + [2646] = 2554, [2647] = 2504, - [2648] = 2503, + [2648] = 2555, [2649] = 2501, - [2650] = 2650, - [2651] = 2487, - [2652] = 2500, - [2653] = 2484, - [2654] = 2482, - [2655] = 2655, + [2650] = 2573, + [2651] = 2556, + [2652] = 2639, + [2653] = 2496, + [2654] = 2505, + [2655] = 2602, [2656] = 2656, - [2657] = 2479, - [2658] = 2472, - [2659] = 2501, - [2660] = 2485, - [2661] = 2519, - [2662] = 2520, - [2663] = 2521, - [2664] = 2523, - [2665] = 2492, - [2666] = 2535, - [2667] = 2529, - [2668] = 2472, - [2669] = 2527, - [2670] = 2481, - [2671] = 2474, - [2672] = 2480, - [2673] = 2525, - [2674] = 2516, - [2675] = 2515, - [2676] = 2471, - [2677] = 2506, - [2678] = 2479, - [2679] = 2496, - [2680] = 2495, - [2681] = 2494, - [2682] = 2487, - [2683] = 2500, - [2684] = 2476, - [2685] = 2484, - [2686] = 2476, - [2687] = 2501, - [2688] = 2688, - [2689] = 2482, - [2690] = 2485, - [2691] = 2472, - [2692] = 2479, - [2693] = 2479, - [2694] = 2474, - [2695] = 2472, - [2696] = 2485, - [2697] = 2501, - [2698] = 2503, - [2699] = 2504, - [2700] = 2474, - [2701] = 2480, - [2702] = 2481, - [2703] = 2518, - [2704] = 2704, - [2705] = 2519, - [2706] = 2520, - [2707] = 2521, - [2708] = 2523, - [2709] = 2524, - [2710] = 2526, - [2711] = 2711, - [2712] = 2712, - [2713] = 80, - [2714] = 2535, - [2715] = 2532, - [2716] = 2482, - [2717] = 2531, - [2718] = 2718, - [2719] = 2529, - [2720] = 2527, - [2721] = 2484, - [2722] = 2525, - [2723] = 2723, - [2724] = 2516, - [2725] = 2515, - [2726] = 2514, - [2727] = 2470, - [2728] = 2500, - [2729] = 2487, - [2730] = 1327, - [2731] = 2489, - [2732] = 2493, - [2733] = 2494, - [2734] = 2495, - [2735] = 2492, - [2736] = 2496, - [2737] = 2737, - [2738] = 2498, - [2739] = 2739, - [2740] = 2740, - [2741] = 2506, - [2742] = 2742, - [2743] = 2743, - [2744] = 2744, - [2745] = 118, + [2657] = 2657, + [2658] = 2556, + [2659] = 2555, + [2660] = 2554, + [2661] = 2550, + [2662] = 2516, + [2663] = 2530, + [2664] = 2587, + [2665] = 2498, + [2666] = 2505, + [2667] = 2587, + [2668] = 2531, + [2669] = 2524, + [2670] = 2670, + [2671] = 2633, + [2672] = 2550, + [2673] = 2554, + [2674] = 2555, + [2675] = 2526, + [2676] = 2509, + [2677] = 2503, + [2678] = 2507, + [2679] = 2520, + [2680] = 2657, + [2681] = 2556, + [2682] = 2570, + [2683] = 2523, + [2684] = 2508, + [2685] = 2541, + [2686] = 2520, + [2687] = 2507, + [2688] = 2503, + [2689] = 2656, + [2690] = 2587, + [2691] = 2541, + [2692] = 2657, + [2693] = 2550, + [2694] = 2554, + [2695] = 2555, + [2696] = 2529, + [2697] = 2556, + [2698] = 2657, + [2699] = 2508, + [2700] = 2531, + [2701] = 2656, + [2702] = 2509, + [2703] = 2265, + [2704] = 2656, + [2705] = 2514, + [2706] = 2501, + [2707] = 2522, + [2708] = 2631, + [2709] = 2530, + [2710] = 2531, + [2711] = 2531, + [2712] = 2536, + [2713] = 2539, + [2714] = 2501, + [2715] = 2519, + [2716] = 2531, + [2717] = 2500, + [2718] = 2501, + [2719] = 2502, + [2720] = 2497, + [2721] = 2544, + [2722] = 2544, + [2723] = 2531, + [2724] = 2524, + [2725] = 2539, + [2726] = 2497, + [2727] = 2536, + [2728] = 2501, + [2729] = 2633, + [2730] = 2577, + [2731] = 2502, + [2732] = 2526, + [2733] = 2523, + [2734] = 2580, + [2735] = 2508, + [2736] = 2520, + [2737] = 2531, + [2738] = 2738, + [2739] = 2517, + [2740] = 2550, + [2741] = 2556, + [2742] = 2639, + [2743] = 1354, + [2744] = 2555, + [2745] = 85, [2746] = 2746, - [2747] = 107, - [2748] = 1023, - [2749] = 2749, - [2750] = 2750, - [2751] = 2751, - [2752] = 99, - [2753] = 96, - [2754] = 124, - [2755] = 2755, - [2756] = 81, - [2757] = 2757, - [2758] = 2758, + [2747] = 2510, + [2748] = 2522, + [2749] = 2554, + [2750] = 2495, + [2751] = 2631, + [2752] = 2504, + [2753] = 2510, + [2754] = 2580, + [2755] = 2544, + [2756] = 2501, + [2757] = 2500, + [2758] = 2536, [2759] = 2759, - [2760] = 2760, - [2761] = 2761, - [2762] = 2762, - [2763] = 2763, - [2764] = 2764, - [2765] = 101, - [2766] = 2766, - [2767] = 2767, - [2768] = 2760, - [2769] = 2760, + [2760] = 2498, + [2761] = 2496, + [2762] = 2602, + [2763] = 2577, + [2764] = 2539, + [2765] = 2504, + [2766] = 2516, + [2767] = 2514, + [2768] = 2768, + [2769] = 2530, [2770] = 2770, - [2771] = 2746, - [2772] = 2760, - [2773] = 2760, - [2774] = 2774, + [2771] = 2771, + [2772] = 117, + [2773] = 2773, + [2774] = 123, [2775] = 2775, - [2776] = 2757, - [2777] = 102, - [2778] = 103, - [2779] = 104, - [2780] = 2762, - [2781] = 2760, - [2782] = 98, - [2783] = 2755, - [2784] = 114, - [2785] = 2749, - [2786] = 2750, - [2787] = 2774, - [2788] = 2775, - [2789] = 117, - [2790] = 2762, - [2791] = 2760, - [2792] = 120, - [2793] = 2775, - [2794] = 121, - [2795] = 82, - [2796] = 122, + [2776] = 2776, + [2777] = 2777, + [2778] = 154, + [2779] = 2779, + [2780] = 111, + [2781] = 110, + [2782] = 108, + [2783] = 103, + [2784] = 101, + [2785] = 147, + [2786] = 2786, + [2787] = 95, + [2788] = 2788, + [2789] = 94, + [2790] = 93, + [2791] = 91, + [2792] = 119, + [2793] = 2793, + [2794] = 2794, + [2795] = 106, + [2796] = 2779, [2797] = 2797, - [2798] = 2757, - [2799] = 2755, - [2800] = 115, - [2801] = 149, - [2802] = 2751, - [2803] = 2749, - [2804] = 2804, - [2805] = 123, - [2806] = 2806, - [2807] = 2807, - [2808] = 2763, - [2809] = 2809, - [2810] = 2810, - [2811] = 2811, + [2798] = 120, + [2799] = 118, + [2800] = 2800, + [2801] = 2801, + [2802] = 2802, + [2803] = 2803, + [2804] = 2800, + [2805] = 2805, + [2806] = 2797, + [2807] = 2801, + [2808] = 2808, + [2809] = 116, + [2810] = 1033, + [2811] = 2771, [2812] = 2812, - [2813] = 2813, - [2814] = 157, - [2815] = 2751, - [2816] = 2816, - [2817] = 2817, + [2813] = 2812, + [2814] = 2812, + [2815] = 2812, + [2816] = 2802, + [2817] = 2805, [2818] = 2818, - [2819] = 2819, + [2819] = 2812, [2820] = 2820, - [2821] = 2821, - [2822] = 2822, - [2823] = 2823, - [2824] = 2824, - [2825] = 2825, - [2826] = 2774, - [2827] = 2761, - [2828] = 2775, - [2829] = 2829, - [2830] = 2830, - [2831] = 2763, - [2832] = 2762, - [2833] = 2760, - [2834] = 2834, - [2835] = 2757, - [2836] = 2804, - [2837] = 2755, - [2838] = 2751, - [2839] = 2749, - [2840] = 2774, - [2841] = 2770, - [2842] = 2746, - [2843] = 2825, - [2844] = 2804, - [2845] = 2806, - [2846] = 2761, - [2847] = 2807, - [2848] = 2809, - [2849] = 2810, - [2850] = 2811, - [2851] = 2812, - [2852] = 2813, - [2853] = 2816, - [2854] = 2763, - [2855] = 2817, + [2821] = 2776, + [2822] = 2818, + [2823] = 2771, + [2824] = 2812, + [2825] = 2802, + [2826] = 2826, + [2827] = 2805, + [2828] = 98, + [2829] = 2818, + [2830] = 2812, + [2831] = 97, + [2832] = 2832, + [2833] = 2820, + [2834] = 2770, + [2835] = 2776, + [2836] = 2836, + [2837] = 2837, + [2838] = 2838, + [2839] = 2839, + [2840] = 2840, + [2841] = 2841, + [2842] = 2842, + [2843] = 2843, + [2844] = 2844, + [2845] = 2845, + [2846] = 2846, + [2847] = 2847, + [2848] = 2848, + [2849] = 2849, + [2850] = 2808, + [2851] = 2803, + [2852] = 2788, + [2853] = 2775, + [2854] = 2777, + [2855] = 89, [2856] = 2856, - [2857] = 2761, - [2858] = 2818, - [2859] = 2819, - [2860] = 2820, - [2861] = 2861, - [2862] = 2821, - [2863] = 2822, - [2864] = 2823, - [2865] = 2824, - [2866] = 2825, - [2867] = 2774, - [2868] = 2775, - [2869] = 2869, + [2857] = 2838, + [2858] = 2802, + [2859] = 92, + [2860] = 2860, + [2861] = 2805, + [2862] = 2818, + [2863] = 2812, + [2864] = 2856, + [2865] = 2832, + [2866] = 2820, + [2867] = 2770, + [2868] = 2776, + [2869] = 2839, [2870] = 2870, - [2871] = 2758, - [2872] = 2872, - [2873] = 2806, - [2874] = 2762, - [2875] = 2760, - [2876] = 2876, - [2877] = 2797, - [2878] = 2807, - [2879] = 2809, - [2880] = 2757, - [2881] = 2755, - [2882] = 2751, - [2883] = 2749, - [2884] = 2824, - [2885] = 2885, - [2886] = 2761, - [2887] = 2810, - [2888] = 2888, - [2889] = 2797, - [2890] = 2770, - [2891] = 2823, - [2892] = 2822, - [2893] = 2821, - [2894] = 2820, - [2895] = 2804, - [2896] = 2806, - [2897] = 2807, - [2898] = 2809, - [2899] = 2763, - [2900] = 2810, - [2901] = 2811, - [2902] = 2797, - [2903] = 2812, - [2904] = 2813, - [2905] = 2816, - [2906] = 2817, - [2907] = 2818, - [2908] = 2819, - [2909] = 2820, - [2910] = 2821, - [2911] = 2822, - [2912] = 2823, - [2913] = 2819, - [2914] = 2824, - [2915] = 2825, - [2916] = 2774, - [2917] = 2750, - [2918] = 2918, - [2919] = 2775, - [2920] = 2761, - [2921] = 2921, + [2871] = 2839, + [2872] = 2840, + [2873] = 2841, + [2874] = 2842, + [2875] = 2771, + [2876] = 2843, + [2877] = 2844, + [2878] = 2845, + [2879] = 2846, + [2880] = 2847, + [2881] = 2848, + [2882] = 2849, + [2883] = 2797, + [2884] = 2808, + [2885] = 2803, + [2886] = 2788, + [2887] = 2775, + [2888] = 2777, + [2889] = 2856, + [2890] = 2838, + [2891] = 2802, + [2892] = 2892, + [2893] = 2826, + [2894] = 2805, + [2895] = 2826, + [2896] = 2832, + [2897] = 2840, + [2898] = 2841, + [2899] = 2842, + [2900] = 2843, + [2901] = 2818, + [2902] = 2812, + [2903] = 2903, + [2904] = 2832, + [2905] = 2801, + [2906] = 2906, + [2907] = 2800, + [2908] = 2820, + [2909] = 2770, + [2910] = 2776, + [2911] = 2911, + [2912] = 2912, + [2913] = 2913, + [2914] = 2770, + [2915] = 2915, + [2916] = 2832, + [2917] = 2917, + [2918] = 2800, + [2919] = 2919, + [2920] = 2920, + [2921] = 2837, [2922] = 2922, - [2923] = 2923, - [2924] = 108, - [2925] = 2925, - [2926] = 2926, - [2927] = 2763, - [2928] = 2928, - [2929] = 2929, - [2930] = 2746, - [2931] = 2770, - [2932] = 2818, - [2933] = 2762, - [2934] = 2760, - [2935] = 2817, - [2936] = 2816, - [2937] = 2813, - [2938] = 2757, - [2939] = 2939, - [2940] = 2940, - [2941] = 2812, - [2942] = 2755, - [2943] = 2943, - [2944] = 2751, - [2945] = 2749, - [2946] = 2811, - [2947] = 2761, - [2948] = 2761, - [2949] = 2770, - [2950] = 2761, - [2951] = 2750, - [2952] = 2770, - [2953] = 2761, + [2923] = 2839, + [2924] = 2840, + [2925] = 2779, + [2926] = 2841, + [2927] = 2842, + [2928] = 2843, + [2929] = 2826, + [2930] = 2770, + [2931] = 2771, + [2932] = 2820, + [2933] = 2844, + [2934] = 2845, + [2935] = 2846, + [2936] = 2936, + [2937] = 2937, + [2938] = 2847, + [2939] = 2848, + [2940] = 2849, + [2941] = 2808, + [2942] = 2803, + [2943] = 2797, + [2944] = 2788, + [2945] = 2775, + [2946] = 2777, + [2947] = 2771, + [2948] = 2948, + [2949] = 2949, + [2950] = 2950, + [2951] = 2797, + [2952] = 2771, + [2953] = 2856, [2954] = 2797, - [2955] = 2797, + [2955] = 2838, [2956] = 2956, - [2957] = 2957, - [2958] = 2958, - [2959] = 2959, + [2957] = 2802, + [2958] = 2805, + [2959] = 2779, [2960] = 2960, [2961] = 2961, [2962] = 2962, - [2963] = 2963, + [2963] = 2844, [2964] = 2964, - [2965] = 2965, - [2966] = 2966, - [2967] = 2967, - [2968] = 2968, - [2969] = 2969, - [2970] = 2970, - [2971] = 2971, - [2972] = 2972, - [2973] = 2973, - [2974] = 2974, - [2975] = 2975, - [2976] = 2976, - [2977] = 2977, - [2978] = 2978, - [2979] = 2979, - [2980] = 2965, - [2981] = 2973, - [2982] = 2982, + [2965] = 2818, + [2966] = 2812, + [2967] = 2845, + [2968] = 2846, + [2969] = 2847, + [2970] = 2832, + [2971] = 2820, + [2972] = 2776, + [2973] = 2848, + [2974] = 2849, + [2975] = 2771, + [2976] = 2800, + [2977] = 2801, + [2978] = 2800, + [2979] = 2771, + [2980] = 2771, + [2981] = 2826, + [2982] = 2826, [2983] = 2983, [2984] = 2984, [2985] = 2985, @@ -6372,475 +6386,502 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2989] = 2989, [2990] = 2990, [2991] = 2991, - [2992] = 2982, + [2992] = 2992, [2993] = 2993, [2994] = 2994, [2995] = 2995, - [2996] = 2960, + [2996] = 2996, [2997] = 2997, [2998] = 2998, [2999] = 2999, [3000] = 3000, - [3001] = 2974, + [3001] = 3001, [3002] = 3002, - [3003] = 2973, - [3004] = 2989, + [3003] = 3003, + [3004] = 3004, [3005] = 3005, [3006] = 3006, - [3007] = 2975, - [3008] = 2973, + [3007] = 3007, + [3008] = 3008, [3009] = 3009, [3010] = 3010, - [3011] = 2999, - [3012] = 2973, - [3013] = 3010, - [3014] = 3009, - [3015] = 2961, + [3011] = 3011, + [3012] = 3012, + [3013] = 3013, + [3014] = 3014, + [3015] = 3015, [3016] = 3016, [3017] = 3017, [3018] = 3018, [3019] = 3019, - [3020] = 2957, - [3021] = 2984, - [3022] = 3005, - [3023] = 3023, + [3020] = 3008, + [3021] = 3021, + [3022] = 3022, + [3023] = 3005, [3024] = 3024, - [3025] = 2984, - [3026] = 3026, - [3027] = 2989, - [3028] = 3028, + [3025] = 3025, + [3026] = 2997, + [3027] = 3027, + [3028] = 3004, [3029] = 3029, [3030] = 3030, [3031] = 3031, - [3032] = 3032, - [3033] = 2973, - [3034] = 2958, - [3035] = 2965, - [3036] = 3036, - [3037] = 3037, - [3038] = 3038, - [3039] = 2959, - [3040] = 3040, - [3041] = 2962, - [3042] = 2963, + [3032] = 2997, + [3033] = 3004, + [3034] = 3024, + [3035] = 3002, + [3036] = 3013, + [3037] = 3004, + [3038] = 3001, + [3039] = 3039, + [3040] = 3000, + [3041] = 3041, + [3042] = 3042, [3043] = 3043, [3044] = 3044, - [3045] = 3045, + [3045] = 2984, [3046] = 3046, - [3047] = 3047, + [3047] = 3044, [3048] = 3048, [3049] = 3049, [3050] = 3050, [3051] = 3051, - [3052] = 2999, - [3053] = 3053, - [3054] = 3000, - [3055] = 3023, + [3052] = 3013, + [3053] = 3039, + [3054] = 3054, + [3055] = 3055, [3056] = 3056, [3057] = 3057, - [3058] = 2998, - [3059] = 3059, + [3058] = 3058, + [3059] = 3007, [3060] = 3060, [3061] = 3061, - [3062] = 1839, - [3063] = 3063, - [3064] = 2960, - [3065] = 3065, - [3066] = 2995, - [3067] = 3067, - [3068] = 3059, - [3069] = 2991, - [3070] = 2984, - [3071] = 2984, - [3072] = 2994, - [3073] = 2984, - [3074] = 2962, - [3075] = 2979, - [3076] = 2990, - [3077] = 2988, - [3078] = 2974, - [3079] = 2987, + [3062] = 3062, + [3063] = 3039, + [3064] = 3064, + [3065] = 3022, + [3066] = 3066, + [3067] = 1822, + [3068] = 2999, + [3069] = 3069, + [3070] = 3070, + [3071] = 3004, + [3072] = 2996, + [3073] = 3073, + [3074] = 3074, + [3075] = 3075, + [3076] = 3076, + [3077] = 1875, + [3078] = 3078, + [3079] = 3079, [3080] = 3080, [3081] = 3081, - [3082] = 3082, + [3082] = 3007, [3083] = 3083, [3084] = 3084, - [3085] = 3085, - [3086] = 3086, - [3087] = 2966, + [3085] = 3003, + [3086] = 3013, + [3087] = 3087, [3088] = 3088, [3089] = 3089, [3090] = 3090, - [3091] = 3091, - [3092] = 2997, - [3093] = 3093, - [3094] = 3094, - [3095] = 3095, + [3091] = 3049, + [3092] = 3092, + [3093] = 3062, + [3094] = 3083, + [3095] = 3007, [3096] = 3096, - [3097] = 2968, - [3098] = 3098, - [3099] = 3099, + [3097] = 3097, + [3098] = 3004, + [3099] = 3070, [3100] = 3100, - [3101] = 3101, - [3102] = 3102, - [3103] = 3103, + [3101] = 3051, + [3102] = 3070, + [3103] = 3003, [3104] = 3104, - [3105] = 3024, + [3105] = 3105, [3106] = 3106, - [3107] = 2956, - [3108] = 3108, - [3109] = 3109, - [3110] = 3065, + [3107] = 3107, + [3108] = 3105, + [3109] = 3107, + [3110] = 3110, [3111] = 3111, - [3112] = 3112, + [3112] = 2998, [3113] = 3113, - [3114] = 3114, - [3115] = 3093, - [3116] = 3116, - [3117] = 3030, - [3118] = 2960, - [3119] = 2969, - [3120] = 2970, - [3121] = 2972, + [3114] = 3004, + [3115] = 2983, + [3116] = 3113, + [3117] = 3117, + [3118] = 3113, + [3119] = 2998, + [3120] = 2997, + [3121] = 3121, [3122] = 3122, - [3123] = 3123, - [3124] = 3124, - [3125] = 3125, - [3126] = 3126, - [3127] = 3127, - [3128] = 3032, - [3129] = 2999, - [3130] = 2997, - [3131] = 2979, - [3132] = 3037, - [3133] = 2978, - [3134] = 3134, - [3135] = 3016, - [3136] = 3017, - [3137] = 2989, - [3138] = 2973, - [3139] = 2957, - [3140] = 2999, - [3141] = 3040, - [3142] = 2975, - [3143] = 3143, - [3144] = 3144, - [3145] = 3026, - [3146] = 2974, - [3147] = 2982, - [3148] = 2972, - [3149] = 2975, + [3123] = 2983, + [3124] = 3107, + [3125] = 3070, + [3126] = 3069, + [3127] = 3105, + [3128] = 1899, + [3129] = 3104, + [3130] = 3003, + [3131] = 3031, + [3132] = 3004, + [3133] = 3097, + [3134] = 3090, + [3135] = 3087, + [3136] = 2998, + [3137] = 3110, + [3138] = 2997, + [3139] = 3139, + [3140] = 3084, + [3141] = 3089, + [3142] = 3007, + [3143] = 3024, + [3144] = 3081, + [3145] = 3145, + [3146] = 3069, + [3147] = 3080, + [3148] = 3062, + [3149] = 3149, [3150] = 3150, - [3151] = 3036, - [3152] = 2987, - [3153] = 3053, - [3154] = 2970, - [3155] = 1814, - [3156] = 2969, - [3157] = 2967, - [3158] = 2968, + [3151] = 3013, + [3152] = 3152, + [3153] = 3153, + [3154] = 3154, + [3155] = 3039, + [3156] = 3156, + [3157] = 3157, + [3158] = 3158, [3159] = 3159, - [3160] = 2973, - [3161] = 2965, - [3162] = 2966, - [3163] = 2964, - [3164] = 2963, - [3165] = 3067, - [3166] = 3060, - [3167] = 2991, - [3168] = 3023, - [3169] = 3059, - [3170] = 3086, - [3171] = 3171, - [3172] = 3172, - [3173] = 2960, - [3174] = 3174, - [3175] = 2965, - [3176] = 3000, - [3177] = 2974, - [3178] = 3159, - [3179] = 3086, - [3180] = 3180, - [3181] = 3144, - [3182] = 2975, + [3160] = 2994, + [3161] = 3041, + [3162] = 3042, + [3163] = 3163, + [3164] = 3039, + [3165] = 2984, + [3166] = 3039, + [3167] = 3013, + [3168] = 3044, + [3169] = 3043, + [3170] = 3007, + [3171] = 3051, + [3172] = 2993, + [3173] = 3173, + [3174] = 2992, + [3175] = 2991, + [3176] = 3090, + [3177] = 3061, + [3178] = 3030, + [3179] = 3029, + [3180] = 3069, + [3181] = 2990, + [3182] = 3111, [3183] = 3183, [3184] = 3184, - [3185] = 3098, - [3186] = 3023, - [3187] = 3059, - [3188] = 3188, + [3185] = 3000, + [3186] = 3004, + [3187] = 3187, + [3188] = 2989, [3189] = 3189, - [3190] = 3190, - [3191] = 3191, - [3192] = 3192, - [3193] = 2956, - [3194] = 3194, - [3195] = 3065, - [3196] = 3065, + [3190] = 3024, + [3191] = 3092, + [3192] = 3003, + [3193] = 3083, + [3194] = 2988, + [3195] = 3195, + [3196] = 3196, [3197] = 3197, - [3198] = 3198, - [3199] = 3199, - [3200] = 2974, - [3201] = 3061, - [3202] = 2998, - [3203] = 2999, - [3204] = 3204, - [3205] = 3016, - [3206] = 3017, + [3198] = 3021, + [3199] = 3024, + [3200] = 2987, + [3201] = 3019, + [3202] = 3202, + [3203] = 3021, + [3204] = 3016, + [3205] = 3111, + [3206] = 3206, [3207] = 3207, - [3208] = 3099, - [3209] = 2989, - [3210] = 3100, - [3211] = 3101, - [3212] = 2997, - [3213] = 3098, - [3214] = 3093, - [3215] = 3026, - [3216] = 2961, - [3217] = 3108, - [3218] = 2959, + [3208] = 3015, + [3209] = 3105, + [3210] = 3107, + [3211] = 3014, + [3212] = 3012, + [3213] = 3213, + [3214] = 3214, + [3215] = 3215, + [3216] = 3008, + [3217] = 3113, + [3218] = 3005, [3219] = 3219, - [3220] = 3093, - [3221] = 3102, - [3222] = 3222, - [3223] = 2958, - [3224] = 2956, - [3225] = 3018, - [3226] = 3010, - [3227] = 3009, - [3228] = 3006, - [3229] = 2989, - [3230] = 3106, - [3231] = 3103, - [3232] = 2991, - [3233] = 3005, - [3234] = 1866, - [3235] = 2956, - [3236] = 3065, - [3237] = 3102, - [3238] = 2975, - [3239] = 3144, - [3240] = 3101, - [3241] = 3100, - [3242] = 3099, + [3220] = 2983, + [3221] = 3002, + [3222] = 2998, + [3223] = 2997, + [3224] = 3001, + [3225] = 3225, + [3226] = 3226, + [3227] = 3227, + [3228] = 2986, + [3229] = 2985, + [3230] = 3030, + [3231] = 3048, + [3232] = 3041, + [3233] = 3042, + [3234] = 2999, + [3235] = 3056, + [3236] = 3145, + [3237] = 2996, + [3238] = 3238, + [3239] = 3070, + [3240] = 3240, + [3241] = 3069, + [3242] = 3051, [3243] = 3243, - [3244] = 3018, - [3245] = 3098, - [3246] = 3060, - [3247] = 3053, - [3248] = 3040, - [3249] = 3037, - [3250] = 3032, - [3251] = 3030, - [3252] = 3108, - [3253] = 3005, - [3254] = 3018, - [3255] = 2958, - [3256] = 2959, - [3257] = 2961, - [3258] = 3258, - [3259] = 895, - [3260] = 2995, - [3261] = 3103, - [3262] = 3262, - [3263] = 2994, - [3264] = 2984, - [3265] = 3016, - [3266] = 3266, - [3267] = 2957, - [3268] = 897, - [3269] = 3059, - [3270] = 3023, - [3271] = 2991, - [3272] = 2968, - [3273] = 3026, - [3274] = 2974, - [3275] = 2969, - [3276] = 2982, - [3277] = 3106, - [3278] = 3278, - [3279] = 3102, - [3280] = 3280, - [3281] = 3103, - [3282] = 2991, - [3283] = 3283, - [3284] = 3067, - [3285] = 2990, - [3286] = 2988, - [3287] = 3287, - [3288] = 3016, - [3289] = 3159, - [3290] = 2957, - [3291] = 3291, - [3292] = 3106, - [3293] = 3026, - [3294] = 2965, - [3295] = 3295, - [3296] = 2967, - [3297] = 3297, - [3298] = 3016, - [3299] = 3299, - [3300] = 2957, - [3301] = 2960, - [3302] = 2957, - [3303] = 3303, - [3304] = 2957, - [3305] = 3000, - [3306] = 2957, - [3307] = 895, - [3308] = 2987, - [3309] = 2978, - [3310] = 3101, - [3311] = 897, - [3312] = 3312, - [3313] = 3313, - [3314] = 3314, - [3315] = 3315, - [3316] = 2995, - [3317] = 3317, - [3318] = 3318, - [3319] = 1848, - [3320] = 2973, - [3321] = 2971, - [3322] = 3100, - [3323] = 2975, - [3324] = 2967, - [3325] = 3325, - [3326] = 3326, - [3327] = 3063, - [3328] = 2965, - [3329] = 3099, - [3330] = 3030, - [3331] = 3326, - [3332] = 2964, - [3333] = 2997, - [3334] = 3280, - [3335] = 3278, - [3336] = 3262, + [3244] = 3244, + [3245] = 3046, + [3246] = 3246, + [3247] = 3062, + [3248] = 2994, + [3249] = 3249, + [3250] = 3250, + [3251] = 3251, + [3252] = 3252, + [3253] = 3253, + [3254] = 3083, + [3255] = 3255, + [3256] = 3256, + [3257] = 3257, + [3258] = 2993, + [3259] = 3083, + [3260] = 3260, + [3261] = 3261, + [3262] = 2992, + [3263] = 3081, + [3264] = 2991, + [3265] = 3265, + [3266] = 3089, + [3267] = 3048, + [3268] = 3046, + [3269] = 3056, + [3270] = 3145, + [3271] = 2985, + [3272] = 2986, + [3273] = 3022, + [3274] = 2987, + [3275] = 2988, + [3276] = 2989, + [3277] = 2990, + [3278] = 2991, + [3279] = 2992, + [3280] = 2993, + [3281] = 2989, + [3282] = 2988, + [3283] = 2987, + [3284] = 2996, + [3285] = 2999, + [3286] = 3000, + [3287] = 3001, + [3288] = 3002, + [3289] = 2986, + [3290] = 3290, + [3291] = 899, + [3292] = 3041, + [3293] = 2997, + [3294] = 2984, + [3295] = 3019, + [3296] = 2985, + [3297] = 3145, + [3298] = 3110, + [3299] = 3056, + [3300] = 3051, + [3301] = 2998, + [3302] = 3046, + [3303] = 3048, + [3304] = 3304, + [3305] = 3062, + [3306] = 3080, + [3307] = 900, + [3308] = 3014, + [3309] = 3083, + [3310] = 3015, + [3311] = 3311, + [3312] = 3069, + [3313] = 3061, + [3314] = 3022, + [3315] = 3041, + [3316] = 3027, + [3317] = 2984, + [3318] = 3070, + [3319] = 3319, + [3320] = 3051, + [3321] = 3321, + [3322] = 3012, + [3323] = 3089, + [3324] = 3324, + [3325] = 3041, + [3326] = 3029, + [3327] = 2984, + [3328] = 2997, + [3329] = 2984, + [3330] = 3330, + [3331] = 2984, + [3332] = 3110, + [3333] = 2984, + [3334] = 2998, + [3335] = 3335, + [3336] = 3007, [3337] = 3337, - [3338] = 2999, - [3339] = 3199, - [3340] = 3198, - [3341] = 3192, - [3342] = 3180, - [3343] = 3174, - [3344] = 3116, - [3345] = 3114, - [3346] = 3113, - [3347] = 3112, - [3348] = 3111, - [3349] = 3104, - [3350] = 3083, - [3351] = 3031, - [3352] = 3029, - [3353] = 3028, - [3354] = 3019, - [3355] = 3150, - [3356] = 2987, - [3357] = 3023, - [3358] = 3312, - [3359] = 3313, - [3360] = 3314, - [3361] = 3318, - [3362] = 3059, - [3363] = 3016, - [3364] = 2984, - [3365] = 3093, - [3366] = 3326, - [3367] = 3024, - [3368] = 2956, - [3369] = 3065, - [3370] = 3010, - [3371] = 3036, - [3372] = 3280, - [3373] = 3278, - [3374] = 3262, - [3375] = 3199, - [3376] = 3198, - [3377] = 3192, - [3378] = 3180, - [3379] = 3174, - [3380] = 3116, - [3381] = 3114, - [3382] = 3113, - [3383] = 3112, - [3384] = 3111, - [3385] = 3104, - [3386] = 3083, - [3387] = 3031, - [3388] = 3029, - [3389] = 3028, - [3390] = 3019, - [3391] = 3150, - [3392] = 3108, - [3393] = 3393, - [3394] = 3312, - [3395] = 3314, - [3396] = 3009, - [3397] = 2975, - [3398] = 3144, - [3399] = 2974, - [3400] = 3326, - [3401] = 3060, - [3402] = 2989, - [3403] = 3053, - [3404] = 3159, - [3405] = 3280, - [3406] = 3278, - [3407] = 3199, - [3408] = 3198, - [3409] = 3192, - [3410] = 3180, - [3411] = 3174, - [3412] = 3116, - [3413] = 3114, - [3414] = 3113, - [3415] = 3112, - [3416] = 3111, - [3417] = 3104, - [3418] = 3031, - [3419] = 3029, - [3420] = 3028, - [3421] = 3019, - [3422] = 3150, + [3338] = 3092, + [3339] = 3304, + [3340] = 3340, + [3341] = 3106, + [3342] = 3025, + [3343] = 3343, + [3344] = 3030, + [3345] = 3139, + [3346] = 2983, + [3347] = 3113, + [3348] = 2983, + [3349] = 3014, + [3350] = 2998, + [3351] = 3113, + [3352] = 3352, + [3353] = 3353, + [3354] = 3354, + [3355] = 3024, + [3356] = 3356, + [3357] = 3007, + [3358] = 900, + [3359] = 3359, + [3360] = 3084, + [3361] = 3356, + [3362] = 3354, + [3363] = 3335, + [3364] = 3107, + [3365] = 3039, + [3366] = 3265, + [3367] = 3252, + [3368] = 3250, + [3369] = 3249, + [3370] = 3240, + [3371] = 3371, + [3372] = 3372, + [3373] = 3373, + [3374] = 3374, + [3375] = 3359, + [3376] = 3352, + [3377] = 3321, + [3378] = 3055, + [3379] = 3057, + [3380] = 3058, + [3381] = 3066, + [3382] = 3187, + [3383] = 3087, + [3384] = 3384, + [3385] = 3304, + [3386] = 3340, + [3387] = 3106, + [3388] = 3139, + [3389] = 2984, + [3390] = 3390, + [3391] = 3090, + [3392] = 3353, + [3393] = 3353, + [3394] = 3042, + [3395] = 3097, + [3396] = 3107, + [3397] = 3105, + [3398] = 3105, + [3399] = 3356, + [3400] = 3354, + [3401] = 3335, + [3402] = 3265, + [3403] = 3252, + [3404] = 3250, + [3405] = 3249, + [3406] = 3240, + [3407] = 3371, + [3408] = 3372, + [3409] = 3373, + [3410] = 3374, + [3411] = 3359, + [3412] = 3352, + [3413] = 3321, + [3414] = 3055, + [3415] = 3057, + [3416] = 3058, + [3417] = 3066, + [3418] = 3187, + [3419] = 3374, + [3420] = 3043, + [3421] = 3304, + [3422] = 3106, [3423] = 3423, - [3424] = 3312, - [3425] = 3314, - [3426] = 3040, - [3427] = 3326, - [3428] = 3428, - [3429] = 3312, - [3430] = 3326, - [3431] = 3312, - [3432] = 3312, - [3433] = 3312, - [3434] = 3312, - [3435] = 3435, - [3436] = 3318, - [3437] = 3026, - [3438] = 3315, - [3439] = 2997, - [3440] = 3093, - [3441] = 3315, - [3442] = 2999, - [3443] = 3315, - [3444] = 3108, - [3445] = 2973, - [3446] = 2990, - [3447] = 3037, - [3448] = 3315, - [3449] = 3314, - [3450] = 3313, - [3451] = 3315, - [3452] = 2988, - [3453] = 3435, - [3454] = 2957, - [3455] = 3435, - [3456] = 3312, - [3457] = 3032, - [3458] = 3017, - [3459] = 3428, - [3460] = 3428, + [3424] = 3373, + [3425] = 3004, + [3426] = 3044, + [3427] = 3353, + [3428] = 3013, + [3429] = 3372, + [3430] = 3100, + [3431] = 3039, + [3432] = 3356, + [3433] = 3354, + [3434] = 3265, + [3435] = 3252, + [3436] = 3250, + [3437] = 3249, + [3438] = 3240, + [3439] = 3371, + [3440] = 3372, + [3441] = 3373, + [3442] = 3374, + [3443] = 3359, + [3444] = 3352, + [3445] = 3055, + [3446] = 3057, + [3447] = 3058, + [3448] = 3066, + [3449] = 3187, + [3450] = 3371, + [3451] = 3304, + [3452] = 3106, + [3453] = 3453, + [3454] = 3353, + [3455] = 3041, + [3456] = 3304, + [3457] = 3353, + [3458] = 3304, + [3459] = 3304, + [3460] = 3304, + [3461] = 3304, + [3462] = 3003, + [3463] = 3016, + [3464] = 2990, + [3465] = 3025, + [3466] = 3015, + [3467] = 3084, + [3468] = 899, + [3469] = 3031, + [3470] = 3025, + [3471] = 3031, + [3472] = 3472, + [3473] = 3087, + [3474] = 3090, + [3475] = 3025, + [3476] = 3088, + [3477] = 3080, + [3478] = 3025, + [3479] = 3003, + [3480] = 3150, + [3481] = 3043, + [3482] = 3150, + [3483] = 1831, + [3484] = 3340, + [3485] = 3104, + [3486] = 3173, + [3487] = 3173, }; static TSCharacterRange sym_number_literal_character_set_13[] = { @@ -7041,11 +7082,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (eof) ADVANCE(251); ADVANCE_MAP( '!', 325, - '"', 424, + '"', 423, '#', 112, '%', 342, '&', 351, - '\'', 414, + '\'', 413, '(', 263, ')', 266, '*', 338, @@ -7054,21 +7095,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 328, '.', 390, '/', 340, - '0', 396, + '0', 395, ':', 374, ';', 364, '<', 358, '=', 373, '>', 354, '?', 375, - 'L', 552, - 'U', 554, + 'L', 551, + 'U', 553, '[', 371, '\\', 2, ']', 372, '^', 348, - '_', 564, - 'u', 556, + '_', 563, + 'u', 555, '{', 368, '|', 345, '}', 369, @@ -7076,8 +7117,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(248); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(677); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(397); + if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(676); END_STATE(); case 1: if (lookahead == '\n') SKIP(50); @@ -7125,19 +7166,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(236); END_STATE(); case 11: - if (lookahead == '\n') SKIP(69); + if (lookahead == '\n') SKIP(68); END_STATE(); case 12: - if (lookahead == '\n') SKIP(69); + if (lookahead == '\n') SKIP(68); if (lookahead == '\r') SKIP(11); if (lookahead == 'U') ADVANCE(244); if (lookahead == 'u') ADVANCE(236); END_STATE(); case 13: - if (lookahead == '\n') SKIP(68); + if (lookahead == '\n') SKIP(69); END_STATE(); case 14: - if (lookahead == '\n') SKIP(68); + if (lookahead == '\n') SKIP(69); if (lookahead == '\r') SKIP(13); if (lookahead == 'U') ADVANCE(244); if (lookahead == 'u') ADVANCE(236); @@ -7166,22 +7207,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(19); END_STATE(); case 21: - if (lookahead == '\n') SKIP(55); + if (lookahead == '\n') SKIP(23); END_STATE(); case 22: - if (lookahead == '\n') SKIP(55); + if (lookahead == '\n') SKIP(23); if (lookahead == '\r') SKIP(21); - if (lookahead == 'U') ADVANCE(244); - if (lookahead == 'u') ADVANCE(236); END_STATE(); case 23: - if (lookahead == '\n') SKIP(25); - END_STATE(); - case 24: - if (lookahead == '\n') SKIP(25); - if (lookahead == '\r') SKIP(23); - END_STATE(); - case 25: ADVANCE_MAP( '\n', 268, '!', 82, @@ -7196,12 +7228,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 83, '>', 355, ); - if (lookahead == '\\') SKIP(24); + if (lookahead == '\\') SKIP(22); if (lookahead == '^') ADVANCE(347); if (lookahead == '_') ADVANCE(89); if (lookahead == '|') ADVANCE(346); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(25); + lookahead == ' ') SKIP(23); + END_STATE(); + case 24: + if (lookahead == '\n') SKIP(55); + END_STATE(); + case 25: + if (lookahead == '\n') SKIP(55); + if (lookahead == '\r') SKIP(24); + if (lookahead == 'U') ADVANCE(244); + if (lookahead == 'u') ADVANCE(236); END_STATE(); case 26: if (lookahead == '\n') SKIP(67); @@ -7289,32 +7330,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 37: if (lookahead == '\n') SKIP(62); - if (lookahead == '"') ADVANCE(424); - if (lookahead == '/') ADVANCE(425); + if (lookahead == '"') ADVANCE(423); + if (lookahead == '/') ADVANCE(424); if (lookahead == '\\') ADVANCE(38); - if (lookahead == '_') ADVANCE(429); + if (lookahead == '_') ADVANCE(428); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(428); - if (lookahead != 0) ADVANCE(545); + lookahead == ' ') ADVANCE(427); + if (lookahead != 0) ADVANCE(544); END_STATE(); case 38: - if (lookahead == '\n') ADVANCE(547); - if (lookahead == '\r') ADVANCE(546); + if (lookahead == '\n') ADVANCE(546); + if (lookahead == '\r') ADVANCE(545); if (lookahead == 'U') ADVANCE(245); if (lookahead == 'u') ADVANCE(237); if (lookahead == 'x') ADVANCE(233); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(549); - if (lookahead != 0) ADVANCE(546); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(548); + if (lookahead != 0) ADVANCE(545); END_STATE(); case 39: if (lookahead == '\n') SKIP(70); - if (lookahead == '\'') ADVANCE(414); - if (lookahead == '/') ADVANCE(417); - if (lookahead == '\\') ADVANCE(416); - if (lookahead == '_') ADVANCE(419); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '/') ADVANCE(416); + if (lookahead == '\\') ADVANCE(415); + if (lookahead == '_') ADVANCE(418); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(418); - if (lookahead != 0) ADVANCE(415); + lookahead == ' ') ADVANCE(417); + if (lookahead != 0) ADVANCE(414); END_STATE(); case 40: if (lookahead == '\n') SKIP(71); @@ -7352,18 +7393,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(236); END_STATE(); case 49: - if (lookahead == '\r') ADVANCE(681); - if (lookahead == '\\') ADVANCE(679); - if (lookahead != 0) ADVANCE(680); + if (lookahead == '\r') ADVANCE(680); + if (lookahead == '\\') ADVANCE(678); + if (lookahead != 0) ADVANCE(679); END_STATE(); case 50: ADVANCE_MAP( '!', 325, - '"', 424, + '"', 423, '#', 112, '%', 342, '&', 351, - '\'', 414, + '\'', 413, '(', 323, ')', 266, '*', 338, @@ -7372,21 +7413,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 328, '.', 390, '/', 340, - '0', 396, + '0', 395, ':', 374, ';', 364, '<', 358, '=', 373, '>', 354, '?', 375, - 'L', 552, - 'U', 554, + 'L', 551, + 'U', 553, '[', 371, '\\', 2, ']', 372, '^', 348, - '_', 564, - 'u', 556, + '_', 563, + 'u', 555, '{', 368, '|', 345, '}', 369, @@ -7394,17 +7435,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(50); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(677); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(397); + if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(676); END_STATE(); case 51: ADVANCE_MAP( '!', 325, - '"', 424, + '"', 423, '#', 121, '%', 342, '&', 351, - '\'', 414, + '\'', 413, '(', 323, ')', 266, '*', 338, @@ -7413,21 +7454,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 328, '.', 390, '/', 340, - '0', 396, + '0', 395, ':', 374, ';', 364, '<', 358, '=', 373, '>', 354, '?', 375, - 'L', 552, - 'U', 554, + 'L', 551, + 'U', 553, '[', 370, '\\', 46, ']', 372, '^', 348, - '_', 564, - 'u', 556, + '_', 563, + 'u', 555, '{', 368, '|', 345, '}', 369, @@ -7435,128 +7476,128 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(51); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(677); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(397); + if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(676); END_STATE(); case 52: ADVANCE_MAP( '!', 324, - '"', 424, + '"', 423, '#', 112, '&', 349, - '\'', 414, + '\'', 413, '(', 323, '*', 337, '+', 334, '-', 329, '.', 225, '/', 73, - '0', 396, + '0', 395, ';', 364, - 'L', 552, - 'U', 554, + 'L', 551, + 'U', 553, '[', 87, '\\', 6, - '_', 564, - 'u', 556, + '_', 563, + 'u', 555, '{', 368, '~', 326, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(52); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(677); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(397); + if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(676); END_STATE(); case 53: ADVANCE_MAP( '!', 324, - '"', 424, + '"', 423, '#', 116, '&', 349, - '\'', 414, + '\'', 413, '(', 323, ')', 266, '*', 337, '+', 334, ',', 265, '-', 329, - '.', 391, + '.', 390, '/', 73, - '0', 396, + '0', 395, ':', 374, ';', 364, - 'L', 552, - 'U', 554, + 'L', 551, + 'U', 553, '[', 371, '\\', 4, ']', 372, - '_', 564, - 'u', 556, + '_', 563, + 'u', 555, '{', 368, '}', 369, '~', 326, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(53); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(677); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(397); + if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(676); END_STATE(); case 54: ADVANCE_MAP( '!', 324, - '"', 424, + '"', 423, '#', 114, '&', 349, - '\'', 414, + '\'', 413, '(', 323, '*', 337, '+', 334, '-', 329, '.', 225, '/', 73, - '0', 396, + '0', 395, ';', 364, - 'L', 552, - 'U', 554, + 'L', 551, + 'U', 553, '[', 87, '\\', 48, - '_', 564, - 'u', 556, + '_', 563, + 'u', 555, '{', 368, '~', 326, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(54); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(677); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(397); + if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(676); END_STATE(); case 55: ADVANCE_MAP( '!', 324, - '\'', 414, + '\'', 413, '(', 323, ')', 266, '+', 336, '-', 331, '.', 225, '/', 73, - '0', 396, - 'L', 560, - 'U', 561, - '\\', 22, - '_', 564, - 'u', 562, + '0', 395, + 'L', 559, + 'U', 560, + '\\', 25, + '_', 563, + 'u', 561, '~', 326, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(55); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(677); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(397); + if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(676); END_STATE(); case 56: ADVANCE_MAP( '!', 82, - '"', 424, + '"', 423, '#', 121, '%', 342, '&', 351, @@ -7574,20 +7615,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 373, '>', 354, '?', 375, - 'L', 553, - 'U', 555, + 'L', 552, + 'U', 554, '[', 371, '\\', 8, ']', 372, '^', 348, - '_', 564, - 'u', 557, + '_', 563, + 'u', 556, '|', 345, '}', 369, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(56); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(677); + if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(676); END_STATE(); case 57: ADVANCE_MAP( @@ -7609,12 +7650,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '[', 370, '\\', 16, '^', 348, - '_', 564, + '_', 563, '|', 345, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(57); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(677); + if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(676); END_STATE(); case 58: ADVANCE_MAP( @@ -7639,13 +7680,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '[', 371, '\\', 10, '^', 348, - '_', 564, + '_', 563, '{', 368, '|', 345, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(58); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(677); + if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(676); END_STATE(); case 59: ADVANCE_MAP( @@ -7704,21 +7745,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 61: ADVANCE_MAP( - '"', 424, + '"', 423, '/', 73, '<', 84, - 'L', 553, - 'U', 555, + 'L', 552, + 'U', 554, '\\', 29, - '_', 564, - 'u', 557, + '_', 563, + 'u', 556, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(61); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(677); + if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(676); END_STATE(); case 62: - if (lookahead == '"') ADVANCE(424); + if (lookahead == '"') ADVANCE(423); if (lookahead == '/') ADVANCE(73); if (lookahead == '\\') ADVANCE(38); if (lookahead == '_') ADVANCE(89); @@ -7726,27 +7767,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(62); END_STATE(); case 63: - if (lookahead == '"') ADVANCE(420); + if (lookahead == '"') ADVANCE(419); END_STATE(); case 64: - if (lookahead == '"') ADVANCE(422); + if (lookahead == '"') ADVANCE(421); END_STATE(); case 65: - if (lookahead == '"') ADVANCE(421); + if (lookahead == '"') ADVANCE(420); if (lookahead == '8') ADVANCE(66); END_STATE(); case 66: - if (lookahead == '"') ADVANCE(423); + if (lookahead == '"') ADVANCE(422); END_STATE(); case 67: if (lookahead == '#') ADVANCE(157); if (lookahead == '/') ADVANCE(73); if (lookahead == '\\') ADVANCE(27); - if (lookahead == '_') ADVANCE(564); + if (lookahead == '_') ADVANCE(563); if (lookahead == '}') ADVANCE(369); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(67); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(677); + if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(676); END_STATE(); case 68: ADVANCE_MAP( @@ -7755,13 +7796,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '*', 337, '/', 73, '[', 371, - '\\', 14, - '_', 564, + '\\', 12, + '_', 563, '}', 369, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(68); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(677); + if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(676); END_STATE(); case 69: if (lookahead == '#') ADVANCE(115); @@ -7769,14 +7810,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '*') ADVANCE(337); if (lookahead == '/') ADVANCE(73); if (lookahead == '[') ADVANCE(371); - if (lookahead == '\\') ADVANCE(12); - if (lookahead == '_') ADVANCE(564); + if (lookahead == '\\') ADVANCE(14); + if (lookahead == '_') ADVANCE(563); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(69); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(677); + if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(676); END_STATE(); case 70: - if (lookahead == '\'') ADVANCE(414); + if (lookahead == '\'') ADVANCE(413); if (lookahead == '/') ADVANCE(73); if (lookahead == '\\') ADVANCE(38); if (lookahead == '_') ADVANCE(89); @@ -7795,18 +7836,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(266); if (lookahead == '.') ADVANCE(225); if (lookahead == '/') ADVANCE(73); - if (lookahead == '0') ADVANCE(396); + if (lookahead == '0') ADVANCE(395); if (lookahead == '\\') SKIP(44); if (lookahead == '_') ADVANCE(89); if (lookahead == '+' || lookahead == '-') ADVANCE(77); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(72); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(397); END_STATE(); case 73: if (lookahead == '*') ADVANCE(76); - if (lookahead == '/') ADVANCE(680); + if (lookahead == '/') ADVANCE(679); END_STATE(); case 74: if (lookahead == '*') ADVANCE(76); @@ -7815,7 +7856,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 75: if (lookahead == '*') ADVANCE(75); - if (lookahead == '/') ADVANCE(678); + if (lookahead == '/') ADVANCE(677); if (lookahead != 0) ADVANCE(76); END_STATE(); case 76: @@ -7824,15 +7865,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 77: if (lookahead == '.') ADVANCE(225); - if (lookahead == '0') ADVANCE(396); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (lookahead == '0') ADVANCE(395); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(397); END_STATE(); case 78: if (lookahead == '.') ADVANCE(225); - if (lookahead == '0') ADVANCE(394); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); + if (lookahead == '0') ADVANCE(393); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(403); END_STATE(); case 79: if (lookahead == '.') ADVANCE(264); @@ -7855,13 +7896,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(352); END_STATE(); case 84: - if (lookahead == '>') ADVANCE(550); + if (lookahead == '>') ADVANCE(549); if (lookahead == '\\') ADVANCE(85); if (lookahead != 0 && lookahead != '\n') ADVANCE(84); END_STATE(); case 85: - if (lookahead == '>') ADVANCE(551); + if (lookahead == '>') ADVANCE(550); if (lookahead == '\\') ADVANCE(85); if (lookahead != 0 && lookahead != '\n') ADVANCE(84); @@ -8360,40 +8401,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'r') ADVANCE(252); END_STATE(); case 224: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(397); END_STATE(); case 225: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(393); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(392); END_STATE(); case 226: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(395); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(403); END_STATE(); case 227: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(676); END_STATE(); case 228: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(400); END_STATE(); case 229: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(403); END_STATE(); case 230: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(398); END_STATE(); case 231: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(546); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(545); END_STATE(); case 232: if (('0' <= lookahead && lookahead <= '9') || @@ -8478,11 +8519,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (eof) ADVANCE(251); ADVANCE_MAP( '!', 325, - '"', 424, + '"', 423, '#', 112, '%', 342, '&', 351, - '\'', 414, + '\'', 413, '(', 323, ')', 266, '*', 338, @@ -8491,21 +8532,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 328, '.', 390, '/', 340, - '0', 396, + '0', 395, ':', 374, ';', 364, '<', 358, '=', 373, '>', 354, '?', 375, - 'L', 552, - 'U', 554, + 'L', 551, + 'U', 553, '[', 371, '\\', 2, ']', 372, '^', 348, - '_', 564, - 'u', 556, + '_', 563, + 'u', 555, '{', 368, '|', 345, '}', 369, @@ -8513,49 +8554,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(248); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(677); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(397); + if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(676); END_STATE(); case 249: if (eof) ADVANCE(251); ADVANCE_MAP( '!', 324, - '"', 424, + '"', 423, '#', 116, '&', 349, - '\'', 414, + '\'', 413, '(', 323, ')', 266, '*', 337, '+', 334, ',', 265, '-', 329, - '.', 391, + '.', 390, '/', 73, - '0', 396, + '0', 395, ':', 374, ';', 364, - 'L', 552, - 'U', 554, + 'L', 551, + 'U', 553, '[', 371, '\\', 4, ']', 372, - '_', 564, - 'u', 556, + '_', 563, + 'u', 555, '{', 368, '}', 369, '~', 326, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(249); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(677); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(397); + if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(676); END_STATE(); case 250: if (eof) ADVANCE(251); ADVANCE_MAP( '!', 82, - '"', 424, + '"', 423, '#', 123, '%', 342, '&', 351, @@ -8597,28 +8638,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 253: ACCEPT_TOKEN(sym__linux_kernel_annotations); if (lookahead == '\\') ADVANCE(86); - if (lookahead == '_') ADVANCE(642); - if (lookahead == 'c') ADVANCE(643); - if (lookahead == 'd') ADVANCE(576); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == '_') ADVANCE(641); + if (lookahead == 'c') ADVANCE(642); + if (lookahead == 'd') ADVANCE(575); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 254: ACCEPT_TOKEN(sym__linux_kernel_annotations); if (lookahead == '\\') ADVANCE(86); - if (lookahead == '_') ADVANCE(653); - if (lookahead == 'd') ADVANCE(576); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == '_') ADVANCE(652); + if (lookahead == 'd') ADVANCE(575); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 255: ACCEPT_TOKEN(sym__linux_kernel_annotations); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'd') ADVANCE(576); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'd') ADVANCE(575); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 256: ACCEPT_TOKEN(sym__linux_kernel_annotations); if (lookahead == '\\') ADVANCE(86); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 257: ACCEPT_TOKEN(sym__linux_kernel_annotations); @@ -8756,7 +8797,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 283: ACCEPT_TOKEN(aux_sym_preproc_arg_token1); if (lookahead == '*') ADVANCE(76); - if (lookahead == '/') ADVANCE(680); + if (lookahead == '/') ADVANCE(679); END_STATE(); case 284: ACCEPT_TOKEN(aux_sym_preproc_arg_token1); @@ -8804,7 +8845,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_preproc_arg_token2); if (lookahead == '\\') ADVANCE(49); if (lookahead != 0 && - lookahead != '\n') ADVANCE(680); + lookahead != '\n') ADVANCE(679); END_STATE(); case 291: ACCEPT_TOKEN(aux_sym_preproc_arg_token2); @@ -9080,29 +9121,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '-') ADVANCE(386); if (lookahead == '.') ADVANCE(225); - if (lookahead == '0') ADVANCE(396); + if (lookahead == '0') ADVANCE(395); if (lookahead == '=') ADVANCE(380); - if (lookahead == '>') ADVANCE(392); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (lookahead == '>') ADVANCE(391); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(397); END_STATE(); case 329: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '-') ADVANCE(386); if (lookahead == '.') ADVANCE(225); - if (lookahead == '0') ADVANCE(396); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (lookahead == '0') ADVANCE(395); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(397); END_STATE(); case 330: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '-') ADVANCE(386); if (lookahead == '=') ADVANCE(380); - if (lookahead == '>') ADVANCE(392); + if (lookahead == '>') ADVANCE(391); END_STATE(); case 331: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '.') ADVANCE(225); - if (lookahead == '0') ADVANCE(396); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (lookahead == '0') ADVANCE(395); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(397); END_STATE(); case 332: ACCEPT_TOKEN(anon_sym_PLUS); @@ -9111,16 +9152,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_PLUS); if (lookahead == '+') ADVANCE(387); if (lookahead == '.') ADVANCE(225); - if (lookahead == '0') ADVANCE(396); + if (lookahead == '0') ADVANCE(395); if (lookahead == '=') ADVANCE(379); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(397); END_STATE(); case 334: ACCEPT_TOKEN(anon_sym_PLUS); if (lookahead == '+') ADVANCE(387); if (lookahead == '.') ADVANCE(225); - if (lookahead == '0') ADVANCE(396); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (lookahead == '0') ADVANCE(395); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(397); END_STATE(); case 335: ACCEPT_TOKEN(anon_sym_PLUS); @@ -9130,8 +9171,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 336: ACCEPT_TOKEN(anon_sym_PLUS); if (lookahead == '.') ADVANCE(225); - if (lookahead == '0') ADVANCE(396); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (lookahead == '0') ADVANCE(395); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(397); END_STATE(); case 337: ACCEPT_TOKEN(anon_sym_STAR); @@ -9143,12 +9184,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 339: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(76); - if (lookahead == '/') ADVANCE(680); + if (lookahead == '/') ADVANCE(679); END_STATE(); case 340: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(76); - if (lookahead == '/') ADVANCE(680); + if (lookahead == '/') ADVANCE(679); if (lookahead == '=') ADVANCE(377); END_STATE(); case 341: @@ -9322,600 +9363,604 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 390: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(79); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(393); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(392); END_STATE(); case 391: - ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(393); - END_STATE(); - case 392: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 393: + case 392: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '\'') ADVANCE(225); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(406); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(393); - if (set_contains(sym_number_literal_character_set_13, 13, lookahead)) ADVANCE(409); + lookahead == 'p') ADVANCE(405); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(392); + if (set_contains(sym_number_literal_character_set_13, 13, lookahead)) ADVANCE(408); END_STATE(); - case 394: + case 393: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( '\'', 226, - '.', 407, - 'B', 403, - 'b', 403, - 'E', 402, - 'e', 402, - 'P', 406, - 'p', 406, + '.', 406, + 'B', 402, + 'b', 402, + 'E', 401, + 'e', 401, + 'P', 405, + 'p', 405, 'X', 229, 'x', 229, - 'A', 404, - 'C', 404, - 'a', 404, - 'c', 404, - 'D', 404, - 'F', 404, - 'd', 404, - 'f', 404, - 'L', 409, - 'U', 409, - 'W', 409, - 'l', 409, - 'u', 409, - 'w', 409, + 'A', 403, + 'C', 403, + 'a', 403, + 'c', 403, + 'D', 403, + 'F', 403, + 'd', 403, + 'f', 403, + 'L', 408, + 'U', 408, + 'W', 408, + 'l', 408, + 'u', 408, + 'w', 408, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(395); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(394); END_STATE(); - case 395: + case 394: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( '\'', 226, - '.', 407, - 'E', 402, - 'e', 402, - 'P', 406, - 'p', 406, - 'A', 404, - 'C', 404, - 'a', 404, - 'c', 404, - 'B', 404, - 'D', 404, - 'F', 404, - 'b', 404, - 'd', 404, - 'f', 404, - 'L', 409, - 'U', 409, - 'W', 409, - 'l', 409, - 'u', 409, - 'w', 409, + '.', 406, + 'E', 401, + 'e', 401, + 'P', 405, + 'p', 405, + 'A', 403, + 'C', 403, + 'a', 403, + 'c', 403, + 'B', 403, + 'D', 403, + 'F', 403, + 'b', 403, + 'd', 403, + 'f', 403, + 'L', 408, + 'U', 408, + 'W', 408, + 'l', 408, + 'u', 408, + 'w', 408, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(395); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(394); END_STATE(); - case 396: + case 395: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( '\'', 224, - '.', 407, - 'B', 405, - 'b', 405, + '.', 406, + 'B', 404, + 'b', 404, 'X', 78, 'x', 78, - 'E', 406, - 'P', 406, - 'e', 406, - 'p', 406, - 'D', 409, - 'F', 409, - 'L', 409, - 'U', 409, - 'W', 409, - 'd', 409, - 'f', 409, - 'l', 409, - 'u', 409, - 'w', 409, + 'E', 405, + 'P', 405, + 'e', 405, + 'p', 405, + 'D', 408, + 'F', 408, + 'L', 408, + 'U', 408, + 'W', 408, + 'd', 408, + 'f', 408, + 'l', 408, + 'u', 408, + 'w', 408, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(397); END_STATE(); - case 397: + case 396: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( '\'', 224, - '.', 407, - 'B', 408, - 'b', 408, + '.', 406, + 'B', 407, + 'b', 407, 'X', 229, 'x', 229, - 'E', 406, - 'P', 406, - 'e', 406, - 'p', 406, - 'D', 409, - 'F', 409, - 'L', 409, - 'U', 409, - 'W', 409, - 'd', 409, - 'f', 409, - 'l', 409, - 'u', 409, - 'w', 409, + 'E', 405, + 'P', 405, + 'e', 405, + 'p', 405, + 'D', 408, + 'F', 408, + 'L', 408, + 'U', 408, + 'W', 408, + 'd', 408, + 'f', 408, + 'l', 408, + 'u', 408, + 'w', 408, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(397); END_STATE(); - case 398: + case 397: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '\'') ADVANCE(224); - if (lookahead == '.') ADVANCE(407); + if (lookahead == '.') ADVANCE(406); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(406); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(398); - if (set_contains(sym_number_literal_character_set_13, 13, lookahead)) ADVANCE(409); + lookahead == 'p') ADVANCE(405); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(397); + if (set_contains(sym_number_literal_character_set_13, 13, lookahead)) ADVANCE(408); END_STATE(); - case 399: + case 398: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( '\'', 230, - 'B', 399, - 'D', 399, - 'F', 399, - 'b', 399, - 'd', 399, - 'f', 399, - 'L', 409, - 'U', 409, - 'W', 409, - 'l', 409, - 'u', 409, - 'w', 409, + 'B', 398, + 'D', 398, + 'F', 398, + 'b', 398, + 'd', 398, + 'f', 398, + 'L', 408, + 'U', 408, + 'W', 408, + 'l', 408, + 'u', 408, + 'w', 408, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(398); END_STATE(); - case 400: + case 399: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( '\'', 228, '+', 230, '-', 230, - 'E', 400, - 'e', 400, - 'P', 406, - 'p', 406, - 'B', 401, - 'D', 401, - 'F', 401, - 'b', 401, - 'd', 401, - 'f', 401, - 'L', 409, - 'U', 409, - 'W', 409, - 'l', 409, - 'u', 409, - 'w', 409, + 'E', 399, + 'e', 399, + 'P', 405, + 'p', 405, + 'B', 400, + 'D', 400, + 'F', 400, + 'b', 400, + 'd', 400, + 'f', 400, + 'L', 408, + 'U', 408, + 'W', 408, + 'l', 408, + 'u', 408, + 'w', 408, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(400); END_STATE(); - case 401: + case 400: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( '\'', 228, - 'E', 400, - 'e', 400, - 'P', 406, - 'p', 406, - 'B', 401, - 'D', 401, - 'F', 401, - 'b', 401, - 'd', 401, - 'f', 401, - 'L', 409, - 'U', 409, - 'W', 409, - 'l', 409, - 'u', 409, - 'w', 409, + 'E', 399, + 'e', 399, + 'P', 405, + 'p', 405, + 'B', 400, + 'D', 400, + 'F', 400, + 'b', 400, + 'd', 400, + 'f', 400, + 'L', 408, + 'U', 408, + 'W', 408, + 'l', 408, + 'u', 408, + 'w', 408, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(400); END_STATE(); - case 402: + case 401: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( '\'', 229, - '.', 407, + '.', 406, '+', 230, '-', 230, - 'E', 402, - 'e', 402, - 'P', 406, - 'p', 406, - 'B', 404, - 'D', 404, - 'F', 404, - 'b', 404, - 'd', 404, - 'f', 404, - 'L', 409, - 'U', 409, - 'W', 409, - 'l', 409, - 'u', 409, - 'w', 409, + 'E', 401, + 'e', 401, + 'P', 405, + 'p', 405, + 'B', 403, + 'D', 403, + 'F', 403, + 'b', 403, + 'd', 403, + 'f', 403, + 'L', 408, + 'U', 408, + 'W', 408, + 'l', 408, + 'u', 408, + 'w', 408, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(403); END_STATE(); - case 403: + case 402: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( '\'', 229, - '.', 407, - 'E', 402, - 'e', 402, - 'P', 406, - 'p', 406, - 'A', 404, - 'C', 404, - 'a', 404, - 'c', 404, - 'B', 404, - 'D', 404, - 'F', 404, - 'b', 404, - 'd', 404, - 'f', 404, - 'L', 409, - 'U', 409, - 'W', 409, - 'l', 409, - 'u', 409, - 'w', 409, + '.', 406, + 'E', 401, + 'e', 401, + 'P', 405, + 'p', 405, + 'A', 403, + 'C', 403, + 'a', 403, + 'c', 403, + 'B', 403, + 'D', 403, + 'F', 403, + 'b', 403, + 'd', 403, + 'f', 403, + 'L', 408, + 'U', 408, + 'W', 408, + 'l', 408, + 'u', 408, + 'w', 408, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(395); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(394); END_STATE(); - case 404: + case 403: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( '\'', 229, - '.', 407, - 'E', 402, - 'e', 402, - 'P', 406, - 'p', 406, - 'B', 404, - 'D', 404, - 'F', 404, - 'b', 404, - 'd', 404, - 'f', 404, - 'L', 409, - 'U', 409, - 'W', 409, - 'l', 409, - 'u', 409, - 'w', 409, + '.', 406, + 'E', 401, + 'e', 401, + 'P', 405, + 'p', 405, + 'B', 403, + 'D', 403, + 'F', 403, + 'b', 403, + 'd', 403, + 'f', 403, + 'L', 408, + 'U', 408, + 'W', 408, + 'l', 408, + 'u', 408, + 'w', 408, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(403); END_STATE(); - case 405: + case 404: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '.') ADVANCE(225); - if (lookahead == '0') ADVANCE(397); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); - if (set_contains(sym_number_literal_character_set_13, 13, lookahead)) ADVANCE(409); + if (lookahead == '0') ADVANCE(396); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(397); + if (set_contains(sym_number_literal_character_set_13, 13, lookahead)) ADVANCE(408); END_STATE(); - case 406: + case 405: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( '+', 230, '-', 230, - 'B', 399, - 'D', 399, - 'F', 399, - 'b', 399, - 'd', 399, - 'f', 399, - 'L', 409, - 'U', 409, - 'W', 409, - 'l', 409, - 'u', 409, - 'w', 409, + 'B', 398, + 'D', 398, + 'F', 398, + 'b', 398, + 'd', 398, + 'f', 398, + 'L', 408, + 'U', 408, + 'W', 408, + 'l', 408, + 'u', 408, + 'w', 408, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(398); END_STATE(); - case 407: + case 406: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - 'E', 400, - 'e', 400, - 'P', 406, - 'p', 406, - 'B', 401, - 'D', 401, - 'F', 401, - 'b', 401, - 'd', 401, - 'f', 401, - 'L', 409, - 'U', 409, - 'W', 409, - 'l', 409, - 'u', 409, - 'w', 409, + 'E', 399, + 'e', 399, + 'P', 405, + 'p', 405, + 'B', 400, + 'D', 400, + 'F', 400, + 'b', 400, + 'd', 400, + 'f', 400, + 'L', 408, + 'U', 408, + 'W', 408, + 'l', 408, + 'u', 408, + 'w', 408, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(400); END_STATE(); - case 408: + case 407: ACCEPT_TOKEN(sym_number_literal); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(398); - if (set_contains(sym_number_literal_character_set_13, 13, lookahead)) ADVANCE(409); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(397); + if (set_contains(sym_number_literal_character_set_13, 13, lookahead)) ADVANCE(408); END_STATE(); - case 409: + case 408: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - 'B', 409, - 'D', 409, - 'F', 409, - 'L', 409, - 'U', 409, - 'W', 409, - 'b', 409, - 'd', 409, - 'f', 409, - 'l', 409, - 'u', 409, - 'w', 409, + 'B', 408, + 'D', 408, + 'F', 408, + 'L', 408, + 'U', 408, + 'W', 408, + 'b', 408, + 'd', 408, + 'f', 408, + 'l', 408, + 'u', 408, + 'w', 408, ); END_STATE(); - case 410: + case 409: ACCEPT_TOKEN(anon_sym_L_SQUOTE); END_STATE(); - case 411: + case 410: ACCEPT_TOKEN(anon_sym_u_SQUOTE); END_STATE(); - case 412: + case 411: ACCEPT_TOKEN(anon_sym_U_SQUOTE); END_STATE(); - case 413: + case 412: ACCEPT_TOKEN(anon_sym_u8_SQUOTE); END_STATE(); - case 414: + case 413: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 415: + case 414: ACCEPT_TOKEN(aux_sym_char_literal_token1); END_STATE(); - case 416: + case 415: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\n') ADVANCE(547); - if (lookahead == '\r') ADVANCE(546); + if (lookahead == '\n') ADVANCE(546); + if (lookahead == '\r') ADVANCE(545); if (lookahead == 'U') ADVANCE(245); if (lookahead == 'u') ADVANCE(237); if (lookahead == 'x') ADVANCE(233); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(549); - if (lookahead != 0) ADVANCE(546); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(548); + if (lookahead != 0) ADVANCE(545); END_STATE(); - case 417: + case 416: ACCEPT_TOKEN(aux_sym_char_literal_token1); if (lookahead == '*') ADVANCE(76); - if (lookahead == '/') ADVANCE(680); + if (lookahead == '/') ADVANCE(679); END_STATE(); - case 418: + case 417: ACCEPT_TOKEN(aux_sym_char_literal_token1); if (lookahead == '\\') ADVANCE(38); END_STATE(); - case 419: + case 418: ACCEPT_TOKEN(aux_sym_char_literal_token1); if (lookahead == '_') ADVANCE(95); END_STATE(); - case 420: + case 419: ACCEPT_TOKEN(anon_sym_L_DQUOTE); END_STATE(); - case 421: + case 420: ACCEPT_TOKEN(anon_sym_u_DQUOTE); END_STATE(); - case 422: + case 421: ACCEPT_TOKEN(anon_sym_U_DQUOTE); END_STATE(); - case 423: + case 422: ACCEPT_TOKEN(anon_sym_u8_DQUOTE); END_STATE(); - case 424: + case 423: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 425: + case 424: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(427); - if (lookahead == '/') ADVANCE(545); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '/') ADVANCE(544); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); - case 426: + case 425: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(426); - if (lookahead == '/') ADVANCE(545); + if (lookahead == '*') ADVANCE(425); + if (lookahead == '/') ADVANCE(544); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(427); + lookahead != '\\') ADVANCE(426); END_STATE(); - case 427: + case 426: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(426); + if (lookahead == '*') ADVANCE(425); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(427); + lookahead != '\\') ADVANCE(426); END_STATE(); - case 428: + case 427: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '/') ADVANCE(425); - if (lookahead == '_') ADVANCE(429); + if (lookahead == '/') ADVANCE(424); + if (lookahead == '_') ADVANCE(428); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(428); + lookahead == ' ') ADVANCE(427); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); + END_STATE(); + case 428: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '_') ADVANCE(437); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(544); END_STATE(); case 429: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '_') ADVANCE(438); + if (lookahead == '_') ADVANCE(509); + if (lookahead == 'c') ADVANCE(510); + if (lookahead == 'd') ADVANCE(442); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 430: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '_') ADVANCE(510); - if (lookahead == 'c') ADVANCE(511); - if (lookahead == 'd') ADVANCE(443); + if (lookahead == '_') ADVANCE(479); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 431: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '_') ADVANCE(480); + if (lookahead == '_') ADVANCE(441); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 432: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '_') ADVANCE(442); + if (lookahead == '_') ADVANCE(484); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 433: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '_') ADVANCE(485); + if (lookahead == '_') ADVANCE(538); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 434: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '_') ADVANCE(539); + if (lookahead == '_') ADVANCE(448); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 435: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '_') ADVANCE(449); + if (lookahead == '_') ADVANCE(520); + if (lookahead == 'd') ADVANCE(442); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 436: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '_') ADVANCE(521); - if (lookahead == 'd') ADVANCE(443); + if (lookahead == 'a') ADVANCE(544); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 437: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'a') ADVANCE(545); + ADVANCE_MAP( + 'a', 488, + 'c', 507, + 'd', 456, + 'e', 539, + 'f', 505, + 'i', 501, + 'k', 459, + 'm', 438, + 'n', 506, + 'p', 439, + 'r', 445, + 's', 461, + 'u', 494, + ); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 438: ACCEPT_TOKEN(aux_sym_string_literal_token1); - ADVANCE_MAP( - 'a', 489, - 'c', 508, - 'd', 457, - 'e', 540, - 'f', 506, - 'i', 502, - 'k', 460, - 'm', 439, - 'n', 507, - 'p', 440, - 'r', 446, - 's', 462, - 'u', 495, - ); + if (lookahead == 'a') ADVANCE(541); + if (lookahead == 'u') ADVANCE(521); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 439: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'a') ADVANCE(542); - if (lookahead == 'u') ADVANCE(522); + if (lookahead == 'a') ADVANCE(446); + if (lookahead == 'e') ADVANCE(516); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 440: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'a') ADVANCE(447); - if (lookahead == 'e') ADVANCE(517); + if (lookahead == 'a') ADVANCE(542); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 441: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'a') ADVANCE(543); + if (lookahead == 'a') ADVANCE(472); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 442: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'a') ADVANCE(473); + if (lookahead == 'a') ADVANCE(532); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 443: ACCEPT_TOKEN(aux_sym_string_literal_token1); @@ -9923,275 +9968,275 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 444: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'b') ADVANCE(463); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 445: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'b') ADVANCE(464); + if (lookahead == 'c') ADVANCE(535); + if (lookahead == 'e') ADVANCE(470); + if (lookahead == 'o') ADVANCE(431); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 446: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'c') ADVANCE(536); - if (lookahead == 'e') ADVANCE(471); - if (lookahead == 'o') ADVANCE(432); + if (lookahead == 'c') ADVANCE(486); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 447: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'c') ADVANCE(487); + if (lookahead == 'c') ADVANCE(512); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 448: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'c') ADVANCE(513); + if (lookahead == 'c') ADVANCE(474); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 449: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'c') ADVANCE(475); + if (lookahead == 'c') ADVANCE(485); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 450: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'c') ADVANCE(486); + if (lookahead == 'c') ADVANCE(528); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 451: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'c') ADVANCE(529); + if (lookahead == 'c') ADVANCE(455); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 452: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'c') ADVANCE(456); + if (lookahead == 'c') ADVANCE(443); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 453: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'c') ADVANCE(444); + if (lookahead == 'd') ADVANCE(544); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 454: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'd') ADVANCE(545); + if (lookahead == 'd') ADVANCE(442); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 455: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'd') ADVANCE(443); + if (lookahead == 'e') ADVANCE(544); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 456: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'e') ADVANCE(545); + if (lookahead == 'e') ADVANCE(513); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 457: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'e') ADVANCE(514); + if (lookahead == 'e') ADVANCE(453); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 458: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'e') ADVANCE(454); + if (lookahead == 'e') ADVANCE(543); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 459: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'e') ADVANCE(544); + if (lookahead == 'e') ADVANCE(514); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 460: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'e') ADVANCE(515); + if (lookahead == 'e') ADVANCE(491); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 461: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'e') ADVANCE(492); + if (lookahead == 'e') ADVANCE(450); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 462: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'e') ADVANCE(451); + if (lookahead == 'e') ADVANCE(471); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 463: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'e') ADVANCE(472); + if (lookahead == 'e') ADVANCE(433); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 464: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'e') ADVANCE(434); + if (lookahead == 'e') ADVANCE(487); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 465: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'e') ADVANCE(488); + if (lookahead == 'e') ADVANCE(517); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 466: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'e') ADVANCE(518); + if (lookahead == 'e') ADVANCE(452); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 467: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'e') ADVANCE(453); + if (lookahead == 'e') ADVANCE(531); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 468: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'e') ADVANCE(532); + if (lookahead == 'e') ADVANCE(449); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 469: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'e') ADVANCE(450); + if (lookahead == 'e') ADVANCE(540); + if (lookahead == 'i') ADVANCE(503); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 470: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'e') ADVANCE(541); - if (lookahead == 'i') ADVANCE(504); + if (lookahead == 'f') ADVANCE(454); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 471: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'f') ADVANCE(455); + if (lookahead == 'f') ADVANCE(508); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 472: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'f') ADVANCE(509); + if (lookahead == 'f') ADVANCE(534); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 473: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'f') ADVANCE(535); + if (lookahead == 'g') ADVANCE(500); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 474: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'g') ADVANCE(501); + if (lookahead == 'h') ADVANCE(468); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 475: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'h') ADVANCE(469); + if (lookahead == 'i') ADVANCE(473); + if (lookahead == 'w') ADVANCE(440); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 476: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'i') ADVANCE(474); - if (lookahead == 'w') ADVANCE(441); + if (lookahead == 'i') ADVANCE(526); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 477: ACCEPT_TOKEN(aux_sym_string_literal_token1); @@ -10199,219 +10244,219 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 478: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'i') ADVANCE(528); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'r') ADVANCE(467); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 479: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'i') ADVANCE(497); - if (lookahead == 'r') ADVANCE(468); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'u') ADVANCE(495); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 480: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'i') ADVANCE(497); - if (lookahead == 'u') ADVANCE(496); + if (lookahead == 'i') ADVANCE(529); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 481: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'i') ADVANCE(530); + if (lookahead == 'i') ADVANCE(525); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 482: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'i') ADVANCE(526); + if (lookahead == 'i') ADVANCE(511); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 483: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'i') ADVANCE(512); + if (lookahead == 'i') ADVANCE(498); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 484: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'i') ADVANCE(499); + if (lookahead == 'i') ADVANCE(504); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 485: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'i') ADVANCE(505); + if (lookahead == 'k') ADVANCE(544); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 486: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'k') ADVANCE(545); + if (lookahead == 'k') ADVANCE(457); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 487: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'k') ADVANCE(458); + if (lookahead == 'l') ADVANCE(544); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 488: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'l') ADVANCE(545); + if (lookahead == 'l') ADVANCE(475); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 489: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'l') ADVANCE(476); + if (lookahead == 'l') ADVANCE(453); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 490: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'l') ADVANCE(454); + if (lookahead == 'l') ADVANCE(483); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 491: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'l') ADVANCE(484); + if (lookahead == 'm') ADVANCE(544); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 492: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'm') ADVANCE(545); + if (lookahead == 'm') ADVANCE(460); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 493: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'm') ADVANCE(461); + if (lookahead == 'n') ADVANCE(544); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 494: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'n') ADVANCE(545); + if (lookahead == 'n') ADVANCE(536); + if (lookahead == 's') ADVANCE(458); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 495: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'n') ADVANCE(537); - if (lookahead == 's') ADVANCE(459); + if (lookahead == 'n') ADVANCE(536); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 496: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'n') ADVANCE(537); + if (lookahead == 'n') ADVANCE(490); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 497: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'n') ADVANCE(491); + if (lookahead == 'n') ADVANCE(451); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 498: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'n') ADVANCE(452); + if (lookahead == 'n') ADVANCE(455); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 499: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'n') ADVANCE(456); + if (lookahead == 'n') ADVANCE(464); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 500: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'n') ADVANCE(465); + if (lookahead == 'n') ADVANCE(457); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 501: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'n') ADVANCE(458); + if (lookahead == 'n') ADVANCE(477); + if (lookahead == 'o') ADVANCE(492); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 502: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'n') ADVANCE(478); - if (lookahead == 'o') ADVANCE(493); + if (lookahead == 'n') ADVANCE(523); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 503: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'n') ADVANCE(524); + if (lookahead == 'n') ADVANCE(480); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 504: ACCEPT_TOKEN(aux_sym_string_literal_token1); @@ -10419,1171 +10464,1163 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 505: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'n') ADVANCE(482); + if (lookahead == 'o') ADVANCE(515); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 506: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'o') ADVANCE(516); + if (lookahead == 'o') ADVANCE(478); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 507: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'o') ADVANCE(479); + if (lookahead == 'o') ADVANCE(489); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 508: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'o') ADVANCE(490); + if (lookahead == 'o') ADVANCE(485); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 509: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'o') ADVANCE(486); + if (lookahead == 'o') ADVANCE(497); + if (lookahead == 'r') ADVANCE(462); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 510: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'o') ADVANCE(498); - if (lookahead == 'r') ADVANCE(463); + if (lookahead == 'o') ADVANCE(502); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 511: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'o') ADVANCE(503); + if (lookahead == 'o') ADVANCE(493); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 512: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'o') ADVANCE(494); + if (lookahead == 'p') ADVANCE(535); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 513: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'p') ADVANCE(536); + if (lookahead == 'p') ADVANCE(519); + if (lookahead == 'v') ADVANCE(469); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 514: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'p') ADVANCE(520); - if (lookahead == 'v') ADVANCE(470); + if (lookahead == 'r') ADVANCE(499); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 515: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'r') ADVANCE(500); + if (lookahead == 'r') ADVANCE(451); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 516: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'r') ADVANCE(452); + if (lookahead == 'r') ADVANCE(447); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 517: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'r') ADVANCE(448); + if (lookahead == 'r') ADVANCE(432); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 518: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'r') ADVANCE(433); + if (lookahead == 'r') ADVANCE(493); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 519: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'r') ADVANCE(494); + if (lookahead == 'r') ADVANCE(466); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 520: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'r') ADVANCE(467); + if (lookahead == 'r') ADVANCE(462); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 521: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'r') ADVANCE(463); + if (lookahead == 's') ADVANCE(530); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 522: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 's') ADVANCE(531); + if (lookahead == 's') ADVANCE(430); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 523: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 's') ADVANCE(431); + if (lookahead == 's') ADVANCE(529); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 524: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 's') ADVANCE(530); + if (lookahead == 's') ADVANCE(457); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 525: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 's') ADVANCE(458); + if (lookahead == 't') ADVANCE(544); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 526: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 't') ADVANCE(545); + if (lookahead == 't') ADVANCE(435); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 527: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 't') ADVANCE(436); + if (lookahead == 't') ADVANCE(429); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 528: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 't') ADVANCE(430); + if (lookahead == 't') ADVANCE(482); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 529: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 't') ADVANCE(483); + if (lookahead == 't') ADVANCE(454); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 530: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 't') ADVANCE(455); + if (lookahead == 't') ADVANCE(434); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 531: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 't') ADVANCE(435); + if (lookahead == 't') ADVANCE(537); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 532: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 't') ADVANCE(538); + if (lookahead == 't') ADVANCE(436); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 533: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 't') ADVANCE(437); + if (lookahead == 't') ADVANCE(457); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 534: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 't') ADVANCE(458); + if (lookahead == 't') ADVANCE(465); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 535: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 't') ADVANCE(466); + if (lookahead == 'u') ADVANCE(544); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 536: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'u') ADVANCE(545); + if (lookahead == 'u') ADVANCE(524); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 537: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'u') ADVANCE(525); + if (lookahead == 'u') ADVANCE(518); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 538: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'u') ADVANCE(519); + if (lookahead == 'u') ADVANCE(495); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 539: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'u') ADVANCE(496); + if (lookahead == 'x') ADVANCE(476); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 540: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'x') ADVANCE(477); + if (lookahead == 'x') ADVANCE(480); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 541: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'x') ADVANCE(481); + if (lookahead == 'y') ADVANCE(444); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 542: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'y') ADVANCE(445); + if (lookahead == 'y') ADVANCE(522); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 543: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'y') ADVANCE(523); + if (lookahead == 'd' || + lookahead == 'r') ADVANCE(544); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 544: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == 'd' || - lookahead == 'r') ADVANCE(545); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(545); + lookahead != '\\') ADVANCE(544); END_STATE(); case 545: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') ADVANCE(545); + ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); case 546: ACCEPT_TOKEN(sym_escape_sequence); + if (lookahead == '\\') ADVANCE(38); END_STATE(); case 547: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(545); END_STATE(); case 548: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(546); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(547); END_STATE(); case 549: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(548); - END_STATE(); - case 550: ACCEPT_TOKEN(sym_system_lib_string); END_STATE(); - case 551: + case 550: ACCEPT_TOKEN(sym_system_lib_string); - if (lookahead == '>') ADVANCE(550); + if (lookahead == '>') ADVANCE(549); if (lookahead == '\\') ADVANCE(85); if (lookahead != 0 && lookahead != '\n') ADVANCE(84); END_STATE(); + case 551: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(419); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(86); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); + END_STATE(); case 552: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(420); - if (lookahead == '\'') ADVANCE(410); + if (lookahead == '"') ADVANCE(419); if (lookahead == '\\') ADVANCE(86); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 553: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(420); + if (lookahead == '"') ADVANCE(421); + if (lookahead == '\'') ADVANCE(411); if (lookahead == '\\') ADVANCE(86); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 554: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(422); - if (lookahead == '\'') ADVANCE(412); + if (lookahead == '"') ADVANCE(421); if (lookahead == '\\') ADVANCE(86); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 555: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(422); + if (lookahead == '"') ADVANCE(420); + if (lookahead == '\'') ADVANCE(410); + if (lookahead == '8') ADVANCE(557); if (lookahead == '\\') ADVANCE(86); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 556: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(421); - if (lookahead == '\'') ADVANCE(411); + if (lookahead == '"') ADVANCE(420); if (lookahead == '8') ADVANCE(558); if (lookahead == '\\') ADVANCE(86); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 557: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(421); - if (lookahead == '8') ADVANCE(559); + if (lookahead == '"') ADVANCE(422); + if (lookahead == '\'') ADVANCE(412); if (lookahead == '\\') ADVANCE(86); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 558: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(423); - if (lookahead == '\'') ADVANCE(413); + if (lookahead == '"') ADVANCE(422); if (lookahead == '\\') ADVANCE(86); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 559: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(423); + if (lookahead == '\'') ADVANCE(409); if (lookahead == '\\') ADVANCE(86); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 560: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(410); + if (lookahead == '\'') ADVANCE(411); if (lookahead == '\\') ADVANCE(86); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 561: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(412); + if (lookahead == '\'') ADVANCE(410); + if (lookahead == '8') ADVANCE(562); if (lookahead == '\\') ADVANCE(86); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 562: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(411); - if (lookahead == '8') ADVANCE(563); + if (lookahead == '\'') ADVANCE(412); if (lookahead == '\\') ADVANCE(86); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 563: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(413); if (lookahead == '\\') ADVANCE(86); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == '_') ADVANCE(569); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 564: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == '_') ADVANCE(570); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == '_') ADVANCE(611); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 565: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == '_') ADVANCE(612); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == '_') ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 566: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == '_') ADVANCE(575); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == '_') ADVANCE(616); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 567: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == '_') ADVANCE(617); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == '_') ADVANCE(670); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 568: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == '_') ADVANCE(671); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == '_') ADVANCE(581); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 569: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(86); - if (lookahead == '_') ADVANCE(582); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); - END_STATE(); - case 570: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( '\\', 86, - 'a', 620, - 'c', 640, - 'd', 588, - 'e', 672, - 'f', 638, - 'i', 634, - 'k', 592, - 'm', 571, - 'n', 639, - 'p', 572, - 'r', 579, - 's', 594, - 'u', 627, + 'a', 619, + 'c', 639, + 'd', 587, + 'e', 671, + 'f', 637, + 'i', 633, + 'k', 591, + 'm', 570, + 'n', 638, + 'p', 571, + 'r', 578, + 's', 593, + 'u', 626, ); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); + END_STATE(); + case 570: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(86); + if (lookahead == 'a') ADVANCE(673); + if (lookahead == 'u') ADVANCE(653); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 571: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'a') ADVANCE(674); - if (lookahead == 'u') ADVANCE(654); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'a') ADVANCE(579); + if (lookahead == 'e') ADVANCE(648); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 572: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'a') ADVANCE(580); - if (lookahead == 'e') ADVANCE(649); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'a') ADVANCE(256); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 573: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'a') ADVANCE(256); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'a') ADVANCE(674); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 574: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'a') ADVANCE(675); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'a') ADVANCE(604); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 575: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'a') ADVANCE(605); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'a') ADVANCE(664); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 576: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); if (lookahead == 'a') ADVANCE(665); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 577: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'a') ADVANCE(666); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'b') ADVANCE(595); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 578: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'b') ADVANCE(596); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'c') ADVANCE(667); + if (lookahead == 'e') ADVANCE(602); + if (lookahead == 'o') ADVANCE(565); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 579: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'c') ADVANCE(668); - if (lookahead == 'e') ADVANCE(603); - if (lookahead == 'o') ADVANCE(566); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'c') ADVANCE(618); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 580: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'c') ADVANCE(619); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'c') ADVANCE(644); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 581: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'c') ADVANCE(645); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'c') ADVANCE(606); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 582: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'c') ADVANCE(607); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'c') ADVANCE(617); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 583: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'c') ADVANCE(618); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'c') ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 584: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'c') ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'c') ADVANCE(589); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 585: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'c') ADVANCE(590); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'c') ADVANCE(576); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 586: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'c') ADVANCE(577); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'd') ADVANCE(256); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 587: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'd') ADVANCE(256); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'e') ADVANCE(645); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 588: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'e') ADVANCE(646); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'e') ADVANCE(586); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 589: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'e') ADVANCE(587); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'e') ADVANCE(256); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 590: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'e') ADVANCE(256); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'e') ADVANCE(675); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 591: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'e') ADVANCE(676); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'e') ADVANCE(646); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 592: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'e') ADVANCE(647); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'e') ADVANCE(623); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 593: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'e') ADVANCE(624); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'e') ADVANCE(583); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 594: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'e') ADVANCE(584); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'e') ADVANCE(603); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 595: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'e') ADVANCE(604); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'e') ADVANCE(567); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 596: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'e') ADVANCE(568); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'e') ADVANCE(621); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 597: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'e') ADVANCE(622); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'e') ADVANCE(649); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 598: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'e') ADVANCE(650); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'e') ADVANCE(585); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 599: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'e') ADVANCE(586); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'e') ADVANCE(663); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 600: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'e') ADVANCE(664); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'e') ADVANCE(582); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 601: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'e') ADVANCE(583); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'e') ADVANCE(672); + if (lookahead == 'i') ADVANCE(635); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 602: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'e') ADVANCE(673); - if (lookahead == 'i') ADVANCE(636); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'f') ADVANCE(255); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 603: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'f') ADVANCE(255); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'f') ADVANCE(640); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 604: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'f') ADVANCE(641); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'f') ADVANCE(666); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 605: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'f') ADVANCE(667); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'g') ADVANCE(632); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 606: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'g') ADVANCE(633); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'h') ADVANCE(600); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 607: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'h') ADVANCE(601); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'i') ADVANCE(605); + if (lookahead == 'w') ADVANCE(573); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 608: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'i') ADVANCE(606); - if (lookahead == 'w') ADVANCE(574); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'i') ADVANCE(659); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 609: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); if (lookahead == 'i') ADVANCE(660); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 610: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'i') ADVANCE(661); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'i') ADVANCE(628); + if (lookahead == 'r') ADVANCE(599); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 611: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'i') ADVANCE(629); - if (lookahead == 'r') ADVANCE(600); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'i') ADVANCE(628); + if (lookahead == 'u') ADVANCE(627); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 612: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'i') ADVANCE(629); - if (lookahead == 'u') ADVANCE(628); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'i') ADVANCE(658); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 613: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'i') ADVANCE(659); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'i') ADVANCE(657); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 614: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'i') ADVANCE(658); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'i') ADVANCE(643); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 615: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'i') ADVANCE(644); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'i') ADVANCE(630); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 616: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'i') ADVANCE(631); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'i') ADVANCE(636); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 617: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'i') ADVANCE(637); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'k') ADVANCE(256); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 618: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'k') ADVANCE(256); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'k') ADVANCE(588); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 619: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'k') ADVANCE(589); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'l') ADVANCE(607); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 620: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'l') ADVANCE(608); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'l') ADVANCE(586); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 621: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'l') ADVANCE(587); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'l') ADVANCE(256); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 622: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'l') ADVANCE(256); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'l') ADVANCE(615); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 623: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'l') ADVANCE(616); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'm') ADVANCE(256); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 624: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'm') ADVANCE(256); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'm') ADVANCE(592); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 625: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'm') ADVANCE(593); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'n') ADVANCE(256); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 626: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'n') ADVANCE(256); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'n') ADVANCE(668); + if (lookahead == 's') ADVANCE(590); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 627: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'n') ADVANCE(669); - if (lookahead == 's') ADVANCE(591); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'n') ADVANCE(668); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 628: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'n') ADVANCE(669); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'n') ADVANCE(622); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 629: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'n') ADVANCE(623); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'n') ADVANCE(584); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 630: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'n') ADVANCE(585); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'n') ADVANCE(589); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 631: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'n') ADVANCE(590); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'n') ADVANCE(596); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 632: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'n') ADVANCE(597); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'n') ADVANCE(588); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 633: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'n') ADVANCE(589); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'n') ADVANCE(609); + if (lookahead == 'o') ADVANCE(624); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 634: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'n') ADVANCE(610); - if (lookahead == 'o') ADVANCE(625); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'n') ADVANCE(655); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 635: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'n') ADVANCE(656); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'n') ADVANCE(612); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 636: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); if (lookahead == 'n') ADVANCE(613); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 637: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'n') ADVANCE(614); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'o') ADVANCE(647); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 638: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'o') ADVANCE(648); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'o') ADVANCE(610); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 639: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'o') ADVANCE(611); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'o') ADVANCE(620); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 640: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'o') ADVANCE(621); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'o') ADVANCE(617); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 641: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'o') ADVANCE(618); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'o') ADVANCE(629); + if (lookahead == 'r') ADVANCE(594); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 642: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'o') ADVANCE(630); - if (lookahead == 'r') ADVANCE(595); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'o') ADVANCE(634); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 643: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'o') ADVANCE(635); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'o') ADVANCE(625); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 644: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'o') ADVANCE(626); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'p') ADVANCE(667); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 645: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'p') ADVANCE(668); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'p') ADVANCE(651); + if (lookahead == 'v') ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 646: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'p') ADVANCE(652); - if (lookahead == 'v') ADVANCE(602); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'r') ADVANCE(631); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 647: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'r') ADVANCE(632); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'r') ADVANCE(584); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 648: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'r') ADVANCE(585); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'r') ADVANCE(580); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 649: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'r') ADVANCE(581); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'r') ADVANCE(566); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 650: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'r') ADVANCE(567); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'r') ADVANCE(625); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 651: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'r') ADVANCE(626); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'r') ADVANCE(598); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 652: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'r') ADVANCE(599); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'r') ADVANCE(594); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 653: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'r') ADVANCE(595); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 's') ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 654: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 's') ADVANCE(663); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 's') ADVANCE(564); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 655: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 's') ADVANCE(565); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 's') ADVANCE(658); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 656: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 's') ADVANCE(659); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 's') ADVANCE(588); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 657: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 's') ADVANCE(589); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 't') ADVANCE(256); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 658: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 't') ADVANCE(256); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 't') ADVANCE(255); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 659: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 't') ADVANCE(255); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 't') ADVANCE(254); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 660: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 't') ADVANCE(254); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 't') ADVANCE(253); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 661: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 't') ADVANCE(253); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 't') ADVANCE(614); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 662: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 't') ADVANCE(615); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 't') ADVANCE(568); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 663: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 't') ADVANCE(569); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 't') ADVANCE(669); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 664: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 't') ADVANCE(670); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 't') ADVANCE(572); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 665: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 't') ADVANCE(573); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 't') ADVANCE(588); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 666: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 't') ADVANCE(589); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 't') ADVANCE(597); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 667: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 't') ADVANCE(598); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'u') ADVANCE(256); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 668: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'u') ADVANCE(256); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'u') ADVANCE(656); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 669: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'u') ADVANCE(657); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'u') ADVANCE(650); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 670: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'u') ADVANCE(651); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'u') ADVANCE(627); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 671: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'u') ADVANCE(628); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'x') ADVANCE(608); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 672: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'x') ADVANCE(609); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'x') ADVANCE(612); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 673: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'x') ADVANCE(613); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'y') ADVANCE(577); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 674: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'y') ADVANCE(578); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'y') ADVANCE(654); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 675: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'y') ADVANCE(655); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (lookahead == 'd' || + lookahead == 'r') ADVANCE(256); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 676: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(86); - if (lookahead == 'd' || - lookahead == 'r') ADVANCE(256); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(676); END_STATE(); case 677: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(86); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); + ACCEPT_TOKEN(sym_comment); END_STATE(); case 678: ACCEPT_TOKEN(sym_comment); + if (lookahead == '\r') ADVANCE(680); + if (lookahead == '\\') ADVANCE(678); + if (lookahead != 0) ADVANCE(679); END_STATE(); case 679: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\r') ADVANCE(681); - if (lookahead == '\\') ADVANCE(679); - if (lookahead != 0) ADVANCE(680); - END_STATE(); - case 680: ACCEPT_TOKEN(sym_comment); if (lookahead == '\\') ADVANCE(49); if (lookahead != 0 && - lookahead != '\n') ADVANCE(680); + lookahead != '\n') ADVANCE(679); END_STATE(); - case 681: + case 680: ACCEPT_TOKEN(sym_comment); if (lookahead == '\\') ADVANCE(49); - if (lookahead != 0) ADVANCE(680); + if (lookahead != 0) ADVANCE(679); END_STATE(); default: return false; @@ -13415,20 +13452,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [30] = {.lex_state = 249}, [31] = {.lex_state = 249}, [32] = {.lex_state = 249}, - [33] = {.lex_state = 54}, - [34] = {.lex_state = 54}, + [33] = {.lex_state = 249}, + [34] = {.lex_state = 249}, [35] = {.lex_state = 249}, - [36] = {.lex_state = 54}, + [36] = {.lex_state = 249}, [37] = {.lex_state = 249}, [38] = {.lex_state = 249}, [39] = {.lex_state = 249}, - [40] = {.lex_state = 249}, + [40] = {.lex_state = 54}, [41] = {.lex_state = 249}, [42] = {.lex_state = 249}, - [43] = {.lex_state = 249}, + [43] = {.lex_state = 54}, [44] = {.lex_state = 249}, [45] = {.lex_state = 249}, - [46] = {.lex_state = 249}, + [46] = {.lex_state = 54}, [47] = {.lex_state = 249}, [48] = {.lex_state = 249}, [49] = {.lex_state = 52}, @@ -13436,18 +13473,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [51] = {.lex_state = 52}, [52] = {.lex_state = 52}, [53] = {.lex_state = 52}, - [54] = {.lex_state = 249}, + [54] = {.lex_state = 54}, [55] = {.lex_state = 249}, [56] = {.lex_state = 54}, [57] = {.lex_state = 54}, [58] = {.lex_state = 249}, - [59] = {.lex_state = 54}, - [60] = {.lex_state = 249}, - [61] = {.lex_state = 54}, - [62] = {.lex_state = 54}, + [59] = {.lex_state = 249}, + [60] = {.lex_state = 54}, + [61] = {.lex_state = 249}, + [62] = {.lex_state = 249}, [63] = {.lex_state = 249}, [64] = {.lex_state = 249}, - [65] = {.lex_state = 249}, + [65] = {.lex_state = 54}, [66] = {.lex_state = 249}, [67] = {.lex_state = 249}, [68] = {.lex_state = 249}, @@ -13462,11 +13499,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [77] = {.lex_state = 249}, [78] = {.lex_state = 249}, [79] = {.lex_state = 249}, - [80] = {.lex_state = 52}, - [81] = {.lex_state = 52}, - [82] = {.lex_state = 52}, - [83] = {.lex_state = 52}, - [84] = {.lex_state = 52}, + [80] = {.lex_state = 249}, + [81] = {.lex_state = 249}, + [82] = {.lex_state = 249}, + [83] = {.lex_state = 249}, + [84] = {.lex_state = 249}, [85] = {.lex_state = 52}, [86] = {.lex_state = 52}, [87] = {.lex_state = 52}, @@ -13544,149 +13581,149 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [159] = {.lex_state = 52}, [160] = {.lex_state = 52}, [161] = {.lex_state = 52}, - [162] = {.lex_state = 249}, - [163] = {.lex_state = 249}, - [164] = {.lex_state = 54}, - [165] = {.lex_state = 249}, - [166] = {.lex_state = 249}, - [167] = {.lex_state = 249}, + [162] = {.lex_state = 52}, + [163] = {.lex_state = 52}, + [164] = {.lex_state = 52}, + [165] = {.lex_state = 52}, + [166] = {.lex_state = 52}, + [167] = {.lex_state = 54}, [168] = {.lex_state = 249}, [169] = {.lex_state = 249}, - [170] = {.lex_state = 54}, - [171] = {.lex_state = 54}, + [170] = {.lex_state = 249}, + [171] = {.lex_state = 249}, [172] = {.lex_state = 249}, - [173] = {.lex_state = 249}, + [173] = {.lex_state = 54}, [174] = {.lex_state = 249}, - [175] = {.lex_state = 249}, + [175] = {.lex_state = 54}, [176] = {.lex_state = 249}, [177] = {.lex_state = 54}, - [178] = {.lex_state = 249}, + [178] = {.lex_state = 54}, [179] = {.lex_state = 249}, [180] = {.lex_state = 54}, - [181] = {.lex_state = 54}, - [182] = {.lex_state = 54}, + [181] = {.lex_state = 249}, + [182] = {.lex_state = 249}, [183] = {.lex_state = 249}, - [184] = {.lex_state = 249}, + [184] = {.lex_state = 54}, [185] = {.lex_state = 249}, - [186] = {.lex_state = 54}, - [187] = {.lex_state = 54}, - [188] = {.lex_state = 54}, - [189] = {.lex_state = 249}, + [186] = {.lex_state = 249}, + [187] = {.lex_state = 249}, + [188] = {.lex_state = 249}, + [189] = {.lex_state = 54}, [190] = {.lex_state = 249}, - [191] = {.lex_state = 249}, + [191] = {.lex_state = 54}, [192] = {.lex_state = 249}, [193] = {.lex_state = 249}, [194] = {.lex_state = 249}, [195] = {.lex_state = 249}, [196] = {.lex_state = 249}, - [197] = {.lex_state = 54}, + [197] = {.lex_state = 249}, [198] = {.lex_state = 249}, - [199] = {.lex_state = 54}, + [199] = {.lex_state = 249}, [200] = {.lex_state = 249}, - [201] = {.lex_state = 249}, - [202] = {.lex_state = 249}, - [203] = {.lex_state = 54}, + [201] = {.lex_state = 54}, + [202] = {.lex_state = 54}, + [203] = {.lex_state = 249}, [204] = {.lex_state = 249}, - [205] = {.lex_state = 54}, + [205] = {.lex_state = 249}, [206] = {.lex_state = 249}, - [207] = {.lex_state = 54}, - [208] = {.lex_state = 249}, + [207] = {.lex_state = 249}, + [208] = {.lex_state = 54}, [209] = {.lex_state = 249}, [210] = {.lex_state = 249}, - [211] = {.lex_state = 54}, - [212] = {.lex_state = 249}, - [213] = {.lex_state = 249}, - [214] = {.lex_state = 54}, - [215] = {.lex_state = 54}, - [216] = {.lex_state = 54}, + [211] = {.lex_state = 249}, + [212] = {.lex_state = 54}, + [213] = {.lex_state = 54}, + [214] = {.lex_state = 249}, + [215] = {.lex_state = 249}, + [216] = {.lex_state = 249}, [217] = {.lex_state = 249}, [218] = {.lex_state = 249}, [219] = {.lex_state = 249}, [220] = {.lex_state = 54}, - [221] = {.lex_state = 249}, + [221] = {.lex_state = 54}, [222] = {.lex_state = 249}, - [223] = {.lex_state = 249}, + [223] = {.lex_state = 54}, [224] = {.lex_state = 249}, - [225] = {.lex_state = 249}, - [226] = {.lex_state = 249}, - [227] = {.lex_state = 249}, - [228] = {.lex_state = 249}, - [229] = {.lex_state = 54}, + [225] = {.lex_state = 54}, + [226] = {.lex_state = 54}, + [227] = {.lex_state = 54}, + [228] = {.lex_state = 54}, + [229] = {.lex_state = 249}, [230] = {.lex_state = 54}, - [231] = {.lex_state = 249}, - [232] = {.lex_state = 249}, + [231] = {.lex_state = 54}, + [232] = {.lex_state = 54}, [233] = {.lex_state = 54}, [234] = {.lex_state = 54}, [235] = {.lex_state = 54}, [236] = {.lex_state = 54}, - [237] = {.lex_state = 249}, + [237] = {.lex_state = 54}, [238] = {.lex_state = 54}, - [239] = {.lex_state = 249}, - [240] = {.lex_state = 249}, + [239] = {.lex_state = 54}, + [240] = {.lex_state = 54}, [241] = {.lex_state = 249}, [242] = {.lex_state = 249}, - [243] = {.lex_state = 249}, + [243] = {.lex_state = 54}, [244] = {.lex_state = 249}, - [245] = {.lex_state = 249}, + [245] = {.lex_state = 54}, [246] = {.lex_state = 249}, [247] = {.lex_state = 249}, - [248] = {.lex_state = 249}, + [248] = {.lex_state = 54}, [249] = {.lex_state = 54}, [250] = {.lex_state = 249}, - [251] = {.lex_state = 54}, + [251] = {.lex_state = 249}, [252] = {.lex_state = 249}, - [253] = {.lex_state = 249}, + [253] = {.lex_state = 54}, [254] = {.lex_state = 249}, - [255] = {.lex_state = 54}, + [255] = {.lex_state = 249}, [256] = {.lex_state = 54}, [257] = {.lex_state = 249}, - [258] = {.lex_state = 249}, - [259] = {.lex_state = 249}, + [258] = {.lex_state = 54}, + [259] = {.lex_state = 54}, [260] = {.lex_state = 249}, - [261] = {.lex_state = 54}, + [261] = {.lex_state = 249}, [262] = {.lex_state = 249}, - [263] = {.lex_state = 54}, - [264] = {.lex_state = 54}, - [265] = {.lex_state = 54}, + [263] = {.lex_state = 249}, + [264] = {.lex_state = 249}, + [265] = {.lex_state = 249}, [266] = {.lex_state = 54}, [267] = {.lex_state = 249}, [268] = {.lex_state = 249}, [269] = {.lex_state = 249}, - [270] = {.lex_state = 249}, + [270] = {.lex_state = 54}, [271] = {.lex_state = 249}, - [272] = {.lex_state = 54}, - [273] = {.lex_state = 54}, + [272] = {.lex_state = 249}, + [273] = {.lex_state = 249}, [274] = {.lex_state = 249}, [275] = {.lex_state = 249}, [276] = {.lex_state = 249}, [277] = {.lex_state = 249}, - [278] = {.lex_state = 54}, + [278] = {.lex_state = 249}, [279] = {.lex_state = 249}, [280] = {.lex_state = 249}, - [281] = {.lex_state = 54}, + [281] = {.lex_state = 249}, [282] = {.lex_state = 249}, [283] = {.lex_state = 249}, [284] = {.lex_state = 249}, - [285] = {.lex_state = 54}, - [286] = {.lex_state = 54}, + [285] = {.lex_state = 249}, + [286] = {.lex_state = 249}, [287] = {.lex_state = 249}, - [288] = {.lex_state = 54}, - [289] = {.lex_state = 54}, - [290] = {.lex_state = 54}, + [288] = {.lex_state = 249}, + [289] = {.lex_state = 249}, + [290] = {.lex_state = 249}, [291] = {.lex_state = 249}, - [292] = {.lex_state = 249}, + [292] = {.lex_state = 54}, [293] = {.lex_state = 249}, - [294] = {.lex_state = 249}, + [294] = {.lex_state = 54}, [295] = {.lex_state = 249}, [296] = {.lex_state = 249}, - [297] = {.lex_state = 54}, - [298] = {.lex_state = 54}, - [299] = {.lex_state = 54}, - [300] = {.lex_state = 249}, + [297] = {.lex_state = 249}, + [298] = {.lex_state = 249}, + [299] = {.lex_state = 249}, + [300] = {.lex_state = 54}, [301] = {.lex_state = 249}, - [302] = {.lex_state = 249}, + [302] = {.lex_state = 54}, [303] = {.lex_state = 249}, - [304] = {.lex_state = 249}, + [304] = {.lex_state = 54}, [305] = {.lex_state = 249}, [306] = {.lex_state = 249}, [307] = {.lex_state = 249}, @@ -13697,53 +13734,53 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [312] = {.lex_state = 249}, [313] = {.lex_state = 249}, [314] = {.lex_state = 249}, - [315] = {.lex_state = 54}, + [315] = {.lex_state = 249}, [316] = {.lex_state = 249}, - [317] = {.lex_state = 54}, + [317] = {.lex_state = 249}, [318] = {.lex_state = 54}, [319] = {.lex_state = 249}, - [320] = {.lex_state = 54}, - [321] = {.lex_state = 54}, - [322] = {.lex_state = 54}, - [323] = {.lex_state = 54}, - [324] = {.lex_state = 54}, - [325] = {.lex_state = 54}, + [320] = {.lex_state = 249}, + [321] = {.lex_state = 249}, + [322] = {.lex_state = 249}, + [323] = {.lex_state = 249}, + [324] = {.lex_state = 249}, + [325] = {.lex_state = 249}, [326] = {.lex_state = 249}, [327] = {.lex_state = 249}, - [328] = {.lex_state = 249}, + [328] = {.lex_state = 54}, [329] = {.lex_state = 249}, - [330] = {.lex_state = 54}, + [330] = {.lex_state = 249}, [331] = {.lex_state = 249}, - [332] = {.lex_state = 54}, - [333] = {.lex_state = 249}, - [334] = {.lex_state = 249}, - [335] = {.lex_state = 54}, + [332] = {.lex_state = 249}, + [333] = {.lex_state = 54}, + [334] = {.lex_state = 54}, + [335] = {.lex_state = 249}, [336] = {.lex_state = 249}, - [337] = {.lex_state = 54}, - [338] = {.lex_state = 54}, + [337] = {.lex_state = 249}, + [338] = {.lex_state = 249}, [339] = {.lex_state = 249}, [340] = {.lex_state = 54}, - [341] = {.lex_state = 54}, - [342] = {.lex_state = 249}, - [343] = {.lex_state = 249}, - [344] = {.lex_state = 249}, - [345] = {.lex_state = 249}, + [341] = {.lex_state = 249}, + [342] = {.lex_state = 54}, + [343] = {.lex_state = 54}, + [344] = {.lex_state = 54}, + [345] = {.lex_state = 54}, [346] = {.lex_state = 54}, - [347] = {.lex_state = 249}, - [348] = {.lex_state = 249}, - [349] = {.lex_state = 54}, + [347] = {.lex_state = 54}, + [348] = {.lex_state = 54}, + [349] = {.lex_state = 249}, [350] = {.lex_state = 54}, [351] = {.lex_state = 54}, [352] = {.lex_state = 54}, - [353] = {.lex_state = 249}, + [353] = {.lex_state = 54}, [354] = {.lex_state = 54}, [355] = {.lex_state = 54}, - [356] = {.lex_state = 54}, + [356] = {.lex_state = 249}, [357] = {.lex_state = 54}, - [358] = {.lex_state = 54}, - [359] = {.lex_state = 249}, + [358] = {.lex_state = 249}, + [359] = {.lex_state = 54}, [360] = {.lex_state = 54}, - [361] = {.lex_state = 249}, + [361] = {.lex_state = 54}, [362] = {.lex_state = 249}, [363] = {.lex_state = 54}, [364] = {.lex_state = 54}, @@ -13751,13 +13788,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [366] = {.lex_state = 54}, [367] = {.lex_state = 54}, [368] = {.lex_state = 54}, - [369] = {.lex_state = 249}, + [369] = {.lex_state = 54}, [370] = {.lex_state = 54}, - [371] = {.lex_state = 249}, - [372] = {.lex_state = 249}, - [373] = {.lex_state = 249}, - [374] = {.lex_state = 249}, - [375] = {.lex_state = 249}, + [371] = {.lex_state = 54}, + [372] = {.lex_state = 54}, + [373] = {.lex_state = 54}, + [374] = {.lex_state = 54}, + [375] = {.lex_state = 54}, [376] = {.lex_state = 249}, [377] = {.lex_state = 249}, [378] = {.lex_state = 249}, @@ -13791,17 +13828,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [406] = {.lex_state = 249}, [407] = {.lex_state = 249}, [408] = {.lex_state = 249}, - [409] = {.lex_state = 51}, - [410] = {.lex_state = 51}, + [409] = {.lex_state = 249}, + [410] = {.lex_state = 249}, [411] = {.lex_state = 249}, [412] = {.lex_state = 249}, [413] = {.lex_state = 249}, - [414] = {.lex_state = 249}, + [414] = {.lex_state = 51}, [415] = {.lex_state = 249}, [416] = {.lex_state = 249}, [417] = {.lex_state = 249}, [418] = {.lex_state = 249}, - [419] = {.lex_state = 249}, + [419] = {.lex_state = 51}, [420] = {.lex_state = 249}, [421] = {.lex_state = 249}, [422] = {.lex_state = 249}, @@ -13814,7 +13851,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [429] = {.lex_state = 249}, [430] = {.lex_state = 249}, [431] = {.lex_state = 249}, - [432] = {.lex_state = 249}, + [432] = {.lex_state = 51}, [433] = {.lex_state = 249}, [434] = {.lex_state = 249}, [435] = {.lex_state = 249}, @@ -13824,7 +13861,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [439] = {.lex_state = 249}, [440] = {.lex_state = 249}, [441] = {.lex_state = 249}, - [442] = {.lex_state = 51}, + [442] = {.lex_state = 249}, [443] = {.lex_state = 249}, [444] = {.lex_state = 249}, [445] = {.lex_state = 249}, @@ -13842,27 +13879,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [457] = {.lex_state = 249}, [458] = {.lex_state = 249}, [459] = {.lex_state = 249}, - [460] = {.lex_state = 51}, - [461] = {.lex_state = 56}, - [462] = {.lex_state = 56}, - [463] = {.lex_state = 56}, - [464] = {.lex_state = 56}, - [465] = {.lex_state = 56}, - [466] = {.lex_state = 56}, - [467] = {.lex_state = 56}, - [468] = {.lex_state = 56}, + [460] = {.lex_state = 249}, + [461] = {.lex_state = 249}, + [462] = {.lex_state = 249}, + [463] = {.lex_state = 249}, + [464] = {.lex_state = 249}, + [465] = {.lex_state = 249}, + [466] = {.lex_state = 249}, + [467] = {.lex_state = 249}, + [468] = {.lex_state = 249}, [469] = {.lex_state = 56}, - [470] = {.lex_state = 249}, + [470] = {.lex_state = 56}, [471] = {.lex_state = 56}, - [472] = {.lex_state = 249}, - [473] = {.lex_state = 249}, - [474] = {.lex_state = 249}, - [475] = {.lex_state = 249}, - [476] = {.lex_state = 249}, - [477] = {.lex_state = 249}, + [472] = {.lex_state = 51}, + [473] = {.lex_state = 56}, + [474] = {.lex_state = 56}, + [475] = {.lex_state = 56}, + [476] = {.lex_state = 56}, + [477] = {.lex_state = 56}, [478] = {.lex_state = 249}, - [479] = {.lex_state = 249}, - [480] = {.lex_state = 249}, + [479] = {.lex_state = 56}, + [480] = {.lex_state = 56}, [481] = {.lex_state = 249}, [482] = {.lex_state = 249}, [483] = {.lex_state = 249}, @@ -13917,42 +13954,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [532] = {.lex_state = 249}, [533] = {.lex_state = 249}, [534] = {.lex_state = 249}, - [535] = {.lex_state = 58}, - [536] = {.lex_state = 58}, - [537] = {.lex_state = 58}, - [538] = {.lex_state = 58}, - [539] = {.lex_state = 58}, - [540] = {.lex_state = 58}, + [535] = {.lex_state = 249}, + [536] = {.lex_state = 249}, + [537] = {.lex_state = 249}, + [538] = {.lex_state = 249}, + [539] = {.lex_state = 249}, + [540] = {.lex_state = 249}, [541] = {.lex_state = 249}, [542] = {.lex_state = 249}, - [543] = {.lex_state = 58}, - [544] = {.lex_state = 58}, - [545] = {.lex_state = 58}, + [543] = {.lex_state = 249}, + [544] = {.lex_state = 51}, + [545] = {.lex_state = 249}, [546] = {.lex_state = 58}, [547] = {.lex_state = 58}, - [548] = {.lex_state = 249}, + [548] = {.lex_state = 58}, [549] = {.lex_state = 58}, [550] = {.lex_state = 58}, [551] = {.lex_state = 58}, [552] = {.lex_state = 249}, [553] = {.lex_state = 58}, [554] = {.lex_state = 58}, - [555] = {.lex_state = 249}, - [556] = {.lex_state = 51}, + [555] = {.lex_state = 58}, + [556] = {.lex_state = 58}, [557] = {.lex_state = 58}, [558] = {.lex_state = 58}, - [559] = {.lex_state = 51}, - [560] = {.lex_state = 51}, - [561] = {.lex_state = 69}, - [562] = {.lex_state = 68}, - [563] = {.lex_state = 69}, - [564] = {.lex_state = 69}, - [565] = {.lex_state = 68}, - [566] = {.lex_state = 68}, - [567] = {.lex_state = 68}, - [568] = {.lex_state = 68}, - [569] = {.lex_state = 68}, - [570] = {.lex_state = 68}, + [559] = {.lex_state = 58}, + [560] = {.lex_state = 58}, + [561] = {.lex_state = 249}, + [562] = {.lex_state = 249}, + [563] = {.lex_state = 249}, + [564] = {.lex_state = 58}, + [565] = {.lex_state = 58}, + [566] = {.lex_state = 58}, + [567] = {.lex_state = 58}, + [568] = {.lex_state = 51}, + [569] = {.lex_state = 51}, + [570] = {.lex_state = 56}, [571] = {.lex_state = 68}, [572] = {.lex_state = 68}, [573] = {.lex_state = 68}, @@ -13963,18 +14000,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [578] = {.lex_state = 68}, [579] = {.lex_state = 68}, [580] = {.lex_state = 68}, - [581] = {.lex_state = 51}, - [582] = {.lex_state = 58}, - [583] = {.lex_state = 249}, - [584] = {.lex_state = 249}, - [585] = {.lex_state = 249}, - [586] = {.lex_state = 249}, - [587] = {.lex_state = 249}, - [588] = {.lex_state = 249}, - [589] = {.lex_state = 249}, - [590] = {.lex_state = 249}, - [591] = {.lex_state = 249}, - [592] = {.lex_state = 249}, + [581] = {.lex_state = 68}, + [582] = {.lex_state = 69}, + [583] = {.lex_state = 69}, + [584] = {.lex_state = 68}, + [585] = {.lex_state = 69}, + [586] = {.lex_state = 68}, + [587] = {.lex_state = 68}, + [588] = {.lex_state = 68}, + [589] = {.lex_state = 68}, + [590] = {.lex_state = 68}, + [591] = {.lex_state = 51}, + [592] = {.lex_state = 58}, [593] = {.lex_state = 249}, [594] = {.lex_state = 249}, [595] = {.lex_state = 249}, @@ -13988,11 +14025,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [603] = {.lex_state = 249}, [604] = {.lex_state = 249}, [605] = {.lex_state = 249}, - [606] = {.lex_state = 58}, - [607] = {.lex_state = 58}, - [608] = {.lex_state = 58}, + [606] = {.lex_state = 249}, + [607] = {.lex_state = 249}, + [608] = {.lex_state = 249}, [609] = {.lex_state = 249}, - [610] = {.lex_state = 58}, + [610] = {.lex_state = 249}, [611] = {.lex_state = 249}, [612] = {.lex_state = 249}, [613] = {.lex_state = 249}, @@ -14000,108 +14037,108 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [615] = {.lex_state = 249}, [616] = {.lex_state = 58}, [617] = {.lex_state = 58}, - [618] = {.lex_state = 58}, - [619] = {.lex_state = 249}, - [620] = {.lex_state = 249}, - [621] = {.lex_state = 58}, - [622] = {.lex_state = 58}, + [618] = {.lex_state = 249}, + [619] = {.lex_state = 58}, + [620] = {.lex_state = 58}, + [621] = {.lex_state = 249}, + [622] = {.lex_state = 249}, [623] = {.lex_state = 249}, - [624] = {.lex_state = 58}, - [625] = {.lex_state = 58}, + [624] = {.lex_state = 249}, + [625] = {.lex_state = 249}, [626] = {.lex_state = 58}, [627] = {.lex_state = 249}, [628] = {.lex_state = 58}, [629] = {.lex_state = 249}, - [630] = {.lex_state = 58}, - [631] = {.lex_state = 249}, + [630] = {.lex_state = 249}, + [631] = {.lex_state = 58}, [632] = {.lex_state = 58}, [633] = {.lex_state = 58}, - [634] = {.lex_state = 249}, + [634] = {.lex_state = 58}, [635] = {.lex_state = 249}, [636] = {.lex_state = 249}, - [637] = {.lex_state = 249}, - [638] = {.lex_state = 58}, + [637] = {.lex_state = 58}, + [638] = {.lex_state = 249}, [639] = {.lex_state = 58}, [640] = {.lex_state = 249}, - [641] = {.lex_state = 249}, + [641] = {.lex_state = 58}, [642] = {.lex_state = 249}, - [643] = {.lex_state = 249}, - [644] = {.lex_state = 58}, + [643] = {.lex_state = 58}, + [644] = {.lex_state = 56}, [645] = {.lex_state = 249}, [646] = {.lex_state = 249}, - [647] = {.lex_state = 249}, + [647] = {.lex_state = 58}, [648] = {.lex_state = 249}, [649] = {.lex_state = 58}, [650] = {.lex_state = 58}, [651] = {.lex_state = 58}, - [652] = {.lex_state = 58}, + [652] = {.lex_state = 249}, [653] = {.lex_state = 58}, - [654] = {.lex_state = 58}, + [654] = {.lex_state = 249}, [655] = {.lex_state = 249}, [656] = {.lex_state = 249}, - [657] = {.lex_state = 58}, - [658] = {.lex_state = 58}, - [659] = {.lex_state = 58}, + [657] = {.lex_state = 249}, + [658] = {.lex_state = 249}, + [659] = {.lex_state = 249}, [660] = {.lex_state = 58}, [661] = {.lex_state = 58}, [662] = {.lex_state = 58}, [663] = {.lex_state = 58}, [664] = {.lex_state = 249}, - [665] = {.lex_state = 58}, - [666] = {.lex_state = 58}, - [667] = {.lex_state = 58}, + [665] = {.lex_state = 249}, + [666] = {.lex_state = 249}, + [667] = {.lex_state = 249}, [668] = {.lex_state = 58}, - [669] = {.lex_state = 58}, - [670] = {.lex_state = 249}, + [669] = {.lex_state = 249}, + [670] = {.lex_state = 58}, [671] = {.lex_state = 249}, - [672] = {.lex_state = 249}, + [672] = {.lex_state = 58}, [673] = {.lex_state = 249}, [674] = {.lex_state = 249}, - [675] = {.lex_state = 249}, + [675] = {.lex_state = 58}, [676] = {.lex_state = 249}, [677] = {.lex_state = 58}, - [678] = {.lex_state = 58}, - [679] = {.lex_state = 249}, - [680] = {.lex_state = 249}, - [681] = {.lex_state = 249}, - [682] = {.lex_state = 249}, + [678] = {.lex_state = 249}, + [679] = {.lex_state = 58}, + [680] = {.lex_state = 58}, + [681] = {.lex_state = 58}, + [682] = {.lex_state = 58}, [683] = {.lex_state = 58}, [684] = {.lex_state = 58}, - [685] = {.lex_state = 56}, - [686] = {.lex_state = 249}, - [687] = {.lex_state = 249}, - [688] = {.lex_state = 58}, + [685] = {.lex_state = 249}, + [686] = {.lex_state = 58}, + [687] = {.lex_state = 58}, + [688] = {.lex_state = 249}, [689] = {.lex_state = 58}, - [690] = {.lex_state = 58}, + [690] = {.lex_state = 249}, [691] = {.lex_state = 58}, - [692] = {.lex_state = 249}, + [692] = {.lex_state = 58}, [693] = {.lex_state = 249}, [694] = {.lex_state = 249}, - [695] = {.lex_state = 249}, - [696] = {.lex_state = 58}, + [695] = {.lex_state = 58}, + [696] = {.lex_state = 249}, [697] = {.lex_state = 58}, [698] = {.lex_state = 249}, [699] = {.lex_state = 58}, [700] = {.lex_state = 249}, [701] = {.lex_state = 249}, - [702] = {.lex_state = 58}, + [702] = {.lex_state = 249}, [703] = {.lex_state = 249}, [704] = {.lex_state = 249}, - [705] = {.lex_state = 249}, + [705] = {.lex_state = 58}, [706] = {.lex_state = 249}, - [707] = {.lex_state = 249}, - [708] = {.lex_state = 249}, + [707] = {.lex_state = 58}, + [708] = {.lex_state = 58}, [709] = {.lex_state = 249}, [710] = {.lex_state = 249}, [711] = {.lex_state = 249}, - [712] = {.lex_state = 58}, + [712] = {.lex_state = 249}, [713] = {.lex_state = 58}, - [714] = {.lex_state = 58}, + [714] = {.lex_state = 249}, [715] = {.lex_state = 249}, [716] = {.lex_state = 249}, [717] = {.lex_state = 249}, - [718] = {.lex_state = 249}, - [719] = {.lex_state = 249}, + [718] = {.lex_state = 58}, + [719] = {.lex_state = 58}, [720] = {.lex_state = 249}, [721] = {.lex_state = 249}, [722] = {.lex_state = 249}, @@ -14253,37 +14290,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [868] = {.lex_state = 249}, [869] = {.lex_state = 249}, [870] = {.lex_state = 249}, - [871] = {.lex_state = 68}, - [872] = {.lex_state = 56}, - [873] = {.lex_state = 58}, - [874] = {.lex_state = 58}, - [875] = {.lex_state = 56}, - [876] = {.lex_state = 58}, - [877] = {.lex_state = 58}, + [871] = {.lex_state = 249}, + [872] = {.lex_state = 249}, + [873] = {.lex_state = 249}, + [874] = {.lex_state = 249}, + [875] = {.lex_state = 249}, + [876] = {.lex_state = 249}, + [877] = {.lex_state = 56}, [878] = {.lex_state = 58}, [879] = {.lex_state = 58}, [880] = {.lex_state = 58}, [881] = {.lex_state = 58}, [882] = {.lex_state = 58}, [883] = {.lex_state = 58}, - [884] = {.lex_state = 69}, - [885] = {.lex_state = 58}, + [884] = {.lex_state = 58}, + [885] = {.lex_state = 56}, [886] = {.lex_state = 58}, [887] = {.lex_state = 58}, [888] = {.lex_state = 58}, - [889] = {.lex_state = 56}, + [889] = {.lex_state = 58}, [890] = {.lex_state = 58}, - [891] = {.lex_state = 58}, + [891] = {.lex_state = 56}, [892] = {.lex_state = 58}, [893] = {.lex_state = 58}, - [894] = {.lex_state = 56}, - [895] = {.lex_state = 56}, - [896] = {.lex_state = 56}, + [894] = {.lex_state = 58}, + [895] = {.lex_state = 58}, + [896] = {.lex_state = 58}, [897] = {.lex_state = 56}, [898] = {.lex_state = 56}, - [899] = {.lex_state = 58}, - [900] = {.lex_state = 58}, - [901] = {.lex_state = 58}, + [899] = {.lex_state = 56}, + [900] = {.lex_state = 56}, + [901] = {.lex_state = 56}, [902] = {.lex_state = 58}, [903] = {.lex_state = 58}, [904] = {.lex_state = 58}, @@ -14295,104 +14332,104 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [910] = {.lex_state = 58}, [911] = {.lex_state = 58}, [912] = {.lex_state = 58}, - [913] = {.lex_state = 58}, + [913] = {.lex_state = 56}, [914] = {.lex_state = 58}, - [915] = {.lex_state = 56}, + [915] = {.lex_state = 58}, [916] = {.lex_state = 58}, [917] = {.lex_state = 58}, [918] = {.lex_state = 58}, - [919] = {.lex_state = 68}, - [920] = {.lex_state = 68}, - [921] = {.lex_state = 56}, - [922] = {.lex_state = 56}, + [919] = {.lex_state = 58}, + [920] = {.lex_state = 58}, + [921] = {.lex_state = 58}, + [922] = {.lex_state = 58}, [923] = {.lex_state = 58}, [924] = {.lex_state = 58}, - [925] = {.lex_state = 58}, - [926] = {.lex_state = 56}, - [927] = {.lex_state = 69}, - [928] = {.lex_state = 68}, - [929] = {.lex_state = 69}, - [930] = {.lex_state = 69}, - [931] = {.lex_state = 56}, + [925] = {.lex_state = 56}, + [926] = {.lex_state = 58}, + [927] = {.lex_state = 56}, + [928] = {.lex_state = 69}, + [929] = {.lex_state = 56}, + [930] = {.lex_state = 56}, + [931] = {.lex_state = 68}, [932] = {.lex_state = 58}, - [933] = {.lex_state = 249}, - [934] = {.lex_state = 249}, - [935] = {.lex_state = 249}, - [936] = {.lex_state = 58}, + [933] = {.lex_state = 69}, + [934] = {.lex_state = 58}, + [935] = {.lex_state = 58}, + [936] = {.lex_state = 68}, [937] = {.lex_state = 58}, - [938] = {.lex_state = 58}, + [938] = {.lex_state = 249}, [939] = {.lex_state = 58}, [940] = {.lex_state = 249}, [941] = {.lex_state = 58}, - [942] = {.lex_state = 58}, - [943] = {.lex_state = 58}, - [944] = {.lex_state = 56}, - [945] = {.lex_state = 69}, - [946] = {.lex_state = 250}, - [947] = {.lex_state = 68}, - [948] = {.lex_state = 69}, - [949] = {.lex_state = 69}, - [950] = {.lex_state = 68}, + [942] = {.lex_state = 249}, + [943] = {.lex_state = 249}, + [944] = {.lex_state = 58}, + [945] = {.lex_state = 58}, + [946] = {.lex_state = 58}, + [947] = {.lex_state = 58}, + [948] = {.lex_state = 58}, + [949] = {.lex_state = 56}, + [950] = {.lex_state = 69}, [951] = {.lex_state = 69}, [952] = {.lex_state = 69}, [953] = {.lex_state = 69}, [954] = {.lex_state = 68}, [955] = {.lex_state = 69}, - [956] = {.lex_state = 58}, - [957] = {.lex_state = 69}, + [956] = {.lex_state = 69}, + [957] = {.lex_state = 68}, [958] = {.lex_state = 68}, - [959] = {.lex_state = 68}, - [960] = {.lex_state = 68}, + [959] = {.lex_state = 58}, + [960] = {.lex_state = 58}, [961] = {.lex_state = 69}, - [962] = {.lex_state = 69}, + [962] = {.lex_state = 68}, [963] = {.lex_state = 68}, [964] = {.lex_state = 68}, [965] = {.lex_state = 68}, - [966] = {.lex_state = 69}, - [967] = {.lex_state = 68}, - [968] = {.lex_state = 69}, + [966] = {.lex_state = 68}, + [967] = {.lex_state = 58}, + [968] = {.lex_state = 68}, [969] = {.lex_state = 68}, [970] = {.lex_state = 69}, - [971] = {.lex_state = 68}, - [972] = {.lex_state = 69}, - [973] = {.lex_state = 58}, - [974] = {.lex_state = 68}, + [971] = {.lex_state = 69}, + [972] = {.lex_state = 250}, + [973] = {.lex_state = 68}, + [974] = {.lex_state = 58}, [975] = {.lex_state = 58}, [976] = {.lex_state = 68}, - [977] = {.lex_state = 69}, - [978] = {.lex_state = 58}, - [979] = {.lex_state = 58}, - [980] = {.lex_state = 68}, - [981] = {.lex_state = 58}, - [982] = {.lex_state = 56}, - [983] = {.lex_state = 68}, - [984] = {.lex_state = 56}, - [985] = {.lex_state = 69}, - [986] = {.lex_state = 68}, - [987] = {.lex_state = 56}, - [988] = {.lex_state = 69}, - [989] = {.lex_state = 58}, + [977] = {.lex_state = 68}, + [978] = {.lex_state = 68}, + [979] = {.lex_state = 69}, + [980] = {.lex_state = 58}, + [981] = {.lex_state = 68}, + [982] = {.lex_state = 68}, + [983] = {.lex_state = 69}, + [984] = {.lex_state = 69}, + [985] = {.lex_state = 68}, + [986] = {.lex_state = 69}, + [987] = {.lex_state = 68}, + [988] = {.lex_state = 58}, + [989] = {.lex_state = 69}, [990] = {.lex_state = 69}, - [991] = {.lex_state = 68}, - [992] = {.lex_state = 58}, - [993] = {.lex_state = 58}, - [994] = {.lex_state = 58}, - [995] = {.lex_state = 249}, - [996] = {.lex_state = 249}, - [997] = {.lex_state = 58}, - [998] = {.lex_state = 58}, - [999] = {.lex_state = 58}, - [1000] = {.lex_state = 58}, - [1001] = {.lex_state = 58}, - [1002] = {.lex_state = 58}, - [1003] = {.lex_state = 58}, - [1004] = {.lex_state = 58}, - [1005] = {.lex_state = 250}, + [991] = {.lex_state = 69}, + [992] = {.lex_state = 56}, + [993] = {.lex_state = 56}, + [994] = {.lex_state = 69}, + [995] = {.lex_state = 68}, + [996] = {.lex_state = 69}, + [997] = {.lex_state = 68}, + [998] = {.lex_state = 69}, + [999] = {.lex_state = 69}, + [1000] = {.lex_state = 69}, + [1001] = {.lex_state = 68}, + [1002] = {.lex_state = 68}, + [1003] = {.lex_state = 69}, + [1004] = {.lex_state = 56}, + [1005] = {.lex_state = 58}, [1006] = {.lex_state = 58}, - [1007] = {.lex_state = 58}, + [1007] = {.lex_state = 249}, [1008] = {.lex_state = 58}, [1009] = {.lex_state = 58}, - [1010] = {.lex_state = 58}, + [1010] = {.lex_state = 249}, [1011] = {.lex_state = 58}, [1012] = {.lex_state = 58}, [1013] = {.lex_state = 58}, @@ -14422,24 +14459,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1037] = {.lex_state = 58}, [1038] = {.lex_state = 58}, [1039] = {.lex_state = 58}, - [1040] = {.lex_state = 56}, + [1040] = {.lex_state = 58}, [1041] = {.lex_state = 58}, [1042] = {.lex_state = 58}, - [1043] = {.lex_state = 56}, + [1043] = {.lex_state = 58}, [1044] = {.lex_state = 58}, [1045] = {.lex_state = 58}, [1046] = {.lex_state = 58}, [1047] = {.lex_state = 58}, [1048] = {.lex_state = 58}, [1049] = {.lex_state = 58}, - [1050] = {.lex_state = 56}, + [1050] = {.lex_state = 250}, [1051] = {.lex_state = 58}, [1052] = {.lex_state = 58}, [1053] = {.lex_state = 58}, [1054] = {.lex_state = 58}, [1055] = {.lex_state = 58}, [1056] = {.lex_state = 58}, - [1057] = {.lex_state = 56}, + [1057] = {.lex_state = 58}, [1058] = {.lex_state = 58}, [1059] = {.lex_state = 58}, [1060] = {.lex_state = 58}, @@ -14455,19 +14492,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1070] = {.lex_state = 58}, [1071] = {.lex_state = 58}, [1072] = {.lex_state = 58}, - [1073] = {.lex_state = 58}, + [1073] = {.lex_state = 56}, [1074] = {.lex_state = 58}, [1075] = {.lex_state = 58}, [1076] = {.lex_state = 58}, [1077] = {.lex_state = 58}, [1078] = {.lex_state = 58}, [1079] = {.lex_state = 58}, - [1080] = {.lex_state = 58}, + [1080] = {.lex_state = 56}, [1081] = {.lex_state = 58}, [1082] = {.lex_state = 58}, - [1083] = {.lex_state = 58}, - [1084] = {.lex_state = 58}, - [1085] = {.lex_state = 250}, + [1083] = {.lex_state = 56}, + [1084] = {.lex_state = 56}, + [1085] = {.lex_state = 58}, [1086] = {.lex_state = 58}, [1087] = {.lex_state = 58}, [1088] = {.lex_state = 58}, @@ -14478,207 +14515,207 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1093] = {.lex_state = 58}, [1094] = {.lex_state = 58}, [1095] = {.lex_state = 58}, - [1096] = {.lex_state = 250}, - [1097] = {.lex_state = 250}, + [1096] = {.lex_state = 58}, + [1097] = {.lex_state = 58}, [1098] = {.lex_state = 58}, - [1099] = {.lex_state = 250}, + [1099] = {.lex_state = 58}, [1100] = {.lex_state = 58}, - [1101] = {.lex_state = 58}, + [1101] = {.lex_state = 250}, [1102] = {.lex_state = 58}, - [1103] = {.lex_state = 250}, + [1103] = {.lex_state = 58}, [1104] = {.lex_state = 58}, [1105] = {.lex_state = 58}, [1106] = {.lex_state = 58}, - [1107] = {.lex_state = 58}, + [1107] = {.lex_state = 250}, [1108] = {.lex_state = 58}, - [1109] = {.lex_state = 58}, + [1109] = {.lex_state = 250}, [1110] = {.lex_state = 58}, - [1111] = {.lex_state = 58}, + [1111] = {.lex_state = 250}, [1112] = {.lex_state = 58}, - [1113] = {.lex_state = 250}, - [1114] = {.lex_state = 250}, + [1113] = {.lex_state = 58}, + [1114] = {.lex_state = 58}, [1115] = {.lex_state = 58}, [1116] = {.lex_state = 58}, [1117] = {.lex_state = 58}, - [1118] = {.lex_state = 250}, - [1119] = {.lex_state = 58}, + [1118] = {.lex_state = 58}, + [1119] = {.lex_state = 250}, [1120] = {.lex_state = 58}, [1121] = {.lex_state = 58}, [1122] = {.lex_state = 58}, [1123] = {.lex_state = 58}, - [1124] = {.lex_state = 58}, + [1124] = {.lex_state = 250}, [1125] = {.lex_state = 58}, - [1126] = {.lex_state = 58}, + [1126] = {.lex_state = 250}, [1127] = {.lex_state = 58}, [1128] = {.lex_state = 58}, - [1129] = {.lex_state = 57}, + [1129] = {.lex_state = 58}, [1130] = {.lex_state = 58}, - [1131] = {.lex_state = 58}, + [1131] = {.lex_state = 250}, [1132] = {.lex_state = 58}, [1133] = {.lex_state = 58}, [1134] = {.lex_state = 58}, [1135] = {.lex_state = 58}, - [1136] = {.lex_state = 57}, + [1136] = {.lex_state = 58}, [1137] = {.lex_state = 58}, [1138] = {.lex_state = 58}, - [1139] = {.lex_state = 250}, + [1139] = {.lex_state = 58}, [1140] = {.lex_state = 58}, [1141] = {.lex_state = 58}, [1142] = {.lex_state = 58}, [1143] = {.lex_state = 58}, [1144] = {.lex_state = 57}, [1145] = {.lex_state = 58}, - [1146] = {.lex_state = 58}, + [1146] = {.lex_state = 57}, [1147] = {.lex_state = 58}, [1148] = {.lex_state = 58}, [1149] = {.lex_state = 58}, [1150] = {.lex_state = 58}, [1151] = {.lex_state = 58}, - [1152] = {.lex_state = 57}, - [1153] = {.lex_state = 57}, + [1152] = {.lex_state = 58}, + [1153] = {.lex_state = 58}, [1154] = {.lex_state = 58}, [1155] = {.lex_state = 58}, [1156] = {.lex_state = 58}, [1157] = {.lex_state = 58}, [1158] = {.lex_state = 58}, - [1159] = {.lex_state = 57}, + [1159] = {.lex_state = 58}, [1160] = {.lex_state = 57}, [1161] = {.lex_state = 58}, - [1162] = {.lex_state = 57}, + [1162] = {.lex_state = 58}, [1163] = {.lex_state = 58}, [1164] = {.lex_state = 58}, - [1165] = {.lex_state = 57}, + [1165] = {.lex_state = 58}, [1166] = {.lex_state = 58}, - [1167] = {.lex_state = 57}, + [1167] = {.lex_state = 58}, [1168] = {.lex_state = 58}, [1169] = {.lex_state = 58}, [1170] = {.lex_state = 58}, - [1171] = {.lex_state = 57}, + [1171] = {.lex_state = 58}, [1172] = {.lex_state = 58}, [1173] = {.lex_state = 58}, - [1174] = {.lex_state = 58}, - [1175] = {.lex_state = 58}, - [1176] = {.lex_state = 58}, + [1174] = {.lex_state = 57}, + [1175] = {.lex_state = 57}, + [1176] = {.lex_state = 57}, [1177] = {.lex_state = 58}, [1178] = {.lex_state = 57}, - [1179] = {.lex_state = 57}, - [1180] = {.lex_state = 57}, - [1181] = {.lex_state = 57}, - [1182] = {.lex_state = 57}, + [1179] = {.lex_state = 58}, + [1180] = {.lex_state = 250}, + [1181] = {.lex_state = 58}, + [1182] = {.lex_state = 58}, [1183] = {.lex_state = 57}, - [1184] = {.lex_state = 57}, - [1185] = {.lex_state = 57}, + [1184] = {.lex_state = 58}, + [1185] = {.lex_state = 58}, [1186] = {.lex_state = 57}, - [1187] = {.lex_state = 250}, + [1187] = {.lex_state = 57}, [1188] = {.lex_state = 57}, - [1189] = {.lex_state = 250}, + [1189] = {.lex_state = 57}, [1190] = {.lex_state = 57}, - [1191] = {.lex_state = 250}, - [1192] = {.lex_state = 58}, - [1193] = {.lex_state = 250}, - [1194] = {.lex_state = 250}, - [1195] = {.lex_state = 57}, - [1196] = {.lex_state = 250}, + [1191] = {.lex_state = 57}, + [1192] = {.lex_state = 57}, + [1193] = {.lex_state = 57}, + [1194] = {.lex_state = 57}, + [1195] = {.lex_state = 58}, + [1196] = {.lex_state = 58}, [1197] = {.lex_state = 57}, [1198] = {.lex_state = 57}, [1199] = {.lex_state = 250}, - [1200] = {.lex_state = 57}, - [1201] = {.lex_state = 57}, - [1202] = {.lex_state = 58}, + [1200] = {.lex_state = 58}, + [1201] = {.lex_state = 250}, + [1202] = {.lex_state = 57}, [1203] = {.lex_state = 57}, [1204] = {.lex_state = 57}, [1205] = {.lex_state = 57}, - [1206] = {.lex_state = 57}, - [1207] = {.lex_state = 250}, + [1206] = {.lex_state = 58}, + [1207] = {.lex_state = 57}, [1208] = {.lex_state = 250}, - [1209] = {.lex_state = 57}, + [1209] = {.lex_state = 250}, [1210] = {.lex_state = 57}, [1211] = {.lex_state = 57}, - [1212] = {.lex_state = 57}, + [1212] = {.lex_state = 250}, [1213] = {.lex_state = 57}, - [1214] = {.lex_state = 250}, - [1215] = {.lex_state = 250}, - [1216] = {.lex_state = 58}, - [1217] = {.lex_state = 57}, - [1218] = {.lex_state = 57}, - [1219] = {.lex_state = 250}, + [1214] = {.lex_state = 58}, + [1215] = {.lex_state = 57}, + [1216] = {.lex_state = 250}, + [1217] = {.lex_state = 250}, + [1218] = {.lex_state = 58}, + [1219] = {.lex_state = 57}, [1220] = {.lex_state = 250}, - [1221] = {.lex_state = 250}, + [1221] = {.lex_state = 58}, [1222] = {.lex_state = 57}, - [1223] = {.lex_state = 250}, - [1224] = {.lex_state = 57}, + [1223] = {.lex_state = 57}, + [1224] = {.lex_state = 250}, [1225] = {.lex_state = 57}, [1226] = {.lex_state = 250}, - [1227] = {.lex_state = 58}, + [1227] = {.lex_state = 250}, [1228] = {.lex_state = 57}, - [1229] = {.lex_state = 57}, - [1230] = {.lex_state = 57}, - [1231] = {.lex_state = 58}, - [1232] = {.lex_state = 57}, + [1229] = {.lex_state = 250}, + [1230] = {.lex_state = 250}, + [1231] = {.lex_state = 57}, + [1232] = {.lex_state = 58}, [1233] = {.lex_state = 250}, [1234] = {.lex_state = 57}, - [1235] = {.lex_state = 250}, - [1236] = {.lex_state = 250}, - [1237] = {.lex_state = 58}, - [1238] = {.lex_state = 58}, + [1235] = {.lex_state = 58}, + [1236] = {.lex_state = 57}, + [1237] = {.lex_state = 57}, + [1238] = {.lex_state = 57}, [1239] = {.lex_state = 250}, - [1240] = {.lex_state = 57}, + [1240] = {.lex_state = 58}, [1241] = {.lex_state = 57}, - [1242] = {.lex_state = 58}, + [1242] = {.lex_state = 57}, [1243] = {.lex_state = 250}, - [1244] = {.lex_state = 250}, - [1245] = {.lex_state = 250}, + [1244] = {.lex_state = 58}, + [1245] = {.lex_state = 57}, [1246] = {.lex_state = 250}, - [1247] = {.lex_state = 57}, - [1248] = {.lex_state = 58}, - [1249] = {.lex_state = 58}, - [1250] = {.lex_state = 250}, - [1251] = {.lex_state = 58}, + [1247] = {.lex_state = 58}, + [1248] = {.lex_state = 250}, + [1249] = {.lex_state = 250}, + [1250] = {.lex_state = 57}, + [1251] = {.lex_state = 250}, [1252] = {.lex_state = 250}, - [1253] = {.lex_state = 250}, + [1253] = {.lex_state = 57}, [1254] = {.lex_state = 57}, - [1255] = {.lex_state = 57}, + [1255] = {.lex_state = 250}, [1256] = {.lex_state = 58}, - [1257] = {.lex_state = 250}, - [1258] = {.lex_state = 59}, + [1257] = {.lex_state = 57}, + [1258] = {.lex_state = 58}, [1259] = {.lex_state = 250}, - [1260] = {.lex_state = 250}, + [1260] = {.lex_state = 57}, [1261] = {.lex_state = 250}, - [1262] = {.lex_state = 250}, - [1263] = {.lex_state = 250}, + [1262] = {.lex_state = 57}, + [1263] = {.lex_state = 57}, [1264] = {.lex_state = 250}, - [1265] = {.lex_state = 250}, + [1265] = {.lex_state = 57}, [1266] = {.lex_state = 250}, - [1267] = {.lex_state = 58}, - [1268] = {.lex_state = 59}, - [1269] = {.lex_state = 58}, + [1267] = {.lex_state = 57}, + [1268] = {.lex_state = 57}, + [1269] = {.lex_state = 250}, [1270] = {.lex_state = 250}, - [1271] = {.lex_state = 58}, - [1272] = {.lex_state = 59}, - [1273] = {.lex_state = 250}, + [1271] = {.lex_state = 250}, + [1272] = {.lex_state = 250}, + [1273] = {.lex_state = 58}, [1274] = {.lex_state = 250}, - [1275] = {.lex_state = 250}, + [1275] = {.lex_state = 58}, [1276] = {.lex_state = 58}, [1277] = {.lex_state = 250}, - [1278] = {.lex_state = 250}, - [1279] = {.lex_state = 58}, - [1280] = {.lex_state = 58}, + [1278] = {.lex_state = 59}, + [1279] = {.lex_state = 250}, + [1280] = {.lex_state = 250}, [1281] = {.lex_state = 250}, [1282] = {.lex_state = 250}, - [1283] = {.lex_state = 58}, + [1283] = {.lex_state = 250}, [1284] = {.lex_state = 250}, - [1285] = {.lex_state = 59}, - [1286] = {.lex_state = 58}, - [1287] = {.lex_state = 58}, - [1288] = {.lex_state = 58}, - [1289] = {.lex_state = 58}, - [1290] = {.lex_state = 58}, - [1291] = {.lex_state = 58}, + [1285] = {.lex_state = 250}, + [1286] = {.lex_state = 250}, + [1287] = {.lex_state = 59}, + [1288] = {.lex_state = 59}, + [1289] = {.lex_state = 250}, + [1290] = {.lex_state = 250}, + [1291] = {.lex_state = 250}, [1292] = {.lex_state = 250}, [1293] = {.lex_state = 58}, [1294] = {.lex_state = 58}, - [1295] = {.lex_state = 58}, - [1296] = {.lex_state = 58}, + [1295] = {.lex_state = 59}, + [1296] = {.lex_state = 250}, [1297] = {.lex_state = 58}, [1298] = {.lex_state = 58}, [1299] = {.lex_state = 58}, @@ -14698,7 +14735,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1313] = {.lex_state = 58}, [1314] = {.lex_state = 58}, [1315] = {.lex_state = 58}, - [1316] = {.lex_state = 58}, + [1316] = {.lex_state = 250}, [1317] = {.lex_state = 58}, [1318] = {.lex_state = 58}, [1319] = {.lex_state = 58}, @@ -14725,7 +14762,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1340] = {.lex_state = 58}, [1341] = {.lex_state = 58}, [1342] = {.lex_state = 58}, - [1343] = {.lex_state = 250}, + [1343] = {.lex_state = 58}, [1344] = {.lex_state = 58}, [1345] = {.lex_state = 58}, [1346] = {.lex_state = 58}, @@ -14735,145 +14772,145 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1350] = {.lex_state = 58}, [1351] = {.lex_state = 58}, [1352] = {.lex_state = 58}, - [1353] = {.lex_state = 250}, + [1353] = {.lex_state = 58}, [1354] = {.lex_state = 58}, [1355] = {.lex_state = 58}, [1356] = {.lex_state = 250}, - [1357] = {.lex_state = 250}, - [1358] = {.lex_state = 250}, + [1357] = {.lex_state = 58}, + [1358] = {.lex_state = 58}, [1359] = {.lex_state = 250}, [1360] = {.lex_state = 58}, - [1361] = {.lex_state = 250}, + [1361] = {.lex_state = 58}, [1362] = {.lex_state = 58}, [1363] = {.lex_state = 58}, - [1364] = {.lex_state = 250}, - [1365] = {.lex_state = 250}, - [1366] = {.lex_state = 250}, + [1364] = {.lex_state = 58}, + [1365] = {.lex_state = 58}, + [1366] = {.lex_state = 58}, [1367] = {.lex_state = 250}, [1368] = {.lex_state = 250}, - [1369] = {.lex_state = 250}, - [1370] = {.lex_state = 250}, - [1371] = {.lex_state = 58}, - [1372] = {.lex_state = 250}, + [1369] = {.lex_state = 58}, + [1370] = {.lex_state = 58}, + [1371] = {.lex_state = 250}, + [1372] = {.lex_state = 58}, [1373] = {.lex_state = 250}, - [1374] = {.lex_state = 250}, + [1374] = {.lex_state = 58}, [1375] = {.lex_state = 58}, [1376] = {.lex_state = 58}, [1377] = {.lex_state = 58}, [1378] = {.lex_state = 58}, [1379] = {.lex_state = 58}, - [1380] = {.lex_state = 58}, - [1381] = {.lex_state = 58}, - [1382] = {.lex_state = 58}, - [1383] = {.lex_state = 58}, - [1384] = {.lex_state = 58}, + [1380] = {.lex_state = 250}, + [1381] = {.lex_state = 250}, + [1382] = {.lex_state = 250}, + [1383] = {.lex_state = 250}, + [1384] = {.lex_state = 250}, [1385] = {.lex_state = 58}, - [1386] = {.lex_state = 58}, + [1386] = {.lex_state = 250}, [1387] = {.lex_state = 58}, [1388] = {.lex_state = 58}, [1389] = {.lex_state = 58}, [1390] = {.lex_state = 58}, - [1391] = {.lex_state = 58}, + [1391] = {.lex_state = 250}, [1392] = {.lex_state = 58}, - [1393] = {.lex_state = 58}, + [1393] = {.lex_state = 250}, [1394] = {.lex_state = 58}, - [1395] = {.lex_state = 250}, + [1395] = {.lex_state = 58}, [1396] = {.lex_state = 58}, - [1397] = {.lex_state = 250}, - [1398] = {.lex_state = 250}, + [1397] = {.lex_state = 58}, + [1398] = {.lex_state = 58}, [1399] = {.lex_state = 250}, [1400] = {.lex_state = 58}, - [1401] = {.lex_state = 58}, + [1401] = {.lex_state = 250}, [1402] = {.lex_state = 58}, - [1403] = {.lex_state = 250}, - [1404] = {.lex_state = 58}, + [1403] = {.lex_state = 58}, + [1404] = {.lex_state = 250}, [1405] = {.lex_state = 58}, - [1406] = {.lex_state = 250}, + [1406] = {.lex_state = 58}, [1407] = {.lex_state = 58}, [1408] = {.lex_state = 58}, - [1409] = {.lex_state = 58}, + [1409] = {.lex_state = 250}, [1410] = {.lex_state = 250}, - [1411] = {.lex_state = 58}, + [1411] = {.lex_state = 250}, [1412] = {.lex_state = 58}, [1413] = {.lex_state = 58}, - [1414] = {.lex_state = 249}, - [1415] = {.lex_state = 249}, - [1416] = {.lex_state = 249}, - [1417] = {.lex_state = 249}, + [1414] = {.lex_state = 58}, + [1415] = {.lex_state = 58}, + [1416] = {.lex_state = 58}, + [1417] = {.lex_state = 250}, [1418] = {.lex_state = 58}, - [1419] = {.lex_state = 249}, - [1420] = {.lex_state = 249}, - [1421] = {.lex_state = 249}, - [1422] = {.lex_state = 249}, - [1423] = {.lex_state = 249}, + [1419] = {.lex_state = 58}, + [1420] = {.lex_state = 250}, + [1421] = {.lex_state = 58}, + [1422] = {.lex_state = 250}, + [1423] = {.lex_state = 250}, [1424] = {.lex_state = 249}, - [1425] = {.lex_state = 249}, + [1425] = {.lex_state = 58}, [1426] = {.lex_state = 249}, [1427] = {.lex_state = 249}, - [1428] = {.lex_state = 58}, - [1429] = {.lex_state = 58}, + [1428] = {.lex_state = 249}, + [1429] = {.lex_state = 249}, [1430] = {.lex_state = 249}, [1431] = {.lex_state = 249}, [1432] = {.lex_state = 249}, - [1433] = {.lex_state = 58}, - [1434] = {.lex_state = 58}, - [1435] = {.lex_state = 58}, - [1436] = {.lex_state = 58}, + [1433] = {.lex_state = 249}, + [1434] = {.lex_state = 249}, + [1435] = {.lex_state = 249}, + [1436] = {.lex_state = 249}, [1437] = {.lex_state = 249}, [1438] = {.lex_state = 58}, - [1439] = {.lex_state = 249}, + [1439] = {.lex_state = 58}, [1440] = {.lex_state = 58}, - [1441] = {.lex_state = 58}, + [1441] = {.lex_state = 249}, [1442] = {.lex_state = 58}, [1443] = {.lex_state = 58}, [1444] = {.lex_state = 58}, [1445] = {.lex_state = 58}, [1446] = {.lex_state = 58}, - [1447] = {.lex_state = 57}, - [1448] = {.lex_state = 58}, - [1449] = {.lex_state = 57}, + [1447] = {.lex_state = 58}, + [1448] = {.lex_state = 249}, + [1449] = {.lex_state = 249}, [1450] = {.lex_state = 58}, [1451] = {.lex_state = 58}, - [1452] = {.lex_state = 57}, - [1453] = {.lex_state = 57}, - [1454] = {.lex_state = 58}, + [1452] = {.lex_state = 249}, + [1453] = {.lex_state = 58}, + [1454] = {.lex_state = 249}, [1455] = {.lex_state = 58}, - [1456] = {.lex_state = 57}, - [1457] = {.lex_state = 57}, - [1458] = {.lex_state = 57}, - [1459] = {.lex_state = 57}, - [1460] = {.lex_state = 57}, + [1456] = {.lex_state = 58}, + [1457] = {.lex_state = 58}, + [1458] = {.lex_state = 58}, + [1459] = {.lex_state = 58}, + [1460] = {.lex_state = 58}, [1461] = {.lex_state = 58}, - [1462] = {.lex_state = 57}, - [1463] = {.lex_state = 57}, + [1462] = {.lex_state = 58}, + [1463] = {.lex_state = 58}, [1464] = {.lex_state = 58}, [1465] = {.lex_state = 58}, [1466] = {.lex_state = 58}, - [1467] = {.lex_state = 58}, + [1467] = {.lex_state = 57}, [1468] = {.lex_state = 58}, - [1469] = {.lex_state = 57}, + [1469] = {.lex_state = 58}, [1470] = {.lex_state = 57}, [1471] = {.lex_state = 58}, - [1472] = {.lex_state = 58}, - [1473] = {.lex_state = 58}, - [1474] = {.lex_state = 58}, - [1475] = {.lex_state = 58}, - [1476] = {.lex_state = 58}, - [1477] = {.lex_state = 250}, - [1478] = {.lex_state = 250}, - [1479] = {.lex_state = 250}, - [1480] = {.lex_state = 58}, - [1481] = {.lex_state = 58}, - [1482] = {.lex_state = 58}, - [1483] = {.lex_state = 250}, - [1484] = {.lex_state = 250}, + [1472] = {.lex_state = 57}, + [1473] = {.lex_state = 57}, + [1474] = {.lex_state = 57}, + [1475] = {.lex_state = 57}, + [1476] = {.lex_state = 57}, + [1477] = {.lex_state = 57}, + [1478] = {.lex_state = 57}, + [1479] = {.lex_state = 57}, + [1480] = {.lex_state = 57}, + [1481] = {.lex_state = 57}, + [1482] = {.lex_state = 57}, + [1483] = {.lex_state = 58}, + [1484] = {.lex_state = 58}, [1485] = {.lex_state = 58}, - [1486] = {.lex_state = 250}, + [1486] = {.lex_state = 58}, [1487] = {.lex_state = 58}, - [1488] = {.lex_state = 250}, + [1488] = {.lex_state = 58}, [1489] = {.lex_state = 250}, - [1490] = {.lex_state = 250}, - [1491] = {.lex_state = 250}, + [1490] = {.lex_state = 58}, + [1491] = {.lex_state = 58}, [1492] = {.lex_state = 58}, [1493] = {.lex_state = 58}, [1494] = {.lex_state = 58}, @@ -14883,10 +14920,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1498] = {.lex_state = 58}, [1499] = {.lex_state = 58}, [1500] = {.lex_state = 58}, - [1501] = {.lex_state = 250}, + [1501] = {.lex_state = 58}, [1502] = {.lex_state = 250}, [1503] = {.lex_state = 58}, - [1504] = {.lex_state = 58}, + [1504] = {.lex_state = 250}, [1505] = {.lex_state = 58}, [1506] = {.lex_state = 58}, [1507] = {.lex_state = 58}, @@ -14894,38 +14931,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1509] = {.lex_state = 58}, [1510] = {.lex_state = 58}, [1511] = {.lex_state = 58}, - [1512] = {.lex_state = 58}, - [1513] = {.lex_state = 58}, + [1512] = {.lex_state = 250}, + [1513] = {.lex_state = 250}, [1514] = {.lex_state = 58}, [1515] = {.lex_state = 58}, [1516] = {.lex_state = 58}, - [1517] = {.lex_state = 58}, + [1517] = {.lex_state = 250}, [1518] = {.lex_state = 58}, - [1519] = {.lex_state = 58}, + [1519] = {.lex_state = 250}, [1520] = {.lex_state = 58}, - [1521] = {.lex_state = 58}, - [1522] = {.lex_state = 58}, + [1521] = {.lex_state = 250}, + [1522] = {.lex_state = 250}, [1523] = {.lex_state = 58}, - [1524] = {.lex_state = 58}, - [1525] = {.lex_state = 58}, + [1524] = {.lex_state = 250}, + [1525] = {.lex_state = 250}, [1526] = {.lex_state = 58}, - [1527] = {.lex_state = 58}, - [1528] = {.lex_state = 250}, + [1527] = {.lex_state = 250}, + [1528] = {.lex_state = 58}, [1529] = {.lex_state = 58}, [1530] = {.lex_state = 58}, [1531] = {.lex_state = 58}, [1532] = {.lex_state = 58}, [1533] = {.lex_state = 250}, - [1534] = {.lex_state = 250}, + [1534] = {.lex_state = 58}, [1535] = {.lex_state = 58}, [1536] = {.lex_state = 58}, [1537] = {.lex_state = 58}, - [1538] = {.lex_state = 250}, - [1539] = {.lex_state = 250}, - [1540] = {.lex_state = 250}, - [1541] = {.lex_state = 250}, - [1542] = {.lex_state = 250}, - [1543] = {.lex_state = 250}, + [1538] = {.lex_state = 58}, + [1539] = {.lex_state = 58}, + [1540] = {.lex_state = 58}, + [1541] = {.lex_state = 58}, + [1542] = {.lex_state = 58}, + [1543] = {.lex_state = 58}, [1544] = {.lex_state = 58}, [1545] = {.lex_state = 58}, [1546] = {.lex_state = 58}, @@ -14933,30 +14970,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1548] = {.lex_state = 250}, [1549] = {.lex_state = 58}, [1550] = {.lex_state = 250}, - [1551] = {.lex_state = 58}, - [1552] = {.lex_state = 58}, + [1551] = {.lex_state = 250}, + [1552] = {.lex_state = 250}, [1553] = {.lex_state = 250}, [1554] = {.lex_state = 250}, - [1555] = {.lex_state = 250}, - [1556] = {.lex_state = 58}, + [1555] = {.lex_state = 58}, + [1556] = {.lex_state = 250}, [1557] = {.lex_state = 58}, [1558] = {.lex_state = 250}, - [1559] = {.lex_state = 58}, - [1560] = {.lex_state = 250}, + [1559] = {.lex_state = 250}, + [1560] = {.lex_state = 58}, [1561] = {.lex_state = 250}, [1562] = {.lex_state = 250}, [1563] = {.lex_state = 250}, - [1564] = {.lex_state = 58}, + [1564] = {.lex_state = 250}, [1565] = {.lex_state = 250}, - [1566] = {.lex_state = 250}, + [1566] = {.lex_state = 58}, [1567] = {.lex_state = 250}, - [1568] = {.lex_state = 250}, + [1568] = {.lex_state = 58}, [1569] = {.lex_state = 250}, [1570] = {.lex_state = 250}, - [1571] = {.lex_state = 250}, + [1571] = {.lex_state = 58}, [1572] = {.lex_state = 58}, - [1573] = {.lex_state = 250}, - [1574] = {.lex_state = 250}, + [1573] = {.lex_state = 58}, + [1574] = {.lex_state = 58}, [1575] = {.lex_state = 250}, [1576] = {.lex_state = 250}, [1577] = {.lex_state = 250}, @@ -14970,16 +15007,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1585] = {.lex_state = 250}, [1586] = {.lex_state = 250}, [1587] = {.lex_state = 250}, - [1588] = {.lex_state = 250}, - [1589] = {.lex_state = 250}, + [1588] = {.lex_state = 58}, + [1589] = {.lex_state = 58}, [1590] = {.lex_state = 250}, [1591] = {.lex_state = 250}, [1592] = {.lex_state = 250}, [1593] = {.lex_state = 250}, - [1594] = {.lex_state = 58}, + [1594] = {.lex_state = 250}, [1595] = {.lex_state = 250}, [1596] = {.lex_state = 58}, - [1597] = {.lex_state = 58}, + [1597] = {.lex_state = 250}, [1598] = {.lex_state = 250}, [1599] = {.lex_state = 250}, [1600] = {.lex_state = 250}, @@ -14992,29 +15029,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1607] = {.lex_state = 250}, [1608] = {.lex_state = 250}, [1609] = {.lex_state = 250}, - [1610] = {.lex_state = 58}, + [1610] = {.lex_state = 250}, [1611] = {.lex_state = 250}, [1612] = {.lex_state = 250}, [1613] = {.lex_state = 250}, [1614] = {.lex_state = 250}, - [1615] = {.lex_state = 58}, - [1616] = {.lex_state = 58}, + [1615] = {.lex_state = 250}, + [1616] = {.lex_state = 250}, [1617] = {.lex_state = 250}, - [1618] = {.lex_state = 58}, + [1618] = {.lex_state = 250}, [1619] = {.lex_state = 250}, - [1620] = {.lex_state = 250}, - [1621] = {.lex_state = 58}, + [1620] = {.lex_state = 58}, + [1621] = {.lex_state = 250}, [1622] = {.lex_state = 250}, [1623] = {.lex_state = 250}, - [1624] = {.lex_state = 250}, + [1624] = {.lex_state = 58}, [1625] = {.lex_state = 58}, [1626] = {.lex_state = 250}, - [1627] = {.lex_state = 58}, + [1627] = {.lex_state = 250}, [1628] = {.lex_state = 250}, - [1629] = {.lex_state = 58}, - [1630] = {.lex_state = 250}, + [1629] = {.lex_state = 250}, + [1630] = {.lex_state = 58}, [1631] = {.lex_state = 250}, - [1632] = {.lex_state = 250}, + [1632] = {.lex_state = 58}, [1633] = {.lex_state = 250}, [1634] = {.lex_state = 250}, [1635] = {.lex_state = 250}, @@ -15022,23 +15059,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1637] = {.lex_state = 250}, [1638] = {.lex_state = 250}, [1639] = {.lex_state = 250}, - [1640] = {.lex_state = 250}, + [1640] = {.lex_state = 58}, [1641] = {.lex_state = 250}, [1642] = {.lex_state = 58}, - [1643] = {.lex_state = 250}, + [1643] = {.lex_state = 58}, [1644] = {.lex_state = 250}, [1645] = {.lex_state = 250}, [1646] = {.lex_state = 250}, - [1647] = {.lex_state = 250}, + [1647] = {.lex_state = 58}, [1648] = {.lex_state = 250}, - [1649] = {.lex_state = 58}, - [1650] = {.lex_state = 58}, - [1651] = {.lex_state = 250}, + [1649] = {.lex_state = 250}, + [1650] = {.lex_state = 250}, + [1651] = {.lex_state = 58}, [1652] = {.lex_state = 250}, [1653] = {.lex_state = 250}, - [1654] = {.lex_state = 250}, + [1654] = {.lex_state = 58}, [1655] = {.lex_state = 250}, - [1656] = {.lex_state = 250}, + [1656] = {.lex_state = 58}, [1657] = {.lex_state = 250}, [1658] = {.lex_state = 250}, [1659] = {.lex_state = 250}, @@ -15046,31 +15083,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1661] = {.lex_state = 250}, [1662] = {.lex_state = 250}, [1663] = {.lex_state = 250}, - [1664] = {.lex_state = 58}, - [1665] = {.lex_state = 58}, - [1666] = {.lex_state = 58}, - [1667] = {.lex_state = 58}, - [1668] = {.lex_state = 58}, - [1669] = {.lex_state = 58}, + [1664] = {.lex_state = 250}, + [1665] = {.lex_state = 250}, + [1666] = {.lex_state = 250}, + [1667] = {.lex_state = 250}, + [1668] = {.lex_state = 250}, + [1669] = {.lex_state = 250}, [1670] = {.lex_state = 250}, - [1671] = {.lex_state = 58}, + [1671] = {.lex_state = 250}, [1672] = {.lex_state = 58}, - [1673] = {.lex_state = 58}, - [1674] = {.lex_state = 58}, - [1675] = {.lex_state = 58}, - [1676] = {.lex_state = 58}, - [1677] = {.lex_state = 58}, - [1678] = {.lex_state = 58}, - [1679] = {.lex_state = 58}, - [1680] = {.lex_state = 58}, - [1681] = {.lex_state = 58}, - [1682] = {.lex_state = 58}, + [1673] = {.lex_state = 250}, + [1674] = {.lex_state = 250}, + [1675] = {.lex_state = 250}, + [1676] = {.lex_state = 250}, + [1677] = {.lex_state = 250}, + [1678] = {.lex_state = 250}, + [1679] = {.lex_state = 250}, + [1680] = {.lex_state = 250}, + [1681] = {.lex_state = 250}, + [1682] = {.lex_state = 250}, [1683] = {.lex_state = 58}, [1684] = {.lex_state = 58}, [1685] = {.lex_state = 58}, [1686] = {.lex_state = 58}, [1687] = {.lex_state = 58}, - [1688] = {.lex_state = 58}, + [1688] = {.lex_state = 250}, [1689] = {.lex_state = 58}, [1690] = {.lex_state = 58}, [1691] = {.lex_state = 58}, @@ -15085,7 +15122,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1700] = {.lex_state = 58}, [1701] = {.lex_state = 58}, [1702] = {.lex_state = 58}, - [1703] = {.lex_state = 58}, + [1703] = {.lex_state = 250}, [1704] = {.lex_state = 58}, [1705] = {.lex_state = 58}, [1706] = {.lex_state = 58}, @@ -15115,7 +15152,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1730] = {.lex_state = 58}, [1731] = {.lex_state = 58}, [1732] = {.lex_state = 58}, - [1733] = {.lex_state = 60}, + [1733] = {.lex_state = 58}, [1734] = {.lex_state = 58}, [1735] = {.lex_state = 58}, [1736] = {.lex_state = 58}, @@ -15135,10 +15172,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1750] = {.lex_state = 58}, [1751] = {.lex_state = 58}, [1752] = {.lex_state = 58}, - [1753] = {.lex_state = 55}, + [1753] = {.lex_state = 58}, [1754] = {.lex_state = 58}, - [1755] = {.lex_state = 25}, - [1756] = {.lex_state = 55}, + [1755] = {.lex_state = 58}, + [1756] = {.lex_state = 58}, [1757] = {.lex_state = 58}, [1758] = {.lex_state = 58}, [1759] = {.lex_state = 58}, @@ -15149,24 +15186,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1764] = {.lex_state = 58}, [1765] = {.lex_state = 58}, [1766] = {.lex_state = 58}, - [1767] = {.lex_state = 55}, + [1767] = {.lex_state = 58}, [1768] = {.lex_state = 58}, [1769] = {.lex_state = 58}, [1770] = {.lex_state = 58}, - [1771] = {.lex_state = 60}, + [1771] = {.lex_state = 58}, [1772] = {.lex_state = 58}, - [1773] = {.lex_state = 58}, - [1774] = {.lex_state = 60}, + [1773] = {.lex_state = 60}, + [1774] = {.lex_state = 58}, [1775] = {.lex_state = 58}, - [1776] = {.lex_state = 60}, + [1776] = {.lex_state = 58}, [1777] = {.lex_state = 58}, [1778] = {.lex_state = 58}, - [1779] = {.lex_state = 55}, + [1779] = {.lex_state = 58}, [1780] = {.lex_state = 58}, [1781] = {.lex_state = 58}, [1782] = {.lex_state = 58}, - [1783] = {.lex_state = 58}, - [1784] = {.lex_state = 60}, + [1783] = {.lex_state = 23}, + [1784] = {.lex_state = 58}, [1785] = {.lex_state = 58}, [1786] = {.lex_state = 58}, [1787] = {.lex_state = 58}, @@ -15176,177 +15213,177 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1791] = {.lex_state = 58}, [1792] = {.lex_state = 58}, [1793] = {.lex_state = 58}, - [1794] = {.lex_state = 58}, - [1795] = {.lex_state = 55}, - [1796] = {.lex_state = 55}, - [1797] = {.lex_state = 55}, - [1798] = {.lex_state = 55}, + [1794] = {.lex_state = 55}, + [1795] = {.lex_state = 58}, + [1796] = {.lex_state = 60}, + [1797] = {.lex_state = 60}, + [1798] = {.lex_state = 60}, [1799] = {.lex_state = 58}, - [1800] = {.lex_state = 55}, - [1801] = {.lex_state = 55}, - [1802] = {.lex_state = 55}, + [1800] = {.lex_state = 58}, + [1801] = {.lex_state = 58}, + [1802] = {.lex_state = 58}, [1803] = {.lex_state = 55}, [1804] = {.lex_state = 55}, - [1805] = {.lex_state = 55}, - [1806] = {.lex_state = 55}, - [1807] = {.lex_state = 55}, + [1805] = {.lex_state = 58}, + [1806] = {.lex_state = 58}, + [1807] = {.lex_state = 58}, [1808] = {.lex_state = 58}, - [1809] = {.lex_state = 55}, - [1810] = {.lex_state = 55}, - [1811] = {.lex_state = 60}, - [1812] = {.lex_state = 58}, + [1809] = {.lex_state = 60}, + [1810] = {.lex_state = 58}, + [1811] = {.lex_state = 58}, + [1812] = {.lex_state = 55}, [1813] = {.lex_state = 58}, - [1814] = {.lex_state = 60}, - [1815] = {.lex_state = 58}, - [1816] = {.lex_state = 55}, - [1817] = {.lex_state = 55}, - [1818] = {.lex_state = 55}, + [1814] = {.lex_state = 58}, + [1815] = {.lex_state = 55}, + [1816] = {.lex_state = 58}, + [1817] = {.lex_state = 58}, + [1818] = {.lex_state = 58}, [1819] = {.lex_state = 58}, [1820] = {.lex_state = 58}, - [1821] = {.lex_state = 58}, - [1822] = {.lex_state = 55}, - [1823] = {.lex_state = 55}, + [1821] = {.lex_state = 60}, + [1822] = {.lex_state = 60}, + [1823] = {.lex_state = 58}, [1824] = {.lex_state = 55}, - [1825] = {.lex_state = 55}, - [1826] = {.lex_state = 55}, + [1825] = {.lex_state = 58}, + [1826] = {.lex_state = 58}, [1827] = {.lex_state = 58}, - [1828] = {.lex_state = 55}, - [1829] = {.lex_state = 55}, + [1828] = {.lex_state = 58}, + [1829] = {.lex_state = 58}, [1830] = {.lex_state = 58}, - [1831] = {.lex_state = 55}, - [1832] = {.lex_state = 60}, - [1833] = {.lex_state = 55}, - [1834] = {.lex_state = 60}, - [1835] = {.lex_state = 55}, - [1836] = {.lex_state = 58}, + [1831] = {.lex_state = 60}, + [1832] = {.lex_state = 55}, + [1833] = {.lex_state = 58}, + [1834] = {.lex_state = 58}, + [1835] = {.lex_state = 58}, + [1836] = {.lex_state = 55}, [1837] = {.lex_state = 55}, - [1838] = {.lex_state = 60}, - [1839] = {.lex_state = 60}, - [1840] = {.lex_state = 60}, + [1838] = {.lex_state = 55}, + [1839] = {.lex_state = 58}, + [1840] = {.lex_state = 55}, [1841] = {.lex_state = 58}, - [1842] = {.lex_state = 60}, - [1843] = {.lex_state = 58}, + [1842] = {.lex_state = 58}, + [1843] = {.lex_state = 55}, [1844] = {.lex_state = 58}, - [1845] = {.lex_state = 55}, - [1846] = {.lex_state = 58}, - [1847] = {.lex_state = 55}, - [1848] = {.lex_state = 60}, - [1849] = {.lex_state = 60}, - [1850] = {.lex_state = 60}, - [1851] = {.lex_state = 58}, - [1852] = {.lex_state = 58}, - [1853] = {.lex_state = 58}, + [1845] = {.lex_state = 58}, + [1846] = {.lex_state = 55}, + [1847] = {.lex_state = 58}, + [1848] = {.lex_state = 55}, + [1849] = {.lex_state = 55}, + [1850] = {.lex_state = 55}, + [1851] = {.lex_state = 60}, + [1852] = {.lex_state = 60}, + [1853] = {.lex_state = 55}, [1854] = {.lex_state = 58}, - [1855] = {.lex_state = 58}, + [1855] = {.lex_state = 55}, [1856] = {.lex_state = 58}, - [1857] = {.lex_state = 60}, - [1858] = {.lex_state = 58}, - [1859] = {.lex_state = 58}, + [1857] = {.lex_state = 55}, + [1858] = {.lex_state = 55}, + [1859] = {.lex_state = 55}, [1860] = {.lex_state = 55}, - [1861] = {.lex_state = 58}, + [1861] = {.lex_state = 60}, [1862] = {.lex_state = 55}, [1863] = {.lex_state = 55}, - [1864] = {.lex_state = 58}, - [1865] = {.lex_state = 58}, - [1866] = {.lex_state = 60}, - [1867] = {.lex_state = 60}, - [1868] = {.lex_state = 60}, - [1869] = {.lex_state = 60}, - [1870] = {.lex_state = 55}, - [1871] = {.lex_state = 60}, - [1872] = {.lex_state = 60}, + [1864] = {.lex_state = 55}, + [1865] = {.lex_state = 55}, + [1866] = {.lex_state = 55}, + [1867] = {.lex_state = 58}, + [1868] = {.lex_state = 58}, + [1869] = {.lex_state = 58}, + [1870] = {.lex_state = 58}, + [1871] = {.lex_state = 58}, + [1872] = {.lex_state = 55}, [1873] = {.lex_state = 55}, - [1874] = {.lex_state = 58}, + [1874] = {.lex_state = 55}, [1875] = {.lex_state = 60}, - [1876] = {.lex_state = 60}, + [1876] = {.lex_state = 55}, [1877] = {.lex_state = 58}, [1878] = {.lex_state = 55}, [1879] = {.lex_state = 55}, [1880] = {.lex_state = 55}, - [1881] = {.lex_state = 58}, - [1882] = {.lex_state = 58}, - [1883] = {.lex_state = 55}, - [1884] = {.lex_state = 58}, - [1885] = {.lex_state = 58}, - [1886] = {.lex_state = 25}, - [1887] = {.lex_state = 25}, - [1888] = {.lex_state = 25}, - [1889] = {.lex_state = 58}, - [1890] = {.lex_state = 25}, - [1891] = {.lex_state = 25}, - [1892] = {.lex_state = 25}, - [1893] = {.lex_state = 25}, - [1894] = {.lex_state = 25}, - [1895] = {.lex_state = 25}, - [1896] = {.lex_state = 25}, - [1897] = {.lex_state = 25}, - [1898] = {.lex_state = 58}, - [1899] = {.lex_state = 58}, - [1900] = {.lex_state = 25}, - [1901] = {.lex_state = 58}, + [1881] = {.lex_state = 60}, + [1882] = {.lex_state = 60}, + [1883] = {.lex_state = 60}, + [1884] = {.lex_state = 60}, + [1885] = {.lex_state = 60}, + [1886] = {.lex_state = 60}, + [1887] = {.lex_state = 60}, + [1888] = {.lex_state = 60}, + [1889] = {.lex_state = 60}, + [1890] = {.lex_state = 60}, + [1891] = {.lex_state = 60}, + [1892] = {.lex_state = 58}, + [1893] = {.lex_state = 58}, + [1894] = {.lex_state = 58}, + [1895] = {.lex_state = 55}, + [1896] = {.lex_state = 55}, + [1897] = {.lex_state = 55}, + [1898] = {.lex_state = 55}, + [1899] = {.lex_state = 60}, + [1900] = {.lex_state = 55}, + [1901] = {.lex_state = 55}, [1902] = {.lex_state = 58}, - [1903] = {.lex_state = 60}, - [1904] = {.lex_state = 25}, - [1905] = {.lex_state = 58}, - [1906] = {.lex_state = 58}, + [1903] = {.lex_state = 55}, + [1904] = {.lex_state = 60}, + [1905] = {.lex_state = 55}, + [1906] = {.lex_state = 55}, [1907] = {.lex_state = 58}, - [1908] = {.lex_state = 25}, - [1909] = {.lex_state = 58}, - [1910] = {.lex_state = 58}, + [1908] = {.lex_state = 23}, + [1909] = {.lex_state = 60}, + [1910] = {.lex_state = 23}, [1911] = {.lex_state = 58}, - [1912] = {.lex_state = 58}, - [1913] = {.lex_state = 60}, + [1912] = {.lex_state = 23}, + [1913] = {.lex_state = 23}, [1914] = {.lex_state = 58}, [1915] = {.lex_state = 58}, - [1916] = {.lex_state = 58}, - [1917] = {.lex_state = 25}, - [1918] = {.lex_state = 25}, + [1916] = {.lex_state = 23}, + [1917] = {.lex_state = 23}, + [1918] = {.lex_state = 23}, [1919] = {.lex_state = 58}, - [1920] = {.lex_state = 25}, - [1921] = {.lex_state = 25}, - [1922] = {.lex_state = 58}, - [1923] = {.lex_state = 58}, - [1924] = {.lex_state = 25}, - [1925] = {.lex_state = 25}, - [1926] = {.lex_state = 25}, - [1927] = {.lex_state = 58}, - [1928] = {.lex_state = 25}, - [1929] = {.lex_state = 58}, - [1930] = {.lex_state = 25}, - [1931] = {.lex_state = 25}, - [1932] = {.lex_state = 58}, - [1933] = {.lex_state = 25}, + [1920] = {.lex_state = 23}, + [1921] = {.lex_state = 23}, + [1922] = {.lex_state = 23}, + [1923] = {.lex_state = 23}, + [1924] = {.lex_state = 23}, + [1925] = {.lex_state = 23}, + [1926] = {.lex_state = 23}, + [1927] = {.lex_state = 23}, + [1928] = {.lex_state = 23}, + [1929] = {.lex_state = 23}, + [1930] = {.lex_state = 58}, + [1931] = {.lex_state = 58}, + [1932] = {.lex_state = 23}, + [1933] = {.lex_state = 23}, [1934] = {.lex_state = 58}, - [1935] = {.lex_state = 25}, + [1935] = {.lex_state = 23}, [1936] = {.lex_state = 58}, - [1937] = {.lex_state = 25}, - [1938] = {.lex_state = 25}, - [1939] = {.lex_state = 25}, + [1937] = {.lex_state = 58}, + [1938] = {.lex_state = 58}, + [1939] = {.lex_state = 58}, [1940] = {.lex_state = 58}, - [1941] = {.lex_state = 25}, - [1942] = {.lex_state = 25}, - [1943] = {.lex_state = 25}, - [1944] = {.lex_state = 25}, + [1941] = {.lex_state = 58}, + [1942] = {.lex_state = 23}, + [1943] = {.lex_state = 23}, + [1944] = {.lex_state = 23}, [1945] = {.lex_state = 58}, - [1946] = {.lex_state = 58}, + [1946] = {.lex_state = 23}, [1947] = {.lex_state = 58}, - [1948] = {.lex_state = 58}, - [1949] = {.lex_state = 58}, - [1950] = {.lex_state = 58}, + [1948] = {.lex_state = 23}, + [1949] = {.lex_state = 23}, + [1950] = {.lex_state = 23}, [1951] = {.lex_state = 58}, - [1952] = {.lex_state = 58}, - [1953] = {.lex_state = 58}, + [1952] = {.lex_state = 60}, + [1953] = {.lex_state = 23}, [1954] = {.lex_state = 58}, - [1955] = {.lex_state = 58}, - [1956] = {.lex_state = 58}, - [1957] = {.lex_state = 58}, + [1955] = {.lex_state = 23}, + [1956] = {.lex_state = 23}, + [1957] = {.lex_state = 23}, [1958] = {.lex_state = 58}, [1959] = {.lex_state = 58}, [1960] = {.lex_state = 58}, - [1961] = {.lex_state = 58}, + [1961] = {.lex_state = 23}, [1962] = {.lex_state = 58}, [1963] = {.lex_state = 58}, - [1964] = {.lex_state = 58}, + [1964] = {.lex_state = 23}, [1965] = {.lex_state = 58}, [1966] = {.lex_state = 58}, [1967] = {.lex_state = 58}, @@ -15420,10 +15457,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2035] = {.lex_state = 58}, [2036] = {.lex_state = 58}, [2037] = {.lex_state = 58}, - [2038] = {.lex_state = 57}, - [2039] = {.lex_state = 57}, - [2040] = {.lex_state = 57}, - [2041] = {.lex_state = 57}, + [2038] = {.lex_state = 58}, + [2039] = {.lex_state = 58}, + [2040] = {.lex_state = 58}, + [2041] = {.lex_state = 58}, [2042] = {.lex_state = 58}, [2043] = {.lex_state = 58}, [2044] = {.lex_state = 58}, @@ -15441,10 +15478,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2056] = {.lex_state = 58}, [2057] = {.lex_state = 58}, [2058] = {.lex_state = 58}, - [2059] = {.lex_state = 58}, - [2060] = {.lex_state = 58}, - [2061] = {.lex_state = 58}, - [2062] = {.lex_state = 58}, + [2059] = {.lex_state = 57}, + [2060] = {.lex_state = 57}, + [2061] = {.lex_state = 57}, + [2062] = {.lex_state = 57}, [2063] = {.lex_state = 58}, [2064] = {.lex_state = 58}, [2065] = {.lex_state = 58}, @@ -15455,12 +15492,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2070] = {.lex_state = 58}, [2071] = {.lex_state = 58}, [2072] = {.lex_state = 58}, - [2073] = {.lex_state = 67}, - [2074] = {.lex_state = 67}, + [2073] = {.lex_state = 58}, + [2074] = {.lex_state = 58}, [2075] = {.lex_state = 58}, [2076] = {.lex_state = 58}, [2077] = {.lex_state = 58}, - [2078] = {.lex_state = 67}, + [2078] = {.lex_state = 58}, [2079] = {.lex_state = 58}, [2080] = {.lex_state = 58}, [2081] = {.lex_state = 58}, @@ -15473,12 +15510,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2088] = {.lex_state = 58}, [2089] = {.lex_state = 58}, [2090] = {.lex_state = 58}, - [2091] = {.lex_state = 67}, - [2092] = {.lex_state = 67}, + [2091] = {.lex_state = 58}, + [2092] = {.lex_state = 58}, [2093] = {.lex_state = 58}, [2094] = {.lex_state = 58}, [2095] = {.lex_state = 58}, - [2096] = {.lex_state = 58}, + [2096] = {.lex_state = 67}, [2097] = {.lex_state = 58}, [2098] = {.lex_state = 58}, [2099] = {.lex_state = 58}, @@ -15486,19 +15523,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2101] = {.lex_state = 67}, [2102] = {.lex_state = 58}, [2103] = {.lex_state = 58}, - [2104] = {.lex_state = 58}, + [2104] = {.lex_state = 67}, [2105] = {.lex_state = 58}, [2106] = {.lex_state = 58}, [2107] = {.lex_state = 58}, - [2108] = {.lex_state = 67}, - [2109] = {.lex_state = 58}, + [2108] = {.lex_state = 58}, + [2109] = {.lex_state = 67}, [2110] = {.lex_state = 58}, [2111] = {.lex_state = 58}, [2112] = {.lex_state = 58}, [2113] = {.lex_state = 58}, - [2114] = {.lex_state = 67}, + [2114] = {.lex_state = 58}, [2115] = {.lex_state = 58}, - [2116] = {.lex_state = 58}, + [2116] = {.lex_state = 67}, [2117] = {.lex_state = 58}, [2118] = {.lex_state = 58}, [2119] = {.lex_state = 58}, @@ -15507,10 +15544,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2122] = {.lex_state = 58}, [2123] = {.lex_state = 58}, [2124] = {.lex_state = 58}, - [2125] = {.lex_state = 58}, + [2125] = {.lex_state = 67}, [2126] = {.lex_state = 58}, [2127] = {.lex_state = 58}, - [2128] = {.lex_state = 58}, + [2128] = {.lex_state = 67}, [2129] = {.lex_state = 58}, [2130] = {.lex_state = 58}, [2131] = {.lex_state = 58}, @@ -15520,23 +15557,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2135] = {.lex_state = 58}, [2136] = {.lex_state = 58}, [2137] = {.lex_state = 58}, - [2138] = {.lex_state = 58}, + [2138] = {.lex_state = 67}, [2139] = {.lex_state = 58}, [2140] = {.lex_state = 58}, [2141] = {.lex_state = 58}, [2142] = {.lex_state = 58}, [2143] = {.lex_state = 58}, [2144] = {.lex_state = 58}, - [2145] = {.lex_state = 57}, - [2146] = {.lex_state = 57}, + [2145] = {.lex_state = 58}, + [2146] = {.lex_state = 58}, [2147] = {.lex_state = 58}, [2148] = {.lex_state = 58}, - [2149] = {.lex_state = 57}, + [2149] = {.lex_state = 58}, [2150] = {.lex_state = 58}, [2151] = {.lex_state = 58}, - [2152] = {.lex_state = 57}, + [2152] = {.lex_state = 58}, [2153] = {.lex_state = 58}, - [2154] = {.lex_state = 57}, + [2154] = {.lex_state = 58}, [2155] = {.lex_state = 58}, [2156] = {.lex_state = 57}, [2157] = {.lex_state = 58}, @@ -15548,33 +15585,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2163] = {.lex_state = 58}, [2164] = {.lex_state = 58}, [2165] = {.lex_state = 58}, - [2166] = {.lex_state = 58}, + [2166] = {.lex_state = 57}, [2167] = {.lex_state = 58}, [2168] = {.lex_state = 58}, [2169] = {.lex_state = 58}, [2170] = {.lex_state = 58}, [2171] = {.lex_state = 57}, [2172] = {.lex_state = 57}, - [2173] = {.lex_state = 58}, - [2174] = {.lex_state = 56}, - [2175] = {.lex_state = 58}, + [2173] = {.lex_state = 57}, + [2174] = {.lex_state = 57}, + [2175] = {.lex_state = 57}, [2176] = {.lex_state = 58}, [2177] = {.lex_state = 58}, [2178] = {.lex_state = 57}, [2179] = {.lex_state = 58}, [2180] = {.lex_state = 67}, - [2181] = {.lex_state = 57}, - [2182] = {.lex_state = 57}, + [2181] = {.lex_state = 58}, + [2182] = {.lex_state = 56}, [2183] = {.lex_state = 58}, [2184] = {.lex_state = 58}, [2185] = {.lex_state = 57}, - [2186] = {.lex_state = 57}, + [2186] = {.lex_state = 58}, [2187] = {.lex_state = 58}, [2188] = {.lex_state = 58}, - [2189] = {.lex_state = 57}, + [2189] = {.lex_state = 58}, [2190] = {.lex_state = 58}, [2191] = {.lex_state = 58}, - [2192] = {.lex_state = 250}, + [2192] = {.lex_state = 58}, [2193] = {.lex_state = 58}, [2194] = {.lex_state = 58}, [2195] = {.lex_state = 58}, @@ -15583,61 +15620,61 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2198] = {.lex_state = 58}, [2199] = {.lex_state = 58}, [2200] = {.lex_state = 58}, - [2201] = {.lex_state = 250}, + [2201] = {.lex_state = 57}, [2202] = {.lex_state = 58}, - [2203] = {.lex_state = 250}, - [2204] = {.lex_state = 58}, + [2203] = {.lex_state = 58}, + [2204] = {.lex_state = 57}, [2205] = {.lex_state = 58}, [2206] = {.lex_state = 58}, - [2207] = {.lex_state = 58}, - [2208] = {.lex_state = 250}, - [2209] = {.lex_state = 58}, - [2210] = {.lex_state = 58}, - [2211] = {.lex_state = 250}, - [2212] = {.lex_state = 250}, + [2207] = {.lex_state = 57}, + [2208] = {.lex_state = 58}, + [2209] = {.lex_state = 57}, + [2210] = {.lex_state = 57}, + [2211] = {.lex_state = 58}, + [2212] = {.lex_state = 58}, [2213] = {.lex_state = 58}, - [2214] = {.lex_state = 56}, - [2215] = {.lex_state = 250}, + [2214] = {.lex_state = 58}, + [2215] = {.lex_state = 58}, [2216] = {.lex_state = 250}, [2217] = {.lex_state = 250}, - [2218] = {.lex_state = 250}, - [2219] = {.lex_state = 61}, - [2220] = {.lex_state = 250}, - [2221] = {.lex_state = 61}, - [2222] = {.lex_state = 56}, - [2223] = {.lex_state = 250}, - [2224] = {.lex_state = 56}, - [2225] = {.lex_state = 250}, - [2226] = {.lex_state = 56}, - [2227] = {.lex_state = 250}, - [2228] = {.lex_state = 56}, - [2229] = {.lex_state = 61}, - [2230] = {.lex_state = 56}, - [2231] = {.lex_state = 56}, - [2232] = {.lex_state = 250}, - [2233] = {.lex_state = 61}, + [2218] = {.lex_state = 58}, + [2219] = {.lex_state = 58}, + [2220] = {.lex_state = 58}, + [2221] = {.lex_state = 250}, + [2222] = {.lex_state = 58}, + [2223] = {.lex_state = 58}, + [2224] = {.lex_state = 250}, + [2225] = {.lex_state = 58}, + [2226] = {.lex_state = 58}, + [2227] = {.lex_state = 58}, + [2228] = {.lex_state = 58}, + [2229] = {.lex_state = 250}, + [2230] = {.lex_state = 58}, + [2231] = {.lex_state = 250}, + [2232] = {.lex_state = 58}, + [2233] = {.lex_state = 58}, [2234] = {.lex_state = 250}, - [2235] = {.lex_state = 56}, + [2235] = {.lex_state = 250}, [2236] = {.lex_state = 56}, [2237] = {.lex_state = 250}, - [2238] = {.lex_state = 250}, - [2239] = {.lex_state = 250}, - [2240] = {.lex_state = 250}, - [2241] = {.lex_state = 250}, - [2242] = {.lex_state = 250}, - [2243] = {.lex_state = 57}, + [2238] = {.lex_state = 56}, + [2239] = {.lex_state = 56}, + [2240] = {.lex_state = 56}, + [2241] = {.lex_state = 61}, + [2242] = {.lex_state = 56}, + [2243] = {.lex_state = 61}, [2244] = {.lex_state = 250}, - [2245] = {.lex_state = 250}, - [2246] = {.lex_state = 57}, - [2247] = {.lex_state = 250}, + [2245] = {.lex_state = 58}, + [2246] = {.lex_state = 250}, + [2247] = {.lex_state = 56}, [2248] = {.lex_state = 250}, [2249] = {.lex_state = 250}, - [2250] = {.lex_state = 250}, - [2251] = {.lex_state = 250}, - [2252] = {.lex_state = 250}, + [2250] = {.lex_state = 61}, + [2251] = {.lex_state = 61}, + [2252] = {.lex_state = 56}, [2253] = {.lex_state = 250}, - [2254] = {.lex_state = 250}, - [2255] = {.lex_state = 250}, + [2254] = {.lex_state = 56}, + [2255] = {.lex_state = 56}, [2256] = {.lex_state = 250}, [2257] = {.lex_state = 250}, [2258] = {.lex_state = 250}, @@ -15647,14 +15684,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2262] = {.lex_state = 250}, [2263] = {.lex_state = 250}, [2264] = {.lex_state = 250}, - [2265] = {.lex_state = 250}, + [2265] = {.lex_state = 57}, [2266] = {.lex_state = 250}, [2267] = {.lex_state = 250}, [2268] = {.lex_state = 250}, [2269] = {.lex_state = 250}, - [2270] = {.lex_state = 57}, + [2270] = {.lex_state = 250}, [2271] = {.lex_state = 250}, - [2272] = {.lex_state = 250}, + [2272] = {.lex_state = 57}, [2273] = {.lex_state = 250}, [2274] = {.lex_state = 250}, [2275] = {.lex_state = 250}, @@ -15664,11 +15701,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2279] = {.lex_state = 250}, [2280] = {.lex_state = 250}, [2281] = {.lex_state = 250}, - [2282] = {.lex_state = 250}, + [2282] = {.lex_state = 57}, [2283] = {.lex_state = 250}, [2284] = {.lex_state = 250}, [2285] = {.lex_state = 250}, - [2286] = {.lex_state = 57}, + [2286] = {.lex_state = 250}, [2287] = {.lex_state = 250}, [2288] = {.lex_state = 250}, [2289] = {.lex_state = 250}, @@ -15681,246 +15718,246 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2296] = {.lex_state = 250}, [2297] = {.lex_state = 250}, [2298] = {.lex_state = 250}, - [2299] = {.lex_state = 58}, - [2300] = {.lex_state = 58}, - [2301] = {.lex_state = 58}, + [2299] = {.lex_state = 250}, + [2300] = {.lex_state = 250}, + [2301] = {.lex_state = 250}, [2302] = {.lex_state = 250}, - [2303] = {.lex_state = 58}, - [2304] = {.lex_state = 67}, - [2305] = {.lex_state = 58}, + [2303] = {.lex_state = 250}, + [2304] = {.lex_state = 57}, + [2305] = {.lex_state = 250}, [2306] = {.lex_state = 250}, - [2307] = {.lex_state = 67}, - [2308] = {.lex_state = 67}, - [2309] = {.lex_state = 58}, - [2310] = {.lex_state = 58}, + [2307] = {.lex_state = 250}, + [2308] = {.lex_state = 250}, + [2309] = {.lex_state = 250}, + [2310] = {.lex_state = 250}, [2311] = {.lex_state = 250}, [2312] = {.lex_state = 250}, - [2313] = {.lex_state = 58}, + [2313] = {.lex_state = 250}, [2314] = {.lex_state = 250}, - [2315] = {.lex_state = 58}, - [2316] = {.lex_state = 58}, + [2315] = {.lex_state = 250}, + [2316] = {.lex_state = 250}, [2317] = {.lex_state = 250}, [2318] = {.lex_state = 250}, - [2319] = {.lex_state = 58}, + [2319] = {.lex_state = 250}, [2320] = {.lex_state = 250}, - [2321] = {.lex_state = 58}, - [2322] = {.lex_state = 58}, - [2323] = {.lex_state = 58}, - [2324] = {.lex_state = 67}, + [2321] = {.lex_state = 250}, + [2322] = {.lex_state = 250}, + [2323] = {.lex_state = 67}, + [2324] = {.lex_state = 250}, [2325] = {.lex_state = 250}, - [2326] = {.lex_state = 67}, - [2327] = {.lex_state = 67}, - [2328] = {.lex_state = 67}, - [2329] = {.lex_state = 67}, + [2326] = {.lex_state = 250}, + [2327] = {.lex_state = 58}, + [2328] = {.lex_state = 250}, + [2329] = {.lex_state = 58}, [2330] = {.lex_state = 58}, - [2331] = {.lex_state = 250}, + [2331] = {.lex_state = 58}, [2332] = {.lex_state = 58}, [2333] = {.lex_state = 58}, - [2334] = {.lex_state = 58}, - [2335] = {.lex_state = 58}, - [2336] = {.lex_state = 250}, - [2337] = {.lex_state = 58}, - [2338] = {.lex_state = 250}, - [2339] = {.lex_state = 250}, - [2340] = {.lex_state = 58}, - [2341] = {.lex_state = 250}, + [2334] = {.lex_state = 67}, + [2335] = {.lex_state = 250}, + [2336] = {.lex_state = 58}, + [2337] = {.lex_state = 67}, + [2338] = {.lex_state = 67}, + [2339] = {.lex_state = 57}, + [2340] = {.lex_state = 250}, + [2341] = {.lex_state = 67}, [2342] = {.lex_state = 58}, - [2343] = {.lex_state = 67}, - [2344] = {.lex_state = 250}, + [2343] = {.lex_state = 58}, + [2344] = {.lex_state = 58}, [2345] = {.lex_state = 58}, [2346] = {.lex_state = 58}, - [2347] = {.lex_state = 67}, - [2348] = {.lex_state = 57}, - [2349] = {.lex_state = 67}, + [2347] = {.lex_state = 58}, + [2348] = {.lex_state = 58}, + [2349] = {.lex_state = 58}, [2350] = {.lex_state = 58}, - [2351] = {.lex_state = 58}, + [2351] = {.lex_state = 250}, [2352] = {.lex_state = 58}, - [2353] = {.lex_state = 58}, + [2353] = {.lex_state = 250}, [2354] = {.lex_state = 58}, - [2355] = {.lex_state = 250}, - [2356] = {.lex_state = 250}, + [2355] = {.lex_state = 58}, + [2356] = {.lex_state = 58}, [2357] = {.lex_state = 58}, [2358] = {.lex_state = 58}, [2359] = {.lex_state = 58}, - [2360] = {.lex_state = 58}, - [2361] = {.lex_state = 250}, + [2360] = {.lex_state = 250}, + [2361] = {.lex_state = 58}, [2362] = {.lex_state = 58}, - [2363] = {.lex_state = 58}, - [2364] = {.lex_state = 250}, + [2363] = {.lex_state = 67}, + [2364] = {.lex_state = 58}, [2365] = {.lex_state = 58}, [2366] = {.lex_state = 58}, [2367] = {.lex_state = 58}, [2368] = {.lex_state = 58}, [2369] = {.lex_state = 250}, [2370] = {.lex_state = 250}, - [2371] = {.lex_state = 250}, - [2372] = {.lex_state = 30}, - [2373] = {.lex_state = 30}, - [2374] = {.lex_state = 58}, + [2371] = {.lex_state = 67}, + [2372] = {.lex_state = 58}, + [2373] = {.lex_state = 67}, + [2374] = {.lex_state = 67}, [2375] = {.lex_state = 250}, [2376] = {.lex_state = 58}, - [2377] = {.lex_state = 30}, - [2378] = {.lex_state = 58}, + [2377] = {.lex_state = 67}, + [2378] = {.lex_state = 250}, [2379] = {.lex_state = 58}, - [2380] = {.lex_state = 250}, - [2381] = {.lex_state = 250}, + [2380] = {.lex_state = 58}, + [2381] = {.lex_state = 58}, [2382] = {.lex_state = 250}, - [2383] = {.lex_state = 250}, - [2384] = {.lex_state = 250}, - [2385] = {.lex_state = 250}, + [2383] = {.lex_state = 58}, + [2384] = {.lex_state = 58}, + [2385] = {.lex_state = 67}, [2386] = {.lex_state = 58}, - [2387] = {.lex_state = 58}, - [2388] = {.lex_state = 60}, - [2389] = {.lex_state = 250}, - [2390] = {.lex_state = 58}, + [2387] = {.lex_state = 250}, + [2388] = {.lex_state = 250}, + [2389] = {.lex_state = 58}, + [2390] = {.lex_state = 250}, [2391] = {.lex_state = 58}, - [2392] = {.lex_state = 30}, + [2392] = {.lex_state = 250}, [2393] = {.lex_state = 58}, - [2394] = {.lex_state = 57}, - [2395] = {.lex_state = 30}, - [2396] = {.lex_state = 30}, - [2397] = {.lex_state = 58}, - [2398] = {.lex_state = 58}, + [2394] = {.lex_state = 250}, + [2395] = {.lex_state = 250}, + [2396] = {.lex_state = 250}, + [2397] = {.lex_state = 250}, + [2398] = {.lex_state = 30}, [2399] = {.lex_state = 250}, [2400] = {.lex_state = 250}, [2401] = {.lex_state = 250}, - [2402] = {.lex_state = 30}, - [2403] = {.lex_state = 58}, - [2404] = {.lex_state = 250}, - [2405] = {.lex_state = 57}, + [2402] = {.lex_state = 250}, + [2403] = {.lex_state = 30}, + [2404] = {.lex_state = 58}, + [2405] = {.lex_state = 58}, [2406] = {.lex_state = 58}, - [2407] = {.lex_state = 57}, - [2408] = {.lex_state = 250}, - [2409] = {.lex_state = 250}, - [2410] = {.lex_state = 250}, - [2411] = {.lex_state = 58}, - [2412] = {.lex_state = 57}, - [2413] = {.lex_state = 250}, - [2414] = {.lex_state = 58}, - [2415] = {.lex_state = 250}, - [2416] = {.lex_state = 37}, - [2417] = {.lex_state = 39}, - [2418] = {.lex_state = 37}, - [2419] = {.lex_state = 39}, - [2420] = {.lex_state = 250}, + [2407] = {.lex_state = 58}, + [2408] = {.lex_state = 30}, + [2409] = {.lex_state = 58}, + [2410] = {.lex_state = 58}, + [2411] = {.lex_state = 250}, + [2412] = {.lex_state = 58}, + [2413] = {.lex_state = 58}, + [2414] = {.lex_state = 30}, + [2415] = {.lex_state = 58}, + [2416] = {.lex_state = 30}, + [2417] = {.lex_state = 250}, + [2418] = {.lex_state = 30}, + [2419] = {.lex_state = 250}, + [2420] = {.lex_state = 60}, [2421] = {.lex_state = 250}, - [2422] = {.lex_state = 250}, - [2423] = {.lex_state = 250}, - [2424] = {.lex_state = 37}, - [2425] = {.lex_state = 250}, + [2422] = {.lex_state = 30}, + [2423] = {.lex_state = 57}, + [2424] = {.lex_state = 250}, + [2425] = {.lex_state = 58}, [2426] = {.lex_state = 250}, [2427] = {.lex_state = 250}, - [2428] = {.lex_state = 39}, + [2428] = {.lex_state = 250}, [2429] = {.lex_state = 250}, - [2430] = {.lex_state = 250}, - [2431] = {.lex_state = 58}, + [2430] = {.lex_state = 58}, + [2431] = {.lex_state = 59}, [2432] = {.lex_state = 250}, [2433] = {.lex_state = 37}, [2434] = {.lex_state = 250}, [2435] = {.lex_state = 250}, - [2436] = {.lex_state = 37}, - [2437] = {.lex_state = 58}, - [2438] = {.lex_state = 57}, + [2436] = {.lex_state = 57}, + [2437] = {.lex_state = 250}, + [2438] = {.lex_state = 250}, [2439] = {.lex_state = 250}, [2440] = {.lex_state = 250}, - [2441] = {.lex_state = 250}, - [2442] = {.lex_state = 37}, - [2443] = {.lex_state = 250}, + [2441] = {.lex_state = 39}, + [2442] = {.lex_state = 250}, + [2443] = {.lex_state = 37}, [2444] = {.lex_state = 250}, [2445] = {.lex_state = 250}, [2446] = {.lex_state = 37}, - [2447] = {.lex_state = 39}, + [2447] = {.lex_state = 57}, [2448] = {.lex_state = 39}, [2449] = {.lex_state = 250}, [2450] = {.lex_state = 250}, [2451] = {.lex_state = 250}, [2452] = {.lex_state = 250}, [2453] = {.lex_state = 250}, - [2454] = {.lex_state = 37}, - [2455] = {.lex_state = 58}, + [2454] = {.lex_state = 250}, + [2455] = {.lex_state = 250}, [2456] = {.lex_state = 58}, - [2457] = {.lex_state = 37}, + [2457] = {.lex_state = 250}, [2458] = {.lex_state = 250}, - [2459] = {.lex_state = 39}, - [2460] = {.lex_state = 250}, - [2461] = {.lex_state = 37}, - [2462] = {.lex_state = 59}, + [2459] = {.lex_state = 250}, + [2460] = {.lex_state = 37}, + [2461] = {.lex_state = 250}, + [2462] = {.lex_state = 250}, [2463] = {.lex_state = 250}, [2464] = {.lex_state = 250}, [2465] = {.lex_state = 37}, - [2466] = {.lex_state = 250}, - [2467] = {.lex_state = 58}, + [2466] = {.lex_state = 58}, + [2467] = {.lex_state = 250}, [2468] = {.lex_state = 250}, [2469] = {.lex_state = 250}, - [2470] = {.lex_state = 250}, - [2471] = {.lex_state = 250}, - [2472] = {.lex_state = 31}, - [2473] = {.lex_state = 31}, - [2474] = {.lex_state = 58}, - [2475] = {.lex_state = 39}, - [2476] = {.lex_state = 32}, - [2477] = {.lex_state = 58}, - [2478] = {.lex_state = 33}, - [2479] = {.lex_state = 59}, - [2480] = {.lex_state = 58}, - [2481] = {.lex_state = 58}, - [2482] = {.lex_state = 250}, - [2483] = {.lex_state = 58}, - [2484] = {.lex_state = 31}, - [2485] = {.lex_state = 250}, - [2486] = {.lex_state = 33}, - [2487] = {.lex_state = 59}, - [2488] = {.lex_state = 250}, + [2470] = {.lex_state = 37}, + [2471] = {.lex_state = 37}, + [2472] = {.lex_state = 39}, + [2473] = {.lex_state = 250}, + [2474] = {.lex_state = 250}, + [2475] = {.lex_state = 58}, + [2476] = {.lex_state = 250}, + [2477] = {.lex_state = 39}, + [2478] = {.lex_state = 37}, + [2479] = {.lex_state = 39}, + [2480] = {.lex_state = 37}, + [2481] = {.lex_state = 57}, + [2482] = {.lex_state = 57}, + [2483] = {.lex_state = 37}, + [2484] = {.lex_state = 250}, + [2485] = {.lex_state = 37}, + [2486] = {.lex_state = 58}, + [2487] = {.lex_state = 250}, + [2488] = {.lex_state = 58}, [2489] = {.lex_state = 58}, - [2490] = {.lex_state = 32}, - [2491] = {.lex_state = 39}, - [2492] = {.lex_state = 250}, + [2490] = {.lex_state = 250}, + [2491] = {.lex_state = 58}, + [2492] = {.lex_state = 39}, [2493] = {.lex_state = 250}, [2494] = {.lex_state = 250}, [2495] = {.lex_state = 250}, [2496] = {.lex_state = 250}, [2497] = {.lex_state = 250}, - [2498] = {.lex_state = 250}, - [2499] = {.lex_state = 59}, - [2500] = {.lex_state = 250}, + [2498] = {.lex_state = 58}, + [2499] = {.lex_state = 250}, + [2500] = {.lex_state = 59}, [2501] = {.lex_state = 250}, [2502] = {.lex_state = 250}, [2503] = {.lex_state = 250}, - [2504] = {.lex_state = 250}, - [2505] = {.lex_state = 33}, + [2504] = {.lex_state = 31}, + [2505] = {.lex_state = 250}, [2506] = {.lex_state = 250}, - [2507] = {.lex_state = 58}, - [2508] = {.lex_state = 58}, - [2509] = {.lex_state = 250}, + [2507] = {.lex_state = 250}, + [2508] = {.lex_state = 31}, + [2509] = {.lex_state = 58}, [2510] = {.lex_state = 250}, - [2511] = {.lex_state = 39}, - [2512] = {.lex_state = 59}, - [2513] = {.lex_state = 250}, + [2511] = {.lex_state = 59}, + [2512] = {.lex_state = 250}, + [2513] = {.lex_state = 31}, [2514] = {.lex_state = 250}, [2515] = {.lex_state = 250}, [2516] = {.lex_state = 250}, [2517] = {.lex_state = 250}, [2518] = {.lex_state = 250}, - [2519] = {.lex_state = 250}, + [2519] = {.lex_state = 32}, [2520] = {.lex_state = 250}, [2521] = {.lex_state = 250}, [2522] = {.lex_state = 250}, - [2523] = {.lex_state = 250}, - [2524] = {.lex_state = 250}, - [2525] = {.lex_state = 250}, - [2526] = {.lex_state = 250}, + [2523] = {.lex_state = 58}, + [2524] = {.lex_state = 59}, + [2525] = {.lex_state = 59}, + [2526] = {.lex_state = 58}, [2527] = {.lex_state = 250}, - [2528] = {.lex_state = 31}, + [2528] = {.lex_state = 250}, [2529] = {.lex_state = 250}, [2530] = {.lex_state = 250}, [2531] = {.lex_state = 250}, - [2532] = {.lex_state = 250}, - [2533] = {.lex_state = 250}, - [2534] = {.lex_state = 39}, + [2532] = {.lex_state = 58}, + [2533] = {.lex_state = 58}, + [2534] = {.lex_state = 59}, [2535] = {.lex_state = 250}, [2536] = {.lex_state = 250}, - [2537] = {.lex_state = 250}, - [2538] = {.lex_state = 59}, + [2537] = {.lex_state = 32}, + [2538] = {.lex_state = 250}, [2539] = {.lex_state = 250}, [2540] = {.lex_state = 250}, [2541] = {.lex_state = 250}, @@ -15928,24 +15965,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2543] = {.lex_state = 250}, [2544] = {.lex_state = 250}, [2545] = {.lex_state = 250}, - [2546] = {.lex_state = 250}, - [2547] = {.lex_state = 58}, + [2546] = {.lex_state = 31}, + [2547] = {.lex_state = 250}, [2548] = {.lex_state = 250}, [2549] = {.lex_state = 250}, - [2550] = {.lex_state = 58}, + [2550] = {.lex_state = 250}, [2551] = {.lex_state = 250}, [2552] = {.lex_state = 250}, - [2553] = {.lex_state = 250}, + [2553] = {.lex_state = 31}, [2554] = {.lex_state = 250}, [2555] = {.lex_state = 250}, [2556] = {.lex_state = 250}, [2557] = {.lex_state = 250}, - [2558] = {.lex_state = 250}, + [2558] = {.lex_state = 58}, [2559] = {.lex_state = 250}, - [2560] = {.lex_state = 250}, + [2560] = {.lex_state = 31}, [2561] = {.lex_state = 250}, [2562] = {.lex_state = 250}, - [2563] = {.lex_state = 250}, + [2563] = {.lex_state = 59}, [2564] = {.lex_state = 250}, [2565] = {.lex_state = 250}, [2566] = {.lex_state = 250}, @@ -15954,17 +15991,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2569] = {.lex_state = 250}, [2570] = {.lex_state = 250}, [2571] = {.lex_state = 250}, - [2572] = {.lex_state = 39}, - [2573] = {.lex_state = 250}, - [2574] = {.lex_state = 250}, - [2575] = {.lex_state = 250}, + [2572] = {.lex_state = 250}, + [2573] = {.lex_state = 39}, + [2574] = {.lex_state = 39}, + [2575] = {.lex_state = 58}, [2576] = {.lex_state = 250}, [2577] = {.lex_state = 250}, [2578] = {.lex_state = 250}, [2579] = {.lex_state = 250}, [2580] = {.lex_state = 250}, [2581] = {.lex_state = 250}, - [2582] = {.lex_state = 31}, + [2582] = {.lex_state = 250}, [2583] = {.lex_state = 250}, [2584] = {.lex_state = 250}, [2585] = {.lex_state = 250}, @@ -15972,7 +16009,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2587] = {.lex_state = 250}, [2588] = {.lex_state = 250}, [2589] = {.lex_state = 250}, - [2590] = {.lex_state = 250}, + [2590] = {.lex_state = 31}, [2591] = {.lex_state = 250}, [2592] = {.lex_state = 250}, [2593] = {.lex_state = 250}, @@ -15986,20 +16023,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2601] = {.lex_state = 250}, [2602] = {.lex_state = 250}, [2603] = {.lex_state = 250}, - [2604] = {.lex_state = 250}, - [2605] = {.lex_state = 58}, - [2606] = {.lex_state = 250}, + [2604] = {.lex_state = 39}, + [2605] = {.lex_state = 250}, + [2606] = {.lex_state = 58}, [2607] = {.lex_state = 250}, [2608] = {.lex_state = 250}, [2609] = {.lex_state = 250}, [2610] = {.lex_state = 250}, - [2611] = {.lex_state = 250}, - [2612] = {.lex_state = 31}, + [2611] = {.lex_state = 59}, + [2612] = {.lex_state = 250}, [2613] = {.lex_state = 250}, [2614] = {.lex_state = 250}, [2615] = {.lex_state = 250}, [2616] = {.lex_state = 250}, - [2617] = {.lex_state = 59}, + [2617] = {.lex_state = 250}, [2618] = {.lex_state = 250}, [2619] = {.lex_state = 31}, [2620] = {.lex_state = 250}, @@ -16007,83 +16044,83 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2622] = {.lex_state = 250}, [2623] = {.lex_state = 250}, [2624] = {.lex_state = 250}, - [2625] = {.lex_state = 250}, - [2626] = {.lex_state = 250}, + [2625] = {.lex_state = 32}, + [2626] = {.lex_state = 31}, [2627] = {.lex_state = 250}, [2628] = {.lex_state = 250}, [2629] = {.lex_state = 250}, - [2630] = {.lex_state = 250}, + [2630] = {.lex_state = 33}, [2631] = {.lex_state = 250}, [2632] = {.lex_state = 250}, [2633] = {.lex_state = 250}, [2634] = {.lex_state = 250}, - [2635] = {.lex_state = 31}, + [2635] = {.lex_state = 58}, [2636] = {.lex_state = 250}, [2637] = {.lex_state = 250}, - [2638] = {.lex_state = 250}, + [2638] = {.lex_state = 39}, [2639] = {.lex_state = 250}, [2640] = {.lex_state = 250}, [2641] = {.lex_state = 250}, [2642] = {.lex_state = 250}, - [2643] = {.lex_state = 250}, + [2643] = {.lex_state = 59}, [2644] = {.lex_state = 250}, [2645] = {.lex_state = 250}, [2646] = {.lex_state = 250}, - [2647] = {.lex_state = 250}, + [2647] = {.lex_state = 31}, [2648] = {.lex_state = 250}, [2649] = {.lex_state = 250}, - [2650] = {.lex_state = 250}, - [2651] = {.lex_state = 59}, + [2650] = {.lex_state = 39}, + [2651] = {.lex_state = 250}, [2652] = {.lex_state = 250}, - [2653] = {.lex_state = 31}, + [2653] = {.lex_state = 250}, [2654] = {.lex_state = 250}, [2655] = {.lex_state = 250}, [2656] = {.lex_state = 250}, - [2657] = {.lex_state = 59}, - [2658] = {.lex_state = 31}, + [2657] = {.lex_state = 250}, + [2658] = {.lex_state = 250}, [2659] = {.lex_state = 250}, [2660] = {.lex_state = 250}, [2661] = {.lex_state = 250}, [2662] = {.lex_state = 250}, [2663] = {.lex_state = 250}, [2664] = {.lex_state = 250}, - [2665] = {.lex_state = 250}, + [2665] = {.lex_state = 58}, [2666] = {.lex_state = 250}, [2667] = {.lex_state = 250}, - [2668] = {.lex_state = 31}, - [2669] = {.lex_state = 250}, - [2670] = {.lex_state = 58}, - [2671] = {.lex_state = 58}, - [2672] = {.lex_state = 58}, + [2668] = {.lex_state = 250}, + [2669] = {.lex_state = 59}, + [2670] = {.lex_state = 59}, + [2671] = {.lex_state = 250}, + [2672] = {.lex_state = 250}, [2673] = {.lex_state = 250}, [2674] = {.lex_state = 250}, - [2675] = {.lex_state = 250}, - [2676] = {.lex_state = 250}, + [2675] = {.lex_state = 58}, + [2676] = {.lex_state = 58}, [2677] = {.lex_state = 250}, - [2678] = {.lex_state = 59}, + [2678] = {.lex_state = 250}, [2679] = {.lex_state = 250}, [2680] = {.lex_state = 250}, [2681] = {.lex_state = 250}, - [2682] = {.lex_state = 59}, - [2683] = {.lex_state = 250}, - [2684] = {.lex_state = 32}, - [2685] = {.lex_state = 31}, - [2686] = {.lex_state = 32}, + [2682] = {.lex_state = 250}, + [2683] = {.lex_state = 58}, + [2684] = {.lex_state = 31}, + [2685] = {.lex_state = 250}, + [2686] = {.lex_state = 250}, [2687] = {.lex_state = 250}, [2688] = {.lex_state = 250}, [2689] = {.lex_state = 250}, [2690] = {.lex_state = 250}, - [2691] = {.lex_state = 31}, - [2692] = {.lex_state = 59}, - [2693] = {.lex_state = 59}, - [2694] = {.lex_state = 58}, - [2695] = {.lex_state = 31}, + [2691] = {.lex_state = 250}, + [2692] = {.lex_state = 250}, + [2693] = {.lex_state = 250}, + [2694] = {.lex_state = 250}, + [2695] = {.lex_state = 250}, [2696] = {.lex_state = 250}, [2697] = {.lex_state = 250}, [2698] = {.lex_state = 250}, - [2699] = {.lex_state = 250}, - [2700] = {.lex_state = 58}, - [2701] = {.lex_state = 58}, + [2699] = {.lex_state = 31}, + [2700] = {.lex_state = 250}, + [2701] = {.lex_state = 250}, [2702] = {.lex_state = 58}, [2703] = {.lex_state = 250}, [2704] = {.lex_state = 250}, @@ -16095,32 +16132,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2710] = {.lex_state = 250}, [2711] = {.lex_state = 250}, [2712] = {.lex_state = 250}, - [2713] = {.lex_state = 58}, + [2713] = {.lex_state = 250}, [2714] = {.lex_state = 250}, - [2715] = {.lex_state = 250}, + [2715] = {.lex_state = 32}, [2716] = {.lex_state = 250}, - [2717] = {.lex_state = 250}, + [2717] = {.lex_state = 59}, [2718] = {.lex_state = 250}, [2719] = {.lex_state = 250}, [2720] = {.lex_state = 250}, - [2721] = {.lex_state = 31}, + [2721] = {.lex_state = 250}, [2722] = {.lex_state = 250}, [2723] = {.lex_state = 250}, - [2724] = {.lex_state = 250}, + [2724] = {.lex_state = 59}, [2725] = {.lex_state = 250}, [2726] = {.lex_state = 250}, [2727] = {.lex_state = 250}, [2728] = {.lex_state = 250}, - [2729] = {.lex_state = 59}, + [2729] = {.lex_state = 250}, [2730] = {.lex_state = 250}, - [2731] = {.lex_state = 58}, - [2732] = {.lex_state = 250}, - [2733] = {.lex_state = 250}, + [2731] = {.lex_state = 250}, + [2732] = {.lex_state = 58}, + [2733] = {.lex_state = 58}, [2734] = {.lex_state = 250}, - [2735] = {.lex_state = 250}, + [2735] = {.lex_state = 31}, [2736] = {.lex_state = 250}, [2737] = {.lex_state = 250}, - [2738] = {.lex_state = 250}, + [2738] = {.lex_state = 33}, [2739] = {.lex_state = 250}, [2740] = {.lex_state = 250}, [2741] = {.lex_state = 250}, @@ -16129,71 +16166,71 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2744] = {.lex_state = 250}, [2745] = {.lex_state = 58}, [2746] = {.lex_state = 250}, - [2747] = {.lex_state = 58}, - [2748] = {.lex_state = 58}, - [2749] = {.lex_state = 58}, + [2747] = {.lex_state = 250}, + [2748] = {.lex_state = 250}, + [2749] = {.lex_state = 250}, [2750] = {.lex_state = 250}, [2751] = {.lex_state = 250}, - [2752] = {.lex_state = 58}, - [2753] = {.lex_state = 58}, - [2754] = {.lex_state = 58}, + [2752] = {.lex_state = 31}, + [2753] = {.lex_state = 250}, + [2754] = {.lex_state = 250}, [2755] = {.lex_state = 250}, - [2756] = {.lex_state = 58}, - [2757] = {.lex_state = 250}, - [2758] = {.lex_state = 58}, - [2759] = {.lex_state = 250}, - [2760] = {.lex_state = 250}, - [2761] = {.lex_state = 72}, + [2756] = {.lex_state = 250}, + [2757] = {.lex_state = 59}, + [2758] = {.lex_state = 250}, + [2759] = {.lex_state = 33}, + [2760] = {.lex_state = 58}, + [2761] = {.lex_state = 250}, [2762] = {.lex_state = 250}, [2763] = {.lex_state = 250}, [2764] = {.lex_state = 250}, - [2765] = {.lex_state = 58}, - [2766] = {.lex_state = 59}, - [2767] = {.lex_state = 58}, - [2768] = {.lex_state = 250}, + [2765] = {.lex_state = 31}, + [2766] = {.lex_state = 250}, + [2767] = {.lex_state = 250}, + [2768] = {.lex_state = 58}, [2769] = {.lex_state = 250}, [2770] = {.lex_state = 250}, - [2771] = {.lex_state = 250}, - [2772] = {.lex_state = 250}, + [2771] = {.lex_state = 72}, + [2772] = {.lex_state = 58}, [2773] = {.lex_state = 250}, - [2774] = {.lex_state = 250}, + [2774] = {.lex_state = 58}, [2775] = {.lex_state = 250}, - [2776] = {.lex_state = 250}, - [2777] = {.lex_state = 58}, - [2778] = {.lex_state = 58}, - [2779] = {.lex_state = 58}, - [2780] = {.lex_state = 250}, - [2781] = {.lex_state = 250}, + [2776] = {.lex_state = 58}, + [2777] = {.lex_state = 250}, + [2778] = {.lex_state = 250}, + [2779] = {.lex_state = 250}, + [2780] = {.lex_state = 58}, + [2781] = {.lex_state = 58}, [2782] = {.lex_state = 58}, - [2783] = {.lex_state = 250}, + [2783] = {.lex_state = 58}, [2784] = {.lex_state = 58}, - [2785] = {.lex_state = 58}, + [2785] = {.lex_state = 250}, [2786] = {.lex_state = 250}, - [2787] = {.lex_state = 250}, + [2787] = {.lex_state = 58}, [2788] = {.lex_state = 250}, [2789] = {.lex_state = 58}, - [2790] = {.lex_state = 250}, - [2791] = {.lex_state = 250}, + [2790] = {.lex_state = 58}, + [2791] = {.lex_state = 58}, [2792] = {.lex_state = 58}, - [2793] = {.lex_state = 250}, + [2793] = {.lex_state = 59}, [2794] = {.lex_state = 58}, [2795] = {.lex_state = 58}, - [2796] = {.lex_state = 58}, + [2796] = {.lex_state = 250}, [2797] = {.lex_state = 250}, - [2798] = {.lex_state = 250}, - [2799] = {.lex_state = 250}, - [2800] = {.lex_state = 58}, + [2798] = {.lex_state = 58}, + [2799] = {.lex_state = 58}, + [2800] = {.lex_state = 250}, [2801] = {.lex_state = 250}, [2802] = {.lex_state = 250}, - [2803] = {.lex_state = 58}, + [2803] = {.lex_state = 250}, [2804] = {.lex_state = 250}, - [2805] = {.lex_state = 58}, + [2805] = {.lex_state = 250}, [2806] = {.lex_state = 250}, [2807] = {.lex_state = 250}, [2808] = {.lex_state = 250}, - [2809] = {.lex_state = 250}, - [2810] = {.lex_state = 250}, - [2811] = {.lex_state = 250}, + [2809] = {.lex_state = 58}, + [2810] = {.lex_state = 58}, + [2811] = {.lex_state = 72}, [2812] = {.lex_state = 250}, [2813] = {.lex_state = 250}, [2814] = {.lex_state = 250}, @@ -16203,32 +16240,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2818] = {.lex_state = 250}, [2819] = {.lex_state = 250}, [2820] = {.lex_state = 250}, - [2821] = {.lex_state = 250}, + [2821] = {.lex_state = 58}, [2822] = {.lex_state = 250}, - [2823] = {.lex_state = 250}, + [2823] = {.lex_state = 72}, [2824] = {.lex_state = 250}, [2825] = {.lex_state = 250}, [2826] = {.lex_state = 250}, - [2827] = {.lex_state = 72}, - [2828] = {.lex_state = 250}, - [2829] = {.lex_state = 31}, + [2827] = {.lex_state = 250}, + [2828] = {.lex_state = 58}, + [2829] = {.lex_state = 250}, [2830] = {.lex_state = 250}, - [2831] = {.lex_state = 250}, + [2831] = {.lex_state = 58}, [2832] = {.lex_state = 250}, [2833] = {.lex_state = 250}, - [2834] = {.lex_state = 59}, - [2835] = {.lex_state = 250}, + [2834] = {.lex_state = 250}, + [2835] = {.lex_state = 58}, [2836] = {.lex_state = 250}, - [2837] = {.lex_state = 250}, + [2837] = {.lex_state = 58}, [2838] = {.lex_state = 250}, - [2839] = {.lex_state = 58}, + [2839] = {.lex_state = 250}, [2840] = {.lex_state = 250}, [2841] = {.lex_state = 250}, [2842] = {.lex_state = 250}, [2843] = {.lex_state = 250}, [2844] = {.lex_state = 250}, [2845] = {.lex_state = 250}, - [2846] = {.lex_state = 72}, + [2846] = {.lex_state = 250}, [2847] = {.lex_state = 250}, [2848] = {.lex_state = 250}, [2849] = {.lex_state = 250}, @@ -16237,44 +16274,44 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2852] = {.lex_state = 250}, [2853] = {.lex_state = 250}, [2854] = {.lex_state = 250}, - [2855] = {.lex_state = 250}, + [2855] = {.lex_state = 58}, [2856] = {.lex_state = 250}, - [2857] = {.lex_state = 72}, + [2857] = {.lex_state = 250}, [2858] = {.lex_state = 250}, - [2859] = {.lex_state = 250}, + [2859] = {.lex_state = 58}, [2860] = {.lex_state = 250}, - [2861] = {.lex_state = 58}, + [2861] = {.lex_state = 250}, [2862] = {.lex_state = 250}, [2863] = {.lex_state = 250}, [2864] = {.lex_state = 250}, [2865] = {.lex_state = 250}, [2866] = {.lex_state = 250}, [2867] = {.lex_state = 250}, - [2868] = {.lex_state = 250}, + [2868] = {.lex_state = 58}, [2869] = {.lex_state = 250}, - [2870] = {.lex_state = 250}, - [2871] = {.lex_state = 58}, - [2872] = {.lex_state = 58}, + [2870] = {.lex_state = 59}, + [2871] = {.lex_state = 250}, + [2872] = {.lex_state = 250}, [2873] = {.lex_state = 250}, [2874] = {.lex_state = 250}, - [2875] = {.lex_state = 250}, - [2876] = {.lex_state = 31}, + [2875] = {.lex_state = 72}, + [2876] = {.lex_state = 250}, [2877] = {.lex_state = 250}, [2878] = {.lex_state = 250}, [2879] = {.lex_state = 250}, [2880] = {.lex_state = 250}, [2881] = {.lex_state = 250}, [2882] = {.lex_state = 250}, - [2883] = {.lex_state = 58}, + [2883] = {.lex_state = 250}, [2884] = {.lex_state = 250}, [2885] = {.lex_state = 250}, - [2886] = {.lex_state = 72}, + [2886] = {.lex_state = 250}, [2887] = {.lex_state = 250}, - [2888] = {.lex_state = 59}, + [2888] = {.lex_state = 250}, [2889] = {.lex_state = 250}, [2890] = {.lex_state = 250}, [2891] = {.lex_state = 250}, - [2892] = {.lex_state = 250}, + [2892] = {.lex_state = 58}, [2893] = {.lex_state = 250}, [2894] = {.lex_state = 250}, [2895] = {.lex_state = 250}, @@ -16285,14 +16322,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2900] = {.lex_state = 250}, [2901] = {.lex_state = 250}, [2902] = {.lex_state = 250}, - [2903] = {.lex_state = 250}, + [2903] = {.lex_state = 59}, [2904] = {.lex_state = 250}, [2905] = {.lex_state = 250}, [2906] = {.lex_state = 250}, [2907] = {.lex_state = 250}, [2908] = {.lex_state = 250}, [2909] = {.lex_state = 250}, - [2910] = {.lex_state = 250}, + [2910] = {.lex_state = 58}, [2911] = {.lex_state = 250}, [2912] = {.lex_state = 250}, [2913] = {.lex_state = 250}, @@ -16302,24 +16339,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2917] = {.lex_state = 250}, [2918] = {.lex_state = 250}, [2919] = {.lex_state = 250}, - [2920] = {.lex_state = 72}, - [2921] = {.lex_state = 250}, + [2920] = {.lex_state = 250}, + [2921] = {.lex_state = 58}, [2922] = {.lex_state = 250}, [2923] = {.lex_state = 250}, - [2924] = {.lex_state = 58}, - [2925] = {.lex_state = 31}, + [2924] = {.lex_state = 250}, + [2925] = {.lex_state = 250}, [2926] = {.lex_state = 250}, [2927] = {.lex_state = 250}, [2928] = {.lex_state = 250}, [2929] = {.lex_state = 250}, [2930] = {.lex_state = 250}, - [2931] = {.lex_state = 250}, + [2931] = {.lex_state = 72}, [2932] = {.lex_state = 250}, [2933] = {.lex_state = 250}, [2934] = {.lex_state = 250}, [2935] = {.lex_state = 250}, [2936] = {.lex_state = 250}, - [2937] = {.lex_state = 250}, + [2937] = {.lex_state = 31}, [2938] = {.lex_state = 250}, [2939] = {.lex_state = 250}, [2940] = {.lex_state = 250}, @@ -16327,78 +16364,78 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2942] = {.lex_state = 250}, [2943] = {.lex_state = 250}, [2944] = {.lex_state = 250}, - [2945] = {.lex_state = 58}, + [2945] = {.lex_state = 250}, [2946] = {.lex_state = 250}, [2947] = {.lex_state = 72}, - [2948] = {.lex_state = 72}, + [2948] = {.lex_state = 250}, [2949] = {.lex_state = 250}, - [2950] = {.lex_state = 72}, + [2950] = {.lex_state = 250}, [2951] = {.lex_state = 250}, - [2952] = {.lex_state = 250}, - [2953] = {.lex_state = 72}, + [2952] = {.lex_state = 72}, + [2953] = {.lex_state = 250}, [2954] = {.lex_state = 250}, [2955] = {.lex_state = 250}, [2956] = {.lex_state = 250}, [2957] = {.lex_state = 250}, [2958] = {.lex_state = 250}, [2959] = {.lex_state = 250}, - [2960] = {.lex_state = 250}, + [2960] = {.lex_state = 31}, [2961] = {.lex_state = 250}, - [2962] = {.lex_state = 250}, + [2962] = {.lex_state = 58}, [2963] = {.lex_state = 250}, - [2964] = {.lex_state = 58}, - [2965] = {.lex_state = 32}, + [2964] = {.lex_state = 31}, + [2965] = {.lex_state = 250}, [2966] = {.lex_state = 250}, [2967] = {.lex_state = 250}, [2968] = {.lex_state = 250}, [2969] = {.lex_state = 250}, [2970] = {.lex_state = 250}, [2971] = {.lex_state = 250}, - [2972] = {.lex_state = 250}, + [2972] = {.lex_state = 58}, [2973] = {.lex_state = 250}, - [2974] = {.lex_state = 32}, - [2975] = {.lex_state = 250}, + [2974] = {.lex_state = 250}, + [2975] = {.lex_state = 72}, [2976] = {.lex_state = 250}, - [2977] = {.lex_state = 58}, + [2977] = {.lex_state = 250}, [2978] = {.lex_state = 250}, - [2979] = {.lex_state = 250}, - [2980] = {.lex_state = 32}, + [2979] = {.lex_state = 72}, + [2980] = {.lex_state = 72}, [2981] = {.lex_state = 250}, [2982] = {.lex_state = 250}, - [2983] = {.lex_state = 58}, + [2983] = {.lex_state = 250}, [2984] = {.lex_state = 250}, [2985] = {.lex_state = 250}, [2986] = {.lex_state = 250}, [2987] = {.lex_state = 250}, [2988] = {.lex_state = 250}, - [2989] = {.lex_state = 32}, - [2990] = {.lex_state = 58}, + [2989] = {.lex_state = 250}, + [2990] = {.lex_state = 250}, [2991] = {.lex_state = 250}, [2992] = {.lex_state = 250}, [2993] = {.lex_state = 250}, [2994] = {.lex_state = 250}, [2995] = {.lex_state = 250}, [2996] = {.lex_state = 250}, - [2997] = {.lex_state = 250}, + [2997] = {.lex_state = 32}, [2998] = {.lex_state = 250}, [2999] = {.lex_state = 250}, [3000] = {.lex_state = 250}, - [3001] = {.lex_state = 32}, + [3001] = {.lex_state = 250}, [3002] = {.lex_state = 250}, - [3003] = {.lex_state = 250}, - [3004] = {.lex_state = 32}, + [3003] = {.lex_state = 32}, + [3004] = {.lex_state = 250}, [3005] = {.lex_state = 250}, - [3006] = {.lex_state = 250}, + [3006] = {.lex_state = 58}, [3007] = {.lex_state = 250}, [3008] = {.lex_state = 250}, [3009] = {.lex_state = 250}, [3010] = {.lex_state = 250}, [3011] = {.lex_state = 250}, [3012] = {.lex_state = 250}, - [3013] = {.lex_state = 250}, + [3013] = {.lex_state = 32}, [3014] = {.lex_state = 250}, [3015] = {.lex_state = 250}, - [3016] = {.lex_state = 58}, + [3016] = {.lex_state = 250}, [3017] = {.lex_state = 58}, [3018] = {.lex_state = 250}, [3019] = {.lex_state = 250}, @@ -16408,33 +16445,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3023] = {.lex_state = 250}, [3024] = {.lex_state = 250}, [3025] = {.lex_state = 250}, - [3026] = {.lex_state = 58}, - [3027] = {.lex_state = 32}, + [3026] = {.lex_state = 32}, + [3027] = {.lex_state = 250}, [3028] = {.lex_state = 250}, [3029] = {.lex_state = 250}, [3030] = {.lex_state = 250}, [3031] = {.lex_state = 250}, - [3032] = {.lex_state = 250}, + [3032] = {.lex_state = 32}, [3033] = {.lex_state = 250}, [3034] = {.lex_state = 250}, - [3035] = {.lex_state = 32}, - [3036] = {.lex_state = 58}, + [3035] = {.lex_state = 250}, + [3036] = {.lex_state = 32}, [3037] = {.lex_state = 250}, [3038] = {.lex_state = 250}, [3039] = {.lex_state = 250}, [3040] = {.lex_state = 250}, - [3041] = {.lex_state = 250}, - [3042] = {.lex_state = 250}, + [3041] = {.lex_state = 58}, + [3042] = {.lex_state = 58}, [3043] = {.lex_state = 250}, - [3044] = {.lex_state = 58}, + [3044] = {.lex_state = 250}, [3045] = {.lex_state = 250}, [3046] = {.lex_state = 250}, [3047] = {.lex_state = 250}, - [3048] = {.lex_state = 58}, + [3048] = {.lex_state = 250}, [3049] = {.lex_state = 250}, [3050] = {.lex_state = 250}, - [3051] = {.lex_state = 250}, - [3052] = {.lex_state = 250}, + [3051] = {.lex_state = 58}, + [3052] = {.lex_state = 32}, [3053] = {.lex_state = 250}, [3054] = {.lex_state = 250}, [3055] = {.lex_state = 250}, @@ -16442,14 +16479,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3057] = {.lex_state = 250}, [3058] = {.lex_state = 250}, [3059] = {.lex_state = 250}, - [3060] = {.lex_state = 250}, - [3061] = {.lex_state = 250}, - [3062] = {.lex_state = 32}, - [3063] = {.lex_state = 58}, + [3060] = {.lex_state = 58}, + [3061] = {.lex_state = 58}, + [3062] = {.lex_state = 250}, + [3063] = {.lex_state = 250}, [3064] = {.lex_state = 250}, [3065] = {.lex_state = 250}, [3066] = {.lex_state = 250}, - [3067] = {.lex_state = 58}, + [3067] = {.lex_state = 32}, [3068] = {.lex_state = 250}, [3069] = {.lex_state = 250}, [3070] = {.lex_state = 250}, @@ -16458,23 +16495,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3073] = {.lex_state = 250}, [3074] = {.lex_state = 250}, [3075] = {.lex_state = 250}, - [3076] = {.lex_state = 58}, - [3077] = {.lex_state = 250}, - [3078] = {.lex_state = 32}, - [3079] = {.lex_state = 250}, + [3076] = {.lex_state = 250}, + [3077] = {.lex_state = 32}, + [3078] = {.lex_state = 58}, + [3079] = {.lex_state = 58}, [3080] = {.lex_state = 250}, [3081] = {.lex_state = 250}, - [3082] = {.lex_state = 58}, + [3082] = {.lex_state = 250}, [3083] = {.lex_state = 250}, - [3084] = {.lex_state = 250}, - [3085] = {.lex_state = 250}, - [3086] = {.lex_state = 58}, + [3084] = {.lex_state = 58}, + [3085] = {.lex_state = 32}, + [3086] = {.lex_state = 32}, [3087] = {.lex_state = 250}, - [3088] = {.lex_state = 250}, - [3089] = {.lex_state = 250}, + [3088] = {.lex_state = 58}, + [3089] = {.lex_state = 32}, [3090] = {.lex_state = 250}, [3091] = {.lex_state = 250}, - [3092] = {.lex_state = 250}, + [3092] = {.lex_state = 58}, [3093] = {.lex_state = 250}, [3094] = {.lex_state = 250}, [3095] = {.lex_state = 250}, @@ -16483,17 +16520,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3098] = {.lex_state = 250}, [3099] = {.lex_state = 250}, [3100] = {.lex_state = 250}, - [3101] = {.lex_state = 250}, + [3101] = {.lex_state = 58}, [3102] = {.lex_state = 250}, - [3103] = {.lex_state = 250}, - [3104] = {.lex_state = 250}, + [3103] = {.lex_state = 32}, + [3104] = {.lex_state = 58}, [3105] = {.lex_state = 250}, [3106] = {.lex_state = 250}, [3107] = {.lex_state = 250}, [3108] = {.lex_state = 250}, [3109] = {.lex_state = 250}, [3110] = {.lex_state = 250}, - [3111] = {.lex_state = 250}, + [3111] = {.lex_state = 58}, [3112] = {.lex_state = 250}, [3113] = {.lex_state = 250}, [3114] = {.lex_state = 250}, @@ -16502,69 +16539,69 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3117] = {.lex_state = 250}, [3118] = {.lex_state = 250}, [3119] = {.lex_state = 250}, - [3120] = {.lex_state = 250}, + [3120] = {.lex_state = 32}, [3121] = {.lex_state = 250}, - [3122] = {.lex_state = 58}, + [3122] = {.lex_state = 250}, [3123] = {.lex_state = 250}, - [3124] = {.lex_state = 58}, + [3124] = {.lex_state = 250}, [3125] = {.lex_state = 250}, [3126] = {.lex_state = 250}, - [3127] = {.lex_state = 58}, - [3128] = {.lex_state = 250}, - [3129] = {.lex_state = 250}, - [3130] = {.lex_state = 250}, + [3127] = {.lex_state = 250}, + [3128] = {.lex_state = 32}, + [3129] = {.lex_state = 58}, + [3130] = {.lex_state = 32}, [3131] = {.lex_state = 250}, [3132] = {.lex_state = 250}, [3133] = {.lex_state = 250}, - [3134] = {.lex_state = 58}, - [3135] = {.lex_state = 58}, - [3136] = {.lex_state = 58}, - [3137] = {.lex_state = 32}, - [3138] = {.lex_state = 250}, + [3134] = {.lex_state = 250}, + [3135] = {.lex_state = 250}, + [3136] = {.lex_state = 250}, + [3137] = {.lex_state = 250}, + [3138] = {.lex_state = 32}, [3139] = {.lex_state = 250}, - [3140] = {.lex_state = 250}, - [3141] = {.lex_state = 250}, + [3140] = {.lex_state = 58}, + [3141] = {.lex_state = 32}, [3142] = {.lex_state = 250}, [3143] = {.lex_state = 250}, [3144] = {.lex_state = 250}, - [3145] = {.lex_state = 58}, - [3146] = {.lex_state = 32}, + [3145] = {.lex_state = 250}, + [3146] = {.lex_state = 250}, [3147] = {.lex_state = 250}, [3148] = {.lex_state = 250}, [3149] = {.lex_state = 250}, [3150] = {.lex_state = 250}, - [3151] = {.lex_state = 58}, + [3151] = {.lex_state = 32}, [3152] = {.lex_state = 250}, [3153] = {.lex_state = 250}, [3154] = {.lex_state = 250}, - [3155] = {.lex_state = 32}, + [3155] = {.lex_state = 250}, [3156] = {.lex_state = 250}, [3157] = {.lex_state = 250}, [3158] = {.lex_state = 250}, - [3159] = {.lex_state = 32}, + [3159] = {.lex_state = 250}, [3160] = {.lex_state = 250}, - [3161] = {.lex_state = 32}, - [3162] = {.lex_state = 250}, - [3163] = {.lex_state = 58}, + [3161] = {.lex_state = 58}, + [3162] = {.lex_state = 58}, + [3163] = {.lex_state = 250}, [3164] = {.lex_state = 250}, - [3165] = {.lex_state = 58}, + [3165] = {.lex_state = 250}, [3166] = {.lex_state = 250}, - [3167] = {.lex_state = 250}, + [3167] = {.lex_state = 32}, [3168] = {.lex_state = 250}, [3169] = {.lex_state = 250}, - [3170] = {.lex_state = 58}, - [3171] = {.lex_state = 250}, + [3170] = {.lex_state = 250}, + [3171] = {.lex_state = 58}, [3172] = {.lex_state = 250}, [3173] = {.lex_state = 250}, [3174] = {.lex_state = 250}, - [3175] = {.lex_state = 32}, + [3175] = {.lex_state = 250}, [3176] = {.lex_state = 250}, - [3177] = {.lex_state = 32}, - [3178] = {.lex_state = 32}, - [3179] = {.lex_state = 58}, + [3177] = {.lex_state = 58}, + [3178] = {.lex_state = 250}, + [3179] = {.lex_state = 250}, [3180] = {.lex_state = 250}, [3181] = {.lex_state = 250}, - [3182] = {.lex_state = 250}, + [3182] = {.lex_state = 58}, [3183] = {.lex_state = 250}, [3184] = {.lex_state = 250}, [3185] = {.lex_state = 250}, @@ -16573,58 +16610,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3188] = {.lex_state = 250}, [3189] = {.lex_state = 250}, [3190] = {.lex_state = 250}, - [3191] = {.lex_state = 250}, - [3192] = {.lex_state = 250}, + [3191] = {.lex_state = 58}, + [3192] = {.lex_state = 32}, [3193] = {.lex_state = 250}, [3194] = {.lex_state = 250}, [3195] = {.lex_state = 250}, [3196] = {.lex_state = 250}, - [3197] = {.lex_state = 58}, + [3197] = {.lex_state = 250}, [3198] = {.lex_state = 250}, [3199] = {.lex_state = 250}, - [3200] = {.lex_state = 32}, + [3200] = {.lex_state = 250}, [3201] = {.lex_state = 250}, [3202] = {.lex_state = 250}, [3203] = {.lex_state = 250}, [3204] = {.lex_state = 250}, [3205] = {.lex_state = 58}, - [3206] = {.lex_state = 58}, + [3206] = {.lex_state = 250}, [3207] = {.lex_state = 250}, [3208] = {.lex_state = 250}, - [3209] = {.lex_state = 32}, + [3209] = {.lex_state = 250}, [3210] = {.lex_state = 250}, [3211] = {.lex_state = 250}, [3212] = {.lex_state = 250}, - [3213] = {.lex_state = 250}, + [3213] = {.lex_state = 58}, [3214] = {.lex_state = 250}, - [3215] = {.lex_state = 58}, + [3215] = {.lex_state = 250}, [3216] = {.lex_state = 250}, [3217] = {.lex_state = 250}, [3218] = {.lex_state = 250}, - [3219] = {.lex_state = 72}, + [3219] = {.lex_state = 250}, [3220] = {.lex_state = 250}, [3221] = {.lex_state = 250}, [3222] = {.lex_state = 250}, - [3223] = {.lex_state = 250}, + [3223] = {.lex_state = 32}, [3224] = {.lex_state = 250}, [3225] = {.lex_state = 250}, [3226] = {.lex_state = 250}, [3227] = {.lex_state = 250}, [3228] = {.lex_state = 250}, - [3229] = {.lex_state = 32}, + [3229] = {.lex_state = 250}, [3230] = {.lex_state = 250}, [3231] = {.lex_state = 250}, - [3232] = {.lex_state = 250}, - [3233] = {.lex_state = 250}, - [3234] = {.lex_state = 32}, + [3232] = {.lex_state = 58}, + [3233] = {.lex_state = 58}, + [3234] = {.lex_state = 250}, [3235] = {.lex_state = 250}, [3236] = {.lex_state = 250}, [3237] = {.lex_state = 250}, - [3238] = {.lex_state = 250}, + [3238] = {.lex_state = 58}, [3239] = {.lex_state = 250}, [3240] = {.lex_state = 250}, [3241] = {.lex_state = 250}, - [3242] = {.lex_state = 250}, + [3242] = {.lex_state = 58}, [3243] = {.lex_state = 250}, [3244] = {.lex_state = 250}, [3245] = {.lex_state = 250}, @@ -16638,25 +16675,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3253] = {.lex_state = 250}, [3254] = {.lex_state = 250}, [3255] = {.lex_state = 250}, - [3256] = {.lex_state = 250}, + [3256] = {.lex_state = 58}, [3257] = {.lex_state = 250}, [3258] = {.lex_state = 250}, [3259] = {.lex_state = 250}, - [3260] = {.lex_state = 250}, + [3260] = {.lex_state = 58}, [3261] = {.lex_state = 250}, [3262] = {.lex_state = 250}, [3263] = {.lex_state = 250}, [3264] = {.lex_state = 250}, - [3265] = {.lex_state = 58}, - [3266] = {.lex_state = 250}, + [3265] = {.lex_state = 250}, + [3266] = {.lex_state = 32}, [3267] = {.lex_state = 250}, [3268] = {.lex_state = 250}, [3269] = {.lex_state = 250}, [3270] = {.lex_state = 250}, [3271] = {.lex_state = 250}, [3272] = {.lex_state = 250}, - [3273] = {.lex_state = 58}, - [3274] = {.lex_state = 32}, + [3273] = {.lex_state = 250}, + [3274] = {.lex_state = 250}, [3275] = {.lex_state = 250}, [3276] = {.lex_state = 250}, [3277] = {.lex_state = 250}, @@ -16666,23 +16703,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3281] = {.lex_state = 250}, [3282] = {.lex_state = 250}, [3283] = {.lex_state = 250}, - [3284] = {.lex_state = 58}, - [3285] = {.lex_state = 58}, + [3284] = {.lex_state = 250}, + [3285] = {.lex_state = 250}, [3286] = {.lex_state = 250}, [3287] = {.lex_state = 250}, - [3288] = {.lex_state = 58}, - [3289] = {.lex_state = 32}, + [3288] = {.lex_state = 250}, + [3289] = {.lex_state = 250}, [3290] = {.lex_state = 250}, - [3291] = {.lex_state = 250}, - [3292] = {.lex_state = 250}, - [3293] = {.lex_state = 58}, - [3294] = {.lex_state = 32}, + [3291] = {.lex_state = 32}, + [3292] = {.lex_state = 58}, + [3293] = {.lex_state = 32}, + [3294] = {.lex_state = 250}, [3295] = {.lex_state = 250}, [3296] = {.lex_state = 250}, - [3297] = {.lex_state = 58}, - [3298] = {.lex_state = 58}, - [3299] = {.lex_state = 58}, - [3300] = {.lex_state = 250}, + [3297] = {.lex_state = 250}, + [3298] = {.lex_state = 250}, + [3299] = {.lex_state = 250}, + [3300] = {.lex_state = 58}, [3301] = {.lex_state = 250}, [3302] = {.lex_state = 250}, [3303] = {.lex_state = 250}, @@ -16693,34 +16730,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3308] = {.lex_state = 250}, [3309] = {.lex_state = 250}, [3310] = {.lex_state = 250}, - [3311] = {.lex_state = 32}, + [3311] = {.lex_state = 250}, [3312] = {.lex_state = 250}, - [3313] = {.lex_state = 250}, + [3313] = {.lex_state = 58}, [3314] = {.lex_state = 250}, - [3315] = {.lex_state = 250}, + [3315] = {.lex_state = 58}, [3316] = {.lex_state = 250}, - [3317] = {.lex_state = 58}, + [3317] = {.lex_state = 250}, [3318] = {.lex_state = 250}, - [3319] = {.lex_state = 32}, - [3320] = {.lex_state = 250}, + [3319] = {.lex_state = 58}, + [3320] = {.lex_state = 58}, [3321] = {.lex_state = 250}, [3322] = {.lex_state = 250}, - [3323] = {.lex_state = 250}, + [3323] = {.lex_state = 32}, [3324] = {.lex_state = 250}, [3325] = {.lex_state = 58}, - [3326] = {.lex_state = 58}, - [3327] = {.lex_state = 58}, + [3326] = {.lex_state = 250}, + [3327] = {.lex_state = 250}, [3328] = {.lex_state = 32}, [3329] = {.lex_state = 250}, - [3330] = {.lex_state = 250}, - [3331] = {.lex_state = 58}, - [3332] = {.lex_state = 58}, + [3330] = {.lex_state = 58}, + [3331] = {.lex_state = 250}, + [3332] = {.lex_state = 250}, [3333] = {.lex_state = 250}, [3334] = {.lex_state = 250}, [3335] = {.lex_state = 250}, [3336] = {.lex_state = 250}, [3337] = {.lex_state = 250}, - [3338] = {.lex_state = 250}, + [3338] = {.lex_state = 58}, [3339] = {.lex_state = 250}, [3340] = {.lex_state = 250}, [3341] = {.lex_state = 250}, @@ -16735,25 +16772,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3350] = {.lex_state = 250}, [3351] = {.lex_state = 250}, [3352] = {.lex_state = 250}, - [3353] = {.lex_state = 250}, + [3353] = {.lex_state = 58}, [3354] = {.lex_state = 250}, [3355] = {.lex_state = 250}, [3356] = {.lex_state = 250}, [3357] = {.lex_state = 250}, [3358] = {.lex_state = 250}, [3359] = {.lex_state = 250}, - [3360] = {.lex_state = 250}, + [3360] = {.lex_state = 58}, [3361] = {.lex_state = 250}, [3362] = {.lex_state = 250}, - [3363] = {.lex_state = 58}, + [3363] = {.lex_state = 250}, [3364] = {.lex_state = 250}, [3365] = {.lex_state = 250}, - [3366] = {.lex_state = 58}, + [3366] = {.lex_state = 250}, [3367] = {.lex_state = 250}, [3368] = {.lex_state = 250}, [3369] = {.lex_state = 250}, [3370] = {.lex_state = 250}, - [3371] = {.lex_state = 58}, + [3371] = {.lex_state = 250}, [3372] = {.lex_state = 250}, [3373] = {.lex_state = 250}, [3374] = {.lex_state = 250}, @@ -16766,27 +16803,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3381] = {.lex_state = 250}, [3382] = {.lex_state = 250}, [3383] = {.lex_state = 250}, - [3384] = {.lex_state = 250}, + [3384] = {.lex_state = 72}, [3385] = {.lex_state = 250}, [3386] = {.lex_state = 250}, [3387] = {.lex_state = 250}, [3388] = {.lex_state = 250}, [3389] = {.lex_state = 250}, - [3390] = {.lex_state = 250}, + [3390] = {.lex_state = 58}, [3391] = {.lex_state = 250}, - [3392] = {.lex_state = 250}, - [3393] = {.lex_state = 250}, - [3394] = {.lex_state = 250}, + [3392] = {.lex_state = 58}, + [3393] = {.lex_state = 58}, + [3394] = {.lex_state = 58}, [3395] = {.lex_state = 250}, [3396] = {.lex_state = 250}, [3397] = {.lex_state = 250}, [3398] = {.lex_state = 250}, - [3399] = {.lex_state = 32}, - [3400] = {.lex_state = 58}, + [3399] = {.lex_state = 250}, + [3400] = {.lex_state = 250}, [3401] = {.lex_state = 250}, - [3402] = {.lex_state = 32}, + [3402] = {.lex_state = 250}, [3403] = {.lex_state = 250}, - [3404] = {.lex_state = 32}, + [3404] = {.lex_state = 250}, [3405] = {.lex_state = 250}, [3406] = {.lex_state = 250}, [3407] = {.lex_state = 250}, @@ -16805,21 +16842,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3420] = {.lex_state = 250}, [3421] = {.lex_state = 250}, [3422] = {.lex_state = 250}, - [3423] = {.lex_state = 250}, + [3423] = {.lex_state = 58}, [3424] = {.lex_state = 250}, [3425] = {.lex_state = 250}, [3426] = {.lex_state = 250}, [3427] = {.lex_state = 58}, - [3428] = {.lex_state = 250}, + [3428] = {.lex_state = 32}, [3429] = {.lex_state = 250}, - [3430] = {.lex_state = 58}, + [3430] = {.lex_state = 250}, [3431] = {.lex_state = 250}, [3432] = {.lex_state = 250}, [3433] = {.lex_state = 250}, [3434] = {.lex_state = 250}, [3435] = {.lex_state = 250}, [3436] = {.lex_state = 250}, - [3437] = {.lex_state = 58}, + [3437] = {.lex_state = 250}, [3438] = {.lex_state = 250}, [3439] = {.lex_state = 250}, [3440] = {.lex_state = 250}, @@ -16828,7 +16865,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3443] = {.lex_state = 250}, [3444] = {.lex_state = 250}, [3445] = {.lex_state = 250}, - [3446] = {.lex_state = 58}, + [3446] = {.lex_state = 250}, [3447] = {.lex_state = 250}, [3448] = {.lex_state = 250}, [3449] = {.lex_state = 250}, @@ -16836,13 +16873,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3451] = {.lex_state = 250}, [3452] = {.lex_state = 250}, [3453] = {.lex_state = 250}, - [3454] = {.lex_state = 250}, - [3455] = {.lex_state = 250}, + [3454] = {.lex_state = 58}, + [3455] = {.lex_state = 58}, [3456] = {.lex_state = 250}, - [3457] = {.lex_state = 250}, - [3458] = {.lex_state = 58}, + [3457] = {.lex_state = 58}, + [3458] = {.lex_state = 250}, [3459] = {.lex_state = 250}, [3460] = {.lex_state = 250}, + [3461] = {.lex_state = 250}, + [3462] = {.lex_state = 32}, + [3463] = {.lex_state = 250}, + [3464] = {.lex_state = 250}, + [3465] = {.lex_state = 250}, + [3466] = {.lex_state = 250}, + [3467] = {.lex_state = 58}, + [3468] = {.lex_state = 250}, + [3469] = {.lex_state = 250}, + [3470] = {.lex_state = 250}, + [3471] = {.lex_state = 250}, + [3472] = {.lex_state = 58}, + [3473] = {.lex_state = 250}, + [3474] = {.lex_state = 250}, + [3475] = {.lex_state = 250}, + [3476] = {.lex_state = 58}, + [3477] = {.lex_state = 250}, + [3478] = {.lex_state = 250}, + [3479] = {.lex_state = 32}, + [3480] = {.lex_state = 250}, + [3481] = {.lex_state = 250}, + [3482] = {.lex_state = 250}, + [3483] = {.lex_state = 32}, + [3484] = {.lex_state = 250}, + [3485] = {.lex_state = 58}, + [3486] = {.lex_state = 250}, + [3487] = {.lex_state = 250}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -17008,78 +17072,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), }, [1] = { - [sym_translation_unit] = STATE(3423), - [sym__top_level_item] = STATE(47), - [sym_preproc_include] = STATE(47), - [sym_preproc_def] = STATE(47), - [sym_preproc_function_def] = STATE(47), - [sym_preproc_call] = STATE(47), - [sym_preproc_if] = STATE(47), - [sym_preproc_ifdef] = STATE(47), - [sym_function_definition] = STATE(47), - [sym__old_style_function_definition] = STATE(391), - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1694), - [sym_linkage_specification] = STATE(47), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(880), - [sym_ms_call_modifier] = STATE(714), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(924), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(388), - [sym__top_level_statement] = STATE(47), - [sym_labeled_statement] = STATE(47), - [sym__top_level_expression_statement] = STATE(47), - [sym_if_statement] = STATE(47), - [sym_switch_statement] = STATE(47), - [sym_case_statement] = STATE(47), - [sym_while_statement] = STATE(47), - [sym_do_statement] = STATE(47), - [sym_for_statement] = STATE(47), - [sym_return_statement] = STATE(47), - [sym_break_statement] = STATE(47), - [sym_continue_statement] = STATE(47), - [sym_goto_statement] = STATE(47), - [sym_expression] = STATE(1663), - [sym__string] = STATE(1670), - [sym_conditional_expression] = STATE(1670), - [sym_assignment_expression] = STATE(1670), - [sym_pointer_expression] = STATE(1410), - [sym_unary_expression] = STATE(1670), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1670), - [sym_cast_expression] = STATE(1670), - [sym_sizeof_expression] = STATE(1670), - [sym_alignof_expression] = STATE(1670), - [sym_offsetof_expression] = STATE(1670), - [sym_generic_expression] = STATE(1670), - [sym_subscript_expression] = STATE(1410), - [sym_call_expression] = STATE(1410), - [sym_gnu_asm_expression] = STATE(1670), - [sym_field_expression] = STATE(1410), - [sym_compound_literal_expression] = STATE(1670), - [sym_parenthesized_expression] = STATE(1410), - [sym_char_literal] = STATE(1670), - [sym_concatenated_string] = STATE(1670), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1670), - [sym__empty_declaration] = STATE(47), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_translation_unit_repeat1] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [sym_translation_unit] = STATE(3183), + [sym__top_level_item] = STATE(48), + [sym_preproc_include] = STATE(48), + [sym_preproc_def] = STATE(48), + [sym_preproc_function_def] = STATE(48), + [sym_preproc_call] = STATE(48), + [sym_preproc_if] = STATE(48), + [sym_preproc_ifdef] = STATE(48), + [sym_function_definition] = STATE(48), + [sym__old_style_function_definition] = STATE(396), + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1711), + [sym_linkage_specification] = STATE(48), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(879), + [sym_ms_call_modifier] = STATE(718), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(932), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(404), + [sym__top_level_statement] = STATE(48), + [sym_labeled_statement] = STATE(48), + [sym__top_level_expression_statement] = STATE(48), + [sym_if_statement] = STATE(48), + [sym_switch_statement] = STATE(48), + [sym_case_statement] = STATE(48), + [sym_while_statement] = STATE(48), + [sym_do_statement] = STATE(48), + [sym_for_statement] = STATE(48), + [sym_return_statement] = STATE(48), + [sym_break_statement] = STATE(48), + [sym_continue_statement] = STATE(48), + [sym_goto_statement] = STATE(48), + [sym_expression] = STATE(1688), + [sym__string] = STATE(1703), + [sym_conditional_expression] = STATE(1703), + [sym_assignment_expression] = STATE(1703), + [sym_pointer_expression] = STATE(1423), + [sym_unary_expression] = STATE(1703), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1703), + [sym_cast_expression] = STATE(1703), + [sym_sizeof_expression] = STATE(1703), + [sym_alignof_expression] = STATE(1703), + [sym_offsetof_expression] = STATE(1703), + [sym_generic_expression] = STATE(1703), + [sym_subscript_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_gnu_asm_expression] = STATE(1703), + [sym_field_expression] = STATE(1423), + [sym_compound_literal_expression] = STATE(1703), + [sym_parenthesized_expression] = STATE(1423), + [sym_char_literal] = STATE(1703), + [sym_concatenated_string] = STATE(1703), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1703), + [sym__empty_declaration] = STATE(48), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_translation_unit_repeat1] = STATE(48), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(457), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [sym__linux_kernel_annotations] = ACTIONS(3), @@ -17186,83 +17250,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), }, [2] = { - [sym__block_item] = STATE(22), - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(3056), - [sym_preproc_elif] = STATE(3056), - [sym_preproc_elifdef] = STATE(3056), - [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(138), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1691), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(877), - [sym_ms_call_modifier] = STATE(696), - [sym_compound_statement] = STATE(99), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(923), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(135), - [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym_seh_try_statement] = STATE(99), - [sym_seh_leave_statement] = STATE(99), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(434), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [sym__block_item] = STATE(12), + [sym_preproc_include] = STATE(12), + [sym_preproc_def] = STATE(12), + [sym_preproc_function_def] = STATE(12), + [sym_preproc_call] = STATE(12), + [sym_preproc_if] = STATE(12), + [sym_preproc_ifdef] = STATE(12), + [sym_preproc_else] = STATE(3031), + [sym_preproc_elif] = STATE(3031), + [sym_preproc_elifdef] = STATE(3031), + [sym_function_definition] = STATE(12), + [sym__old_style_function_definition] = STATE(148), + [sym_declaration] = STATE(12), + [sym_type_definition] = STATE(12), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1722), + [sym_linkage_specification] = STATE(12), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(882), + [sym_ms_call_modifier] = STATE(705), + [sym_compound_statement] = STATE(89), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(935), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(164), + [sym_statement] = STATE(12), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(12), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(12), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(453), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(111), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(113), @@ -17383,76 +17447,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(3276), - [sym_preproc_elif] = STATE(3276), - [sym_preproc_elifdef] = STATE(3276), + [sym_preproc_else] = STATE(3314), + [sym_preproc_elif] = STATE(3314), + [sym_preproc_elifdef] = STATE(3314), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(138), + [sym__old_style_function_definition] = STATE(148), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1691), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1722), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(877), - [sym_ms_call_modifier] = STATE(696), - [sym_compound_statement] = STATE(99), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(923), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(135), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(882), + [sym_ms_call_modifier] = STATE(705), + [sym_compound_statement] = STATE(89), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(935), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(164), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym_seh_try_statement] = STATE(99), - [sym_seh_leave_statement] = STATE(99), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(1122), + [sym_macro_type_specifier] = STATE(1195), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(434), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(453), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(111), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(113), @@ -17566,83 +17630,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), }, [4] = { - [sym__block_item] = STATE(15), - [sym_preproc_include] = STATE(15), - [sym_preproc_def] = STATE(15), - [sym_preproc_function_def] = STATE(15), - [sym_preproc_call] = STATE(15), - [sym_preproc_if] = STATE(15), - [sym_preproc_ifdef] = STATE(15), - [sym_preproc_else] = STATE(3227), - [sym_preproc_elif] = STATE(3227), - [sym_preproc_elifdef] = STATE(3227), - [sym_function_definition] = STATE(15), - [sym__old_style_function_definition] = STATE(138), - [sym_declaration] = STATE(15), - [sym_type_definition] = STATE(15), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1691), - [sym_linkage_specification] = STATE(15), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(877), - [sym_ms_call_modifier] = STATE(696), - [sym_compound_statement] = STATE(99), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(923), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(135), - [sym_statement] = STATE(15), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym_seh_try_statement] = STATE(99), - [sym_seh_leave_statement] = STATE(99), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(15), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(15), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(434), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [sym__block_item] = STATE(10), + [sym_preproc_include] = STATE(10), + [sym_preproc_def] = STATE(10), + [sym_preproc_function_def] = STATE(10), + [sym_preproc_call] = STATE(10), + [sym_preproc_if] = STATE(10), + [sym_preproc_ifdef] = STATE(10), + [sym_preproc_else] = STATE(3471), + [sym_preproc_elif] = STATE(3471), + [sym_preproc_elifdef] = STATE(3471), + [sym_function_definition] = STATE(10), + [sym__old_style_function_definition] = STATE(148), + [sym_declaration] = STATE(10), + [sym_type_definition] = STATE(10), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1722), + [sym_linkage_specification] = STATE(10), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(882), + [sym_ms_call_modifier] = STATE(705), + [sym_compound_statement] = STATE(89), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(935), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(164), + [sym_statement] = STATE(10), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(10), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(10), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(453), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(111), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(113), @@ -17756,83 +17820,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), }, [5] = { - [sym__block_item] = STATE(16), - [sym_preproc_include] = STATE(16), - [sym_preproc_def] = STATE(16), - [sym_preproc_function_def] = STATE(16), - [sym_preproc_call] = STATE(16), - [sym_preproc_if] = STATE(16), - [sym_preproc_ifdef] = STATE(16), - [sym_preproc_else] = STATE(3296), - [sym_preproc_elif] = STATE(3296), - [sym_preproc_elifdef] = STATE(3296), - [sym_function_definition] = STATE(16), - [sym__old_style_function_definition] = STATE(138), - [sym_declaration] = STATE(16), - [sym_type_definition] = STATE(16), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1691), - [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(877), - [sym_ms_call_modifier] = STATE(696), - [sym_compound_statement] = STATE(99), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(923), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(135), - [sym_statement] = STATE(16), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym_seh_try_statement] = STATE(99), - [sym_seh_leave_statement] = STATE(99), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(434), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [sym__block_item] = STATE(22), + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_preproc_else] = STATE(3117), + [sym_preproc_elif] = STATE(3117), + [sym_preproc_elifdef] = STATE(3117), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(148), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1722), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(882), + [sym_ms_call_modifier] = STATE(705), + [sym_compound_statement] = STATE(89), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(935), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(164), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(453), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(111), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(113), @@ -17946,83 +18010,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), }, [6] = { - [sym__block_item] = STATE(20), - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(3057), - [sym_preproc_elif] = STATE(3057), - [sym_preproc_elifdef] = STATE(3057), - [sym_function_definition] = STATE(20), - [sym__old_style_function_definition] = STATE(138), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1691), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(877), - [sym_ms_call_modifier] = STATE(696), - [sym_compound_statement] = STATE(99), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(923), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(135), - [sym_statement] = STATE(20), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym_seh_try_statement] = STATE(99), - [sym_seh_leave_statement] = STATE(99), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(434), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [sym__block_item] = STATE(7), + [sym_preproc_include] = STATE(7), + [sym_preproc_def] = STATE(7), + [sym_preproc_function_def] = STATE(7), + [sym_preproc_call] = STATE(7), + [sym_preproc_if] = STATE(7), + [sym_preproc_ifdef] = STATE(7), + [sym_preproc_else] = STATE(3064), + [sym_preproc_elif] = STATE(3064), + [sym_preproc_elifdef] = STATE(3064), + [sym_function_definition] = STATE(7), + [sym__old_style_function_definition] = STATE(148), + [sym_declaration] = STATE(7), + [sym_type_definition] = STATE(7), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1722), + [sym_linkage_specification] = STATE(7), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(882), + [sym_ms_call_modifier] = STATE(705), + [sym_compound_statement] = STATE(89), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(935), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(164), + [sym_statement] = STATE(7), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(7), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(7), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(453), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(111), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(113), @@ -18136,83 +18200,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), }, [7] = { - [sym__block_item] = STATE(17), - [sym_preproc_include] = STATE(17), - [sym_preproc_def] = STATE(17), - [sym_preproc_function_def] = STATE(17), - [sym_preproc_call] = STATE(17), - [sym_preproc_if] = STATE(17), - [sym_preproc_ifdef] = STATE(17), - [sym_preproc_else] = STATE(3324), - [sym_preproc_elif] = STATE(3324), - [sym_preproc_elifdef] = STATE(3324), - [sym_function_definition] = STATE(17), - [sym__old_style_function_definition] = STATE(138), - [sym_declaration] = STATE(17), - [sym_type_definition] = STATE(17), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1691), - [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(877), - [sym_ms_call_modifier] = STATE(696), - [sym_compound_statement] = STATE(99), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(923), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(135), - [sym_statement] = STATE(17), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym_seh_try_statement] = STATE(99), - [sym_seh_leave_statement] = STATE(99), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(434), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [sym__block_item] = STATE(22), + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_preproc_else] = STATE(3121), + [sym_preproc_elif] = STATE(3121), + [sym_preproc_elifdef] = STATE(3121), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(148), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1722), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(882), + [sym_ms_call_modifier] = STATE(705), + [sym_compound_statement] = STATE(89), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(935), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(164), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(453), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(111), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(113), @@ -18326,83 +18390,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), }, [8] = { - [sym__block_item] = STATE(22), - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(3013), - [sym_preproc_elif] = STATE(3013), - [sym_preproc_elifdef] = STATE(3013), - [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(138), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1691), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(877), - [sym_ms_call_modifier] = STATE(696), - [sym_compound_statement] = STATE(99), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(923), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(135), - [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym_seh_try_statement] = STATE(99), - [sym_seh_leave_statement] = STATE(99), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(434), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [sym__block_item] = STATE(5), + [sym_preproc_include] = STATE(5), + [sym_preproc_def] = STATE(5), + [sym_preproc_function_def] = STATE(5), + [sym_preproc_call] = STATE(5), + [sym_preproc_if] = STATE(5), + [sym_preproc_ifdef] = STATE(5), + [sym_preproc_else] = STATE(3122), + [sym_preproc_elif] = STATE(3122), + [sym_preproc_elifdef] = STATE(3122), + [sym_function_definition] = STATE(5), + [sym__old_style_function_definition] = STATE(148), + [sym_declaration] = STATE(5), + [sym_type_definition] = STATE(5), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1722), + [sym_linkage_specification] = STATE(5), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(882), + [sym_ms_call_modifier] = STATE(705), + [sym_compound_statement] = STATE(89), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(935), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(164), + [sym_statement] = STATE(5), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(5), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(5), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(453), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(111), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(113), @@ -18516,83 +18580,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), }, [9] = { - [sym__block_item] = STATE(11), - [sym_preproc_include] = STATE(11), - [sym_preproc_def] = STATE(11), - [sym_preproc_function_def] = STATE(11), - [sym_preproc_call] = STATE(11), - [sym_preproc_if] = STATE(11), - [sym_preproc_ifdef] = STATE(11), - [sym_preproc_else] = STATE(3014), - [sym_preproc_elif] = STATE(3014), - [sym_preproc_elifdef] = STATE(3014), - [sym_function_definition] = STATE(11), - [sym__old_style_function_definition] = STATE(138), - [sym_declaration] = STATE(11), - [sym_type_definition] = STATE(11), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1691), - [sym_linkage_specification] = STATE(11), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(877), - [sym_ms_call_modifier] = STATE(696), - [sym_compound_statement] = STATE(99), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(923), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(135), - [sym_statement] = STATE(11), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym_seh_try_statement] = STATE(99), - [sym_seh_leave_statement] = STATE(99), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(11), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(11), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(434), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [sym__block_item] = STATE(22), + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_preproc_else] = STATE(3169), + [sym_preproc_elif] = STATE(3169), + [sym_preproc_elifdef] = STATE(3169), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(148), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1722), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(882), + [sym_ms_call_modifier] = STATE(705), + [sym_compound_statement] = STATE(89), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(935), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(164), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(453), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(111), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(113), @@ -18706,83 +18770,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), }, [10] = { - [sym__block_item] = STATE(21), - [sym_preproc_include] = STATE(21), - [sym_preproc_def] = STATE(21), - [sym_preproc_function_def] = STATE(21), - [sym_preproc_call] = STATE(21), - [sym_preproc_if] = STATE(21), - [sym_preproc_ifdef] = STATE(21), - [sym_preproc_else] = STATE(2967), - [sym_preproc_elif] = STATE(2967), - [sym_preproc_elifdef] = STATE(2967), - [sym_function_definition] = STATE(21), - [sym__old_style_function_definition] = STATE(138), - [sym_declaration] = STATE(21), - [sym_type_definition] = STATE(21), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1691), - [sym_linkage_specification] = STATE(21), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(877), - [sym_ms_call_modifier] = STATE(696), - [sym_compound_statement] = STATE(99), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(923), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(135), - [sym_statement] = STATE(21), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym_seh_try_statement] = STATE(99), - [sym_seh_leave_statement] = STATE(99), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(21), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(21), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(434), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [sym__block_item] = STATE(22), + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_preproc_else] = STATE(3481), + [sym_preproc_elif] = STATE(3481), + [sym_preproc_elifdef] = STATE(3481), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(148), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1722), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(882), + [sym_ms_call_modifier] = STATE(705), + [sym_compound_statement] = STATE(89), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(935), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(164), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(453), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(111), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(113), @@ -18896,83 +18960,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), }, [11] = { - [sym__block_item] = STATE(22), - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(2982), - [sym_preproc_elif] = STATE(2982), - [sym_preproc_elifdef] = STATE(2982), - [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(138), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1691), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(877), - [sym_ms_call_modifier] = STATE(696), - [sym_compound_statement] = STATE(99), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(923), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(135), - [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym_seh_try_statement] = STATE(99), - [sym_seh_leave_statement] = STATE(99), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(434), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [sym__block_item] = STATE(13), + [sym_preproc_include] = STATE(13), + [sym_preproc_def] = STATE(13), + [sym_preproc_function_def] = STATE(13), + [sym_preproc_call] = STATE(13), + [sym_preproc_if] = STATE(13), + [sym_preproc_ifdef] = STATE(13), + [sym_preproc_else] = STATE(3047), + [sym_preproc_elif] = STATE(3047), + [sym_preproc_elifdef] = STATE(3047), + [sym_function_definition] = STATE(13), + [sym__old_style_function_definition] = STATE(148), + [sym_declaration] = STATE(13), + [sym_type_definition] = STATE(13), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1722), + [sym_linkage_specification] = STATE(13), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(882), + [sym_ms_call_modifier] = STATE(705), + [sym_compound_statement] = STATE(89), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(935), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(164), + [sym_statement] = STATE(13), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(13), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(13), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(453), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(111), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(113), @@ -19093,76 +19157,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(2992), - [sym_preproc_elif] = STATE(2992), - [sym_preproc_elifdef] = STATE(2992), + [sym_preproc_else] = STATE(3043), + [sym_preproc_elif] = STATE(3043), + [sym_preproc_elifdef] = STATE(3043), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(138), + [sym__old_style_function_definition] = STATE(148), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1691), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1722), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(877), - [sym_ms_call_modifier] = STATE(696), - [sym_compound_statement] = STATE(99), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(923), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(135), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(882), + [sym_ms_call_modifier] = STATE(705), + [sym_compound_statement] = STATE(89), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(935), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(164), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym_seh_try_statement] = STATE(99), - [sym_seh_leave_statement] = STATE(99), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(1122), + [sym_macro_type_specifier] = STATE(1195), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(434), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(453), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(111), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(113), @@ -19276,83 +19340,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), }, [13] = { - [sym__block_item] = STATE(2), - [sym_preproc_include] = STATE(2), - [sym_preproc_def] = STATE(2), - [sym_preproc_function_def] = STATE(2), - [sym_preproc_call] = STATE(2), - [sym_preproc_if] = STATE(2), - [sym_preproc_ifdef] = STATE(2), - [sym_preproc_else] = STATE(3143), - [sym_preproc_elif] = STATE(3143), - [sym_preproc_elifdef] = STATE(3143), - [sym_function_definition] = STATE(2), - [sym__old_style_function_definition] = STATE(138), - [sym_declaration] = STATE(2), - [sym_type_definition] = STATE(2), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1691), - [sym_linkage_specification] = STATE(2), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(877), - [sym_ms_call_modifier] = STATE(696), - [sym_compound_statement] = STATE(99), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(923), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(135), - [sym_statement] = STATE(2), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym_seh_try_statement] = STATE(99), - [sym_seh_leave_statement] = STATE(99), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(2), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(2), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(434), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [sym__block_item] = STATE(22), + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_preproc_else] = STATE(3022), + [sym_preproc_elif] = STATE(3022), + [sym_preproc_elifdef] = STATE(3022), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(148), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1722), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(882), + [sym_ms_call_modifier] = STATE(705), + [sym_compound_statement] = STATE(89), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(935), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(164), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(453), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(111), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(113), @@ -19466,83 +19530,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), }, [14] = { - [sym__block_item] = STATE(8), - [sym_preproc_include] = STATE(8), - [sym_preproc_def] = STATE(8), - [sym_preproc_function_def] = STATE(8), - [sym_preproc_call] = STATE(8), - [sym_preproc_if] = STATE(8), - [sym_preproc_ifdef] = STATE(8), - [sym_preproc_else] = STATE(3157), - [sym_preproc_elif] = STATE(3157), - [sym_preproc_elifdef] = STATE(3157), - [sym_function_definition] = STATE(8), - [sym__old_style_function_definition] = STATE(138), - [sym_declaration] = STATE(8), - [sym_type_definition] = STATE(8), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1691), - [sym_linkage_specification] = STATE(8), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(877), - [sym_ms_call_modifier] = STATE(696), - [sym_compound_statement] = STATE(99), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(923), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(135), - [sym_statement] = STATE(8), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym_seh_try_statement] = STATE(99), - [sym_seh_leave_statement] = STATE(99), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(8), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(8), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(434), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [sym__block_item] = STATE(21), + [sym_preproc_include] = STATE(21), + [sym_preproc_def] = STATE(21), + [sym_preproc_function_def] = STATE(21), + [sym_preproc_call] = STATE(21), + [sym_preproc_if] = STATE(21), + [sym_preproc_ifdef] = STATE(21), + [sym_preproc_else] = STATE(3168), + [sym_preproc_elif] = STATE(3168), + [sym_preproc_elifdef] = STATE(3168), + [sym_function_definition] = STATE(21), + [sym__old_style_function_definition] = STATE(148), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1722), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(882), + [sym_ms_call_modifier] = STATE(705), + [sym_compound_statement] = STATE(89), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(935), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(164), + [sym_statement] = STATE(21), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(453), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(111), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(113), @@ -19656,83 +19720,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), }, [15] = { - [sym__block_item] = STATE(22), - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(3147), - [sym_preproc_elif] = STATE(3147), - [sym_preproc_elifdef] = STATE(3147), - [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(138), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1691), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(877), - [sym_ms_call_modifier] = STATE(696), - [sym_compound_statement] = STATE(99), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(923), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(135), - [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym_seh_try_statement] = STATE(99), - [sym_seh_leave_statement] = STATE(99), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(434), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [sym__block_item] = STATE(20), + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_call] = STATE(20), + [sym_preproc_if] = STATE(20), + [sym_preproc_ifdef] = STATE(20), + [sym_preproc_else] = STATE(3044), + [sym_preproc_elif] = STATE(3044), + [sym_preproc_elifdef] = STATE(3044), + [sym_function_definition] = STATE(20), + [sym__old_style_function_definition] = STATE(148), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1722), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(882), + [sym_ms_call_modifier] = STATE(705), + [sym_compound_statement] = STATE(89), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(935), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(164), + [sym_statement] = STATE(20), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(453), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(111), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(113), @@ -19853,76 +19917,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(3370), - [sym_preproc_elif] = STATE(3370), - [sym_preproc_elifdef] = STATE(3370), + [sym_preproc_else] = STATE(3420), + [sym_preproc_elif] = STATE(3420), + [sym_preproc_elifdef] = STATE(3420), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(138), + [sym__old_style_function_definition] = STATE(148), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1691), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1722), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(877), - [sym_ms_call_modifier] = STATE(696), - [sym_compound_statement] = STATE(99), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(923), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(135), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(882), + [sym_ms_call_modifier] = STATE(705), + [sym_compound_statement] = STATE(89), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(935), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(164), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym_seh_try_statement] = STATE(99), - [sym_seh_leave_statement] = STATE(99), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(1122), + [sym_macro_type_specifier] = STATE(1195), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(434), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(453), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(111), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(113), @@ -20036,196 +20100,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), }, [17] = { - [sym__block_item] = STATE(22), - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(3226), - [sym_preproc_elif] = STATE(3226), - [sym_preproc_elifdef] = STATE(3226), - [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(138), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1691), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(877), - [sym_ms_call_modifier] = STATE(696), - [sym_compound_statement] = STATE(99), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(923), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(135), - [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym_seh_try_statement] = STATE(99), - [sym_seh_leave_statement] = STATE(99), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(434), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [sym_identifier] = ACTIONS(111), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(113), - [aux_sym_preproc_def_token1] = ACTIONS(115), - [aux_sym_preproc_if_token1] = ACTIONS(117), - [aux_sym_preproc_if_token2] = ACTIONS(199), - [aux_sym_preproc_ifdef_token1] = ACTIONS(121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(121), - [aux_sym_preproc_else_token1] = ACTIONS(123), - [aux_sym_preproc_elif_token1] = ACTIONS(125), - [aux_sym_preproc_elifdef_token1] = ACTIONS(127), - [aux_sym_preproc_elifdef_token2] = ACTIONS(127), - [sym_preproc_directive] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(131), - [anon_sym___extension__] = ACTIONS(133), - [anon_sym_typedef] = ACTIONS(135), - [anon_sym_extern] = ACTIONS(137), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(41), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___init] = ACTIONS(45), - [anon_sym___exit] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(47), - [anon_sym___clrcall] = ACTIONS(47), - [anon_sym___stdcall] = ACTIONS(47), - [anon_sym___fastcall] = ACTIONS(47), - [anon_sym___thiscall] = ACTIONS(47), - [anon_sym___vectorcall] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(59), - [anon_sym_enum] = ACTIONS(61), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_if] = ACTIONS(141), - [anon_sym_switch] = ACTIONS(143), - [anon_sym_case] = ACTIONS(145), - [anon_sym_default] = ACTIONS(147), - [anon_sym_while] = ACTIONS(149), - [anon_sym_do] = ACTIONS(151), - [anon_sym_for] = ACTIONS(153), - [anon_sym_return] = ACTIONS(155), - [anon_sym_break] = ACTIONS(157), - [anon_sym_continue] = ACTIONS(159), - [anon_sym_goto] = ACTIONS(161), - [anon_sym___try] = ACTIONS(163), - [anon_sym___leave] = ACTIONS(165), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), - [sym_comment] = ACTIONS(5), - }, - [18] = { [sym__block_item] = STATE(3), [sym_preproc_include] = STATE(3), [sym_preproc_def] = STATE(3), @@ -20233,82 +20107,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(3), [sym_preproc_if] = STATE(3), [sym_preproc_ifdef] = STATE(3), - [sym_preproc_else] = STATE(3396), - [sym_preproc_elif] = STATE(3396), - [sym_preproc_elifdef] = STATE(3396), + [sym_preproc_else] = STATE(3426), + [sym_preproc_elif] = STATE(3426), + [sym_preproc_elifdef] = STATE(3426), [sym_function_definition] = STATE(3), - [sym__old_style_function_definition] = STATE(138), + [sym__old_style_function_definition] = STATE(148), [sym_declaration] = STATE(3), [sym_type_definition] = STATE(3), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1691), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1722), [sym_linkage_specification] = STATE(3), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(877), - [sym_ms_call_modifier] = STATE(696), - [sym_compound_statement] = STATE(99), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(923), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(135), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(882), + [sym_ms_call_modifier] = STATE(705), + [sym_compound_statement] = STATE(89), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(935), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(164), [sym_statement] = STATE(3), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym_seh_try_statement] = STATE(99), - [sym_seh_leave_statement] = STATE(99), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), [sym__empty_declaration] = STATE(3), - [sym_macro_type_specifier] = STATE(1122), + [sym_macro_type_specifier] = STATE(1195), [aux_sym_preproc_if_repeat1] = STATE(3), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(434), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(453), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(111), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(113), [aux_sym_preproc_def_token1] = ACTIONS(115), [aux_sym_preproc_if_token1] = ACTIONS(117), - [aux_sym_preproc_if_token2] = ACTIONS(201), + [aux_sym_preproc_if_token2] = ACTIONS(199), [aux_sym_preproc_ifdef_token1] = ACTIONS(121), [aux_sym_preproc_ifdef_token2] = ACTIONS(121), [aux_sym_preproc_else_token1] = ACTIONS(123), @@ -20415,90 +20289,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [19] = { - [sym__block_item] = STATE(12), - [sym_preproc_include] = STATE(12), - [sym_preproc_def] = STATE(12), - [sym_preproc_function_def] = STATE(12), - [sym_preproc_call] = STATE(12), - [sym_preproc_if] = STATE(12), - [sym_preproc_ifdef] = STATE(12), - [sym_preproc_else] = STATE(3009), - [sym_preproc_elif] = STATE(3009), - [sym_preproc_elifdef] = STATE(3009), - [sym_function_definition] = STATE(12), - [sym__old_style_function_definition] = STATE(138), - [sym_declaration] = STATE(12), - [sym_type_definition] = STATE(12), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1691), - [sym_linkage_specification] = STATE(12), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(877), - [sym_ms_call_modifier] = STATE(696), - [sym_compound_statement] = STATE(99), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(923), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(135), - [sym_statement] = STATE(12), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym_seh_try_statement] = STATE(99), - [sym_seh_leave_statement] = STATE(99), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(12), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(12), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(434), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [18] = { + [sym__block_item] = STATE(9), + [sym_preproc_include] = STATE(9), + [sym_preproc_def] = STATE(9), + [sym_preproc_function_def] = STATE(9), + [sym_preproc_call] = STATE(9), + [sym_preproc_if] = STATE(9), + [sym_preproc_ifdef] = STATE(9), + [sym_preproc_else] = STATE(3131), + [sym_preproc_elif] = STATE(3131), + [sym_preproc_elifdef] = STATE(3131), + [sym_function_definition] = STATE(9), + [sym__old_style_function_definition] = STATE(148), + [sym_declaration] = STATE(9), + [sym_type_definition] = STATE(9), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1722), + [sym_linkage_specification] = STATE(9), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(882), + [sym_ms_call_modifier] = STATE(705), + [sym_compound_statement] = STATE(89), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(935), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(164), + [sym_statement] = STATE(9), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(9), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(9), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(453), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(111), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(113), [aux_sym_preproc_def_token1] = ACTIONS(115), [aux_sym_preproc_if_token1] = ACTIONS(117), - [aux_sym_preproc_if_token2] = ACTIONS(203), + [aux_sym_preproc_if_token2] = ACTIONS(201), + [aux_sym_preproc_ifdef_token1] = ACTIONS(121), + [aux_sym_preproc_ifdef_token2] = ACTIONS(121), + [aux_sym_preproc_else_token1] = ACTIONS(123), + [aux_sym_preproc_elif_token1] = ACTIONS(125), + [aux_sym_preproc_elifdef_token1] = ACTIONS(127), + [aux_sym_preproc_elifdef_token2] = ACTIONS(127), + [sym_preproc_directive] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(133), + [anon_sym_typedef] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(137), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___init] = ACTIONS(45), + [anon_sym___exit] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(59), + [anon_sym_enum] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(145), + [anon_sym_default] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [19] = { + [sym__block_item] = STATE(16), + [sym_preproc_include] = STATE(16), + [sym_preproc_def] = STATE(16), + [sym_preproc_function_def] = STATE(16), + [sym_preproc_call] = STATE(16), + [sym_preproc_if] = STATE(16), + [sym_preproc_ifdef] = STATE(16), + [sym_preproc_else] = STATE(3469), + [sym_preproc_elif] = STATE(3469), + [sym_preproc_elifdef] = STATE(3469), + [sym_function_definition] = STATE(16), + [sym__old_style_function_definition] = STATE(148), + [sym_declaration] = STATE(16), + [sym_type_definition] = STATE(16), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1722), + [sym_linkage_specification] = STATE(16), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(882), + [sym_ms_call_modifier] = STATE(705), + [sym_compound_statement] = STATE(89), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(935), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(164), + [sym_statement] = STATE(16), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(16), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(16), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(453), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [sym_identifier] = ACTIONS(111), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(113), + [aux_sym_preproc_def_token1] = ACTIONS(115), + [aux_sym_preproc_if_token1] = ACTIONS(117), + [aux_sym_preproc_if_token2] = ACTIONS(203), [aux_sym_preproc_ifdef_token1] = ACTIONS(121), [aux_sym_preproc_ifdef_token2] = ACTIONS(121), [aux_sym_preproc_else_token1] = ACTIONS(123), @@ -20613,76 +20677,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(3038), - [sym_preproc_elif] = STATE(3038), - [sym_preproc_elifdef] = STATE(3038), + [sym_preproc_else] = STATE(3065), + [sym_preproc_elif] = STATE(3065), + [sym_preproc_elifdef] = STATE(3065), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(138), + [sym__old_style_function_definition] = STATE(148), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1691), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1722), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(877), - [sym_ms_call_modifier] = STATE(696), - [sym_compound_statement] = STATE(99), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(923), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(135), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(882), + [sym_ms_call_modifier] = STATE(705), + [sym_compound_statement] = STATE(89), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(935), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(164), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym_seh_try_statement] = STATE(99), - [sym_seh_leave_statement] = STATE(99), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(1122), + [sym_macro_type_specifier] = STATE(1195), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(434), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(453), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(111), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(113), @@ -20803,76 +20867,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(3010), - [sym_preproc_elif] = STATE(3010), - [sym_preproc_elifdef] = STATE(3010), + [sym_preproc_else] = STATE(3273), + [sym_preproc_elif] = STATE(3273), + [sym_preproc_elifdef] = STATE(3273), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(138), + [sym__old_style_function_definition] = STATE(148), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1691), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1722), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(877), - [sym_ms_call_modifier] = STATE(696), - [sym_compound_statement] = STATE(99), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(923), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(135), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(882), + [sym_ms_call_modifier] = STATE(705), + [sym_compound_statement] = STATE(89), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(935), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(164), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym_seh_try_statement] = STATE(99), - [sym_seh_leave_statement] = STATE(99), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(1122), + [sym_macro_type_specifier] = STATE(1195), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(434), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(453), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(111), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(113), @@ -20994,72 +21058,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(138), + [sym__old_style_function_definition] = STATE(148), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1691), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1722), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(877), - [sym_ms_call_modifier] = STATE(696), - [sym_compound_statement] = STATE(99), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(923), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(135), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(882), + [sym_ms_call_modifier] = STATE(705), + [sym_compound_statement] = STATE(89), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(935), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(164), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym_seh_try_statement] = STATE(99), - [sym_seh_leave_statement] = STATE(99), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(1122), + [sym_macro_type_specifier] = STATE(1195), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(434), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(453), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(209), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(212), @@ -21181,72 +21245,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(26), [sym_preproc_ifdef] = STATE(26), [sym_function_definition] = STATE(26), - [sym__old_style_function_definition] = STATE(353), + [sym__old_style_function_definition] = STATE(358), [sym_declaration] = STATE(26), [sym_type_definition] = STATE(26), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1700), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1723), [sym_linkage_specification] = STATE(26), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(873), - [sym_ms_call_modifier] = STATE(699), - [sym_compound_statement] = STATE(179), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(925), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(361), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(878), + [sym_ms_call_modifier] = STATE(708), + [sym_compound_statement] = STATE(170), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(926), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(311), [sym_statement] = STATE(26), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_seh_try_statement] = STATE(170), + [sym_seh_leave_statement] = STATE(170), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), [sym__empty_declaration] = STATE(26), - [sym_macro_type_specifier] = STATE(1122), + [sym_macro_type_specifier] = STATE(1195), [aux_sym_preproc_if_repeat1] = STATE(26), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(373), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(375), @@ -21356,80 +21420,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), }, [24] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym__old_style_function_definition] = STATE(353), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1700), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(873), - [sym_ms_call_modifier] = STATE(699), - [sym_compound_statement] = STATE(179), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(925), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(361), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [sym__block_item] = STATE(23), + [sym_preproc_include] = STATE(23), + [sym_preproc_def] = STATE(23), + [sym_preproc_function_def] = STATE(23), + [sym_preproc_call] = STATE(23), + [sym_preproc_if] = STATE(23), + [sym_preproc_ifdef] = STATE(23), + [sym_function_definition] = STATE(23), + [sym__old_style_function_definition] = STATE(358), + [sym_declaration] = STATE(23), + [sym_type_definition] = STATE(23), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1723), + [sym_linkage_specification] = STATE(23), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(878), + [sym_ms_call_modifier] = STATE(708), + [sym_compound_statement] = STATE(170), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(926), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(311), + [sym_statement] = STATE(23), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_seh_try_statement] = STATE(170), + [sym_seh_leave_statement] = STATE(170), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(23), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(23), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(373), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(375), @@ -21539,80 +21603,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), }, [25] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym__old_style_function_definition] = STATE(353), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1700), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(873), - [sym_ms_call_modifier] = STATE(699), - [sym_compound_statement] = STATE(179), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(925), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(361), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [sym__block_item] = STATE(30), + [sym_preproc_include] = STATE(30), + [sym_preproc_def] = STATE(30), + [sym_preproc_function_def] = STATE(30), + [sym_preproc_call] = STATE(30), + [sym_preproc_if] = STATE(30), + [sym_preproc_ifdef] = STATE(30), + [sym_function_definition] = STATE(30), + [sym__old_style_function_definition] = STATE(358), + [sym_declaration] = STATE(30), + [sym_type_definition] = STATE(30), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1723), + [sym_linkage_specification] = STATE(30), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(878), + [sym_ms_call_modifier] = STATE(708), + [sym_compound_statement] = STATE(170), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(926), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(311), + [sym_statement] = STATE(30), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_seh_try_statement] = STATE(170), + [sym_seh_leave_statement] = STATE(170), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(30), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(30), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(373), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(375), @@ -21722,80 +21786,263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), }, [26] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym__old_style_function_definition] = STATE(353), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1700), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(873), - [sym_ms_call_modifier] = STATE(699), - [sym_compound_statement] = STATE(179), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(925), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(361), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [sym__block_item] = STATE(26), + [sym_preproc_include] = STATE(26), + [sym_preproc_def] = STATE(26), + [sym_preproc_function_def] = STATE(26), + [sym_preproc_call] = STATE(26), + [sym_preproc_if] = STATE(26), + [sym_preproc_ifdef] = STATE(26), + [sym_function_definition] = STATE(26), + [sym__old_style_function_definition] = STATE(358), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1723), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(878), + [sym_ms_call_modifier] = STATE(708), + [sym_compound_statement] = STATE(170), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(926), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(311), + [sym_statement] = STATE(26), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_seh_try_statement] = STATE(170), + [sym_seh_leave_statement] = STATE(170), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(26), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [sym_identifier] = ACTIONS(427), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(430), + [aux_sym_preproc_def_token1] = ACTIONS(433), + [aux_sym_preproc_if_token1] = ACTIONS(436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(439), + [aux_sym_preproc_ifdef_token2] = ACTIONS(439), + [sym_preproc_directive] = ACTIONS(442), + [anon_sym_LPAREN2] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(232), + [anon_sym_TILDE] = ACTIONS(232), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_STAR] = ACTIONS(238), + [anon_sym_AMP] = ACTIONS(238), + [anon_sym_SEMI] = ACTIONS(445), + [anon_sym___extension__] = ACTIONS(448), + [anon_sym_typedef] = ACTIONS(451), + [anon_sym_extern] = ACTIONS(454), + [anon_sym___attribute__] = ACTIONS(253), + [anon_sym___scanf] = ACTIONS(256), + [anon_sym___printf] = ACTIONS(256), + [anon_sym___read_mostly] = ACTIONS(259), + [anon_sym___must_hold] = ACTIONS(253), + [anon_sym___ro_after_init] = ACTIONS(259), + [anon_sym___noreturn] = ACTIONS(259), + [anon_sym___cold] = ACTIONS(259), + [anon_sym_LBRACK_LBRACK] = ACTIONS(262), + [anon_sym___declspec] = ACTIONS(265), + [anon_sym___init] = ACTIONS(268), + [anon_sym___exit] = ACTIONS(268), + [anon_sym___cdecl] = ACTIONS(271), + [anon_sym___clrcall] = ACTIONS(271), + [anon_sym___stdcall] = ACTIONS(271), + [anon_sym___fastcall] = ACTIONS(271), + [anon_sym___thiscall] = ACTIONS(271), + [anon_sym___vectorcall] = ACTIONS(271), + [anon_sym_LBRACE] = ACTIONS(457), + [anon_sym_RBRACE] = ACTIONS(460), + [anon_sym_signed] = ACTIONS(277), + [anon_sym_unsigned] = ACTIONS(277), + [anon_sym_long] = ACTIONS(277), + [anon_sym_short] = ACTIONS(277), + [anon_sym_static] = ACTIONS(280), + [anon_sym_auto] = ACTIONS(280), + [anon_sym_register] = ACTIONS(280), + [anon_sym_inline] = ACTIONS(280), + [anon_sym___inline] = ACTIONS(280), + [anon_sym___inline__] = ACTIONS(280), + [anon_sym___forceinline] = ACTIONS(280), + [anon_sym_thread_local] = ACTIONS(280), + [anon_sym___thread] = ACTIONS(280), + [anon_sym_const] = ACTIONS(283), + [anon_sym_constexpr] = ACTIONS(283), + [anon_sym_volatile] = ACTIONS(283), + [anon_sym_restrict] = ACTIONS(283), + [anon_sym___restrict__] = ACTIONS(283), + [anon_sym__Atomic] = ACTIONS(283), + [anon_sym__Noreturn] = ACTIONS(283), + [anon_sym_noreturn] = ACTIONS(283), + [anon_sym_alignas] = ACTIONS(286), + [anon_sym__Alignas] = ACTIONS(286), + [sym_primitive_type] = ACTIONS(289), + [anon_sym_enum] = ACTIONS(292), + [anon_sym_struct] = ACTIONS(295), + [anon_sym_union] = ACTIONS(298), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(465), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(471), + [anon_sym_while] = ACTIONS(474), + [anon_sym_do] = ACTIONS(477), + [anon_sym_for] = ACTIONS(480), + [anon_sym_return] = ACTIONS(483), + [anon_sym_break] = ACTIONS(486), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_goto] = ACTIONS(492), + [anon_sym___try] = ACTIONS(495), + [anon_sym___leave] = ACTIONS(498), + [anon_sym_DASH_DASH] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(340), + [anon_sym_sizeof] = ACTIONS(343), + [anon_sym___alignof__] = ACTIONS(346), + [anon_sym___alignof] = ACTIONS(346), + [anon_sym__alignof] = ACTIONS(346), + [anon_sym_alignof] = ACTIONS(346), + [anon_sym__Alignof] = ACTIONS(346), + [anon_sym_offsetof] = ACTIONS(349), + [anon_sym__Generic] = ACTIONS(352), + [anon_sym_asm] = ACTIONS(355), + [anon_sym___asm__] = ACTIONS(355), + [sym_number_literal] = ACTIONS(358), + [anon_sym_L_SQUOTE] = ACTIONS(361), + [anon_sym_u_SQUOTE] = ACTIONS(361), + [anon_sym_U_SQUOTE] = ACTIONS(361), + [anon_sym_u8_SQUOTE] = ACTIONS(361), + [anon_sym_SQUOTE] = ACTIONS(361), + [anon_sym_L_DQUOTE] = ACTIONS(364), + [anon_sym_u_DQUOTE] = ACTIONS(364), + [anon_sym_U_DQUOTE] = ACTIONS(364), + [anon_sym_u8_DQUOTE] = ACTIONS(364), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_true] = ACTIONS(367), + [sym_false] = ACTIONS(367), + [anon_sym_NULL] = ACTIONS(370), + [anon_sym_nullptr] = ACTIONS(370), + [sym_comment] = ACTIONS(5), + }, + [27] = { + [sym__block_item] = STATE(32), + [sym_preproc_include] = STATE(32), + [sym_preproc_def] = STATE(32), + [sym_preproc_function_def] = STATE(32), + [sym_preproc_call] = STATE(32), + [sym_preproc_if] = STATE(32), + [sym_preproc_ifdef] = STATE(32), + [sym_function_definition] = STATE(32), + [sym__old_style_function_definition] = STATE(358), + [sym_declaration] = STATE(32), + [sym_type_definition] = STATE(32), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1723), + [sym_linkage_specification] = STATE(32), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(878), + [sym_ms_call_modifier] = STATE(708), + [sym_compound_statement] = STATE(170), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(926), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(311), + [sym_statement] = STATE(32), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_seh_try_statement] = STATE(170), + [sym_seh_leave_statement] = STATE(170), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(32), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(32), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(373), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(375), @@ -21834,7 +22081,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(47), [anon_sym___vectorcall] = ACTIONS(47), [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(427), + [anon_sym_RBRACE] = ACTIONS(501), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), @@ -21904,81 +22151,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [27] = { - [sym__block_item] = STATE(35), - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym__old_style_function_definition] = STATE(353), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1700), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(873), - [sym_ms_call_modifier] = STATE(699), - [sym_compound_statement] = STATE(179), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(925), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(361), - [sym_statement] = STATE(35), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [28] = { + [sym__block_item] = STATE(37), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym__old_style_function_definition] = STATE(358), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1723), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(878), + [sym_ms_call_modifier] = STATE(708), + [sym_compound_statement] = STATE(170), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(926), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(311), + [sym_statement] = STATE(37), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_seh_try_statement] = STATE(170), + [sym_seh_leave_statement] = STATE(170), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(373), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(375), @@ -22017,7 +22264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(47), [anon_sym___vectorcall] = ACTIONS(47), [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(429), + [anon_sym_RBRACE] = ACTIONS(503), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), @@ -22087,81 +22334,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [28] = { - [sym__block_item] = STATE(31), - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_preproc_if] = STATE(31), - [sym_preproc_ifdef] = STATE(31), - [sym_function_definition] = STATE(31), - [sym__old_style_function_definition] = STATE(353), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1700), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(873), - [sym_ms_call_modifier] = STATE(699), - [sym_compound_statement] = STATE(179), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(925), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(361), - [sym_statement] = STATE(31), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [29] = { + [sym__block_item] = STATE(26), + [sym_preproc_include] = STATE(26), + [sym_preproc_def] = STATE(26), + [sym_preproc_function_def] = STATE(26), + [sym_preproc_call] = STATE(26), + [sym_preproc_if] = STATE(26), + [sym_preproc_ifdef] = STATE(26), + [sym_function_definition] = STATE(26), + [sym__old_style_function_definition] = STATE(358), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1723), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(878), + [sym_ms_call_modifier] = STATE(708), + [sym_compound_statement] = STATE(170), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(926), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(311), + [sym_statement] = STATE(26), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_seh_try_statement] = STATE(170), + [sym_seh_leave_statement] = STATE(170), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(26), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(373), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(375), @@ -22200,7 +22447,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(47), [anon_sym___vectorcall] = ACTIONS(47), [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(431), + [anon_sym_RBRACE] = ACTIONS(505), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), @@ -22270,81 +22517,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [29] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym__old_style_function_definition] = STATE(353), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1700), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(873), - [sym_ms_call_modifier] = STATE(699), - [sym_compound_statement] = STATE(179), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(925), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(361), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [30] = { + [sym__block_item] = STATE(26), + [sym_preproc_include] = STATE(26), + [sym_preproc_def] = STATE(26), + [sym_preproc_function_def] = STATE(26), + [sym_preproc_call] = STATE(26), + [sym_preproc_if] = STATE(26), + [sym_preproc_ifdef] = STATE(26), + [sym_function_definition] = STATE(26), + [sym__old_style_function_definition] = STATE(358), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1723), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(878), + [sym_ms_call_modifier] = STATE(708), + [sym_compound_statement] = STATE(170), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(926), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(311), + [sym_statement] = STATE(26), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_seh_try_statement] = STATE(170), + [sym_seh_leave_statement] = STATE(170), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(26), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(373), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(375), @@ -22383,7 +22630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(47), [anon_sym___vectorcall] = ACTIONS(47), [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(433), + [anon_sym_RBRACE] = ACTIONS(507), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), @@ -22453,81 +22700,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [30] = { - [sym__block_item] = STATE(45), - [sym_preproc_include] = STATE(45), - [sym_preproc_def] = STATE(45), - [sym_preproc_function_def] = STATE(45), - [sym_preproc_call] = STATE(45), - [sym_preproc_if] = STATE(45), - [sym_preproc_ifdef] = STATE(45), - [sym_function_definition] = STATE(45), - [sym__old_style_function_definition] = STATE(353), - [sym_declaration] = STATE(45), - [sym_type_definition] = STATE(45), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1700), - [sym_linkage_specification] = STATE(45), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(873), - [sym_ms_call_modifier] = STATE(699), - [sym_compound_statement] = STATE(179), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(925), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(361), - [sym_statement] = STATE(45), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(45), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(45), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [31] = { + [sym__block_item] = STATE(29), + [sym_preproc_include] = STATE(29), + [sym_preproc_def] = STATE(29), + [sym_preproc_function_def] = STATE(29), + [sym_preproc_call] = STATE(29), + [sym_preproc_if] = STATE(29), + [sym_preproc_ifdef] = STATE(29), + [sym_function_definition] = STATE(29), + [sym__old_style_function_definition] = STATE(358), + [sym_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1723), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(878), + [sym_ms_call_modifier] = STATE(708), + [sym_compound_statement] = STATE(170), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(926), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(311), + [sym_statement] = STATE(29), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_seh_try_statement] = STATE(170), + [sym_seh_leave_statement] = STATE(170), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(29), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(373), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(375), @@ -22566,7 +22813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(47), [anon_sym___vectorcall] = ACTIONS(47), [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(435), + [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), @@ -22636,81 +22883,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [31] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym__old_style_function_definition] = STATE(353), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1700), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(873), - [sym_ms_call_modifier] = STATE(699), - [sym_compound_statement] = STATE(179), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(925), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(361), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [32] = { + [sym__block_item] = STATE(26), + [sym_preproc_include] = STATE(26), + [sym_preproc_def] = STATE(26), + [sym_preproc_function_def] = STATE(26), + [sym_preproc_call] = STATE(26), + [sym_preproc_if] = STATE(26), + [sym_preproc_ifdef] = STATE(26), + [sym_function_definition] = STATE(26), + [sym__old_style_function_definition] = STATE(358), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1723), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(878), + [sym_ms_call_modifier] = STATE(708), + [sym_compound_statement] = STATE(170), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(926), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(311), + [sym_statement] = STATE(26), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_seh_try_statement] = STATE(170), + [sym_seh_leave_statement] = STATE(170), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(26), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(373), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(375), @@ -22749,7 +22996,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(47), [anon_sym___vectorcall] = ACTIONS(47), [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(437), + [anon_sym_RBRACE] = ACTIONS(511), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), @@ -22819,81 +23066,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [32] = { - [sym__block_item] = STATE(24), - [sym_preproc_include] = STATE(24), - [sym_preproc_def] = STATE(24), - [sym_preproc_function_def] = STATE(24), - [sym_preproc_call] = STATE(24), - [sym_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_function_definition] = STATE(24), - [sym__old_style_function_definition] = STATE(353), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1700), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(873), - [sym_ms_call_modifier] = STATE(699), - [sym_compound_statement] = STATE(179), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(925), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(361), - [sym_statement] = STATE(24), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [33] = { + [sym__block_item] = STATE(35), + [sym_preproc_include] = STATE(35), + [sym_preproc_def] = STATE(35), + [sym_preproc_function_def] = STATE(35), + [sym_preproc_call] = STATE(35), + [sym_preproc_if] = STATE(35), + [sym_preproc_ifdef] = STATE(35), + [sym_function_definition] = STATE(35), + [sym__old_style_function_definition] = STATE(358), + [sym_declaration] = STATE(35), + [sym_type_definition] = STATE(35), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1723), + [sym_linkage_specification] = STATE(35), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(878), + [sym_ms_call_modifier] = STATE(708), + [sym_compound_statement] = STATE(170), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(926), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(311), + [sym_statement] = STATE(35), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_seh_try_statement] = STATE(170), + [sym_seh_leave_statement] = STATE(170), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(35), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(373), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(375), @@ -22932,7 +23179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(47), [anon_sym___vectorcall] = ACTIONS(47), [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(513), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), @@ -23002,90 +23249,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [33] = { - [sym__block_item] = STATE(36), - [sym_preproc_include] = STATE(36), - [sym_preproc_def] = STATE(36), - [sym_preproc_function_def] = STATE(36), - [sym_preproc_call] = STATE(36), - [sym_preproc_if] = STATE(36), - [sym_preproc_ifdef] = STATE(36), - [sym_function_definition] = STATE(36), - [sym__old_style_function_definition] = STATE(370), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1686), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(876), - [sym_ms_call_modifier] = STATE(713), - [sym_compound_statement] = STATE(182), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(918), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(368), - [sym_statement] = STATE(36), - [sym_labeled_statement] = STATE(182), - [sym_expression_statement] = STATE(182), - [sym_if_statement] = STATE(182), - [sym_switch_statement] = STATE(182), - [sym_case_statement] = STATE(182), - [sym_while_statement] = STATE(182), - [sym_do_statement] = STATE(182), - [sym_for_statement] = STATE(182), - [sym_return_statement] = STATE(182), - [sym_break_statement] = STATE(182), - [sym_continue_statement] = STATE(182), - [sym_goto_statement] = STATE(182), - [sym_seh_try_statement] = STATE(182), - [sym_seh_leave_statement] = STATE(182), - [sym_expression] = STATE(1588), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3193), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(429), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [sym_identifier] = ACTIONS(441), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(443), - [aux_sym_preproc_def_token1] = ACTIONS(445), - [aux_sym_preproc_if_token1] = ACTIONS(447), - [aux_sym_preproc_if_token2] = ACTIONS(449), - [aux_sym_preproc_ifdef_token1] = ACTIONS(451), - [aux_sym_preproc_ifdef_token2] = ACTIONS(451), - [sym_preproc_directive] = ACTIONS(453), + [34] = { + [sym__block_item] = STATE(26), + [sym_preproc_include] = STATE(26), + [sym_preproc_def] = STATE(26), + [sym_preproc_function_def] = STATE(26), + [sym_preproc_call] = STATE(26), + [sym_preproc_if] = STATE(26), + [sym_preproc_ifdef] = STATE(26), + [sym_function_definition] = STATE(26), + [sym__old_style_function_definition] = STATE(358), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1723), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(878), + [sym_ms_call_modifier] = STATE(708), + [sym_compound_statement] = STATE(170), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(926), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(311), + [sym_statement] = STATE(26), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_seh_try_statement] = STATE(170), + [sym_seh_leave_statement] = STATE(170), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(26), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [sym_identifier] = ACTIONS(373), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(375), + [aux_sym_preproc_def_token1] = ACTIONS(377), + [aux_sym_preproc_if_token1] = ACTIONS(379), + [aux_sym_preproc_ifdef_token1] = ACTIONS(381), + [aux_sym_preproc_ifdef_token2] = ACTIONS(381), + [sym_preproc_directive] = ACTIONS(383), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(23), @@ -23093,10 +23339,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(455), - [anon_sym___extension__] = ACTIONS(457), - [anon_sym_typedef] = ACTIONS(459), - [anon_sym_extern] = ACTIONS(461), + [anon_sym_SEMI] = ACTIONS(385), + [anon_sym___extension__] = ACTIONS(387), + [anon_sym_typedef] = ACTIONS(389), + [anon_sym_extern] = ACTIONS(391), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___scanf] = ACTIONS(37), [anon_sym___printf] = ACTIONS(37), @@ -23115,7 +23361,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(47), [anon_sym___thiscall] = ACTIONS(47), [anon_sym___vectorcall] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_RBRACE] = ACTIONS(515), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), @@ -23143,19 +23390,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(61), [anon_sym_struct] = ACTIONS(63), [anon_sym_union] = ACTIONS(65), - [anon_sym_if] = ACTIONS(465), - [anon_sym_switch] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [anon_sym_default] = ACTIONS(471), - [anon_sym_while] = ACTIONS(473), - [anon_sym_do] = ACTIONS(475), - [anon_sym_for] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_break] = ACTIONS(481), - [anon_sym_continue] = ACTIONS(483), - [anon_sym_goto] = ACTIONS(485), - [anon_sym___try] = ACTIONS(487), - [anon_sym___leave] = ACTIONS(489), + [anon_sym_if] = ACTIONS(397), + [anon_sym_switch] = ACTIONS(399), + [anon_sym_case] = ACTIONS(401), + [anon_sym_default] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_for] = ACTIONS(409), + [anon_sym_return] = ACTIONS(411), + [anon_sym_break] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_goto] = ACTIONS(417), + [anon_sym___try] = ACTIONS(419), + [anon_sym___leave] = ACTIONS(421), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -23185,264 +23432,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [34] = { - [sym__block_item] = STATE(34), - [sym_preproc_include] = STATE(34), - [sym_preproc_def] = STATE(34), - [sym_preproc_function_def] = STATE(34), - [sym_preproc_call] = STATE(34), - [sym_preproc_if] = STATE(34), - [sym_preproc_ifdef] = STATE(34), - [sym_function_definition] = STATE(34), - [sym__old_style_function_definition] = STATE(370), - [sym_declaration] = STATE(34), - [sym_type_definition] = STATE(34), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1686), - [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(876), - [sym_ms_call_modifier] = STATE(713), - [sym_compound_statement] = STATE(182), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(918), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(368), - [sym_statement] = STATE(34), - [sym_labeled_statement] = STATE(182), - [sym_expression_statement] = STATE(182), - [sym_if_statement] = STATE(182), - [sym_switch_statement] = STATE(182), - [sym_case_statement] = STATE(182), - [sym_while_statement] = STATE(182), - [sym_do_statement] = STATE(182), - [sym_for_statement] = STATE(182), - [sym_return_statement] = STATE(182), - [sym_break_statement] = STATE(182), - [sym_continue_statement] = STATE(182), - [sym_goto_statement] = STATE(182), - [sym_seh_try_statement] = STATE(182), - [sym_seh_leave_statement] = STATE(182), - [sym_expression] = STATE(1588), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3193), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(34), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(429), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [sym_identifier] = ACTIONS(491), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(494), - [aux_sym_preproc_def_token1] = ACTIONS(497), - [aux_sym_preproc_if_token1] = ACTIONS(500), - [aux_sym_preproc_if_token2] = ACTIONS(221), - [aux_sym_preproc_ifdef_token1] = ACTIONS(503), - [aux_sym_preproc_ifdef_token2] = ACTIONS(503), - [sym_preproc_directive] = ACTIONS(506), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_BANG] = ACTIONS(232), - [anon_sym_TILDE] = ACTIONS(232), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_AMP] = ACTIONS(238), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym___extension__] = ACTIONS(512), - [anon_sym_typedef] = ACTIONS(515), - [anon_sym_extern] = ACTIONS(518), - [anon_sym___attribute__] = ACTIONS(253), - [anon_sym___scanf] = ACTIONS(256), - [anon_sym___printf] = ACTIONS(256), - [anon_sym___read_mostly] = ACTIONS(259), - [anon_sym___must_hold] = ACTIONS(253), - [anon_sym___ro_after_init] = ACTIONS(259), - [anon_sym___noreturn] = ACTIONS(259), - [anon_sym___cold] = ACTIONS(259), - [anon_sym_LBRACK_LBRACK] = ACTIONS(262), - [anon_sym___declspec] = ACTIONS(265), - [anon_sym___init] = ACTIONS(268), - [anon_sym___exit] = ACTIONS(268), - [anon_sym___cdecl] = ACTIONS(271), - [anon_sym___clrcall] = ACTIONS(271), - [anon_sym___stdcall] = ACTIONS(271), - [anon_sym___fastcall] = ACTIONS(271), - [anon_sym___thiscall] = ACTIONS(271), - [anon_sym___vectorcall] = ACTIONS(271), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_signed] = ACTIONS(277), - [anon_sym_unsigned] = ACTIONS(277), - [anon_sym_long] = ACTIONS(277), - [anon_sym_short] = ACTIONS(277), - [anon_sym_static] = ACTIONS(280), - [anon_sym_auto] = ACTIONS(280), - [anon_sym_register] = ACTIONS(280), - [anon_sym_inline] = ACTIONS(280), - [anon_sym___inline] = ACTIONS(280), - [anon_sym___inline__] = ACTIONS(280), - [anon_sym___forceinline] = ACTIONS(280), - [anon_sym_thread_local] = ACTIONS(280), - [anon_sym___thread] = ACTIONS(280), - [anon_sym_const] = ACTIONS(283), - [anon_sym_constexpr] = ACTIONS(283), - [anon_sym_volatile] = ACTIONS(283), - [anon_sym_restrict] = ACTIONS(283), - [anon_sym___restrict__] = ACTIONS(283), - [anon_sym__Atomic] = ACTIONS(283), - [anon_sym__Noreturn] = ACTIONS(283), - [anon_sym_noreturn] = ACTIONS(283), - [anon_sym_alignas] = ACTIONS(286), - [anon_sym__Alignas] = ACTIONS(286), - [sym_primitive_type] = ACTIONS(289), - [anon_sym_enum] = ACTIONS(292), - [anon_sym_struct] = ACTIONS(295), - [anon_sym_union] = ACTIONS(298), - [anon_sym_if] = ACTIONS(524), - [anon_sym_switch] = ACTIONS(527), - [anon_sym_case] = ACTIONS(530), - [anon_sym_default] = ACTIONS(533), - [anon_sym_while] = ACTIONS(536), - [anon_sym_do] = ACTIONS(539), - [anon_sym_for] = ACTIONS(542), - [anon_sym_return] = ACTIONS(545), - [anon_sym_break] = ACTIONS(548), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_goto] = ACTIONS(554), - [anon_sym___try] = ACTIONS(557), - [anon_sym___leave] = ACTIONS(560), - [anon_sym_DASH_DASH] = ACTIONS(340), - [anon_sym_PLUS_PLUS] = ACTIONS(340), - [anon_sym_sizeof] = ACTIONS(343), - [anon_sym___alignof__] = ACTIONS(346), - [anon_sym___alignof] = ACTIONS(346), - [anon_sym__alignof] = ACTIONS(346), - [anon_sym_alignof] = ACTIONS(346), - [anon_sym__Alignof] = ACTIONS(346), - [anon_sym_offsetof] = ACTIONS(349), - [anon_sym__Generic] = ACTIONS(352), - [anon_sym_asm] = ACTIONS(355), - [anon_sym___asm__] = ACTIONS(355), - [sym_number_literal] = ACTIONS(358), - [anon_sym_L_SQUOTE] = ACTIONS(361), - [anon_sym_u_SQUOTE] = ACTIONS(361), - [anon_sym_U_SQUOTE] = ACTIONS(361), - [anon_sym_u8_SQUOTE] = ACTIONS(361), - [anon_sym_SQUOTE] = ACTIONS(361), - [anon_sym_L_DQUOTE] = ACTIONS(364), - [anon_sym_u_DQUOTE] = ACTIONS(364), - [anon_sym_U_DQUOTE] = ACTIONS(364), - [anon_sym_u8_DQUOTE] = ACTIONS(364), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_true] = ACTIONS(367), - [sym_false] = ACTIONS(367), - [anon_sym_NULL] = ACTIONS(370), - [anon_sym_nullptr] = ACTIONS(370), - [sym_comment] = ACTIONS(5), - }, [35] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym__old_style_function_definition] = STATE(353), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1700), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(873), - [sym_ms_call_modifier] = STATE(699), - [sym_compound_statement] = STATE(179), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(925), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(361), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [sym__block_item] = STATE(26), + [sym_preproc_include] = STATE(26), + [sym_preproc_def] = STATE(26), + [sym_preproc_function_def] = STATE(26), + [sym_preproc_call] = STATE(26), + [sym_preproc_if] = STATE(26), + [sym_preproc_ifdef] = STATE(26), + [sym_function_definition] = STATE(26), + [sym__old_style_function_definition] = STATE(358), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1723), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(878), + [sym_ms_call_modifier] = STATE(708), + [sym_compound_statement] = STATE(170), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(926), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(311), + [sym_statement] = STATE(26), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_seh_try_statement] = STATE(170), + [sym_seh_leave_statement] = STATE(170), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(26), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(373), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(375), @@ -23481,7 +23545,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(47), [anon_sym___vectorcall] = ACTIONS(47), [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(563), + [anon_sym_RBRACE] = ACTIONS(517), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), @@ -23560,255 +23624,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(34), [sym_preproc_ifdef] = STATE(34), [sym_function_definition] = STATE(34), - [sym__old_style_function_definition] = STATE(370), + [sym__old_style_function_definition] = STATE(358), [sym_declaration] = STATE(34), [sym_type_definition] = STATE(34), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1686), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1723), [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(876), - [sym_ms_call_modifier] = STATE(713), - [sym_compound_statement] = STATE(182), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(918), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(368), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(878), + [sym_ms_call_modifier] = STATE(708), + [sym_compound_statement] = STATE(170), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(926), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(311), [sym_statement] = STATE(34), - [sym_labeled_statement] = STATE(182), - [sym_expression_statement] = STATE(182), - [sym_if_statement] = STATE(182), - [sym_switch_statement] = STATE(182), - [sym_case_statement] = STATE(182), - [sym_while_statement] = STATE(182), - [sym_do_statement] = STATE(182), - [sym_for_statement] = STATE(182), - [sym_return_statement] = STATE(182), - [sym_break_statement] = STATE(182), - [sym_continue_statement] = STATE(182), - [sym_goto_statement] = STATE(182), - [sym_seh_try_statement] = STATE(182), - [sym_seh_leave_statement] = STATE(182), - [sym_expression] = STATE(1588), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3193), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_seh_try_statement] = STATE(170), + [sym_seh_leave_statement] = STATE(170), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), [sym__empty_declaration] = STATE(34), - [sym_macro_type_specifier] = STATE(1122), + [sym_macro_type_specifier] = STATE(1195), [aux_sym_preproc_if_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(429), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [sym_identifier] = ACTIONS(441), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(443), - [aux_sym_preproc_def_token1] = ACTIONS(445), - [aux_sym_preproc_if_token1] = ACTIONS(447), - [aux_sym_preproc_if_token2] = ACTIONS(565), - [aux_sym_preproc_ifdef_token1] = ACTIONS(451), - [aux_sym_preproc_ifdef_token2] = ACTIONS(451), - [sym_preproc_directive] = ACTIONS(453), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(455), - [anon_sym___extension__] = ACTIONS(457), - [anon_sym_typedef] = ACTIONS(459), - [anon_sym_extern] = ACTIONS(461), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(41), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___init] = ACTIONS(45), - [anon_sym___exit] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(47), - [anon_sym___clrcall] = ACTIONS(47), - [anon_sym___stdcall] = ACTIONS(47), - [anon_sym___fastcall] = ACTIONS(47), - [anon_sym___thiscall] = ACTIONS(47), - [anon_sym___vectorcall] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(59), - [anon_sym_enum] = ACTIONS(61), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_if] = ACTIONS(465), - [anon_sym_switch] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [anon_sym_default] = ACTIONS(471), - [anon_sym_while] = ACTIONS(473), - [anon_sym_do] = ACTIONS(475), - [anon_sym_for] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_break] = ACTIONS(481), - [anon_sym_continue] = ACTIONS(483), - [anon_sym_goto] = ACTIONS(485), - [anon_sym___try] = ACTIONS(487), - [anon_sym___leave] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), - [sym_comment] = ACTIONS(5), - }, - [37] = { - [sym__block_item] = STATE(25), - [sym_preproc_include] = STATE(25), - [sym_preproc_def] = STATE(25), - [sym_preproc_function_def] = STATE(25), - [sym_preproc_call] = STATE(25), - [sym_preproc_if] = STATE(25), - [sym_preproc_ifdef] = STATE(25), - [sym_function_definition] = STATE(25), - [sym__old_style_function_definition] = STATE(353), - [sym_declaration] = STATE(25), - [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1700), - [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(873), - [sym_ms_call_modifier] = STATE(699), - [sym_compound_statement] = STATE(179), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(925), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(361), - [sym_statement] = STATE(25), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(373), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(375), @@ -23847,7 +23728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(47), [anon_sym___vectorcall] = ACTIONS(47), [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(567), + [anon_sym_RBRACE] = ACTIONS(519), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), @@ -23917,81 +23798,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [38] = { - [sym__block_item] = STATE(29), - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym__old_style_function_definition] = STATE(353), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1700), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(873), - [sym_ms_call_modifier] = STATE(699), - [sym_compound_statement] = STATE(179), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(925), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(361), - [sym_statement] = STATE(29), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(29), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [37] = { + [sym__block_item] = STATE(26), + [sym_preproc_include] = STATE(26), + [sym_preproc_def] = STATE(26), + [sym_preproc_function_def] = STATE(26), + [sym_preproc_call] = STATE(26), + [sym_preproc_if] = STATE(26), + [sym_preproc_ifdef] = STATE(26), + [sym_function_definition] = STATE(26), + [sym__old_style_function_definition] = STATE(358), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1723), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(878), + [sym_ms_call_modifier] = STATE(708), + [sym_compound_statement] = STATE(170), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(926), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(311), + [sym_statement] = STATE(26), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_seh_try_statement] = STATE(170), + [sym_seh_leave_statement] = STATE(170), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(26), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(373), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(375), @@ -24030,7 +23911,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(47), [anon_sym___vectorcall] = ACTIONS(47), [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(569), + [anon_sym_RBRACE] = ACTIONS(521), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), @@ -24100,81 +23981,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [39] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym__old_style_function_definition] = STATE(353), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1700), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(873), - [sym_ms_call_modifier] = STATE(699), - [sym_compound_statement] = STATE(179), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(925), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(361), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [38] = { + [sym__block_item] = STATE(42), + [sym_preproc_include] = STATE(42), + [sym_preproc_def] = STATE(42), + [sym_preproc_function_def] = STATE(42), + [sym_preproc_call] = STATE(42), + [sym_preproc_if] = STATE(42), + [sym_preproc_ifdef] = STATE(42), + [sym_function_definition] = STATE(42), + [sym__old_style_function_definition] = STATE(358), + [sym_declaration] = STATE(42), + [sym_type_definition] = STATE(42), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1723), + [sym_linkage_specification] = STATE(42), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(878), + [sym_ms_call_modifier] = STATE(708), + [sym_compound_statement] = STATE(170), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(926), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(311), + [sym_statement] = STATE(42), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_seh_try_statement] = STATE(170), + [sym_seh_leave_statement] = STATE(170), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(42), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(42), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(373), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(375), @@ -24213,7 +24094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(47), [anon_sym___vectorcall] = ACTIONS(47), [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(571), + [anon_sym_RBRACE] = ACTIONS(523), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), @@ -24283,81 +24164,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [40] = { - [sym__block_item] = STATE(46), - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym__old_style_function_definition] = STATE(353), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1700), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(873), - [sym_ms_call_modifier] = STATE(699), - [sym_compound_statement] = STATE(179), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(925), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(361), - [sym_statement] = STATE(46), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(46), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [39] = { + [sym__block_item] = STATE(41), + [sym_preproc_include] = STATE(41), + [sym_preproc_def] = STATE(41), + [sym_preproc_function_def] = STATE(41), + [sym_preproc_call] = STATE(41), + [sym_preproc_if] = STATE(41), + [sym_preproc_ifdef] = STATE(41), + [sym_function_definition] = STATE(41), + [sym__old_style_function_definition] = STATE(358), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1723), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(878), + [sym_ms_call_modifier] = STATE(708), + [sym_compound_statement] = STATE(170), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(926), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(311), + [sym_statement] = STATE(41), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_seh_try_statement] = STATE(170), + [sym_seh_leave_statement] = STATE(170), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(373), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(375), @@ -24396,7 +24277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(47), [anon_sym___vectorcall] = ACTIONS(47), [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(573), + [anon_sym_RBRACE] = ACTIONS(525), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), @@ -24466,89 +24347,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [41] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym__old_style_function_definition] = STATE(353), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1700), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(873), - [sym_ms_call_modifier] = STATE(699), - [sym_compound_statement] = STATE(179), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(925), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(361), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [sym_identifier] = ACTIONS(575), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(578), - [aux_sym_preproc_def_token1] = ACTIONS(581), - [aux_sym_preproc_if_token1] = ACTIONS(584), - [aux_sym_preproc_ifdef_token1] = ACTIONS(587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(587), - [sym_preproc_directive] = ACTIONS(590), + [40] = { + [sym__block_item] = STATE(40), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(334), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1706), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(880), + [sym_ms_call_modifier] = STATE(719), + [sym_compound_statement] = STATE(223), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(934), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(340), + [sym_statement] = STATE(40), + [sym_labeled_statement] = STATE(223), + [sym_expression_statement] = STATE(223), + [sym_if_statement] = STATE(223), + [sym_switch_statement] = STATE(223), + [sym_case_statement] = STATE(223), + [sym_while_statement] = STATE(223), + [sym_do_statement] = STATE(223), + [sym_for_statement] = STATE(223), + [sym_return_statement] = STATE(223), + [sym_break_statement] = STATE(223), + [sym_continue_statement] = STATE(223), + [sym_goto_statement] = STATE(223), + [sym_seh_try_statement] = STATE(223), + [sym_seh_leave_statement] = STATE(223), + [sym_expression] = STATE(1613), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3217), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(440), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [sym_identifier] = ACTIONS(527), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(530), + [aux_sym_preproc_def_token1] = ACTIONS(533), + [aux_sym_preproc_if_token1] = ACTIONS(536), + [aux_sym_preproc_if_token2] = ACTIONS(221), + [aux_sym_preproc_ifdef_token1] = ACTIONS(539), + [aux_sym_preproc_ifdef_token2] = ACTIONS(539), + [sym_preproc_directive] = ACTIONS(542), [anon_sym_LPAREN2] = ACTIONS(229), [anon_sym_BANG] = ACTIONS(232), [anon_sym_TILDE] = ACTIONS(232), @@ -24556,10 +24438,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(235), [anon_sym_STAR] = ACTIONS(238), [anon_sym_AMP] = ACTIONS(238), - [anon_sym_SEMI] = ACTIONS(593), - [anon_sym___extension__] = ACTIONS(596), - [anon_sym_typedef] = ACTIONS(599), - [anon_sym_extern] = ACTIONS(602), + [anon_sym_SEMI] = ACTIONS(545), + [anon_sym___extension__] = ACTIONS(548), + [anon_sym_typedef] = ACTIONS(551), + [anon_sym_extern] = ACTIONS(554), [anon_sym___attribute__] = ACTIONS(253), [anon_sym___scanf] = ACTIONS(256), [anon_sym___printf] = ACTIONS(256), @@ -24578,8 +24460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(271), [anon_sym___thiscall] = ACTIONS(271), [anon_sym___vectorcall] = ACTIONS(271), - [anon_sym_LBRACE] = ACTIONS(605), - [anon_sym_RBRACE] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(557), [anon_sym_signed] = ACTIONS(277), [anon_sym_unsigned] = ACTIONS(277), [anon_sym_long] = ACTIONS(277), @@ -24607,19 +24488,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(292), [anon_sym_struct] = ACTIONS(295), [anon_sym_union] = ACTIONS(298), - [anon_sym_if] = ACTIONS(610), - [anon_sym_switch] = ACTIONS(613), - [anon_sym_case] = ACTIONS(616), - [anon_sym_default] = ACTIONS(619), - [anon_sym_while] = ACTIONS(622), - [anon_sym_do] = ACTIONS(625), - [anon_sym_for] = ACTIONS(628), - [anon_sym_return] = ACTIONS(631), - [anon_sym_break] = ACTIONS(634), - [anon_sym_continue] = ACTIONS(637), - [anon_sym_goto] = ACTIONS(640), - [anon_sym___try] = ACTIONS(643), - [anon_sym___leave] = ACTIONS(646), + [anon_sym_if] = ACTIONS(560), + [anon_sym_switch] = ACTIONS(563), + [anon_sym_case] = ACTIONS(566), + [anon_sym_default] = ACTIONS(569), + [anon_sym_while] = ACTIONS(572), + [anon_sym_do] = ACTIONS(575), + [anon_sym_for] = ACTIONS(578), + [anon_sym_return] = ACTIONS(581), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_goto] = ACTIONS(590), + [anon_sym___try] = ACTIONS(593), + [anon_sym___leave] = ACTIONS(596), [anon_sym_DASH_DASH] = ACTIONS(340), [anon_sym_PLUS_PLUS] = ACTIONS(340), [anon_sym_sizeof] = ACTIONS(343), @@ -24649,81 +24530,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(370), [sym_comment] = ACTIONS(5), }, - [42] = { - [sym__block_item] = STATE(39), - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_function_definition] = STATE(39), - [sym__old_style_function_definition] = STATE(353), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1700), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(873), - [sym_ms_call_modifier] = STATE(699), - [sym_compound_statement] = STATE(179), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(925), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(361), - [sym_statement] = STATE(39), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [41] = { + [sym__block_item] = STATE(26), + [sym_preproc_include] = STATE(26), + [sym_preproc_def] = STATE(26), + [sym_preproc_function_def] = STATE(26), + [sym_preproc_call] = STATE(26), + [sym_preproc_if] = STATE(26), + [sym_preproc_ifdef] = STATE(26), + [sym_function_definition] = STATE(26), + [sym__old_style_function_definition] = STATE(358), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1723), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(878), + [sym_ms_call_modifier] = STATE(708), + [sym_compound_statement] = STATE(170), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(926), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(311), + [sym_statement] = STATE(26), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_seh_try_statement] = STATE(170), + [sym_seh_leave_statement] = STATE(170), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(26), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(373), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(375), @@ -24762,7 +24643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(47), [anon_sym___vectorcall] = ACTIONS(47), [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(649), + [anon_sym_RBRACE] = ACTIONS(599), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), @@ -24832,81 +24713,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [43] = { - [sym__block_item] = STATE(44), - [sym_preproc_include] = STATE(44), - [sym_preproc_def] = STATE(44), - [sym_preproc_function_def] = STATE(44), - [sym_preproc_call] = STATE(44), - [sym_preproc_if] = STATE(44), - [sym_preproc_ifdef] = STATE(44), - [sym_function_definition] = STATE(44), - [sym__old_style_function_definition] = STATE(353), - [sym_declaration] = STATE(44), - [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1700), - [sym_linkage_specification] = STATE(44), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(873), - [sym_ms_call_modifier] = STATE(699), - [sym_compound_statement] = STATE(179), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(925), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(361), - [sym_statement] = STATE(44), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(44), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [42] = { + [sym__block_item] = STATE(26), + [sym_preproc_include] = STATE(26), + [sym_preproc_def] = STATE(26), + [sym_preproc_function_def] = STATE(26), + [sym_preproc_call] = STATE(26), + [sym_preproc_if] = STATE(26), + [sym_preproc_ifdef] = STATE(26), + [sym_function_definition] = STATE(26), + [sym__old_style_function_definition] = STATE(358), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1723), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(878), + [sym_ms_call_modifier] = STATE(708), + [sym_compound_statement] = STATE(170), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(926), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(311), + [sym_statement] = STATE(26), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_seh_try_statement] = STATE(170), + [sym_seh_leave_statement] = STATE(170), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(26), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(373), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(375), @@ -24945,7 +24826,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(47), [anon_sym___vectorcall] = ACTIONS(47), [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(651), + [anon_sym_RBRACE] = ACTIONS(601), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), @@ -25015,89 +24896,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [44] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym__old_style_function_definition] = STATE(353), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1700), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(873), - [sym_ms_call_modifier] = STATE(699), - [sym_compound_statement] = STATE(179), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(925), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(361), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [sym_identifier] = ACTIONS(373), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(375), - [aux_sym_preproc_def_token1] = ACTIONS(377), - [aux_sym_preproc_if_token1] = ACTIONS(379), - [aux_sym_preproc_ifdef_token1] = ACTIONS(381), - [aux_sym_preproc_ifdef_token2] = ACTIONS(381), - [sym_preproc_directive] = ACTIONS(383), + [43] = { + [sym__block_item] = STATE(46), + [sym_preproc_include] = STATE(46), + [sym_preproc_def] = STATE(46), + [sym_preproc_function_def] = STATE(46), + [sym_preproc_call] = STATE(46), + [sym_preproc_if] = STATE(46), + [sym_preproc_ifdef] = STATE(46), + [sym_function_definition] = STATE(46), + [sym__old_style_function_definition] = STATE(334), + [sym_declaration] = STATE(46), + [sym_type_definition] = STATE(46), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1706), + [sym_linkage_specification] = STATE(46), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(880), + [sym_ms_call_modifier] = STATE(719), + [sym_compound_statement] = STATE(223), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(934), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(340), + [sym_statement] = STATE(46), + [sym_labeled_statement] = STATE(223), + [sym_expression_statement] = STATE(223), + [sym_if_statement] = STATE(223), + [sym_switch_statement] = STATE(223), + [sym_case_statement] = STATE(223), + [sym_while_statement] = STATE(223), + [sym_do_statement] = STATE(223), + [sym_for_statement] = STATE(223), + [sym_return_statement] = STATE(223), + [sym_break_statement] = STATE(223), + [sym_continue_statement] = STATE(223), + [sym_goto_statement] = STATE(223), + [sym_seh_try_statement] = STATE(223), + [sym_seh_leave_statement] = STATE(223), + [sym_expression] = STATE(1613), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3217), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(46), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(46), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(440), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [sym_identifier] = ACTIONS(603), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(605), + [aux_sym_preproc_def_token1] = ACTIONS(607), + [aux_sym_preproc_if_token1] = ACTIONS(609), + [aux_sym_preproc_if_token2] = ACTIONS(611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(613), + [aux_sym_preproc_ifdef_token2] = ACTIONS(613), + [sym_preproc_directive] = ACTIONS(615), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(23), @@ -25105,10 +24987,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(385), - [anon_sym___extension__] = ACTIONS(387), - [anon_sym_typedef] = ACTIONS(389), - [anon_sym_extern] = ACTIONS(391), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym___extension__] = ACTIONS(619), + [anon_sym_typedef] = ACTIONS(621), + [anon_sym_extern] = ACTIONS(623), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___scanf] = ACTIONS(37), [anon_sym___printf] = ACTIONS(37), @@ -25127,8 +25009,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(47), [anon_sym___thiscall] = ACTIONS(47), [anon_sym___vectorcall] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(625), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), @@ -25156,19 +25037,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(61), [anon_sym_struct] = ACTIONS(63), [anon_sym_union] = ACTIONS(65), - [anon_sym_if] = ACTIONS(397), - [anon_sym_switch] = ACTIONS(399), - [anon_sym_case] = ACTIONS(401), - [anon_sym_default] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_goto] = ACTIONS(417), - [anon_sym___try] = ACTIONS(419), - [anon_sym___leave] = ACTIONS(421), + [anon_sym_if] = ACTIONS(627), + [anon_sym_switch] = ACTIONS(629), + [anon_sym_case] = ACTIONS(631), + [anon_sym_default] = ACTIONS(633), + [anon_sym_while] = ACTIONS(635), + [anon_sym_do] = ACTIONS(637), + [anon_sym_for] = ACTIONS(639), + [anon_sym_return] = ACTIONS(641), + [anon_sym_break] = ACTIONS(643), + [anon_sym_continue] = ACTIONS(645), + [anon_sym_goto] = ACTIONS(647), + [anon_sym___try] = ACTIONS(649), + [anon_sym___leave] = ACTIONS(651), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -25198,81 +25079,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [45] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym__old_style_function_definition] = STATE(353), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1700), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(873), - [sym_ms_call_modifier] = STATE(699), - [sym_compound_statement] = STATE(179), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(925), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(361), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [44] = { + [sym__block_item] = STATE(45), + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_function_definition] = STATE(45), + [sym__old_style_function_definition] = STATE(358), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1723), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(878), + [sym_ms_call_modifier] = STATE(708), + [sym_compound_statement] = STATE(170), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(926), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(311), + [sym_statement] = STATE(45), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_seh_try_statement] = STATE(170), + [sym_seh_leave_statement] = STATE(170), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(45), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(373), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(375), @@ -25311,7 +25192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(47), [anon_sym___vectorcall] = ACTIONS(47), [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(653), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), @@ -25381,81 +25262,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [46] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym__old_style_function_definition] = STATE(353), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1700), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(873), - [sym_ms_call_modifier] = STATE(699), - [sym_compound_statement] = STATE(179), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(925), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(361), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [45] = { + [sym__block_item] = STATE(26), + [sym_preproc_include] = STATE(26), + [sym_preproc_def] = STATE(26), + [sym_preproc_function_def] = STATE(26), + [sym_preproc_call] = STATE(26), + [sym_preproc_if] = STATE(26), + [sym_preproc_ifdef] = STATE(26), + [sym_function_definition] = STATE(26), + [sym__old_style_function_definition] = STATE(358), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1723), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(878), + [sym_ms_call_modifier] = STATE(708), + [sym_compound_statement] = STATE(170), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(926), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(311), + [sym_statement] = STATE(26), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_seh_try_statement] = STATE(170), + [sym_seh_leave_statement] = STATE(170), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(26), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(373), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(375), @@ -25494,7 +25375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(47), [anon_sym___vectorcall] = ACTIONS(47), [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(657), + [anon_sym_RBRACE] = ACTIONS(655), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), @@ -25564,79 +25445,439 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [47] = { - [sym__top_level_item] = STATE(48), - [sym_preproc_include] = STATE(48), - [sym_preproc_def] = STATE(48), - [sym_preproc_function_def] = STATE(48), - [sym_preproc_call] = STATE(48), - [sym_preproc_if] = STATE(48), - [sym_preproc_ifdef] = STATE(48), - [sym_function_definition] = STATE(48), - [sym__old_style_function_definition] = STATE(391), - [sym_declaration] = STATE(48), - [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1694), - [sym_linkage_specification] = STATE(48), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), + [46] = { + [sym__block_item] = STATE(40), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(334), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1706), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), [sym_macro_modifier] = STATE(880), - [sym_ms_call_modifier] = STATE(714), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(924), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(388), - [sym__top_level_statement] = STATE(48), - [sym_labeled_statement] = STATE(48), - [sym__top_level_expression_statement] = STATE(48), - [sym_if_statement] = STATE(48), - [sym_switch_statement] = STATE(48), - [sym_case_statement] = STATE(48), - [sym_while_statement] = STATE(48), - [sym_do_statement] = STATE(48), - [sym_for_statement] = STATE(48), - [sym_return_statement] = STATE(48), - [sym_break_statement] = STATE(48), - [sym_continue_statement] = STATE(48), - [sym_goto_statement] = STATE(48), - [sym_expression] = STATE(1663), - [sym__string] = STATE(1670), - [sym_conditional_expression] = STATE(1670), - [sym_assignment_expression] = STATE(1670), - [sym_pointer_expression] = STATE(1410), - [sym_unary_expression] = STATE(1670), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1670), - [sym_cast_expression] = STATE(1670), - [sym_sizeof_expression] = STATE(1670), - [sym_alignof_expression] = STATE(1670), - [sym_offsetof_expression] = STATE(1670), - [sym_generic_expression] = STATE(1670), - [sym_subscript_expression] = STATE(1410), - [sym_call_expression] = STATE(1410), - [sym_gnu_asm_expression] = STATE(1670), - [sym_field_expression] = STATE(1410), - [sym_compound_literal_expression] = STATE(1670), - [sym_parenthesized_expression] = STATE(1410), - [sym_char_literal] = STATE(1670), - [sym_concatenated_string] = STATE(1670), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1670), - [sym__empty_declaration] = STATE(48), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_translation_unit_repeat1] = STATE(48), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [sym_ms_call_modifier] = STATE(719), + [sym_compound_statement] = STATE(223), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(934), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(340), + [sym_statement] = STATE(40), + [sym_labeled_statement] = STATE(223), + [sym_expression_statement] = STATE(223), + [sym_if_statement] = STATE(223), + [sym_switch_statement] = STATE(223), + [sym_case_statement] = STATE(223), + [sym_while_statement] = STATE(223), + [sym_do_statement] = STATE(223), + [sym_for_statement] = STATE(223), + [sym_return_statement] = STATE(223), + [sym_break_statement] = STATE(223), + [sym_continue_statement] = STATE(223), + [sym_goto_statement] = STATE(223), + [sym_seh_try_statement] = STATE(223), + [sym_seh_leave_statement] = STATE(223), + [sym_expression] = STATE(1613), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3217), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), [aux_sym_attributed_declarator_repeat1] = STATE(440), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [sym_identifier] = ACTIONS(603), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(605), + [aux_sym_preproc_def_token1] = ACTIONS(607), + [aux_sym_preproc_if_token1] = ACTIONS(609), + [aux_sym_preproc_if_token2] = ACTIONS(657), + [aux_sym_preproc_ifdef_token1] = ACTIONS(613), + [aux_sym_preproc_ifdef_token2] = ACTIONS(613), + [sym_preproc_directive] = ACTIONS(615), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym___extension__] = ACTIONS(619), + [anon_sym_typedef] = ACTIONS(621), + [anon_sym_extern] = ACTIONS(623), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___init] = ACTIONS(45), + [anon_sym___exit] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(625), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(59), + [anon_sym_enum] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_if] = ACTIONS(627), + [anon_sym_switch] = ACTIONS(629), + [anon_sym_case] = ACTIONS(631), + [anon_sym_default] = ACTIONS(633), + [anon_sym_while] = ACTIONS(635), + [anon_sym_do] = ACTIONS(637), + [anon_sym_for] = ACTIONS(639), + [anon_sym_return] = ACTIONS(641), + [anon_sym_break] = ACTIONS(643), + [anon_sym_continue] = ACTIONS(645), + [anon_sym_goto] = ACTIONS(647), + [anon_sym___try] = ACTIONS(649), + [anon_sym___leave] = ACTIONS(651), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [47] = { + [sym__top_level_item] = STATE(47), + [sym_preproc_include] = STATE(47), + [sym_preproc_def] = STATE(47), + [sym_preproc_function_def] = STATE(47), + [sym_preproc_call] = STATE(47), + [sym_preproc_if] = STATE(47), + [sym_preproc_ifdef] = STATE(47), + [sym_function_definition] = STATE(47), + [sym__old_style_function_definition] = STATE(396), + [sym_declaration] = STATE(47), + [sym_type_definition] = STATE(47), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1711), + [sym_linkage_specification] = STATE(47), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(879), + [sym_ms_call_modifier] = STATE(718), + [sym_compound_statement] = STATE(47), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(932), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(404), + [sym__top_level_statement] = STATE(47), + [sym_labeled_statement] = STATE(47), + [sym__top_level_expression_statement] = STATE(47), + [sym_if_statement] = STATE(47), + [sym_switch_statement] = STATE(47), + [sym_case_statement] = STATE(47), + [sym_while_statement] = STATE(47), + [sym_do_statement] = STATE(47), + [sym_for_statement] = STATE(47), + [sym_return_statement] = STATE(47), + [sym_break_statement] = STATE(47), + [sym_continue_statement] = STATE(47), + [sym_goto_statement] = STATE(47), + [sym_expression] = STATE(1688), + [sym__string] = STATE(1703), + [sym_conditional_expression] = STATE(1703), + [sym_assignment_expression] = STATE(1703), + [sym_pointer_expression] = STATE(1423), + [sym_unary_expression] = STATE(1703), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1703), + [sym_cast_expression] = STATE(1703), + [sym_sizeof_expression] = STATE(1703), + [sym_alignof_expression] = STATE(1703), + [sym_offsetof_expression] = STATE(1703), + [sym_generic_expression] = STATE(1703), + [sym_subscript_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_gnu_asm_expression] = STATE(1703), + [sym_field_expression] = STATE(1423), + [sym_compound_literal_expression] = STATE(1703), + [sym_parenthesized_expression] = STATE(1423), + [sym_char_literal] = STATE(1703), + [sym_concatenated_string] = STATE(1703), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1703), + [sym__empty_declaration] = STATE(47), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_translation_unit_repeat1] = STATE(47), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(457), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [ts_builtin_sym_end] = ACTIONS(659), + [sym_identifier] = ACTIONS(661), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(664), + [aux_sym_preproc_def_token1] = ACTIONS(667), + [aux_sym_preproc_if_token1] = ACTIONS(670), + [aux_sym_preproc_ifdef_token1] = ACTIONS(673), + [aux_sym_preproc_ifdef_token2] = ACTIONS(673), + [sym_preproc_directive] = ACTIONS(676), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_TILDE] = ACTIONS(682), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(688), + [anon_sym___extension__] = ACTIONS(691), + [anon_sym_typedef] = ACTIONS(694), + [anon_sym_extern] = ACTIONS(697), + [anon_sym___attribute__] = ACTIONS(700), + [anon_sym___scanf] = ACTIONS(703), + [anon_sym___printf] = ACTIONS(703), + [anon_sym___read_mostly] = ACTIONS(706), + [anon_sym___must_hold] = ACTIONS(700), + [anon_sym___ro_after_init] = ACTIONS(706), + [anon_sym___noreturn] = ACTIONS(706), + [anon_sym___cold] = ACTIONS(706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(709), + [anon_sym___declspec] = ACTIONS(712), + [anon_sym___init] = ACTIONS(715), + [anon_sym___exit] = ACTIONS(715), + [anon_sym___cdecl] = ACTIONS(718), + [anon_sym___clrcall] = ACTIONS(718), + [anon_sym___stdcall] = ACTIONS(718), + [anon_sym___fastcall] = ACTIONS(718), + [anon_sym___thiscall] = ACTIONS(718), + [anon_sym___vectorcall] = ACTIONS(718), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_signed] = ACTIONS(724), + [anon_sym_unsigned] = ACTIONS(724), + [anon_sym_long] = ACTIONS(724), + [anon_sym_short] = ACTIONS(724), + [anon_sym_static] = ACTIONS(727), + [anon_sym_auto] = ACTIONS(727), + [anon_sym_register] = ACTIONS(727), + [anon_sym_inline] = ACTIONS(727), + [anon_sym___inline] = ACTIONS(727), + [anon_sym___inline__] = ACTIONS(727), + [anon_sym___forceinline] = ACTIONS(727), + [anon_sym_thread_local] = ACTIONS(727), + [anon_sym___thread] = ACTIONS(727), + [anon_sym_const] = ACTIONS(730), + [anon_sym_constexpr] = ACTIONS(730), + [anon_sym_volatile] = ACTIONS(730), + [anon_sym_restrict] = ACTIONS(730), + [anon_sym___restrict__] = ACTIONS(730), + [anon_sym__Atomic] = ACTIONS(730), + [anon_sym__Noreturn] = ACTIONS(730), + [anon_sym_noreturn] = ACTIONS(730), + [anon_sym_alignas] = ACTIONS(733), + [anon_sym__Alignas] = ACTIONS(733), + [sym_primitive_type] = ACTIONS(736), + [anon_sym_enum] = ACTIONS(739), + [anon_sym_struct] = ACTIONS(742), + [anon_sym_union] = ACTIONS(745), + [anon_sym_if] = ACTIONS(748), + [anon_sym_switch] = ACTIONS(751), + [anon_sym_case] = ACTIONS(754), + [anon_sym_default] = ACTIONS(757), + [anon_sym_while] = ACTIONS(760), + [anon_sym_do] = ACTIONS(763), + [anon_sym_for] = ACTIONS(766), + [anon_sym_return] = ACTIONS(769), + [anon_sym_break] = ACTIONS(772), + [anon_sym_continue] = ACTIONS(775), + [anon_sym_goto] = ACTIONS(778), + [anon_sym_DASH_DASH] = ACTIONS(781), + [anon_sym_PLUS_PLUS] = ACTIONS(781), + [anon_sym_sizeof] = ACTIONS(784), + [anon_sym___alignof__] = ACTIONS(787), + [anon_sym___alignof] = ACTIONS(787), + [anon_sym__alignof] = ACTIONS(787), + [anon_sym_alignof] = ACTIONS(787), + [anon_sym__Alignof] = ACTIONS(787), + [anon_sym_offsetof] = ACTIONS(790), + [anon_sym__Generic] = ACTIONS(793), + [anon_sym_asm] = ACTIONS(796), + [anon_sym___asm__] = ACTIONS(796), + [sym_number_literal] = ACTIONS(799), + [anon_sym_L_SQUOTE] = ACTIONS(802), + [anon_sym_u_SQUOTE] = ACTIONS(802), + [anon_sym_U_SQUOTE] = ACTIONS(802), + [anon_sym_u8_SQUOTE] = ACTIONS(802), + [anon_sym_SQUOTE] = ACTIONS(802), + [anon_sym_L_DQUOTE] = ACTIONS(805), + [anon_sym_u_DQUOTE] = ACTIONS(805), + [anon_sym_U_DQUOTE] = ACTIONS(805), + [anon_sym_u8_DQUOTE] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(805), + [sym_true] = ACTIONS(808), + [sym_false] = ACTIONS(808), + [anon_sym_NULL] = ACTIONS(811), + [anon_sym_nullptr] = ACTIONS(811), + [sym_comment] = ACTIONS(5), + }, + [48] = { + [sym__top_level_item] = STATE(47), + [sym_preproc_include] = STATE(47), + [sym_preproc_def] = STATE(47), + [sym_preproc_function_def] = STATE(47), + [sym_preproc_call] = STATE(47), + [sym_preproc_if] = STATE(47), + [sym_preproc_ifdef] = STATE(47), + [sym_function_definition] = STATE(47), + [sym__old_style_function_definition] = STATE(396), + [sym_declaration] = STATE(47), + [sym_type_definition] = STATE(47), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1711), + [sym_linkage_specification] = STATE(47), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_macro_modifier] = STATE(879), + [sym_ms_call_modifier] = STATE(718), + [sym_compound_statement] = STATE(47), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(932), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(404), + [sym__top_level_statement] = STATE(47), + [sym_labeled_statement] = STATE(47), + [sym__top_level_expression_statement] = STATE(47), + [sym_if_statement] = STATE(47), + [sym_switch_statement] = STATE(47), + [sym_case_statement] = STATE(47), + [sym_while_statement] = STATE(47), + [sym_do_statement] = STATE(47), + [sym_for_statement] = STATE(47), + [sym_return_statement] = STATE(47), + [sym_break_statement] = STATE(47), + [sym_continue_statement] = STATE(47), + [sym_goto_statement] = STATE(47), + [sym_expression] = STATE(1688), + [sym__string] = STATE(1703), + [sym_conditional_expression] = STATE(1703), + [sym_assignment_expression] = STATE(1703), + [sym_pointer_expression] = STATE(1423), + [sym_unary_expression] = STATE(1703), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1703), + [sym_cast_expression] = STATE(1703), + [sym_sizeof_expression] = STATE(1703), + [sym_alignof_expression] = STATE(1703), + [sym_offsetof_expression] = STATE(1703), + [sym_generic_expression] = STATE(1703), + [sym_subscript_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_gnu_asm_expression] = STATE(1703), + [sym_field_expression] = STATE(1423), + [sym_compound_literal_expression] = STATE(1703), + [sym_parenthesized_expression] = STATE(1423), + [sym_char_literal] = STATE(1703), + [sym_concatenated_string] = STATE(1703), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1703), + [sym__empty_declaration] = STATE(47), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym_translation_unit_repeat1] = STATE(47), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(457), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [ts_builtin_sym_end] = ACTIONS(814), [sym_identifier] = ACTIONS(9), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(11), @@ -25741,256 +25982,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [48] = { - [sym__top_level_item] = STATE(48), - [sym_preproc_include] = STATE(48), - [sym_preproc_def] = STATE(48), - [sym_preproc_function_def] = STATE(48), - [sym_preproc_call] = STATE(48), - [sym_preproc_if] = STATE(48), - [sym_preproc_ifdef] = STATE(48), - [sym_function_definition] = STATE(48), - [sym__old_style_function_definition] = STATE(391), - [sym_declaration] = STATE(48), - [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1694), - [sym_linkage_specification] = STATE(48), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_macro_modifier] = STATE(880), - [sym_ms_call_modifier] = STATE(714), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(924), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(388), - [sym__top_level_statement] = STATE(48), - [sym_labeled_statement] = STATE(48), - [sym__top_level_expression_statement] = STATE(48), - [sym_if_statement] = STATE(48), - [sym_switch_statement] = STATE(48), - [sym_case_statement] = STATE(48), - [sym_while_statement] = STATE(48), - [sym_do_statement] = STATE(48), - [sym_for_statement] = STATE(48), - [sym_return_statement] = STATE(48), - [sym_break_statement] = STATE(48), - [sym_continue_statement] = STATE(48), - [sym_goto_statement] = STATE(48), - [sym_expression] = STATE(1663), - [sym__string] = STATE(1670), - [sym_conditional_expression] = STATE(1670), - [sym_assignment_expression] = STATE(1670), - [sym_pointer_expression] = STATE(1410), - [sym_unary_expression] = STATE(1670), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1670), - [sym_cast_expression] = STATE(1670), - [sym_sizeof_expression] = STATE(1670), - [sym_alignof_expression] = STATE(1670), - [sym_offsetof_expression] = STATE(1670), - [sym_generic_expression] = STATE(1670), - [sym_subscript_expression] = STATE(1410), - [sym_call_expression] = STATE(1410), - [sym_gnu_asm_expression] = STATE(1670), - [sym_field_expression] = STATE(1410), - [sym_compound_literal_expression] = STATE(1670), - [sym_parenthesized_expression] = STATE(1410), - [sym_char_literal] = STATE(1670), - [sym_concatenated_string] = STATE(1670), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1670), - [sym__empty_declaration] = STATE(48), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym_translation_unit_repeat1] = STATE(48), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [ts_builtin_sym_end] = ACTIONS(661), - [sym_identifier] = ACTIONS(663), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(666), - [aux_sym_preproc_def_token1] = ACTIONS(669), - [aux_sym_preproc_if_token1] = ACTIONS(672), - [aux_sym_preproc_ifdef_token1] = ACTIONS(675), - [aux_sym_preproc_ifdef_token2] = ACTIONS(675), - [sym_preproc_directive] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(684), - [anon_sym_TILDE] = ACTIONS(684), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym___extension__] = ACTIONS(693), - [anon_sym_typedef] = ACTIONS(696), - [anon_sym_extern] = ACTIONS(699), - [anon_sym___attribute__] = ACTIONS(702), - [anon_sym___scanf] = ACTIONS(705), - [anon_sym___printf] = ACTIONS(705), - [anon_sym___read_mostly] = ACTIONS(708), - [anon_sym___must_hold] = ACTIONS(702), - [anon_sym___ro_after_init] = ACTIONS(708), - [anon_sym___noreturn] = ACTIONS(708), - [anon_sym___cold] = ACTIONS(708), - [anon_sym_LBRACK_LBRACK] = ACTIONS(711), - [anon_sym___declspec] = ACTIONS(714), - [anon_sym___init] = ACTIONS(717), - [anon_sym___exit] = ACTIONS(717), - [anon_sym___cdecl] = ACTIONS(720), - [anon_sym___clrcall] = ACTIONS(720), - [anon_sym___stdcall] = ACTIONS(720), - [anon_sym___fastcall] = ACTIONS(720), - [anon_sym___thiscall] = ACTIONS(720), - [anon_sym___vectorcall] = ACTIONS(720), - [anon_sym_LBRACE] = ACTIONS(723), - [anon_sym_signed] = ACTIONS(726), - [anon_sym_unsigned] = ACTIONS(726), - [anon_sym_long] = ACTIONS(726), - [anon_sym_short] = ACTIONS(726), - [anon_sym_static] = ACTIONS(729), - [anon_sym_auto] = ACTIONS(729), - [anon_sym_register] = ACTIONS(729), - [anon_sym_inline] = ACTIONS(729), - [anon_sym___inline] = ACTIONS(729), - [anon_sym___inline__] = ACTIONS(729), - [anon_sym___forceinline] = ACTIONS(729), - [anon_sym_thread_local] = ACTIONS(729), - [anon_sym___thread] = ACTIONS(729), - [anon_sym_const] = ACTIONS(732), - [anon_sym_constexpr] = ACTIONS(732), - [anon_sym_volatile] = ACTIONS(732), - [anon_sym_restrict] = ACTIONS(732), - [anon_sym___restrict__] = ACTIONS(732), - [anon_sym__Atomic] = ACTIONS(732), - [anon_sym__Noreturn] = ACTIONS(732), - [anon_sym_noreturn] = ACTIONS(732), - [anon_sym_alignas] = ACTIONS(735), - [anon_sym__Alignas] = ACTIONS(735), - [sym_primitive_type] = ACTIONS(738), - [anon_sym_enum] = ACTIONS(741), - [anon_sym_struct] = ACTIONS(744), - [anon_sym_union] = ACTIONS(747), - [anon_sym_if] = ACTIONS(750), - [anon_sym_switch] = ACTIONS(753), - [anon_sym_case] = ACTIONS(756), - [anon_sym_default] = ACTIONS(759), - [anon_sym_while] = ACTIONS(762), - [anon_sym_do] = ACTIONS(765), - [anon_sym_for] = ACTIONS(768), - [anon_sym_return] = ACTIONS(771), - [anon_sym_break] = ACTIONS(774), - [anon_sym_continue] = ACTIONS(777), - [anon_sym_goto] = ACTIONS(780), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_sizeof] = ACTIONS(786), - [anon_sym___alignof__] = ACTIONS(789), - [anon_sym___alignof] = ACTIONS(789), - [anon_sym__alignof] = ACTIONS(789), - [anon_sym_alignof] = ACTIONS(789), - [anon_sym__Alignof] = ACTIONS(789), - [anon_sym_offsetof] = ACTIONS(792), - [anon_sym__Generic] = ACTIONS(795), - [anon_sym_asm] = ACTIONS(798), - [anon_sym___asm__] = ACTIONS(798), - [sym_number_literal] = ACTIONS(801), - [anon_sym_L_SQUOTE] = ACTIONS(804), - [anon_sym_u_SQUOTE] = ACTIONS(804), - [anon_sym_U_SQUOTE] = ACTIONS(804), - [anon_sym_u8_SQUOTE] = ACTIONS(804), - [anon_sym_SQUOTE] = ACTIONS(804), - [anon_sym_L_DQUOTE] = ACTIONS(807), - [anon_sym_u_DQUOTE] = ACTIONS(807), - [anon_sym_U_DQUOTE] = ACTIONS(807), - [anon_sym_u8_DQUOTE] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [sym_true] = ACTIONS(810), - [sym_false] = ACTIONS(810), - [anon_sym_NULL] = ACTIONS(813), - [anon_sym_nullptr] = ACTIONS(813), - [sym_comment] = ACTIONS(5), - }, [49] = { - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1706), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym_seh_try_statement] = STATE(50), - [sym_seh_leave_statement] = STATE(50), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(434), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [aux_sym_case_statement_repeat1] = STATE(50), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1734), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(49), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym_seh_try_statement] = STATE(49), + [sym_seh_leave_statement] = STATE(49), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(453), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [aux_sym_case_statement_repeat1] = STATE(49), [sym_identifier] = ACTIONS(816), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(818), - [aux_sym_preproc_def_token1] = ACTIONS(818), - [aux_sym_preproc_if_token1] = ACTIONS(818), - [aux_sym_preproc_if_token2] = ACTIONS(818), - [aux_sym_preproc_ifdef_token1] = ACTIONS(818), - [aux_sym_preproc_ifdef_token2] = ACTIONS(818), - [aux_sym_preproc_else_token1] = ACTIONS(818), - [aux_sym_preproc_elif_token1] = ACTIONS(818), - [aux_sym_preproc_elifdef_token1] = ACTIONS(818), - [aux_sym_preproc_elifdef_token2] = ACTIONS(818), - [sym_preproc_directive] = ACTIONS(818), + [aux_sym_preproc_include_token1] = ACTIONS(819), + [aux_sym_preproc_def_token1] = ACTIONS(819), + [aux_sym_preproc_if_token1] = ACTIONS(819), + [aux_sym_preproc_if_token2] = ACTIONS(819), + [aux_sym_preproc_ifdef_token1] = ACTIONS(819), + [aux_sym_preproc_ifdef_token2] = ACTIONS(819), + [aux_sym_preproc_else_token1] = ACTIONS(819), + [aux_sym_preproc_elif_token1] = ACTIONS(819), + [aux_sym_preproc_elifdef_token1] = ACTIONS(819), + [aux_sym_preproc_elifdef_token2] = ACTIONS(819), + [sym_preproc_directive] = ACTIONS(819), + [anon_sym_LPAREN2] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(824), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(833), + [anon_sym___extension__] = ACTIONS(836), + [anon_sym_typedef] = ACTIONS(839), + [anon_sym_extern] = ACTIONS(842), + [anon_sym___attribute__] = ACTIONS(845), + [anon_sym___scanf] = ACTIONS(848), + [anon_sym___printf] = ACTIONS(848), + [anon_sym___read_mostly] = ACTIONS(851), + [anon_sym___must_hold] = ACTIONS(845), + [anon_sym___ro_after_init] = ACTIONS(851), + [anon_sym___noreturn] = ACTIONS(851), + [anon_sym___cold] = ACTIONS(851), + [anon_sym_LBRACK_LBRACK] = ACTIONS(854), + [anon_sym___declspec] = ACTIONS(857), + [anon_sym___init] = ACTIONS(819), + [anon_sym___exit] = ACTIONS(819), + [anon_sym___cdecl] = ACTIONS(819), + [anon_sym___clrcall] = ACTIONS(819), + [anon_sym___stdcall] = ACTIONS(819), + [anon_sym___fastcall] = ACTIONS(819), + [anon_sym___thiscall] = ACTIONS(819), + [anon_sym___vectorcall] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(860), + [anon_sym_signed] = ACTIONS(863), + [anon_sym_unsigned] = ACTIONS(863), + [anon_sym_long] = ACTIONS(863), + [anon_sym_short] = ACTIONS(863), + [anon_sym_static] = ACTIONS(842), + [anon_sym_auto] = ACTIONS(842), + [anon_sym_register] = ACTIONS(842), + [anon_sym_inline] = ACTIONS(842), + [anon_sym___inline] = ACTIONS(842), + [anon_sym___inline__] = ACTIONS(842), + [anon_sym___forceinline] = ACTIONS(842), + [anon_sym_thread_local] = ACTIONS(842), + [anon_sym___thread] = ACTIONS(842), + [anon_sym_const] = ACTIONS(866), + [anon_sym_constexpr] = ACTIONS(866), + [anon_sym_volatile] = ACTIONS(866), + [anon_sym_restrict] = ACTIONS(866), + [anon_sym___restrict__] = ACTIONS(866), + [anon_sym__Atomic] = ACTIONS(866), + [anon_sym__Noreturn] = ACTIONS(866), + [anon_sym_noreturn] = ACTIONS(866), + [anon_sym_alignas] = ACTIONS(869), + [anon_sym__Alignas] = ACTIONS(869), + [sym_primitive_type] = ACTIONS(872), + [anon_sym_enum] = ACTIONS(875), + [anon_sym_struct] = ACTIONS(878), + [anon_sym_union] = ACTIONS(881), + [anon_sym_if] = ACTIONS(884), + [anon_sym_else] = ACTIONS(819), + [anon_sym_switch] = ACTIONS(887), + [anon_sym_case] = ACTIONS(819), + [anon_sym_default] = ACTIONS(819), + [anon_sym_while] = ACTIONS(890), + [anon_sym_do] = ACTIONS(893), + [anon_sym_for] = ACTIONS(896), + [anon_sym_return] = ACTIONS(899), + [anon_sym_break] = ACTIONS(902), + [anon_sym_continue] = ACTIONS(905), + [anon_sym_goto] = ACTIONS(908), + [anon_sym___try] = ACTIONS(911), + [anon_sym___leave] = ACTIONS(914), + [anon_sym_DASH_DASH] = ACTIONS(917), + [anon_sym_PLUS_PLUS] = ACTIONS(917), + [anon_sym_sizeof] = ACTIONS(920), + [anon_sym___alignof__] = ACTIONS(923), + [anon_sym___alignof] = ACTIONS(923), + [anon_sym__alignof] = ACTIONS(923), + [anon_sym_alignof] = ACTIONS(923), + [anon_sym__Alignof] = ACTIONS(923), + [anon_sym_offsetof] = ACTIONS(926), + [anon_sym__Generic] = ACTIONS(929), + [anon_sym_asm] = ACTIONS(932), + [anon_sym___asm__] = ACTIONS(932), + [sym_number_literal] = ACTIONS(935), + [anon_sym_L_SQUOTE] = ACTIONS(938), + [anon_sym_u_SQUOTE] = ACTIONS(938), + [anon_sym_U_SQUOTE] = ACTIONS(938), + [anon_sym_u8_SQUOTE] = ACTIONS(938), + [anon_sym_SQUOTE] = ACTIONS(938), + [anon_sym_L_DQUOTE] = ACTIONS(941), + [anon_sym_u_DQUOTE] = ACTIONS(941), + [anon_sym_U_DQUOTE] = ACTIONS(941), + [anon_sym_u8_DQUOTE] = ACTIONS(941), + [anon_sym_DQUOTE] = ACTIONS(941), + [sym_true] = ACTIONS(944), + [sym_false] = ACTIONS(944), + [anon_sym_NULL] = ACTIONS(947), + [anon_sym_nullptr] = ACTIONS(947), + [sym_comment] = ACTIONS(5), + }, + [50] = { + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1734), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(49), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym_seh_try_statement] = STATE(49), + [sym_seh_leave_statement] = STATE(49), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(453), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [aux_sym_case_statement_repeat1] = STATE(49), + [sym_identifier] = ACTIONS(950), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(952), + [aux_sym_preproc_def_token1] = ACTIONS(952), + [aux_sym_preproc_if_token1] = ACTIONS(952), + [aux_sym_preproc_if_token2] = ACTIONS(952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(952), + [aux_sym_preproc_else_token1] = ACTIONS(952), + [aux_sym_preproc_elif_token1] = ACTIONS(952), + [aux_sym_preproc_elifdef_token1] = ACTIONS(952), + [aux_sym_preproc_elifdef_token2] = ACTIONS(952), + [sym_preproc_directive] = ACTIONS(952), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(23), @@ -26012,14 +26249,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___cold] = ACTIONS(39), [anon_sym_LBRACK_LBRACK] = ACTIONS(41), [anon_sym___declspec] = ACTIONS(43), - [anon_sym___init] = ACTIONS(818), - [anon_sym___exit] = ACTIONS(818), - [anon_sym___cdecl] = ACTIONS(818), - [anon_sym___clrcall] = ACTIONS(818), - [anon_sym___stdcall] = ACTIONS(818), - [anon_sym___fastcall] = ACTIONS(818), - [anon_sym___thiscall] = ACTIONS(818), - [anon_sym___vectorcall] = ACTIONS(818), + [anon_sym___init] = ACTIONS(952), + [anon_sym___exit] = ACTIONS(952), + [anon_sym___cdecl] = ACTIONS(952), + [anon_sym___clrcall] = ACTIONS(952), + [anon_sym___stdcall] = ACTIONS(952), + [anon_sym___fastcall] = ACTIONS(952), + [anon_sym___thiscall] = ACTIONS(952), + [anon_sym___vectorcall] = ACTIONS(952), [anon_sym_LBRACE] = ACTIONS(139), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), @@ -26049,10 +26286,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(63), [anon_sym_union] = ACTIONS(65), [anon_sym_if] = ACTIONS(141), - [anon_sym_else] = ACTIONS(818), + [anon_sym_else] = ACTIONS(952), [anon_sym_switch] = ACTIONS(143), - [anon_sym_case] = ACTIONS(818), - [anon_sym_default] = ACTIONS(818), + [anon_sym_case] = ACTIONS(952), + [anon_sym_default] = ACTIONS(952), [anon_sym_while] = ACTIONS(149), [anon_sym_do] = ACTIONS(151), [anon_sym_for] = ACTIONS(153), @@ -26091,240 +26328,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [50] = { - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1706), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym_seh_try_statement] = STATE(50), - [sym_seh_leave_statement] = STATE(50), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(434), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [aux_sym_case_statement_repeat1] = STATE(50), - [sym_identifier] = ACTIONS(820), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(823), - [aux_sym_preproc_def_token1] = ACTIONS(823), - [aux_sym_preproc_if_token1] = ACTIONS(823), - [aux_sym_preproc_if_token2] = ACTIONS(823), - [aux_sym_preproc_ifdef_token1] = ACTIONS(823), - [aux_sym_preproc_ifdef_token2] = ACTIONS(823), - [aux_sym_preproc_else_token1] = ACTIONS(823), - [aux_sym_preproc_elif_token1] = ACTIONS(823), - [aux_sym_preproc_elifdef_token1] = ACTIONS(823), - [aux_sym_preproc_elifdef_token2] = ACTIONS(823), - [sym_preproc_directive] = ACTIONS(823), - [anon_sym_LPAREN2] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(828), - [anon_sym_TILDE] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_STAR] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(834), - [anon_sym_SEMI] = ACTIONS(837), - [anon_sym___extension__] = ACTIONS(840), - [anon_sym_typedef] = ACTIONS(843), - [anon_sym_extern] = ACTIONS(846), - [anon_sym___attribute__] = ACTIONS(849), - [anon_sym___scanf] = ACTIONS(852), - [anon_sym___printf] = ACTIONS(852), - [anon_sym___read_mostly] = ACTIONS(855), - [anon_sym___must_hold] = ACTIONS(849), - [anon_sym___ro_after_init] = ACTIONS(855), - [anon_sym___noreturn] = ACTIONS(855), - [anon_sym___cold] = ACTIONS(855), - [anon_sym_LBRACK_LBRACK] = ACTIONS(858), - [anon_sym___declspec] = ACTIONS(861), - [anon_sym___init] = ACTIONS(823), - [anon_sym___exit] = ACTIONS(823), - [anon_sym___cdecl] = ACTIONS(823), - [anon_sym___clrcall] = ACTIONS(823), - [anon_sym___stdcall] = ACTIONS(823), - [anon_sym___fastcall] = ACTIONS(823), - [anon_sym___thiscall] = ACTIONS(823), - [anon_sym___vectorcall] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(864), - [anon_sym_signed] = ACTIONS(867), - [anon_sym_unsigned] = ACTIONS(867), - [anon_sym_long] = ACTIONS(867), - [anon_sym_short] = ACTIONS(867), - [anon_sym_static] = ACTIONS(846), - [anon_sym_auto] = ACTIONS(846), - [anon_sym_register] = ACTIONS(846), - [anon_sym_inline] = ACTIONS(846), - [anon_sym___inline] = ACTIONS(846), - [anon_sym___inline__] = ACTIONS(846), - [anon_sym___forceinline] = ACTIONS(846), - [anon_sym_thread_local] = ACTIONS(846), - [anon_sym___thread] = ACTIONS(846), - [anon_sym_const] = ACTIONS(870), - [anon_sym_constexpr] = ACTIONS(870), - [anon_sym_volatile] = ACTIONS(870), - [anon_sym_restrict] = ACTIONS(870), - [anon_sym___restrict__] = ACTIONS(870), - [anon_sym__Atomic] = ACTIONS(870), - [anon_sym__Noreturn] = ACTIONS(870), - [anon_sym_noreturn] = ACTIONS(870), - [anon_sym_alignas] = ACTIONS(873), - [anon_sym__Alignas] = ACTIONS(873), - [sym_primitive_type] = ACTIONS(876), - [anon_sym_enum] = ACTIONS(879), - [anon_sym_struct] = ACTIONS(882), - [anon_sym_union] = ACTIONS(885), - [anon_sym_if] = ACTIONS(888), - [anon_sym_else] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(891), - [anon_sym_case] = ACTIONS(823), - [anon_sym_default] = ACTIONS(823), - [anon_sym_while] = ACTIONS(894), - [anon_sym_do] = ACTIONS(897), - [anon_sym_for] = ACTIONS(900), - [anon_sym_return] = ACTIONS(903), - [anon_sym_break] = ACTIONS(906), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_goto] = ACTIONS(912), - [anon_sym___try] = ACTIONS(915), - [anon_sym___leave] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(921), - [anon_sym_PLUS_PLUS] = ACTIONS(921), - [anon_sym_sizeof] = ACTIONS(924), - [anon_sym___alignof__] = ACTIONS(927), - [anon_sym___alignof] = ACTIONS(927), - [anon_sym__alignof] = ACTIONS(927), - [anon_sym_alignof] = ACTIONS(927), - [anon_sym__Alignof] = ACTIONS(927), - [anon_sym_offsetof] = ACTIONS(930), - [anon_sym__Generic] = ACTIONS(933), - [anon_sym_asm] = ACTIONS(936), - [anon_sym___asm__] = ACTIONS(936), - [sym_number_literal] = ACTIONS(939), - [anon_sym_L_SQUOTE] = ACTIONS(942), - [anon_sym_u_SQUOTE] = ACTIONS(942), - [anon_sym_U_SQUOTE] = ACTIONS(942), - [anon_sym_u8_SQUOTE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_L_DQUOTE] = ACTIONS(945), - [anon_sym_u_DQUOTE] = ACTIONS(945), - [anon_sym_U_DQUOTE] = ACTIONS(945), - [anon_sym_u8_DQUOTE] = ACTIONS(945), - [anon_sym_DQUOTE] = ACTIONS(945), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [anon_sym_NULL] = ACTIONS(951), - [anon_sym_nullptr] = ACTIONS(951), - [sym_comment] = ACTIONS(5), - }, [51] = { - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1706), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(49), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym_seh_try_statement] = STATE(49), - [sym_seh_leave_statement] = STATE(49), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(434), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [aux_sym_case_statement_repeat1] = STATE(49), - [sym_identifier] = ACTIONS(816), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1734), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym_seh_try_statement] = STATE(52), + [sym_seh_leave_statement] = STATE(52), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(453), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [aux_sym_case_statement_repeat1] = STATE(52), + [sym_identifier] = ACTIONS(950), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(954), [aux_sym_preproc_def_token1] = ACTIONS(954), @@ -26438,66 +26502,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), }, [52] = { - [sym_declaration] = STATE(53), - [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1706), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(53), - [sym_labeled_statement] = STATE(53), - [sym_expression_statement] = STATE(53), - [sym_if_statement] = STATE(53), - [sym_switch_statement] = STATE(53), - [sym_while_statement] = STATE(53), - [sym_do_statement] = STATE(53), - [sym_for_statement] = STATE(53), - [sym_return_statement] = STATE(53), - [sym_break_statement] = STATE(53), - [sym_continue_statement] = STATE(53), - [sym_goto_statement] = STATE(53), - [sym_seh_try_statement] = STATE(53), - [sym_seh_leave_statement] = STATE(53), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(434), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [aux_sym_case_statement_repeat1] = STATE(53), - [sym_identifier] = ACTIONS(816), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1734), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(49), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym_seh_try_statement] = STATE(49), + [sym_seh_leave_statement] = STATE(49), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(453), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [aux_sym_case_statement_repeat1] = STATE(49), + [sym_identifier] = ACTIONS(950), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(956), [aux_sym_preproc_def_token1] = ACTIONS(956), @@ -26613,20 +26677,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [53] = { [sym_declaration] = STATE(50), [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1706), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1734), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), [sym_attributed_statement] = STATE(50), [sym_labeled_statement] = STATE(50), [sym_expression_statement] = STATE(50), @@ -26641,36 +26705,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(50), [sym_seh_try_statement] = STATE(50), [sym_seh_leave_statement] = STATE(50), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(434), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(453), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [aux_sym_case_statement_repeat1] = STATE(50), - [sym_identifier] = ACTIONS(816), + [sym_identifier] = ACTIONS(950), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(958), [aux_sym_preproc_def_token1] = ACTIONS(958), @@ -26784,22 +26848,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), }, [54] = { + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1737), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_compound_statement] = STATE(60), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(60), + [sym_labeled_statement] = STATE(60), + [sym_expression_statement] = STATE(60), + [sym_if_statement] = STATE(60), + [sym_switch_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_do_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_return_statement] = STATE(60), + [sym_break_statement] = STATE(60), + [sym_continue_statement] = STATE(60), + [sym_goto_statement] = STATE(60), + [sym_seh_try_statement] = STATE(60), + [sym_seh_leave_statement] = STATE(60), + [sym_expression] = STATE(1613), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3217), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(440), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [aux_sym_case_statement_repeat1] = STATE(60), + [sym_identifier] = ACTIONS(960), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(958), + [aux_sym_preproc_def_token1] = ACTIONS(958), + [aux_sym_preproc_if_token1] = ACTIONS(958), + [aux_sym_preproc_if_token2] = ACTIONS(958), + [aux_sym_preproc_ifdef_token1] = ACTIONS(958), + [aux_sym_preproc_ifdef_token2] = ACTIONS(958), + [sym_preproc_directive] = ACTIONS(958), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym___extension__] = ACTIONS(619), + [anon_sym_typedef] = ACTIONS(621), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___init] = ACTIONS(958), + [anon_sym___exit] = ACTIONS(958), + [anon_sym___cdecl] = ACTIONS(958), + [anon_sym___clrcall] = ACTIONS(958), + [anon_sym___stdcall] = ACTIONS(958), + [anon_sym___fastcall] = ACTIONS(958), + [anon_sym___thiscall] = ACTIONS(958), + [anon_sym___vectorcall] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(625), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(59), + [anon_sym_enum] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_if] = ACTIONS(627), + [anon_sym_else] = ACTIONS(958), + [anon_sym_switch] = ACTIONS(629), + [anon_sym_case] = ACTIONS(958), + [anon_sym_default] = ACTIONS(958), + [anon_sym_while] = ACTIONS(635), + [anon_sym_do] = ACTIONS(637), + [anon_sym_for] = ACTIONS(639), + [anon_sym_return] = ACTIONS(641), + [anon_sym_break] = ACTIONS(643), + [anon_sym_continue] = ACTIONS(645), + [anon_sym_goto] = ACTIONS(647), + [anon_sym___try] = ACTIONS(649), + [anon_sym___leave] = ACTIONS(651), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [55] = { [sym_declaration] = STATE(58), [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1708), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1730), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), [sym_attributed_statement] = STATE(58), [sym_labeled_statement] = STATE(58), [sym_expression_statement] = STATE(58), @@ -26814,44 +27047,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(58), [sym_seh_try_statement] = STATE(58), [sym_seh_leave_statement] = STATE(58), - [sym_expression] = STATE(1603), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3235), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [sym_expression] = STATE(1615), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3118), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(457), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [aux_sym_case_statement_repeat1] = STATE(58), - [ts_builtin_sym_end] = ACTIONS(960), - [sym_identifier] = ACTIONS(962), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(958), - [aux_sym_preproc_def_token1] = ACTIONS(958), - [aux_sym_preproc_if_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(958), - [sym_preproc_directive] = ACTIONS(958), + [ts_builtin_sym_end] = ACTIONS(962), + [sym_identifier] = ACTIONS(964), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(952), + [aux_sym_preproc_def_token1] = ACTIONS(952), + [aux_sym_preproc_if_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(952), + [sym_preproc_directive] = ACTIONS(952), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(23), @@ -26859,7 +27092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(964), + [anon_sym_SEMI] = ACTIONS(966), [anon_sym___extension__] = ACTIONS(29), [anon_sym_typedef] = ACTIONS(31), [anon_sym_extern] = ACTIONS(53), @@ -26873,14 +27106,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___cold] = ACTIONS(39), [anon_sym_LBRACK_LBRACK] = ACTIONS(41), [anon_sym___declspec] = ACTIONS(43), - [anon_sym___init] = ACTIONS(958), - [anon_sym___exit] = ACTIONS(958), - [anon_sym___cdecl] = ACTIONS(958), - [anon_sym___clrcall] = ACTIONS(958), - [anon_sym___stdcall] = ACTIONS(958), - [anon_sym___fastcall] = ACTIONS(958), - [anon_sym___thiscall] = ACTIONS(958), - [anon_sym___vectorcall] = ACTIONS(958), + [anon_sym___init] = ACTIONS(952), + [anon_sym___exit] = ACTIONS(952), + [anon_sym___cdecl] = ACTIONS(952), + [anon_sym___clrcall] = ACTIONS(952), + [anon_sym___stdcall] = ACTIONS(952), + [anon_sym___fastcall] = ACTIONS(952), + [anon_sym___thiscall] = ACTIONS(952), + [anon_sym___vectorcall] = ACTIONS(952), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), @@ -26910,10 +27143,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(63), [anon_sym_union] = ACTIONS(65), [anon_sym_if] = ACTIONS(67), - [anon_sym_else] = ACTIONS(958), + [anon_sym_else] = ACTIONS(952), [anon_sym_switch] = ACTIONS(69), - [anon_sym_case] = ACTIONS(958), - [anon_sym_default] = ACTIONS(958), + [anon_sym_case] = ACTIONS(952), + [anon_sym_default] = ACTIONS(952), [anon_sym_while] = ACTIONS(75), [anon_sym_do] = ACTIONS(77), [anon_sym_for] = ACTIONS(79), @@ -26921,8 +27154,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(83), [anon_sym_continue] = ACTIONS(85), [anon_sym_goto] = ACTIONS(87), - [anon_sym___try] = ACTIONS(966), - [anon_sym___leave] = ACTIONS(968), + [anon_sym___try] = ACTIONS(968), + [anon_sym___leave] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -26952,236 +27185,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [55] = { - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1715), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(55), - [sym_labeled_statement] = STATE(55), - [sym_expression_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_switch_statement] = STATE(55), - [sym_while_statement] = STATE(55), - [sym_do_statement] = STATE(55), - [sym_for_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_break_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_goto_statement] = STATE(55), - [sym_seh_try_statement] = STATE(55), - [sym_seh_leave_statement] = STATE(55), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [aux_sym_case_statement_repeat1] = STATE(55), - [sym_identifier] = ACTIONS(970), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(823), - [aux_sym_preproc_def_token1] = ACTIONS(823), - [aux_sym_preproc_if_token1] = ACTIONS(823), - [aux_sym_preproc_ifdef_token1] = ACTIONS(823), - [aux_sym_preproc_ifdef_token2] = ACTIONS(823), - [sym_preproc_directive] = ACTIONS(823), - [anon_sym_LPAREN2] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(828), - [anon_sym_TILDE] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_STAR] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(834), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym___extension__] = ACTIONS(976), - [anon_sym_typedef] = ACTIONS(979), - [anon_sym_extern] = ACTIONS(846), - [anon_sym___attribute__] = ACTIONS(849), - [anon_sym___scanf] = ACTIONS(852), - [anon_sym___printf] = ACTIONS(852), - [anon_sym___read_mostly] = ACTIONS(855), - [anon_sym___must_hold] = ACTIONS(849), - [anon_sym___ro_after_init] = ACTIONS(855), - [anon_sym___noreturn] = ACTIONS(855), - [anon_sym___cold] = ACTIONS(855), - [anon_sym_LBRACK_LBRACK] = ACTIONS(858), - [anon_sym___declspec] = ACTIONS(861), - [anon_sym___init] = ACTIONS(823), - [anon_sym___exit] = ACTIONS(823), - [anon_sym___cdecl] = ACTIONS(823), - [anon_sym___clrcall] = ACTIONS(823), - [anon_sym___stdcall] = ACTIONS(823), - [anon_sym___fastcall] = ACTIONS(823), - [anon_sym___thiscall] = ACTIONS(823), - [anon_sym___vectorcall] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(985), - [anon_sym_signed] = ACTIONS(867), - [anon_sym_unsigned] = ACTIONS(867), - [anon_sym_long] = ACTIONS(867), - [anon_sym_short] = ACTIONS(867), - [anon_sym_static] = ACTIONS(846), - [anon_sym_auto] = ACTIONS(846), - [anon_sym_register] = ACTIONS(846), - [anon_sym_inline] = ACTIONS(846), - [anon_sym___inline] = ACTIONS(846), - [anon_sym___inline__] = ACTIONS(846), - [anon_sym___forceinline] = ACTIONS(846), - [anon_sym_thread_local] = ACTIONS(846), - [anon_sym___thread] = ACTIONS(846), - [anon_sym_const] = ACTIONS(870), - [anon_sym_constexpr] = ACTIONS(870), - [anon_sym_volatile] = ACTIONS(870), - [anon_sym_restrict] = ACTIONS(870), - [anon_sym___restrict__] = ACTIONS(870), - [anon_sym__Atomic] = ACTIONS(870), - [anon_sym__Noreturn] = ACTIONS(870), - [anon_sym_noreturn] = ACTIONS(870), - [anon_sym_alignas] = ACTIONS(873), - [anon_sym__Alignas] = ACTIONS(873), - [sym_primitive_type] = ACTIONS(876), - [anon_sym_enum] = ACTIONS(879), - [anon_sym_struct] = ACTIONS(882), - [anon_sym_union] = ACTIONS(885), - [anon_sym_if] = ACTIONS(987), - [anon_sym_else] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(990), - [anon_sym_case] = ACTIONS(823), - [anon_sym_default] = ACTIONS(823), - [anon_sym_while] = ACTIONS(993), - [anon_sym_do] = ACTIONS(996), - [anon_sym_for] = ACTIONS(999), - [anon_sym_return] = ACTIONS(1002), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_goto] = ACTIONS(1011), - [anon_sym___try] = ACTIONS(1014), - [anon_sym___leave] = ACTIONS(1017), - [anon_sym_DASH_DASH] = ACTIONS(921), - [anon_sym_PLUS_PLUS] = ACTIONS(921), - [anon_sym_sizeof] = ACTIONS(924), - [anon_sym___alignof__] = ACTIONS(927), - [anon_sym___alignof] = ACTIONS(927), - [anon_sym__alignof] = ACTIONS(927), - [anon_sym_alignof] = ACTIONS(927), - [anon_sym__Alignof] = ACTIONS(927), - [anon_sym_offsetof] = ACTIONS(930), - [anon_sym__Generic] = ACTIONS(933), - [anon_sym_asm] = ACTIONS(936), - [anon_sym___asm__] = ACTIONS(936), - [sym_number_literal] = ACTIONS(939), - [anon_sym_L_SQUOTE] = ACTIONS(942), - [anon_sym_u_SQUOTE] = ACTIONS(942), - [anon_sym_U_SQUOTE] = ACTIONS(942), - [anon_sym_u8_SQUOTE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_L_DQUOTE] = ACTIONS(945), - [anon_sym_u_DQUOTE] = ACTIONS(945), - [anon_sym_U_DQUOTE] = ACTIONS(945), - [anon_sym_u8_DQUOTE] = ACTIONS(945), - [anon_sym_DQUOTE] = ACTIONS(945), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [anon_sym_NULL] = ACTIONS(951), - [anon_sym_nullptr] = ACTIONS(951), - [sym_comment] = ACTIONS(5), - }, [56] = { - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1710), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(1588), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3193), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(429), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [aux_sym_case_statement_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(1020), + [sym_declaration] = STATE(65), + [sym_type_definition] = STATE(65), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1737), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_compound_statement] = STATE(65), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(65), + [sym_labeled_statement] = STATE(65), + [sym_expression_statement] = STATE(65), + [sym_if_statement] = STATE(65), + [sym_switch_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_do_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_return_statement] = STATE(65), + [sym_break_statement] = STATE(65), + [sym_continue_statement] = STATE(65), + [sym_goto_statement] = STATE(65), + [sym_seh_try_statement] = STATE(65), + [sym_seh_leave_statement] = STATE(65), + [sym_expression] = STATE(1613), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3217), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(440), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [aux_sym_case_statement_repeat1] = STATE(65), + [sym_identifier] = ACTIONS(960), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(956), [aux_sym_preproc_def_token1] = ACTIONS(956), @@ -27197,9 +27261,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(455), - [anon_sym___extension__] = ACTIONS(457), - [anon_sym_typedef] = ACTIONS(459), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym___extension__] = ACTIONS(619), + [anon_sym_typedef] = ACTIONS(621), [anon_sym_extern] = ACTIONS(53), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___scanf] = ACTIONS(37), @@ -27219,7 +27283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(956), [anon_sym___thiscall] = ACTIONS(956), [anon_sym___vectorcall] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(625), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), @@ -27247,20 +27311,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(61), [anon_sym_struct] = ACTIONS(63), [anon_sym_union] = ACTIONS(65), - [anon_sym_if] = ACTIONS(465), + [anon_sym_if] = ACTIONS(627), [anon_sym_else] = ACTIONS(956), - [anon_sym_switch] = ACTIONS(467), + [anon_sym_switch] = ACTIONS(629), [anon_sym_case] = ACTIONS(956), [anon_sym_default] = ACTIONS(956), - [anon_sym_while] = ACTIONS(473), - [anon_sym_do] = ACTIONS(475), - [anon_sym_for] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_break] = ACTIONS(481), - [anon_sym_continue] = ACTIONS(483), - [anon_sym_goto] = ACTIONS(485), - [anon_sym___try] = ACTIONS(487), - [anon_sym___leave] = ACTIONS(489), + [anon_sym_while] = ACTIONS(635), + [anon_sym_do] = ACTIONS(637), + [anon_sym_for] = ACTIONS(639), + [anon_sym_return] = ACTIONS(641), + [anon_sym_break] = ACTIONS(643), + [anon_sym_continue] = ACTIONS(645), + [anon_sym_goto] = ACTIONS(647), + [anon_sym___try] = ACTIONS(649), + [anon_sym___leave] = ACTIONS(651), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -27291,66 +27355,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), }, [57] = { - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1710), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(59), - [sym_labeled_statement] = STATE(59), - [sym_expression_statement] = STATE(59), - [sym_if_statement] = STATE(59), - [sym_switch_statement] = STATE(59), - [sym_while_statement] = STATE(59), - [sym_do_statement] = STATE(59), - [sym_for_statement] = STATE(59), - [sym_return_statement] = STATE(59), - [sym_break_statement] = STATE(59), - [sym_continue_statement] = STATE(59), - [sym_goto_statement] = STATE(59), - [sym_seh_try_statement] = STATE(59), - [sym_seh_leave_statement] = STATE(59), - [sym_expression] = STATE(1588), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3193), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(429), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [aux_sym_case_statement_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(1020), + [sym_declaration] = STATE(56), + [sym_type_definition] = STATE(56), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1737), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_compound_statement] = STATE(56), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(56), + [sym_labeled_statement] = STATE(56), + [sym_expression_statement] = STATE(56), + [sym_if_statement] = STATE(56), + [sym_switch_statement] = STATE(56), + [sym_while_statement] = STATE(56), + [sym_do_statement] = STATE(56), + [sym_for_statement] = STATE(56), + [sym_return_statement] = STATE(56), + [sym_break_statement] = STATE(56), + [sym_continue_statement] = STATE(56), + [sym_goto_statement] = STATE(56), + [sym_seh_try_statement] = STATE(56), + [sym_seh_leave_statement] = STATE(56), + [sym_expression] = STATE(1613), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3217), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(440), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [aux_sym_case_statement_repeat1] = STATE(56), + [sym_identifier] = ACTIONS(960), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(954), [aux_sym_preproc_def_token1] = ACTIONS(954), @@ -27366,9 +27430,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(455), - [anon_sym___extension__] = ACTIONS(457), - [anon_sym_typedef] = ACTIONS(459), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym___extension__] = ACTIONS(619), + [anon_sym_typedef] = ACTIONS(621), [anon_sym_extern] = ACTIONS(53), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___scanf] = ACTIONS(37), @@ -27388,7 +27452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(954), [anon_sym___thiscall] = ACTIONS(954), [anon_sym___vectorcall] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(625), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), @@ -27416,20 +27480,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(61), [anon_sym_struct] = ACTIONS(63), [anon_sym_union] = ACTIONS(65), - [anon_sym_if] = ACTIONS(465), + [anon_sym_if] = ACTIONS(627), [anon_sym_else] = ACTIONS(954), - [anon_sym_switch] = ACTIONS(467), + [anon_sym_switch] = ACTIONS(629), [anon_sym_case] = ACTIONS(954), [anon_sym_default] = ACTIONS(954), - [anon_sym_while] = ACTIONS(473), - [anon_sym_do] = ACTIONS(475), - [anon_sym_for] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_break] = ACTIONS(481), - [anon_sym_continue] = ACTIONS(483), - [anon_sym_goto] = ACTIONS(485), - [anon_sym___try] = ACTIONS(487), - [anon_sym___leave] = ACTIONS(489), + [anon_sym_while] = ACTIONS(635), + [anon_sym_do] = ACTIONS(637), + [anon_sym_for] = ACTIONS(639), + [anon_sym_return] = ACTIONS(641), + [anon_sym_break] = ACTIONS(643), + [anon_sym_continue] = ACTIONS(645), + [anon_sym_goto] = ACTIONS(647), + [anon_sym___try] = ACTIONS(649), + [anon_sym___leave] = ACTIONS(651), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -27462,20 +27526,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [58] = { [sym_declaration] = STATE(58), [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1708), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1730), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), [sym_attributed_statement] = STATE(58), [sym_labeled_statement] = STATE(58), [sym_expression_statement] = STATE(58), @@ -27490,161 +27554,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(58), [sym_seh_try_statement] = STATE(58), [sym_seh_leave_statement] = STATE(58), - [sym_expression] = STATE(1603), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3235), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [sym_expression] = STATE(1615), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3118), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(457), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [aux_sym_case_statement_repeat1] = STATE(58), - [ts_builtin_sym_end] = ACTIONS(985), - [sym_identifier] = ACTIONS(1022), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(823), - [aux_sym_preproc_def_token1] = ACTIONS(823), - [aux_sym_preproc_if_token1] = ACTIONS(823), - [aux_sym_preproc_ifdef_token1] = ACTIONS(823), - [aux_sym_preproc_ifdef_token2] = ACTIONS(823), - [sym_preproc_directive] = ACTIONS(823), - [anon_sym_LPAREN2] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(828), - [anon_sym_TILDE] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_STAR] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(834), - [anon_sym_SEMI] = ACTIONS(1025), - [anon_sym___extension__] = ACTIONS(1028), - [anon_sym_typedef] = ACTIONS(1031), - [anon_sym_extern] = ACTIONS(846), - [anon_sym___attribute__] = ACTIONS(849), - [anon_sym___scanf] = ACTIONS(852), - [anon_sym___printf] = ACTIONS(852), - [anon_sym___read_mostly] = ACTIONS(855), - [anon_sym___must_hold] = ACTIONS(849), - [anon_sym___ro_after_init] = ACTIONS(855), - [anon_sym___noreturn] = ACTIONS(855), - [anon_sym___cold] = ACTIONS(855), - [anon_sym_LBRACK_LBRACK] = ACTIONS(858), - [anon_sym___declspec] = ACTIONS(861), - [anon_sym___init] = ACTIONS(823), - [anon_sym___exit] = ACTIONS(823), - [anon_sym___cdecl] = ACTIONS(823), - [anon_sym___clrcall] = ACTIONS(823), - [anon_sym___stdcall] = ACTIONS(823), - [anon_sym___fastcall] = ACTIONS(823), - [anon_sym___thiscall] = ACTIONS(823), - [anon_sym___vectorcall] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(1034), - [anon_sym_signed] = ACTIONS(867), - [anon_sym_unsigned] = ACTIONS(867), - [anon_sym_long] = ACTIONS(867), - [anon_sym_short] = ACTIONS(867), - [anon_sym_static] = ACTIONS(846), - [anon_sym_auto] = ACTIONS(846), - [anon_sym_register] = ACTIONS(846), - [anon_sym_inline] = ACTIONS(846), - [anon_sym___inline] = ACTIONS(846), - [anon_sym___inline__] = ACTIONS(846), - [anon_sym___forceinline] = ACTIONS(846), - [anon_sym_thread_local] = ACTIONS(846), - [anon_sym___thread] = ACTIONS(846), - [anon_sym_const] = ACTIONS(870), - [anon_sym_constexpr] = ACTIONS(870), - [anon_sym_volatile] = ACTIONS(870), - [anon_sym_restrict] = ACTIONS(870), - [anon_sym___restrict__] = ACTIONS(870), - [anon_sym__Atomic] = ACTIONS(870), - [anon_sym__Noreturn] = ACTIONS(870), - [anon_sym_noreturn] = ACTIONS(870), - [anon_sym_alignas] = ACTIONS(873), - [anon_sym__Alignas] = ACTIONS(873), - [sym_primitive_type] = ACTIONS(876), - [anon_sym_enum] = ACTIONS(879), - [anon_sym_struct] = ACTIONS(882), - [anon_sym_union] = ACTIONS(885), - [anon_sym_if] = ACTIONS(1037), - [anon_sym_else] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(823), - [anon_sym_default] = ACTIONS(823), - [anon_sym_while] = ACTIONS(1043), - [anon_sym_do] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1055), - [anon_sym_continue] = ACTIONS(1058), - [anon_sym_goto] = ACTIONS(1061), - [anon_sym___try] = ACTIONS(1064), - [anon_sym___leave] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(921), - [anon_sym_PLUS_PLUS] = ACTIONS(921), - [anon_sym_sizeof] = ACTIONS(924), - [anon_sym___alignof__] = ACTIONS(927), - [anon_sym___alignof] = ACTIONS(927), - [anon_sym__alignof] = ACTIONS(927), - [anon_sym_alignof] = ACTIONS(927), - [anon_sym__Alignof] = ACTIONS(927), - [anon_sym_offsetof] = ACTIONS(930), - [anon_sym__Generic] = ACTIONS(933), - [anon_sym_asm] = ACTIONS(936), - [anon_sym___asm__] = ACTIONS(936), - [sym_number_literal] = ACTIONS(939), - [anon_sym_L_SQUOTE] = ACTIONS(942), - [anon_sym_u_SQUOTE] = ACTIONS(942), - [anon_sym_U_SQUOTE] = ACTIONS(942), - [anon_sym_u8_SQUOTE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_L_DQUOTE] = ACTIONS(945), - [anon_sym_u_DQUOTE] = ACTIONS(945), - [anon_sym_U_DQUOTE] = ACTIONS(945), - [anon_sym_u8_DQUOTE] = ACTIONS(945), - [anon_sym_DQUOTE] = ACTIONS(945), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [anon_sym_NULL] = ACTIONS(951), - [anon_sym_nullptr] = ACTIONS(951), + [ts_builtin_sym_end] = ACTIONS(972), + [sym_identifier] = ACTIONS(974), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(819), + [aux_sym_preproc_def_token1] = ACTIONS(819), + [aux_sym_preproc_if_token1] = ACTIONS(819), + [aux_sym_preproc_ifdef_token1] = ACTIONS(819), + [aux_sym_preproc_ifdef_token2] = ACTIONS(819), + [sym_preproc_directive] = ACTIONS(819), + [anon_sym_LPAREN2] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(824), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(977), + [anon_sym___extension__] = ACTIONS(980), + [anon_sym_typedef] = ACTIONS(983), + [anon_sym_extern] = ACTIONS(842), + [anon_sym___attribute__] = ACTIONS(845), + [anon_sym___scanf] = ACTIONS(848), + [anon_sym___printf] = ACTIONS(848), + [anon_sym___read_mostly] = ACTIONS(851), + [anon_sym___must_hold] = ACTIONS(845), + [anon_sym___ro_after_init] = ACTIONS(851), + [anon_sym___noreturn] = ACTIONS(851), + [anon_sym___cold] = ACTIONS(851), + [anon_sym_LBRACK_LBRACK] = ACTIONS(854), + [anon_sym___declspec] = ACTIONS(857), + [anon_sym___init] = ACTIONS(819), + [anon_sym___exit] = ACTIONS(819), + [anon_sym___cdecl] = ACTIONS(819), + [anon_sym___clrcall] = ACTIONS(819), + [anon_sym___stdcall] = ACTIONS(819), + [anon_sym___fastcall] = ACTIONS(819), + [anon_sym___thiscall] = ACTIONS(819), + [anon_sym___vectorcall] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_signed] = ACTIONS(863), + [anon_sym_unsigned] = ACTIONS(863), + [anon_sym_long] = ACTIONS(863), + [anon_sym_short] = ACTIONS(863), + [anon_sym_static] = ACTIONS(842), + [anon_sym_auto] = ACTIONS(842), + [anon_sym_register] = ACTIONS(842), + [anon_sym_inline] = ACTIONS(842), + [anon_sym___inline] = ACTIONS(842), + [anon_sym___inline__] = ACTIONS(842), + [anon_sym___forceinline] = ACTIONS(842), + [anon_sym_thread_local] = ACTIONS(842), + [anon_sym___thread] = ACTIONS(842), + [anon_sym_const] = ACTIONS(866), + [anon_sym_constexpr] = ACTIONS(866), + [anon_sym_volatile] = ACTIONS(866), + [anon_sym_restrict] = ACTIONS(866), + [anon_sym___restrict__] = ACTIONS(866), + [anon_sym__Atomic] = ACTIONS(866), + [anon_sym__Noreturn] = ACTIONS(866), + [anon_sym_noreturn] = ACTIONS(866), + [anon_sym_alignas] = ACTIONS(869), + [anon_sym__Alignas] = ACTIONS(869), + [sym_primitive_type] = ACTIONS(872), + [anon_sym_enum] = ACTIONS(875), + [anon_sym_struct] = ACTIONS(878), + [anon_sym_union] = ACTIONS(881), + [anon_sym_if] = ACTIONS(989), + [anon_sym_else] = ACTIONS(819), + [anon_sym_switch] = ACTIONS(992), + [anon_sym_case] = ACTIONS(819), + [anon_sym_default] = ACTIONS(819), + [anon_sym_while] = ACTIONS(995), + [anon_sym_do] = ACTIONS(998), + [anon_sym_for] = ACTIONS(1001), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1007), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_goto] = ACTIONS(1013), + [anon_sym___try] = ACTIONS(1016), + [anon_sym___leave] = ACTIONS(1019), + [anon_sym_DASH_DASH] = ACTIONS(917), + [anon_sym_PLUS_PLUS] = ACTIONS(917), + [anon_sym_sizeof] = ACTIONS(920), + [anon_sym___alignof__] = ACTIONS(923), + [anon_sym___alignof] = ACTIONS(923), + [anon_sym__alignof] = ACTIONS(923), + [anon_sym_alignof] = ACTIONS(923), + [anon_sym__Alignof] = ACTIONS(923), + [anon_sym_offsetof] = ACTIONS(926), + [anon_sym__Generic] = ACTIONS(929), + [anon_sym_asm] = ACTIONS(932), + [anon_sym___asm__] = ACTIONS(932), + [sym_number_literal] = ACTIONS(935), + [anon_sym_L_SQUOTE] = ACTIONS(938), + [anon_sym_u_SQUOTE] = ACTIONS(938), + [anon_sym_U_SQUOTE] = ACTIONS(938), + [anon_sym_u8_SQUOTE] = ACTIONS(938), + [anon_sym_SQUOTE] = ACTIONS(938), + [anon_sym_L_DQUOTE] = ACTIONS(941), + [anon_sym_u_DQUOTE] = ACTIONS(941), + [anon_sym_U_DQUOTE] = ACTIONS(941), + [anon_sym_u8_DQUOTE] = ACTIONS(941), + [anon_sym_DQUOTE] = ACTIONS(941), + [sym_true] = ACTIONS(944), + [sym_false] = ACTIONS(944), + [anon_sym_NULL] = ACTIONS(947), + [anon_sym_nullptr] = ACTIONS(947), [sym_comment] = ACTIONS(5), }, [59] = { [sym_declaration] = STATE(62), [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1710), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1727), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), [sym_attributed_statement] = STATE(62), [sym_labeled_statement] = STATE(62), [sym_expression_statement] = STATE(62), @@ -27659,206 +27723,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(62), [sym_seh_try_statement] = STATE(62), [sym_seh_leave_statement] = STATE(62), - [sym_expression] = STATE(1588), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3193), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(429), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [aux_sym_case_statement_repeat1] = STATE(62), - [sym_identifier] = ACTIONS(1020), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(818), - [aux_sym_preproc_def_token1] = ACTIONS(818), - [aux_sym_preproc_if_token1] = ACTIONS(818), - [aux_sym_preproc_if_token2] = ACTIONS(818), - [aux_sym_preproc_ifdef_token1] = ACTIONS(818), - [aux_sym_preproc_ifdef_token2] = ACTIONS(818), - [sym_preproc_directive] = ACTIONS(818), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(455), - [anon_sym___extension__] = ACTIONS(457), - [anon_sym_typedef] = ACTIONS(459), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(41), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___init] = ACTIONS(818), - [anon_sym___exit] = ACTIONS(818), - [anon_sym___cdecl] = ACTIONS(818), - [anon_sym___clrcall] = ACTIONS(818), - [anon_sym___stdcall] = ACTIONS(818), - [anon_sym___fastcall] = ACTIONS(818), - [anon_sym___thiscall] = ACTIONS(818), - [anon_sym___vectorcall] = ACTIONS(818), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(59), - [anon_sym_enum] = ACTIONS(61), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_if] = ACTIONS(465), - [anon_sym_else] = ACTIONS(818), - [anon_sym_switch] = ACTIONS(467), - [anon_sym_case] = ACTIONS(818), - [anon_sym_default] = ACTIONS(818), - [anon_sym_while] = ACTIONS(473), - [anon_sym_do] = ACTIONS(475), - [anon_sym_for] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_break] = ACTIONS(481), - [anon_sym_continue] = ACTIONS(483), - [anon_sym_goto] = ACTIONS(485), - [anon_sym___try] = ACTIONS(487), - [anon_sym___leave] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), - [sym_comment] = ACTIONS(5), - }, - [60] = { - [sym_declaration] = STATE(63), - [sym_type_definition] = STATE(63), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1708), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(63), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(63), - [sym_labeled_statement] = STATE(63), - [sym_expression_statement] = STATE(63), - [sym_if_statement] = STATE(63), - [sym_switch_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_do_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_return_statement] = STATE(63), - [sym_break_statement] = STATE(63), - [sym_continue_statement] = STATE(63), - [sym_goto_statement] = STATE(63), - [sym_seh_try_statement] = STATE(63), - [sym_seh_leave_statement] = STATE(63), - [sym_expression] = STATE(1603), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3235), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [aux_sym_case_statement_repeat1] = STATE(63), - [ts_builtin_sym_end] = ACTIONS(1070), - [sym_identifier] = ACTIONS(962), + [sym_identifier] = ACTIONS(1022), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(954), [aux_sym_preproc_def_token1] = ACTIONS(954), @@ -27873,9 +27767,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym___extension__] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(385), + [anon_sym___extension__] = ACTIONS(387), + [anon_sym_typedef] = ACTIONS(389), [anon_sym_extern] = ACTIONS(53), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___scanf] = ACTIONS(37), @@ -27895,7 +27789,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(954), [anon_sym___thiscall] = ACTIONS(954), [anon_sym___vectorcall] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_RBRACE] = ACTIONS(1024), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), @@ -27923,20 +27818,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(61), [anon_sym_struct] = ACTIONS(63), [anon_sym_union] = ACTIONS(65), - [anon_sym_if] = ACTIONS(67), + [anon_sym_if] = ACTIONS(397), [anon_sym_else] = ACTIONS(954), - [anon_sym_switch] = ACTIONS(69), + [anon_sym_switch] = ACTIONS(399), [anon_sym_case] = ACTIONS(954), [anon_sym_default] = ACTIONS(954), - [anon_sym_while] = ACTIONS(75), - [anon_sym_do] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_return] = ACTIONS(81), - [anon_sym_break] = ACTIONS(83), - [anon_sym_continue] = ACTIONS(85), - [anon_sym_goto] = ACTIONS(87), - [anon_sym___try] = ACTIONS(966), - [anon_sym___leave] = ACTIONS(968), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_for] = ACTIONS(409), + [anon_sym_return] = ACTIONS(411), + [anon_sym_break] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_goto] = ACTIONS(417), + [anon_sym___try] = ACTIONS(419), + [anon_sym___leave] = ACTIONS(421), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -27966,75 +27861,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [61] = { - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1710), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(62), - [sym_labeled_statement] = STATE(62), - [sym_expression_statement] = STATE(62), - [sym_if_statement] = STATE(62), - [sym_switch_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_do_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_return_statement] = STATE(62), - [sym_break_statement] = STATE(62), - [sym_continue_statement] = STATE(62), - [sym_goto_statement] = STATE(62), - [sym_seh_try_statement] = STATE(62), - [sym_seh_leave_statement] = STATE(62), - [sym_expression] = STATE(1588), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3193), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(429), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [aux_sym_case_statement_repeat1] = STATE(62), - [sym_identifier] = ACTIONS(1020), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(958), - [aux_sym_preproc_def_token1] = ACTIONS(958), - [aux_sym_preproc_if_token1] = ACTIONS(958), - [aux_sym_preproc_if_token2] = ACTIONS(958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(958), - [sym_preproc_directive] = ACTIONS(958), + [60] = { + [sym_declaration] = STATE(65), + [sym_type_definition] = STATE(65), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1737), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_compound_statement] = STATE(65), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(65), + [sym_labeled_statement] = STATE(65), + [sym_expression_statement] = STATE(65), + [sym_if_statement] = STATE(65), + [sym_switch_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_do_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_return_statement] = STATE(65), + [sym_break_statement] = STATE(65), + [sym_continue_statement] = STATE(65), + [sym_goto_statement] = STATE(65), + [sym_seh_try_statement] = STATE(65), + [sym_seh_leave_statement] = STATE(65), + [sym_expression] = STATE(1613), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3217), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(440), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [aux_sym_case_statement_repeat1] = STATE(65), + [sym_identifier] = ACTIONS(960), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(952), + [aux_sym_preproc_def_token1] = ACTIONS(952), + [aux_sym_preproc_if_token1] = ACTIONS(952), + [aux_sym_preproc_if_token2] = ACTIONS(952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(952), + [sym_preproc_directive] = ACTIONS(952), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(23), @@ -28042,9 +27937,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(455), - [anon_sym___extension__] = ACTIONS(457), - [anon_sym_typedef] = ACTIONS(459), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym___extension__] = ACTIONS(619), + [anon_sym_typedef] = ACTIONS(621), [anon_sym_extern] = ACTIONS(53), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___scanf] = ACTIONS(37), @@ -28056,15 +27951,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___cold] = ACTIONS(39), [anon_sym_LBRACK_LBRACK] = ACTIONS(41), [anon_sym___declspec] = ACTIONS(43), - [anon_sym___init] = ACTIONS(958), - [anon_sym___exit] = ACTIONS(958), - [anon_sym___cdecl] = ACTIONS(958), - [anon_sym___clrcall] = ACTIONS(958), - [anon_sym___stdcall] = ACTIONS(958), - [anon_sym___fastcall] = ACTIONS(958), - [anon_sym___thiscall] = ACTIONS(958), - [anon_sym___vectorcall] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(463), + [anon_sym___init] = ACTIONS(952), + [anon_sym___exit] = ACTIONS(952), + [anon_sym___cdecl] = ACTIONS(952), + [anon_sym___clrcall] = ACTIONS(952), + [anon_sym___stdcall] = ACTIONS(952), + [anon_sym___fastcall] = ACTIONS(952), + [anon_sym___thiscall] = ACTIONS(952), + [anon_sym___vectorcall] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(625), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), @@ -28092,20 +27987,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(61), [anon_sym_struct] = ACTIONS(63), [anon_sym_union] = ACTIONS(65), - [anon_sym_if] = ACTIONS(465), - [anon_sym_else] = ACTIONS(958), - [anon_sym_switch] = ACTIONS(467), - [anon_sym_case] = ACTIONS(958), - [anon_sym_default] = ACTIONS(958), - [anon_sym_while] = ACTIONS(473), - [anon_sym_do] = ACTIONS(475), - [anon_sym_for] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_break] = ACTIONS(481), - [anon_sym_continue] = ACTIONS(483), - [anon_sym_goto] = ACTIONS(485), - [anon_sym___try] = ACTIONS(487), - [anon_sym___leave] = ACTIONS(489), + [anon_sym_if] = ACTIONS(627), + [anon_sym_else] = ACTIONS(952), + [anon_sym_switch] = ACTIONS(629), + [anon_sym_case] = ACTIONS(952), + [anon_sym_default] = ACTIONS(952), + [anon_sym_while] = ACTIONS(635), + [anon_sym_do] = ACTIONS(637), + [anon_sym_for] = ACTIONS(639), + [anon_sym_return] = ACTIONS(641), + [anon_sym_break] = ACTIONS(643), + [anon_sym_continue] = ACTIONS(645), + [anon_sym_goto] = ACTIONS(647), + [anon_sym___try] = ACTIONS(649), + [anon_sym___leave] = ACTIONS(651), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -28135,244 +28030,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [62] = { - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1710), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(62), - [sym_labeled_statement] = STATE(62), - [sym_expression_statement] = STATE(62), - [sym_if_statement] = STATE(62), - [sym_switch_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_do_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_return_statement] = STATE(62), - [sym_break_statement] = STATE(62), - [sym_continue_statement] = STATE(62), - [sym_goto_statement] = STATE(62), - [sym_seh_try_statement] = STATE(62), - [sym_seh_leave_statement] = STATE(62), - [sym_expression] = STATE(1588), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3193), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(429), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [aux_sym_case_statement_repeat1] = STATE(62), - [sym_identifier] = ACTIONS(1072), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(823), - [aux_sym_preproc_def_token1] = ACTIONS(823), - [aux_sym_preproc_if_token1] = ACTIONS(823), - [aux_sym_preproc_if_token2] = ACTIONS(823), - [aux_sym_preproc_ifdef_token1] = ACTIONS(823), - [aux_sym_preproc_ifdef_token2] = ACTIONS(823), - [sym_preproc_directive] = ACTIONS(823), - [anon_sym_LPAREN2] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(828), - [anon_sym_TILDE] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_STAR] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(834), - [anon_sym_SEMI] = ACTIONS(1075), - [anon_sym___extension__] = ACTIONS(1078), - [anon_sym_typedef] = ACTIONS(1081), - [anon_sym_extern] = ACTIONS(846), - [anon_sym___attribute__] = ACTIONS(849), - [anon_sym___scanf] = ACTIONS(852), - [anon_sym___printf] = ACTIONS(852), - [anon_sym___read_mostly] = ACTIONS(855), - [anon_sym___must_hold] = ACTIONS(849), - [anon_sym___ro_after_init] = ACTIONS(855), - [anon_sym___noreturn] = ACTIONS(855), - [anon_sym___cold] = ACTIONS(855), - [anon_sym_LBRACK_LBRACK] = ACTIONS(858), - [anon_sym___declspec] = ACTIONS(861), - [anon_sym___init] = ACTIONS(823), - [anon_sym___exit] = ACTIONS(823), - [anon_sym___cdecl] = ACTIONS(823), - [anon_sym___clrcall] = ACTIONS(823), - [anon_sym___stdcall] = ACTIONS(823), - [anon_sym___fastcall] = ACTIONS(823), - [anon_sym___thiscall] = ACTIONS(823), - [anon_sym___vectorcall] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(1084), - [anon_sym_signed] = ACTIONS(867), - [anon_sym_unsigned] = ACTIONS(867), - [anon_sym_long] = ACTIONS(867), - [anon_sym_short] = ACTIONS(867), - [anon_sym_static] = ACTIONS(846), - [anon_sym_auto] = ACTIONS(846), - [anon_sym_register] = ACTIONS(846), - [anon_sym_inline] = ACTIONS(846), - [anon_sym___inline] = ACTIONS(846), - [anon_sym___inline__] = ACTIONS(846), - [anon_sym___forceinline] = ACTIONS(846), - [anon_sym_thread_local] = ACTIONS(846), - [anon_sym___thread] = ACTIONS(846), - [anon_sym_const] = ACTIONS(870), - [anon_sym_constexpr] = ACTIONS(870), - [anon_sym_volatile] = ACTIONS(870), - [anon_sym_restrict] = ACTIONS(870), - [anon_sym___restrict__] = ACTIONS(870), - [anon_sym__Atomic] = ACTIONS(870), - [anon_sym__Noreturn] = ACTIONS(870), - [anon_sym_noreturn] = ACTIONS(870), - [anon_sym_alignas] = ACTIONS(873), - [anon_sym__Alignas] = ACTIONS(873), - [sym_primitive_type] = ACTIONS(876), - [anon_sym_enum] = ACTIONS(879), - [anon_sym_struct] = ACTIONS(882), - [anon_sym_union] = ACTIONS(885), - [anon_sym_if] = ACTIONS(1087), - [anon_sym_else] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(1090), - [anon_sym_case] = ACTIONS(823), - [anon_sym_default] = ACTIONS(823), - [anon_sym_while] = ACTIONS(1093), - [anon_sym_do] = ACTIONS(1096), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1105), - [anon_sym_continue] = ACTIONS(1108), - [anon_sym_goto] = ACTIONS(1111), - [anon_sym___try] = ACTIONS(1114), - [anon_sym___leave] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(921), - [anon_sym_PLUS_PLUS] = ACTIONS(921), - [anon_sym_sizeof] = ACTIONS(924), - [anon_sym___alignof__] = ACTIONS(927), - [anon_sym___alignof] = ACTIONS(927), - [anon_sym__alignof] = ACTIONS(927), - [anon_sym_alignof] = ACTIONS(927), - [anon_sym__Alignof] = ACTIONS(927), - [anon_sym_offsetof] = ACTIONS(930), - [anon_sym__Generic] = ACTIONS(933), - [anon_sym_asm] = ACTIONS(936), - [anon_sym___asm__] = ACTIONS(936), - [sym_number_literal] = ACTIONS(939), - [anon_sym_L_SQUOTE] = ACTIONS(942), - [anon_sym_u_SQUOTE] = ACTIONS(942), - [anon_sym_U_SQUOTE] = ACTIONS(942), - [anon_sym_u8_SQUOTE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_L_DQUOTE] = ACTIONS(945), - [anon_sym_u_DQUOTE] = ACTIONS(945), - [anon_sym_U_DQUOTE] = ACTIONS(945), - [anon_sym_u8_DQUOTE] = ACTIONS(945), - [anon_sym_DQUOTE] = ACTIONS(945), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [anon_sym_NULL] = ACTIONS(951), - [anon_sym_nullptr] = ACTIONS(951), - [sym_comment] = ACTIONS(5), - }, - [63] = { - [sym_declaration] = STATE(58), - [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1708), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(58), - [sym_labeled_statement] = STATE(58), - [sym_expression_statement] = STATE(58), - [sym_if_statement] = STATE(58), - [sym_switch_statement] = STATE(58), - [sym_while_statement] = STATE(58), - [sym_do_statement] = STATE(58), - [sym_for_statement] = STATE(58), - [sym_return_statement] = STATE(58), - [sym_break_statement] = STATE(58), - [sym_continue_statement] = STATE(58), - [sym_goto_statement] = STATE(58), - [sym_seh_try_statement] = STATE(58), - [sym_seh_leave_statement] = STATE(58), - [sym_expression] = STATE(1603), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3235), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [aux_sym_case_statement_repeat1] = STATE(58), - [ts_builtin_sym_end] = ACTIONS(1120), - [sym_identifier] = ACTIONS(962), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(818), - [aux_sym_preproc_def_token1] = ACTIONS(818), - [aux_sym_preproc_if_token1] = ACTIONS(818), - [aux_sym_preproc_ifdef_token1] = ACTIONS(818), - [aux_sym_preproc_ifdef_token2] = ACTIONS(818), - [sym_preproc_directive] = ACTIONS(818), + [61] = { + [sym_declaration] = STATE(66), + [sym_type_definition] = STATE(66), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1727), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_compound_statement] = STATE(66), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(66), + [sym_labeled_statement] = STATE(66), + [sym_expression_statement] = STATE(66), + [sym_if_statement] = STATE(66), + [sym_switch_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_do_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_return_statement] = STATE(66), + [sym_break_statement] = STATE(66), + [sym_continue_statement] = STATE(66), + [sym_goto_statement] = STATE(66), + [sym_seh_try_statement] = STATE(66), + [sym_seh_leave_statement] = STATE(66), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [aux_sym_case_statement_repeat1] = STATE(66), + [sym_identifier] = ACTIONS(1022), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(958), + [aux_sym_preproc_def_token1] = ACTIONS(958), + [aux_sym_preproc_if_token1] = ACTIONS(958), + [aux_sym_preproc_ifdef_token1] = ACTIONS(958), + [aux_sym_preproc_ifdef_token2] = ACTIONS(958), + [sym_preproc_directive] = ACTIONS(958), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(23), @@ -28380,9 +28105,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym___extension__] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(385), + [anon_sym___extension__] = ACTIONS(387), + [anon_sym_typedef] = ACTIONS(389), [anon_sym_extern] = ACTIONS(53), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___scanf] = ACTIONS(37), @@ -28394,15 +28119,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___cold] = ACTIONS(39), [anon_sym_LBRACK_LBRACK] = ACTIONS(41), [anon_sym___declspec] = ACTIONS(43), - [anon_sym___init] = ACTIONS(818), - [anon_sym___exit] = ACTIONS(818), - [anon_sym___cdecl] = ACTIONS(818), - [anon_sym___clrcall] = ACTIONS(818), - [anon_sym___stdcall] = ACTIONS(818), - [anon_sym___fastcall] = ACTIONS(818), - [anon_sym___thiscall] = ACTIONS(818), - [anon_sym___vectorcall] = ACTIONS(818), - [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym___init] = ACTIONS(958), + [anon_sym___exit] = ACTIONS(958), + [anon_sym___cdecl] = ACTIONS(958), + [anon_sym___clrcall] = ACTIONS(958), + [anon_sym___stdcall] = ACTIONS(958), + [anon_sym___fastcall] = ACTIONS(958), + [anon_sym___thiscall] = ACTIONS(958), + [anon_sym___vectorcall] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_RBRACE] = ACTIONS(1026), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), @@ -28430,20 +28156,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(61), [anon_sym_struct] = ACTIONS(63), [anon_sym_union] = ACTIONS(65), - [anon_sym_if] = ACTIONS(67), - [anon_sym_else] = ACTIONS(818), - [anon_sym_switch] = ACTIONS(69), - [anon_sym_case] = ACTIONS(818), - [anon_sym_default] = ACTIONS(818), - [anon_sym_while] = ACTIONS(75), - [anon_sym_do] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_return] = ACTIONS(81), - [anon_sym_break] = ACTIONS(83), - [anon_sym_continue] = ACTIONS(85), - [anon_sym_goto] = ACTIONS(87), - [anon_sym___try] = ACTIONS(966), - [anon_sym___leave] = ACTIONS(968), + [anon_sym_if] = ACTIONS(397), + [anon_sym_else] = ACTIONS(958), + [anon_sym_switch] = ACTIONS(399), + [anon_sym_case] = ACTIONS(958), + [anon_sym_default] = ACTIONS(958), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_for] = ACTIONS(409), + [anon_sym_return] = ACTIONS(411), + [anon_sym_break] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_goto] = ACTIONS(417), + [anon_sym___try] = ACTIONS(419), + [anon_sym___leave] = ACTIONS(421), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -28473,74 +28199,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [64] = { - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1715), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(55), - [sym_labeled_statement] = STATE(55), - [sym_expression_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_switch_statement] = STATE(55), - [sym_while_statement] = STATE(55), - [sym_do_statement] = STATE(55), - [sym_for_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_break_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_goto_statement] = STATE(55), - [sym_seh_try_statement] = STATE(55), - [sym_seh_leave_statement] = STATE(55), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [aux_sym_case_statement_repeat1] = STATE(55), - [sym_identifier] = ACTIONS(1122), + [62] = { + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1727), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [aux_sym_case_statement_repeat1] = STATE(67), + [sym_identifier] = ACTIONS(1022), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(958), - [aux_sym_preproc_def_token1] = ACTIONS(958), - [aux_sym_preproc_if_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(958), - [sym_preproc_directive] = ACTIONS(958), + [aux_sym_preproc_include_token1] = ACTIONS(956), + [aux_sym_preproc_def_token1] = ACTIONS(956), + [aux_sym_preproc_if_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(956), + [sym_preproc_directive] = ACTIONS(956), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(23), @@ -28562,16 +28288,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___cold] = ACTIONS(39), [anon_sym_LBRACK_LBRACK] = ACTIONS(41), [anon_sym___declspec] = ACTIONS(43), - [anon_sym___init] = ACTIONS(958), - [anon_sym___exit] = ACTIONS(958), - [anon_sym___cdecl] = ACTIONS(958), - [anon_sym___clrcall] = ACTIONS(958), - [anon_sym___stdcall] = ACTIONS(958), - [anon_sym___fastcall] = ACTIONS(958), - [anon_sym___thiscall] = ACTIONS(958), - [anon_sym___vectorcall] = ACTIONS(958), + [anon_sym___init] = ACTIONS(956), + [anon_sym___exit] = ACTIONS(956), + [anon_sym___cdecl] = ACTIONS(956), + [anon_sym___clrcall] = ACTIONS(956), + [anon_sym___stdcall] = ACTIONS(956), + [anon_sym___fastcall] = ACTIONS(956), + [anon_sym___thiscall] = ACTIONS(956), + [anon_sym___vectorcall] = ACTIONS(956), [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1028), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), @@ -28600,10 +28326,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(63), [anon_sym_union] = ACTIONS(65), [anon_sym_if] = ACTIONS(397), - [anon_sym_else] = ACTIONS(958), + [anon_sym_else] = ACTIONS(956), [anon_sym_switch] = ACTIONS(399), - [anon_sym_case] = ACTIONS(958), - [anon_sym_default] = ACTIONS(958), + [anon_sym_case] = ACTIONS(956), + [anon_sym_default] = ACTIONS(956), [anon_sym_while] = ACTIONS(405), [anon_sym_do] = ACTIONS(407), [anon_sym_for] = ACTIONS(409), @@ -28642,68 +28368,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [65] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1708), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(54), - [sym_labeled_statement] = STATE(54), - [sym_expression_statement] = STATE(54), - [sym_if_statement] = STATE(54), - [sym_switch_statement] = STATE(54), - [sym_while_statement] = STATE(54), - [sym_do_statement] = STATE(54), - [sym_for_statement] = STATE(54), - [sym_return_statement] = STATE(54), - [sym_break_statement] = STATE(54), - [sym_continue_statement] = STATE(54), - [sym_goto_statement] = STATE(54), - [sym_seh_try_statement] = STATE(54), - [sym_seh_leave_statement] = STATE(54), - [sym_expression] = STATE(1603), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3235), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [aux_sym_case_statement_repeat1] = STATE(54), - [ts_builtin_sym_end] = ACTIONS(1124), - [sym_identifier] = ACTIONS(962), + [63] = { + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1730), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(1615), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3118), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(457), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [aux_sym_case_statement_repeat1] = STATE(58), + [ts_builtin_sym_end] = ACTIONS(1028), + [sym_identifier] = ACTIONS(964), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(956), [aux_sym_preproc_def_token1] = ACTIONS(956), @@ -28718,7 +28444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(964), + [anon_sym_SEMI] = ACTIONS(966), [anon_sym___extension__] = ACTIONS(29), [anon_sym_typedef] = ACTIONS(31), [anon_sym_extern] = ACTIONS(53), @@ -28780,8 +28506,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(83), [anon_sym_continue] = ACTIONS(85), [anon_sym_goto] = ACTIONS(87), - [anon_sym___try] = ACTIONS(966), - [anon_sym___leave] = ACTIONS(968), + [anon_sym___try] = ACTIONS(968), + [anon_sym___leave] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -28811,23 +28537,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [66] = { + [64] = { [sym_declaration] = STATE(55), [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1715), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1730), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), [sym_attributed_statement] = STATE(55), [sym_labeled_statement] = STATE(55), [sym_expression_statement] = STATE(55), @@ -28842,43 +28568,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(55), [sym_seh_try_statement] = STATE(55), [sym_seh_leave_statement] = STATE(55), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [sym_expression] = STATE(1615), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3118), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(457), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [aux_sym_case_statement_repeat1] = STATE(55), - [sym_identifier] = ACTIONS(1122), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(818), - [aux_sym_preproc_def_token1] = ACTIONS(818), - [aux_sym_preproc_if_token1] = ACTIONS(818), - [aux_sym_preproc_ifdef_token1] = ACTIONS(818), - [aux_sym_preproc_ifdef_token2] = ACTIONS(818), - [sym_preproc_directive] = ACTIONS(818), + [ts_builtin_sym_end] = ACTIONS(1026), + [sym_identifier] = ACTIONS(964), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(958), + [aux_sym_preproc_def_token1] = ACTIONS(958), + [aux_sym_preproc_if_token1] = ACTIONS(958), + [aux_sym_preproc_ifdef_token1] = ACTIONS(958), + [aux_sym_preproc_ifdef_token2] = ACTIONS(958), + [sym_preproc_directive] = ACTIONS(958), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(23), @@ -28886,9 +28613,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(385), - [anon_sym___extension__] = ACTIONS(387), - [anon_sym_typedef] = ACTIONS(389), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym___extension__] = ACTIONS(29), + [anon_sym_typedef] = ACTIONS(31), [anon_sym_extern] = ACTIONS(53), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___scanf] = ACTIONS(37), @@ -28900,16 +28627,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___cold] = ACTIONS(39), [anon_sym_LBRACK_LBRACK] = ACTIONS(41), [anon_sym___declspec] = ACTIONS(43), - [anon_sym___init] = ACTIONS(818), - [anon_sym___exit] = ACTIONS(818), - [anon_sym___cdecl] = ACTIONS(818), - [anon_sym___clrcall] = ACTIONS(818), - [anon_sym___stdcall] = ACTIONS(818), - [anon_sym___fastcall] = ACTIONS(818), - [anon_sym___thiscall] = ACTIONS(818), - [anon_sym___vectorcall] = ACTIONS(818), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(1120), + [anon_sym___init] = ACTIONS(958), + [anon_sym___exit] = ACTIONS(958), + [anon_sym___cdecl] = ACTIONS(958), + [anon_sym___clrcall] = ACTIONS(958), + [anon_sym___stdcall] = ACTIONS(958), + [anon_sym___fastcall] = ACTIONS(958), + [anon_sym___thiscall] = ACTIONS(958), + [anon_sym___vectorcall] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), @@ -28937,20 +28663,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(61), [anon_sym_struct] = ACTIONS(63), [anon_sym_union] = ACTIONS(65), - [anon_sym_if] = ACTIONS(397), - [anon_sym_else] = ACTIONS(818), - [anon_sym_switch] = ACTIONS(399), - [anon_sym_case] = ACTIONS(818), - [anon_sym_default] = ACTIONS(818), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_goto] = ACTIONS(417), - [anon_sym___try] = ACTIONS(419), - [anon_sym___leave] = ACTIONS(421), + [anon_sym_if] = ACTIONS(67), + [anon_sym_else] = ACTIONS(958), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_case] = ACTIONS(958), + [anon_sym_default] = ACTIONS(958), + [anon_sym_while] = ACTIONS(75), + [anon_sym_do] = ACTIONS(77), + [anon_sym_for] = ACTIONS(79), + [anon_sym_return] = ACTIONS(81), + [anon_sym_break] = ACTIONS(83), + [anon_sym_continue] = ACTIONS(85), + [anon_sym_goto] = ACTIONS(87), + [anon_sym___try] = ACTIONS(968), + [anon_sym___leave] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -28980,74 +28706,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [67] = { - [sym_declaration] = STATE(64), - [sym_type_definition] = STATE(64), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1715), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(64), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(64), - [sym_labeled_statement] = STATE(64), - [sym_expression_statement] = STATE(64), - [sym_if_statement] = STATE(64), - [sym_switch_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_do_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_return_statement] = STATE(64), - [sym_break_statement] = STATE(64), - [sym_continue_statement] = STATE(64), - [sym_goto_statement] = STATE(64), - [sym_seh_try_statement] = STATE(64), - [sym_seh_leave_statement] = STATE(64), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [aux_sym_case_statement_repeat1] = STATE(64), - [sym_identifier] = ACTIONS(1122), + [65] = { + [sym_declaration] = STATE(65), + [sym_type_definition] = STATE(65), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1737), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_compound_statement] = STATE(65), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(65), + [sym_labeled_statement] = STATE(65), + [sym_expression_statement] = STATE(65), + [sym_if_statement] = STATE(65), + [sym_switch_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_do_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_return_statement] = STATE(65), + [sym_break_statement] = STATE(65), + [sym_continue_statement] = STATE(65), + [sym_goto_statement] = STATE(65), + [sym_seh_try_statement] = STATE(65), + [sym_seh_leave_statement] = STATE(65), + [sym_expression] = STATE(1613), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3217), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(440), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [aux_sym_case_statement_repeat1] = STATE(65), + [sym_identifier] = ACTIONS(1030), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(819), + [aux_sym_preproc_def_token1] = ACTIONS(819), + [aux_sym_preproc_if_token1] = ACTIONS(819), + [aux_sym_preproc_if_token2] = ACTIONS(819), + [aux_sym_preproc_ifdef_token1] = ACTIONS(819), + [aux_sym_preproc_ifdef_token2] = ACTIONS(819), + [sym_preproc_directive] = ACTIONS(819), + [anon_sym_LPAREN2] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(824), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym___extension__] = ACTIONS(1036), + [anon_sym_typedef] = ACTIONS(1039), + [anon_sym_extern] = ACTIONS(842), + [anon_sym___attribute__] = ACTIONS(845), + [anon_sym___scanf] = ACTIONS(848), + [anon_sym___printf] = ACTIONS(848), + [anon_sym___read_mostly] = ACTIONS(851), + [anon_sym___must_hold] = ACTIONS(845), + [anon_sym___ro_after_init] = ACTIONS(851), + [anon_sym___noreturn] = ACTIONS(851), + [anon_sym___cold] = ACTIONS(851), + [anon_sym_LBRACK_LBRACK] = ACTIONS(854), + [anon_sym___declspec] = ACTIONS(857), + [anon_sym___init] = ACTIONS(819), + [anon_sym___exit] = ACTIONS(819), + [anon_sym___cdecl] = ACTIONS(819), + [anon_sym___clrcall] = ACTIONS(819), + [anon_sym___stdcall] = ACTIONS(819), + [anon_sym___fastcall] = ACTIONS(819), + [anon_sym___thiscall] = ACTIONS(819), + [anon_sym___vectorcall] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_signed] = ACTIONS(863), + [anon_sym_unsigned] = ACTIONS(863), + [anon_sym_long] = ACTIONS(863), + [anon_sym_short] = ACTIONS(863), + [anon_sym_static] = ACTIONS(842), + [anon_sym_auto] = ACTIONS(842), + [anon_sym_register] = ACTIONS(842), + [anon_sym_inline] = ACTIONS(842), + [anon_sym___inline] = ACTIONS(842), + [anon_sym___inline__] = ACTIONS(842), + [anon_sym___forceinline] = ACTIONS(842), + [anon_sym_thread_local] = ACTIONS(842), + [anon_sym___thread] = ACTIONS(842), + [anon_sym_const] = ACTIONS(866), + [anon_sym_constexpr] = ACTIONS(866), + [anon_sym_volatile] = ACTIONS(866), + [anon_sym_restrict] = ACTIONS(866), + [anon_sym___restrict__] = ACTIONS(866), + [anon_sym__Atomic] = ACTIONS(866), + [anon_sym__Noreturn] = ACTIONS(866), + [anon_sym_noreturn] = ACTIONS(866), + [anon_sym_alignas] = ACTIONS(869), + [anon_sym__Alignas] = ACTIONS(869), + [sym_primitive_type] = ACTIONS(872), + [anon_sym_enum] = ACTIONS(875), + [anon_sym_struct] = ACTIONS(878), + [anon_sym_union] = ACTIONS(881), + [anon_sym_if] = ACTIONS(1045), + [anon_sym_else] = ACTIONS(819), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_case] = ACTIONS(819), + [anon_sym_default] = ACTIONS(819), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1057), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1063), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_goto] = ACTIONS(1069), + [anon_sym___try] = ACTIONS(1072), + [anon_sym___leave] = ACTIONS(1075), + [anon_sym_DASH_DASH] = ACTIONS(917), + [anon_sym_PLUS_PLUS] = ACTIONS(917), + [anon_sym_sizeof] = ACTIONS(920), + [anon_sym___alignof__] = ACTIONS(923), + [anon_sym___alignof] = ACTIONS(923), + [anon_sym__alignof] = ACTIONS(923), + [anon_sym_alignof] = ACTIONS(923), + [anon_sym__Alignof] = ACTIONS(923), + [anon_sym_offsetof] = ACTIONS(926), + [anon_sym__Generic] = ACTIONS(929), + [anon_sym_asm] = ACTIONS(932), + [anon_sym___asm__] = ACTIONS(932), + [sym_number_literal] = ACTIONS(935), + [anon_sym_L_SQUOTE] = ACTIONS(938), + [anon_sym_u_SQUOTE] = ACTIONS(938), + [anon_sym_U_SQUOTE] = ACTIONS(938), + [anon_sym_u8_SQUOTE] = ACTIONS(938), + [anon_sym_SQUOTE] = ACTIONS(938), + [anon_sym_L_DQUOTE] = ACTIONS(941), + [anon_sym_u_DQUOTE] = ACTIONS(941), + [anon_sym_U_DQUOTE] = ACTIONS(941), + [anon_sym_u8_DQUOTE] = ACTIONS(941), + [anon_sym_DQUOTE] = ACTIONS(941), + [sym_true] = ACTIONS(944), + [sym_false] = ACTIONS(944), + [anon_sym_NULL] = ACTIONS(947), + [anon_sym_nullptr] = ACTIONS(947), + [sym_comment] = ACTIONS(5), + }, + [66] = { + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1727), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [aux_sym_case_statement_repeat1] = STATE(67), + [sym_identifier] = ACTIONS(1022), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(956), - [aux_sym_preproc_def_token1] = ACTIONS(956), - [aux_sym_preproc_if_token1] = ACTIONS(956), - [aux_sym_preproc_ifdef_token1] = ACTIONS(956), - [aux_sym_preproc_ifdef_token2] = ACTIONS(956), - [sym_preproc_directive] = ACTIONS(956), + [aux_sym_preproc_include_token1] = ACTIONS(952), + [aux_sym_preproc_def_token1] = ACTIONS(952), + [aux_sym_preproc_if_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(952), + [sym_preproc_directive] = ACTIONS(952), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(23), @@ -29069,16 +28964,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___cold] = ACTIONS(39), [anon_sym_LBRACK_LBRACK] = ACTIONS(41), [anon_sym___declspec] = ACTIONS(43), - [anon_sym___init] = ACTIONS(956), - [anon_sym___exit] = ACTIONS(956), - [anon_sym___cdecl] = ACTIONS(956), - [anon_sym___clrcall] = ACTIONS(956), - [anon_sym___stdcall] = ACTIONS(956), - [anon_sym___fastcall] = ACTIONS(956), - [anon_sym___thiscall] = ACTIONS(956), - [anon_sym___vectorcall] = ACTIONS(956), + [anon_sym___init] = ACTIONS(952), + [anon_sym___exit] = ACTIONS(952), + [anon_sym___cdecl] = ACTIONS(952), + [anon_sym___clrcall] = ACTIONS(952), + [anon_sym___stdcall] = ACTIONS(952), + [anon_sym___fastcall] = ACTIONS(952), + [anon_sym___thiscall] = ACTIONS(952), + [anon_sym___vectorcall] = ACTIONS(952), [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(1124), + [anon_sym_RBRACE] = ACTIONS(962), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), @@ -29107,10 +29002,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(63), [anon_sym_union] = ACTIONS(65), [anon_sym_if] = ACTIONS(397), - [anon_sym_else] = ACTIONS(956), + [anon_sym_else] = ACTIONS(952), [anon_sym_switch] = ACTIONS(399), - [anon_sym_case] = ACTIONS(956), - [anon_sym_default] = ACTIONS(956), + [anon_sym_case] = ACTIONS(952), + [anon_sym_default] = ACTIONS(952), [anon_sym_while] = ACTIONS(405), [anon_sym_do] = ACTIONS(407), [anon_sym_for] = ACTIONS(409), @@ -29149,67 +29044,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, + [67] = { + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1727), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [aux_sym_case_statement_repeat1] = STATE(67), + [sym_identifier] = ACTIONS(1078), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(819), + [aux_sym_preproc_def_token1] = ACTIONS(819), + [aux_sym_preproc_if_token1] = ACTIONS(819), + [aux_sym_preproc_ifdef_token1] = ACTIONS(819), + [aux_sym_preproc_ifdef_token2] = ACTIONS(819), + [sym_preproc_directive] = ACTIONS(819), + [anon_sym_LPAREN2] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(824), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(1081), + [anon_sym___extension__] = ACTIONS(1084), + [anon_sym_typedef] = ACTIONS(1087), + [anon_sym_extern] = ACTIONS(842), + [anon_sym___attribute__] = ACTIONS(845), + [anon_sym___scanf] = ACTIONS(848), + [anon_sym___printf] = ACTIONS(848), + [anon_sym___read_mostly] = ACTIONS(851), + [anon_sym___must_hold] = ACTIONS(845), + [anon_sym___ro_after_init] = ACTIONS(851), + [anon_sym___noreturn] = ACTIONS(851), + [anon_sym___cold] = ACTIONS(851), + [anon_sym_LBRACK_LBRACK] = ACTIONS(854), + [anon_sym___declspec] = ACTIONS(857), + [anon_sym___init] = ACTIONS(819), + [anon_sym___exit] = ACTIONS(819), + [anon_sym___cdecl] = ACTIONS(819), + [anon_sym___clrcall] = ACTIONS(819), + [anon_sym___stdcall] = ACTIONS(819), + [anon_sym___fastcall] = ACTIONS(819), + [anon_sym___thiscall] = ACTIONS(819), + [anon_sym___vectorcall] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(1090), + [anon_sym_RBRACE] = ACTIONS(972), + [anon_sym_signed] = ACTIONS(863), + [anon_sym_unsigned] = ACTIONS(863), + [anon_sym_long] = ACTIONS(863), + [anon_sym_short] = ACTIONS(863), + [anon_sym_static] = ACTIONS(842), + [anon_sym_auto] = ACTIONS(842), + [anon_sym_register] = ACTIONS(842), + [anon_sym_inline] = ACTIONS(842), + [anon_sym___inline] = ACTIONS(842), + [anon_sym___inline__] = ACTIONS(842), + [anon_sym___forceinline] = ACTIONS(842), + [anon_sym_thread_local] = ACTIONS(842), + [anon_sym___thread] = ACTIONS(842), + [anon_sym_const] = ACTIONS(866), + [anon_sym_constexpr] = ACTIONS(866), + [anon_sym_volatile] = ACTIONS(866), + [anon_sym_restrict] = ACTIONS(866), + [anon_sym___restrict__] = ACTIONS(866), + [anon_sym__Atomic] = ACTIONS(866), + [anon_sym__Noreturn] = ACTIONS(866), + [anon_sym_noreturn] = ACTIONS(866), + [anon_sym_alignas] = ACTIONS(869), + [anon_sym__Alignas] = ACTIONS(869), + [sym_primitive_type] = ACTIONS(872), + [anon_sym_enum] = ACTIONS(875), + [anon_sym_struct] = ACTIONS(878), + [anon_sym_union] = ACTIONS(881), + [anon_sym_if] = ACTIONS(1093), + [anon_sym_else] = ACTIONS(819), + [anon_sym_switch] = ACTIONS(1096), + [anon_sym_case] = ACTIONS(819), + [anon_sym_default] = ACTIONS(819), + [anon_sym_while] = ACTIONS(1099), + [anon_sym_do] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1105), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_break] = ACTIONS(1111), + [anon_sym_continue] = ACTIONS(1114), + [anon_sym_goto] = ACTIONS(1117), + [anon_sym___try] = ACTIONS(1120), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(917), + [anon_sym_PLUS_PLUS] = ACTIONS(917), + [anon_sym_sizeof] = ACTIONS(920), + [anon_sym___alignof__] = ACTIONS(923), + [anon_sym___alignof] = ACTIONS(923), + [anon_sym__alignof] = ACTIONS(923), + [anon_sym_alignof] = ACTIONS(923), + [anon_sym__Alignof] = ACTIONS(923), + [anon_sym_offsetof] = ACTIONS(926), + [anon_sym__Generic] = ACTIONS(929), + [anon_sym_asm] = ACTIONS(932), + [anon_sym___asm__] = ACTIONS(932), + [sym_number_literal] = ACTIONS(935), + [anon_sym_L_SQUOTE] = ACTIONS(938), + [anon_sym_u_SQUOTE] = ACTIONS(938), + [anon_sym_U_SQUOTE] = ACTIONS(938), + [anon_sym_u8_SQUOTE] = ACTIONS(938), + [anon_sym_SQUOTE] = ACTIONS(938), + [anon_sym_L_DQUOTE] = ACTIONS(941), + [anon_sym_u_DQUOTE] = ACTIONS(941), + [anon_sym_U_DQUOTE] = ACTIONS(941), + [anon_sym_u8_DQUOTE] = ACTIONS(941), + [anon_sym_DQUOTE] = ACTIONS(941), + [sym_true] = ACTIONS(944), + [sym_false] = ACTIONS(944), + [anon_sym_NULL] = ACTIONS(947), + [anon_sym_nullptr] = ACTIONS(947), + [sym_comment] = ACTIONS(5), + }, [68] = { - [sym_declaration] = STATE(66), - [sym_type_definition] = STATE(66), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1715), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(66), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(66), - [sym_labeled_statement] = STATE(66), - [sym_expression_statement] = STATE(66), - [sym_if_statement] = STATE(66), - [sym_switch_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_do_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_return_statement] = STATE(66), - [sym_break_statement] = STATE(66), - [sym_continue_statement] = STATE(66), - [sym_goto_statement] = STATE(66), - [sym_seh_try_statement] = STATE(66), - [sym_seh_leave_statement] = STATE(66), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [aux_sym_case_statement_repeat1] = STATE(66), - [sym_identifier] = ACTIONS(1122), + [sym_declaration] = STATE(63), + [sym_type_definition] = STATE(63), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1730), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_compound_statement] = STATE(63), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(63), + [sym_labeled_statement] = STATE(63), + [sym_expression_statement] = STATE(63), + [sym_if_statement] = STATE(63), + [sym_switch_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_do_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_return_statement] = STATE(63), + [sym_break_statement] = STATE(63), + [sym_continue_statement] = STATE(63), + [sym_goto_statement] = STATE(63), + [sym_seh_try_statement] = STATE(63), + [sym_seh_leave_statement] = STATE(63), + [sym_expression] = STATE(1615), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3118), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(457), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [aux_sym_case_statement_repeat1] = STATE(63), + [ts_builtin_sym_end] = ACTIONS(1024), + [sym_identifier] = ACTIONS(964), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(954), [aux_sym_preproc_def_token1] = ACTIONS(954), @@ -29224,9 +29289,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(385), - [anon_sym___extension__] = ACTIONS(387), - [anon_sym_typedef] = ACTIONS(389), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym___extension__] = ACTIONS(29), + [anon_sym_typedef] = ACTIONS(31), [anon_sym_extern] = ACTIONS(53), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___scanf] = ACTIONS(37), @@ -29246,8 +29311,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(954), [anon_sym___thiscall] = ACTIONS(954), [anon_sym___vectorcall] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), @@ -29275,20 +29339,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(61), [anon_sym_struct] = ACTIONS(63), [anon_sym_union] = ACTIONS(65), - [anon_sym_if] = ACTIONS(397), + [anon_sym_if] = ACTIONS(67), [anon_sym_else] = ACTIONS(954), - [anon_sym_switch] = ACTIONS(399), + [anon_sym_switch] = ACTIONS(69), [anon_sym_case] = ACTIONS(954), [anon_sym_default] = ACTIONS(954), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_goto] = ACTIONS(417), - [anon_sym___try] = ACTIONS(419), - [anon_sym___leave] = ACTIONS(421), + [anon_sym_while] = ACTIONS(75), + [anon_sym_do] = ACTIONS(77), + [anon_sym_for] = ACTIONS(79), + [anon_sym_return] = ACTIONS(81), + [anon_sym_break] = ACTIONS(83), + [anon_sym_continue] = ACTIONS(85), + [anon_sym_goto] = ACTIONS(87), + [anon_sym___try] = ACTIONS(968), + [anon_sym___leave] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -29319,65 +29383,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), }, [69] = { - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1714), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(72), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(72), - [sym_labeled_statement] = STATE(72), - [sym_expression_statement] = STATE(72), - [sym_if_statement] = STATE(72), - [sym_switch_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_do_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_return_statement] = STATE(72), - [sym_break_statement] = STATE(72), - [sym_continue_statement] = STATE(72), - [sym_goto_statement] = STATE(72), - [sym_seh_try_statement] = STATE(72), - [sym_seh_leave_statement] = STATE(72), - [sym_expression] = STATE(1606), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(2956), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(444), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [aux_sym_case_statement_repeat1] = STATE(72), + [sym_declaration] = STATE(71), + [sym_type_definition] = STATE(71), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1729), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_compound_statement] = STATE(71), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(71), + [sym_labeled_statement] = STATE(71), + [sym_expression_statement] = STATE(71), + [sym_if_statement] = STATE(71), + [sym_switch_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_do_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_return_statement] = STATE(71), + [sym_break_statement] = STATE(71), + [sym_continue_statement] = STATE(71), + [sym_goto_statement] = STATE(71), + [sym_seh_try_statement] = STATE(71), + [sym_seh_leave_statement] = STATE(71), + [sym_expression] = STATE(1605), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3113), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [aux_sym_case_statement_repeat1] = STATE(71), [sym_identifier] = ACTIONS(1126), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), @@ -29471,65 +29535,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), }, [70] = { - [sym_declaration] = STATE(71), - [sym_type_definition] = STATE(71), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1714), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(71), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(71), - [sym_labeled_statement] = STATE(71), - [sym_expression_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_return_statement] = STATE(71), - [sym_break_statement] = STATE(71), - [sym_continue_statement] = STATE(71), - [sym_goto_statement] = STATE(71), - [sym_seh_try_statement] = STATE(71), - [sym_seh_leave_statement] = STATE(71), - [sym_expression] = STATE(1606), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(2956), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(444), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [aux_sym_case_statement_repeat1] = STATE(71), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1729), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_compound_statement] = STATE(72), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(72), + [sym_labeled_statement] = STATE(72), + [sym_expression_statement] = STATE(72), + [sym_if_statement] = STATE(72), + [sym_switch_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_do_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_return_statement] = STATE(72), + [sym_break_statement] = STATE(72), + [sym_continue_statement] = STATE(72), + [sym_goto_statement] = STATE(72), + [sym_seh_try_statement] = STATE(72), + [sym_seh_leave_statement] = STATE(72), + [sym_expression] = STATE(1605), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3113), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [aux_sym_case_statement_repeat1] = STATE(72), [sym_identifier] = ACTIONS(1126), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), @@ -29623,217 +29687,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), }, [71] = { - [sym_declaration] = STATE(71), - [sym_type_definition] = STATE(71), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1714), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(71), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(71), - [sym_labeled_statement] = STATE(71), - [sym_expression_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_return_statement] = STATE(71), - [sym_break_statement] = STATE(71), - [sym_continue_statement] = STATE(71), - [sym_goto_statement] = STATE(71), - [sym_seh_try_statement] = STATE(71), - [sym_seh_leave_statement] = STATE(71), - [sym_expression] = STATE(1606), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(2956), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(444), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [aux_sym_case_statement_repeat1] = STATE(71), - [sym_identifier] = ACTIONS(1158), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(828), - [anon_sym_TILDE] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_STAR] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(834), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym___extension__] = ACTIONS(1164), - [anon_sym_typedef] = ACTIONS(1167), - [anon_sym_extern] = ACTIONS(846), - [anon_sym___attribute__] = ACTIONS(849), - [anon_sym___scanf] = ACTIONS(852), - [anon_sym___printf] = ACTIONS(852), - [anon_sym___read_mostly] = ACTIONS(855), - [anon_sym___must_hold] = ACTIONS(849), - [anon_sym___ro_after_init] = ACTIONS(855), - [anon_sym___noreturn] = ACTIONS(855), - [anon_sym___cold] = ACTIONS(855), - [anon_sym_LBRACK_LBRACK] = ACTIONS(858), - [anon_sym___declspec] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(1170), - [anon_sym_signed] = ACTIONS(867), - [anon_sym_unsigned] = ACTIONS(867), - [anon_sym_long] = ACTIONS(867), - [anon_sym_short] = ACTIONS(867), - [anon_sym_static] = ACTIONS(846), - [anon_sym_auto] = ACTIONS(846), - [anon_sym_register] = ACTIONS(846), - [anon_sym_inline] = ACTIONS(846), - [anon_sym___inline] = ACTIONS(846), - [anon_sym___inline__] = ACTIONS(846), - [anon_sym___forceinline] = ACTIONS(846), - [anon_sym_thread_local] = ACTIONS(846), - [anon_sym___thread] = ACTIONS(846), - [anon_sym_const] = ACTIONS(870), - [anon_sym_constexpr] = ACTIONS(870), - [anon_sym_volatile] = ACTIONS(870), - [anon_sym_restrict] = ACTIONS(870), - [anon_sym___restrict__] = ACTIONS(870), - [anon_sym__Atomic] = ACTIONS(870), - [anon_sym__Noreturn] = ACTIONS(870), - [anon_sym_noreturn] = ACTIONS(870), - [anon_sym_alignas] = ACTIONS(873), - [anon_sym__Alignas] = ACTIONS(873), - [sym_primitive_type] = ACTIONS(876), - [anon_sym_enum] = ACTIONS(879), - [anon_sym_struct] = ACTIONS(882), - [anon_sym_union] = ACTIONS(885), - [anon_sym_if] = ACTIONS(1173), - [anon_sym_else] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(1176), - [anon_sym_while] = ACTIONS(1179), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1185), - [anon_sym_return] = ACTIONS(1188), - [anon_sym_break] = ACTIONS(1191), - [anon_sym_continue] = ACTIONS(1194), - [anon_sym_goto] = ACTIONS(1197), - [anon_sym___try] = ACTIONS(1200), - [anon_sym___leave] = ACTIONS(1203), - [anon_sym_DASH_DASH] = ACTIONS(921), - [anon_sym_PLUS_PLUS] = ACTIONS(921), - [anon_sym_sizeof] = ACTIONS(924), - [anon_sym___alignof__] = ACTIONS(927), - [anon_sym___alignof] = ACTIONS(927), - [anon_sym__alignof] = ACTIONS(927), - [anon_sym_alignof] = ACTIONS(927), - [anon_sym__Alignof] = ACTIONS(927), - [anon_sym_offsetof] = ACTIONS(930), - [anon_sym__Generic] = ACTIONS(933), - [anon_sym_asm] = ACTIONS(936), - [anon_sym___asm__] = ACTIONS(936), - [sym_number_literal] = ACTIONS(939), - [anon_sym_L_SQUOTE] = ACTIONS(942), - [anon_sym_u_SQUOTE] = ACTIONS(942), - [anon_sym_U_SQUOTE] = ACTIONS(942), - [anon_sym_u8_SQUOTE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_L_DQUOTE] = ACTIONS(945), - [anon_sym_u_DQUOTE] = ACTIONS(945), - [anon_sym_U_DQUOTE] = ACTIONS(945), - [anon_sym_u8_DQUOTE] = ACTIONS(945), - [anon_sym_DQUOTE] = ACTIONS(945), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [anon_sym_NULL] = ACTIONS(951), - [anon_sym_nullptr] = ACTIONS(951), - [sym_comment] = ACTIONS(5), - }, - [72] = { - [sym_declaration] = STATE(71), - [sym_type_definition] = STATE(71), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1714), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(71), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(71), - [sym_labeled_statement] = STATE(71), - [sym_expression_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_return_statement] = STATE(71), - [sym_break_statement] = STATE(71), - [sym_continue_statement] = STATE(71), - [sym_goto_statement] = STATE(71), - [sym_seh_try_statement] = STATE(71), - [sym_seh_leave_statement] = STATE(71), - [sym_expression] = STATE(1606), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(2956), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(444), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [aux_sym_case_statement_repeat1] = STATE(71), + [sym_declaration] = STATE(73), + [sym_type_definition] = STATE(73), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1729), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_compound_statement] = STATE(73), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(73), + [sym_labeled_statement] = STATE(73), + [sym_expression_statement] = STATE(73), + [sym_if_statement] = STATE(73), + [sym_switch_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_do_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_return_statement] = STATE(73), + [sym_break_statement] = STATE(73), + [sym_continue_statement] = STATE(73), + [sym_goto_statement] = STATE(73), + [sym_seh_try_statement] = STATE(73), + [sym_seh_leave_statement] = STATE(73), + [sym_expression] = STATE(1605), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3113), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [aux_sym_case_statement_repeat1] = STATE(73), [sym_identifier] = ACTIONS(1126), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), @@ -29886,7 +29798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(63), [anon_sym_union] = ACTIONS(65), [anon_sym_if] = ACTIONS(1136), - [anon_sym_else] = ACTIONS(818), + [anon_sym_else] = ACTIONS(956), [anon_sym_switch] = ACTIONS(1138), [anon_sym_while] = ACTIONS(1140), [anon_sym_do] = ACTIONS(1142), @@ -29926,66 +29838,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [73] = { - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1714), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym_seh_try_statement] = STATE(70), - [sym_seh_leave_statement] = STATE(70), - [sym_expression] = STATE(1606), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(2956), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(444), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [aux_sym_case_statement_repeat1] = STATE(70), + [72] = { + [sym_declaration] = STATE(73), + [sym_type_definition] = STATE(73), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1729), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_compound_statement] = STATE(73), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(73), + [sym_labeled_statement] = STATE(73), + [sym_expression_statement] = STATE(73), + [sym_if_statement] = STATE(73), + [sym_switch_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_do_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_return_statement] = STATE(73), + [sym_break_statement] = STATE(73), + [sym_continue_statement] = STATE(73), + [sym_goto_statement] = STATE(73), + [sym_seh_try_statement] = STATE(73), + [sym_seh_leave_statement] = STATE(73), + [sym_expression] = STATE(1605), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3113), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [aux_sym_case_statement_repeat1] = STATE(73), [sym_identifier] = ACTIONS(1126), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), @@ -30038,7 +29950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(63), [anon_sym_union] = ACTIONS(65), [anon_sym_if] = ACTIONS(1136), - [anon_sym_else] = ACTIONS(956), + [anon_sym_else] = ACTIONS(952), [anon_sym_switch] = ACTIONS(1138), [anon_sym_while] = ACTIONS(1140), [anon_sym_do] = ACTIONS(1142), @@ -30078,51 +29990,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, + [73] = { + [sym_declaration] = STATE(73), + [sym_type_definition] = STATE(73), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1729), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(491), + [sym_ms_declspec_modifier] = STATE(895), + [sym_compound_statement] = STATE(73), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_attributed_statement] = STATE(73), + [sym_labeled_statement] = STATE(73), + [sym_expression_statement] = STATE(73), + [sym_if_statement] = STATE(73), + [sym_switch_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_do_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_return_statement] = STATE(73), + [sym_break_statement] = STATE(73), + [sym_continue_statement] = STATE(73), + [sym_goto_statement] = STATE(73), + [sym_seh_try_statement] = STATE(73), + [sym_seh_leave_statement] = STATE(73), + [sym_expression] = STATE(1605), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3113), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [aux_sym_case_statement_repeat1] = STATE(73), + [sym_identifier] = ACTIONS(1158), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(824), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(1161), + [anon_sym___extension__] = ACTIONS(1164), + [anon_sym_typedef] = ACTIONS(1167), + [anon_sym_extern] = ACTIONS(842), + [anon_sym___attribute__] = ACTIONS(845), + [anon_sym___scanf] = ACTIONS(848), + [anon_sym___printf] = ACTIONS(848), + [anon_sym___read_mostly] = ACTIONS(851), + [anon_sym___must_hold] = ACTIONS(845), + [anon_sym___ro_after_init] = ACTIONS(851), + [anon_sym___noreturn] = ACTIONS(851), + [anon_sym___cold] = ACTIONS(851), + [anon_sym_LBRACK_LBRACK] = ACTIONS(854), + [anon_sym___declspec] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1170), + [anon_sym_signed] = ACTIONS(863), + [anon_sym_unsigned] = ACTIONS(863), + [anon_sym_long] = ACTIONS(863), + [anon_sym_short] = ACTIONS(863), + [anon_sym_static] = ACTIONS(842), + [anon_sym_auto] = ACTIONS(842), + [anon_sym_register] = ACTIONS(842), + [anon_sym_inline] = ACTIONS(842), + [anon_sym___inline] = ACTIONS(842), + [anon_sym___inline__] = ACTIONS(842), + [anon_sym___forceinline] = ACTIONS(842), + [anon_sym_thread_local] = ACTIONS(842), + [anon_sym___thread] = ACTIONS(842), + [anon_sym_const] = ACTIONS(866), + [anon_sym_constexpr] = ACTIONS(866), + [anon_sym_volatile] = ACTIONS(866), + [anon_sym_restrict] = ACTIONS(866), + [anon_sym___restrict__] = ACTIONS(866), + [anon_sym__Atomic] = ACTIONS(866), + [anon_sym__Noreturn] = ACTIONS(866), + [anon_sym_noreturn] = ACTIONS(866), + [anon_sym_alignas] = ACTIONS(869), + [anon_sym__Alignas] = ACTIONS(869), + [sym_primitive_type] = ACTIONS(872), + [anon_sym_enum] = ACTIONS(875), + [anon_sym_struct] = ACTIONS(878), + [anon_sym_union] = ACTIONS(881), + [anon_sym_if] = ACTIONS(1173), + [anon_sym_else] = ACTIONS(819), + [anon_sym_switch] = ACTIONS(1176), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1182), + [anon_sym_for] = ACTIONS(1185), + [anon_sym_return] = ACTIONS(1188), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1194), + [anon_sym_goto] = ACTIONS(1197), + [anon_sym___try] = ACTIONS(1200), + [anon_sym___leave] = ACTIONS(1203), + [anon_sym_DASH_DASH] = ACTIONS(917), + [anon_sym_PLUS_PLUS] = ACTIONS(917), + [anon_sym_sizeof] = ACTIONS(920), + [anon_sym___alignof__] = ACTIONS(923), + [anon_sym___alignof] = ACTIONS(923), + [anon_sym__alignof] = ACTIONS(923), + [anon_sym_alignof] = ACTIONS(923), + [anon_sym__Alignof] = ACTIONS(923), + [anon_sym_offsetof] = ACTIONS(926), + [anon_sym__Generic] = ACTIONS(929), + [anon_sym_asm] = ACTIONS(932), + [anon_sym___asm__] = ACTIONS(932), + [sym_number_literal] = ACTIONS(935), + [anon_sym_L_SQUOTE] = ACTIONS(938), + [anon_sym_u_SQUOTE] = ACTIONS(938), + [anon_sym_U_SQUOTE] = ACTIONS(938), + [anon_sym_u8_SQUOTE] = ACTIONS(938), + [anon_sym_SQUOTE] = ACTIONS(938), + [anon_sym_L_DQUOTE] = ACTIONS(941), + [anon_sym_u_DQUOTE] = ACTIONS(941), + [anon_sym_U_DQUOTE] = ACTIONS(941), + [anon_sym_u8_DQUOTE] = ACTIONS(941), + [anon_sym_DQUOTE] = ACTIONS(941), + [sym_true] = ACTIONS(944), + [sym_false] = ACTIONS(944), + [anon_sym_NULL] = ACTIONS(947), + [anon_sym_nullptr] = ACTIONS(947), + [sym_comment] = ACTIONS(5), + }, [74] = { - [sym_declaration] = STATE(629), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1711), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym__for_statement_body] = STATE(3271), - [sym_expression] = STATE(1623), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3266), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1877), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym_variadic_parameter] = STATE(2440), + [sym_parameter_declaration] = STATE(2440), + [sym_expression] = STATE(1550), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(1206), [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1208), + [anon_sym_RPAREN] = ACTIONS(1210), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(23), @@ -30130,8 +30195,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(1208), - [anon_sym___extension__] = ACTIONS(55), + [anon_sym___extension__] = ACTIONS(1212), [anon_sym_extern] = ACTIONS(53), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___scanf] = ACTIONS(37), @@ -30141,12 +30205,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ro_after_init] = ACTIONS(39), [anon_sym___noreturn] = ACTIONS(39), [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), [anon_sym___declspec] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), [anon_sym_static] = ACTIONS(53), [anon_sym_auto] = ACTIONS(53), [anon_sym_register] = ACTIONS(53), @@ -30166,10 +30230,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_noreturn] = ACTIONS(55), [anon_sym_alignas] = ACTIONS(57), [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(59), - [anon_sym_enum] = ACTIONS(61), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -30200,49 +30264,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), }, [75] = { - [sym_declaration] = STATE(629), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1711), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym__for_statement_body] = STATE(3167), - [sym_expression] = STATE(1623), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3266), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [sym_identifier] = ACTIONS(1206), + [sym_declaration] = STATE(654), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1735), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(895), + [sym_ms_declspec_modifier] = STATE(895), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym__for_statement_body] = STATE(3254), + [sym_expression] = STATE(1585), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3337), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [sym_identifier] = ACTIONS(1226), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -30251,7 +30315,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(1208), + [anon_sym_SEMI] = ACTIONS(1228), [anon_sym___extension__] = ACTIONS(55), [anon_sym_extern] = ACTIONS(53), [anon_sym___attribute__] = ACTIONS(35), @@ -30262,7 +30326,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ro_after_init] = ACTIONS(39), [anon_sym___noreturn] = ACTIONS(39), [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), [anon_sym___declspec] = ACTIONS(43), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), @@ -30321,50 +30385,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), }, [76] = { - [sym_declaration] = STATE(629), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1711), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym__for_statement_body] = STATE(3282), - [sym_expression] = STATE(1623), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3266), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1877), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym_variadic_parameter] = STATE(2473), + [sym_parameter_declaration] = STATE(2473), + [sym_expression] = STATE(1569), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(1206), [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1208), + [anon_sym_RPAREN] = ACTIONS(1230), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(23), @@ -30372,8 +30437,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(1208), - [anon_sym___extension__] = ACTIONS(55), + [anon_sym___extension__] = ACTIONS(1232), [anon_sym_extern] = ACTIONS(53), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___scanf] = ACTIONS(37), @@ -30383,12 +30447,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ro_after_init] = ACTIONS(39), [anon_sym___noreturn] = ACTIONS(39), [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), [anon_sym___declspec] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), [anon_sym_static] = ACTIONS(53), [anon_sym_auto] = ACTIONS(53), [anon_sym_register] = ACTIONS(53), @@ -30408,10 +30472,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_noreturn] = ACTIONS(55), [anon_sym_alignas] = ACTIONS(57), [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(59), - [anon_sym_enum] = ACTIONS(61), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -30442,49 +30506,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), }, [77] = { - [sym_declaration] = STATE(629), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1711), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym__for_statement_body] = STATE(3069), - [sym_expression] = STATE(1623), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3266), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [sym_identifier] = ACTIONS(1206), + [sym_declaration] = STATE(654), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1735), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(895), + [sym_ms_declspec_modifier] = STATE(895), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym__for_statement_body] = STATE(3083), + [sym_expression] = STATE(1585), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3337), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [sym_identifier] = ACTIONS(1226), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -30493,7 +30557,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(1208), + [anon_sym_SEMI] = ACTIONS(1228), [anon_sym___extension__] = ACTIONS(55), [anon_sym_extern] = ACTIONS(53), [anon_sym___attribute__] = ACTIONS(35), @@ -30504,7 +30568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ro_after_init] = ACTIONS(39), [anon_sym___noreturn] = ACTIONS(39), [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), [anon_sym___declspec] = ACTIONS(43), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), @@ -30563,49 +30627,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), }, [78] = { - [sym_declaration] = STATE(629), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1711), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym__for_statement_body] = STATE(3232), - [sym_expression] = STATE(1623), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3266), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [sym_identifier] = ACTIONS(1206), + [sym_declaration] = STATE(654), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1735), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(895), + [sym_ms_declspec_modifier] = STATE(895), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym__for_statement_body] = STATE(3094), + [sym_expression] = STATE(1585), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3337), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [sym_identifier] = ACTIONS(1226), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -30614,7 +30678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(1208), + [anon_sym_SEMI] = ACTIONS(1228), [anon_sym___extension__] = ACTIONS(55), [anon_sym_extern] = ACTIONS(53), [anon_sym___attribute__] = ACTIONS(35), @@ -30625,7 +30689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ro_after_init] = ACTIONS(39), [anon_sym___noreturn] = ACTIONS(39), [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), [anon_sym___declspec] = ACTIONS(43), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), @@ -30684,49 +30748,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), }, [79] = { - [sym_declaration] = STATE(629), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1711), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym__for_statement_body] = STATE(2991), - [sym_expression] = STATE(1623), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3266), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [sym_identifier] = ACTIONS(1206), + [sym_declaration] = STATE(654), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1735), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(895), + [sym_ms_declspec_modifier] = STATE(895), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym__for_statement_body] = STATE(3193), + [sym_expression] = STATE(1585), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3337), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [sym_identifier] = ACTIONS(1226), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -30735,7 +30799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(1208), + [anon_sym_SEMI] = ACTIONS(1228), [anon_sym___extension__] = ACTIONS(55), [anon_sym_extern] = ACTIONS(53), [anon_sym___attribute__] = ACTIONS(35), @@ -30746,7 +30810,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ro_after_init] = ACTIONS(39), [anon_sym___noreturn] = ACTIONS(39), [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), [anon_sym___declspec] = ACTIONS(43), [anon_sym_signed] = ACTIONS(51), [anon_sym_unsigned] = ACTIONS(51), @@ -30805,1147 +30869,724 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), }, [80] = { - [sym_else_clause] = STATE(82), - [sym_identifier] = ACTIONS(1212), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1212), - [aux_sym_preproc_def_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token2] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), - [aux_sym_preproc_else_token1] = ACTIONS(1212), - [aux_sym_preproc_elif_token1] = ACTIONS(1212), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1212), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1212), - [sym_preproc_directive] = ACTIONS(1212), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym___extension__] = ACTIONS(1212), - [anon_sym_typedef] = ACTIONS(1212), - [anon_sym_extern] = ACTIONS(1212), - [anon_sym___attribute__] = ACTIONS(1212), - [anon_sym___scanf] = ACTIONS(1212), - [anon_sym___printf] = ACTIONS(1212), - [anon_sym___read_mostly] = ACTIONS(1212), - [anon_sym___must_hold] = ACTIONS(1212), - [anon_sym___ro_after_init] = ACTIONS(1212), - [anon_sym___noreturn] = ACTIONS(1212), - [anon_sym___cold] = ACTIONS(1212), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1877), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym_variadic_parameter] = STATE(2444), + [sym_parameter_declaration] = STATE(2444), + [sym_expression] = STATE(1563), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(1206), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1208), + [anon_sym_RPAREN] = ACTIONS(1234), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym___extension__] = ACTIONS(1236), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), - [anon_sym___declspec] = ACTIONS(1212), - [anon_sym___init] = ACTIONS(1212), - [anon_sym___exit] = ACTIONS(1212), - [anon_sym___cdecl] = ACTIONS(1212), - [anon_sym___clrcall] = ACTIONS(1212), - [anon_sym___stdcall] = ACTIONS(1212), - [anon_sym___fastcall] = ACTIONS(1212), - [anon_sym___thiscall] = ACTIONS(1212), - [anon_sym___vectorcall] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_signed] = ACTIONS(1212), - [anon_sym_unsigned] = ACTIONS(1212), - [anon_sym_long] = ACTIONS(1212), - [anon_sym_short] = ACTIONS(1212), - [anon_sym_static] = ACTIONS(1212), - [anon_sym_auto] = ACTIONS(1212), - [anon_sym_register] = ACTIONS(1212), - [anon_sym_inline] = ACTIONS(1212), - [anon_sym___inline] = ACTIONS(1212), - [anon_sym___inline__] = ACTIONS(1212), - [anon_sym___forceinline] = ACTIONS(1212), - [anon_sym_thread_local] = ACTIONS(1212), - [anon_sym___thread] = ACTIONS(1212), - [anon_sym_const] = ACTIONS(1212), - [anon_sym_constexpr] = ACTIONS(1212), - [anon_sym_volatile] = ACTIONS(1212), - [anon_sym_restrict] = ACTIONS(1212), - [anon_sym___restrict__] = ACTIONS(1212), - [anon_sym__Atomic] = ACTIONS(1212), - [anon_sym__Noreturn] = ACTIONS(1212), - [anon_sym_noreturn] = ACTIONS(1212), - [anon_sym_alignas] = ACTIONS(1212), - [anon_sym__Alignas] = ACTIONS(1212), - [sym_primitive_type] = ACTIONS(1212), - [anon_sym_enum] = ACTIONS(1212), - [anon_sym_struct] = ACTIONS(1212), - [anon_sym_union] = ACTIONS(1212), - [anon_sym_if] = ACTIONS(1212), - [anon_sym_else] = ACTIONS(1216), - [anon_sym_switch] = ACTIONS(1212), - [anon_sym_case] = ACTIONS(1212), - [anon_sym_default] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(1212), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_return] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(1212), - [anon_sym_continue] = ACTIONS(1212), - [anon_sym_goto] = ACTIONS(1212), - [anon_sym___try] = ACTIONS(1212), - [anon_sym___leave] = ACTIONS(1212), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1212), - [anon_sym___alignof__] = ACTIONS(1212), - [anon_sym___alignof] = ACTIONS(1212), - [anon_sym__alignof] = ACTIONS(1212), - [anon_sym_alignof] = ACTIONS(1212), - [anon_sym__Alignof] = ACTIONS(1212), - [anon_sym_offsetof] = ACTIONS(1212), - [anon_sym__Generic] = ACTIONS(1212), - [anon_sym_asm] = ACTIONS(1212), - [anon_sym___asm__] = ACTIONS(1212), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_L_SQUOTE] = ACTIONS(1214), - [anon_sym_u_SQUOTE] = ACTIONS(1214), - [anon_sym_U_SQUOTE] = ACTIONS(1214), - [anon_sym_u8_SQUOTE] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_L_DQUOTE] = ACTIONS(1214), - [anon_sym_u_DQUOTE] = ACTIONS(1214), - [anon_sym_U_DQUOTE] = ACTIONS(1214), - [anon_sym_u8_DQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1212), - [sym_false] = ACTIONS(1212), - [anon_sym_NULL] = ACTIONS(1212), - [anon_sym_nullptr] = ACTIONS(1212), - [sym_comment] = ACTIONS(5), - }, - [81] = { - [sym_identifier] = ACTIONS(1218), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1218), - [aux_sym_preproc_def_token1] = ACTIONS(1218), - [aux_sym_preproc_if_token1] = ACTIONS(1218), - [aux_sym_preproc_if_token2] = ACTIONS(1218), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1218), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1218), - [aux_sym_preproc_else_token1] = ACTIONS(1218), - [aux_sym_preproc_elif_token1] = ACTIONS(1218), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1218), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1218), - [sym_preproc_directive] = ACTIONS(1218), - [anon_sym_LPAREN2] = ACTIONS(1220), - [anon_sym_BANG] = ACTIONS(1220), - [anon_sym_TILDE] = ACTIONS(1220), - [anon_sym_DASH] = ACTIONS(1218), - [anon_sym_PLUS] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1220), - [anon_sym_SEMI] = ACTIONS(1220), - [anon_sym___extension__] = ACTIONS(1218), - [anon_sym_typedef] = ACTIONS(1218), - [anon_sym_extern] = ACTIONS(1218), - [anon_sym___attribute__] = ACTIONS(1218), - [anon_sym___scanf] = ACTIONS(1218), - [anon_sym___printf] = ACTIONS(1218), - [anon_sym___read_mostly] = ACTIONS(1218), - [anon_sym___must_hold] = ACTIONS(1218), - [anon_sym___ro_after_init] = ACTIONS(1218), - [anon_sym___noreturn] = ACTIONS(1218), - [anon_sym___cold] = ACTIONS(1218), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1220), - [anon_sym___declspec] = ACTIONS(1218), - [anon_sym___init] = ACTIONS(1218), - [anon_sym___exit] = ACTIONS(1218), - [anon_sym___cdecl] = ACTIONS(1218), - [anon_sym___clrcall] = ACTIONS(1218), - [anon_sym___stdcall] = ACTIONS(1218), - [anon_sym___fastcall] = ACTIONS(1218), - [anon_sym___thiscall] = ACTIONS(1218), - [anon_sym___vectorcall] = ACTIONS(1218), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_signed] = ACTIONS(1218), - [anon_sym_unsigned] = ACTIONS(1218), - [anon_sym_long] = ACTIONS(1218), - [anon_sym_short] = ACTIONS(1218), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_auto] = ACTIONS(1218), - [anon_sym_register] = ACTIONS(1218), - [anon_sym_inline] = ACTIONS(1218), - [anon_sym___inline] = ACTIONS(1218), - [anon_sym___inline__] = ACTIONS(1218), - [anon_sym___forceinline] = ACTIONS(1218), - [anon_sym_thread_local] = ACTIONS(1218), - [anon_sym___thread] = ACTIONS(1218), - [anon_sym_const] = ACTIONS(1218), - [anon_sym_constexpr] = ACTIONS(1218), - [anon_sym_volatile] = ACTIONS(1218), - [anon_sym_restrict] = ACTIONS(1218), - [anon_sym___restrict__] = ACTIONS(1218), - [anon_sym__Atomic] = ACTIONS(1218), - [anon_sym__Noreturn] = ACTIONS(1218), - [anon_sym_noreturn] = ACTIONS(1218), - [anon_sym_alignas] = ACTIONS(1218), - [anon_sym__Alignas] = ACTIONS(1218), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), [sym_primitive_type] = ACTIONS(1218), - [anon_sym_enum] = ACTIONS(1218), - [anon_sym_struct] = ACTIONS(1218), - [anon_sym_union] = ACTIONS(1218), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_else] = ACTIONS(1218), - [anon_sym_switch] = ACTIONS(1218), - [anon_sym_case] = ACTIONS(1218), - [anon_sym_default] = ACTIONS(1218), - [anon_sym_while] = ACTIONS(1218), - [anon_sym_do] = ACTIONS(1218), - [anon_sym_for] = ACTIONS(1218), - [anon_sym_return] = ACTIONS(1218), - [anon_sym_break] = ACTIONS(1218), - [anon_sym_continue] = ACTIONS(1218), - [anon_sym_goto] = ACTIONS(1218), - [anon_sym___try] = ACTIONS(1218), - [anon_sym___leave] = ACTIONS(1218), - [anon_sym_DASH_DASH] = ACTIONS(1220), - [anon_sym_PLUS_PLUS] = ACTIONS(1220), - [anon_sym_sizeof] = ACTIONS(1218), - [anon_sym___alignof__] = ACTIONS(1218), - [anon_sym___alignof] = ACTIONS(1218), - [anon_sym__alignof] = ACTIONS(1218), - [anon_sym_alignof] = ACTIONS(1218), - [anon_sym__Alignof] = ACTIONS(1218), - [anon_sym_offsetof] = ACTIONS(1218), - [anon_sym__Generic] = ACTIONS(1218), - [anon_sym_asm] = ACTIONS(1218), - [anon_sym___asm__] = ACTIONS(1218), - [sym_number_literal] = ACTIONS(1220), - [anon_sym_L_SQUOTE] = ACTIONS(1220), - [anon_sym_u_SQUOTE] = ACTIONS(1220), - [anon_sym_U_SQUOTE] = ACTIONS(1220), - [anon_sym_u8_SQUOTE] = ACTIONS(1220), - [anon_sym_SQUOTE] = ACTIONS(1220), - [anon_sym_L_DQUOTE] = ACTIONS(1220), - [anon_sym_u_DQUOTE] = ACTIONS(1220), - [anon_sym_U_DQUOTE] = ACTIONS(1220), - [anon_sym_u8_DQUOTE] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1220), - [sym_true] = ACTIONS(1218), - [sym_false] = ACTIONS(1218), - [anon_sym_NULL] = ACTIONS(1218), - [anon_sym_nullptr] = ACTIONS(1218), - [sym_comment] = ACTIONS(5), - }, - [82] = { - [sym_identifier] = ACTIONS(1222), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1222), - [aux_sym_preproc_def_token1] = ACTIONS(1222), - [aux_sym_preproc_if_token1] = ACTIONS(1222), - [aux_sym_preproc_if_token2] = ACTIONS(1222), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1222), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1222), - [aux_sym_preproc_else_token1] = ACTIONS(1222), - [aux_sym_preproc_elif_token1] = ACTIONS(1222), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1222), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1222), - [sym_preproc_directive] = ACTIONS(1222), - [anon_sym_LPAREN2] = ACTIONS(1224), - [anon_sym_BANG] = ACTIONS(1224), - [anon_sym_TILDE] = ACTIONS(1224), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_STAR] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym___extension__] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(1222), - [anon_sym___attribute__] = ACTIONS(1222), - [anon_sym___scanf] = ACTIONS(1222), - [anon_sym___printf] = ACTIONS(1222), - [anon_sym___read_mostly] = ACTIONS(1222), - [anon_sym___must_hold] = ACTIONS(1222), - [anon_sym___ro_after_init] = ACTIONS(1222), - [anon_sym___noreturn] = ACTIONS(1222), - [anon_sym___cold] = ACTIONS(1222), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1224), - [anon_sym___declspec] = ACTIONS(1222), - [anon_sym___init] = ACTIONS(1222), - [anon_sym___exit] = ACTIONS(1222), - [anon_sym___cdecl] = ACTIONS(1222), - [anon_sym___clrcall] = ACTIONS(1222), - [anon_sym___stdcall] = ACTIONS(1222), - [anon_sym___fastcall] = ACTIONS(1222), - [anon_sym___thiscall] = ACTIONS(1222), - [anon_sym___vectorcall] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_signed] = ACTIONS(1222), - [anon_sym_unsigned] = ACTIONS(1222), - [anon_sym_long] = ACTIONS(1222), - [anon_sym_short] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1222), - [anon_sym_auto] = ACTIONS(1222), - [anon_sym_register] = ACTIONS(1222), - [anon_sym_inline] = ACTIONS(1222), - [anon_sym___inline] = ACTIONS(1222), - [anon_sym___inline__] = ACTIONS(1222), - [anon_sym___forceinline] = ACTIONS(1222), - [anon_sym_thread_local] = ACTIONS(1222), - [anon_sym___thread] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_constexpr] = ACTIONS(1222), - [anon_sym_volatile] = ACTIONS(1222), - [anon_sym_restrict] = ACTIONS(1222), - [anon_sym___restrict__] = ACTIONS(1222), - [anon_sym__Atomic] = ACTIONS(1222), - [anon_sym__Noreturn] = ACTIONS(1222), - [anon_sym_noreturn] = ACTIONS(1222), - [anon_sym_alignas] = ACTIONS(1222), - [anon_sym__Alignas] = ACTIONS(1222), - [sym_primitive_type] = ACTIONS(1222), - [anon_sym_enum] = ACTIONS(1222), + [anon_sym_enum] = ACTIONS(1220), [anon_sym_struct] = ACTIONS(1222), - [anon_sym_union] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_else] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(1222), - [anon_sym_case] = ACTIONS(1222), - [anon_sym_default] = ACTIONS(1222), - [anon_sym_while] = ACTIONS(1222), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_break] = ACTIONS(1222), - [anon_sym_continue] = ACTIONS(1222), - [anon_sym_goto] = ACTIONS(1222), - [anon_sym___try] = ACTIONS(1222), - [anon_sym___leave] = ACTIONS(1222), - [anon_sym_DASH_DASH] = ACTIONS(1224), - [anon_sym_PLUS_PLUS] = ACTIONS(1224), - [anon_sym_sizeof] = ACTIONS(1222), - [anon_sym___alignof__] = ACTIONS(1222), - [anon_sym___alignof] = ACTIONS(1222), - [anon_sym__alignof] = ACTIONS(1222), - [anon_sym_alignof] = ACTIONS(1222), - [anon_sym__Alignof] = ACTIONS(1222), - [anon_sym_offsetof] = ACTIONS(1222), - [anon_sym__Generic] = ACTIONS(1222), - [anon_sym_asm] = ACTIONS(1222), - [anon_sym___asm__] = ACTIONS(1222), - [sym_number_literal] = ACTIONS(1224), - [anon_sym_L_SQUOTE] = ACTIONS(1224), - [anon_sym_u_SQUOTE] = ACTIONS(1224), - [anon_sym_U_SQUOTE] = ACTIONS(1224), - [anon_sym_u8_SQUOTE] = ACTIONS(1224), - [anon_sym_SQUOTE] = ACTIONS(1224), - [anon_sym_L_DQUOTE] = ACTIONS(1224), - [anon_sym_u_DQUOTE] = ACTIONS(1224), - [anon_sym_U_DQUOTE] = ACTIONS(1224), - [anon_sym_u8_DQUOTE] = ACTIONS(1224), - [anon_sym_DQUOTE] = ACTIONS(1224), - [sym_true] = ACTIONS(1222), - [sym_false] = ACTIONS(1222), - [anon_sym_NULL] = ACTIONS(1222), - [anon_sym_nullptr] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [83] = { + [81] = { + [sym_declaration] = STATE(654), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1735), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(895), + [sym_ms_declspec_modifier] = STATE(895), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym__for_statement_body] = STATE(3259), + [sym_expression] = STATE(1585), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3337), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(1226), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1226), - [aux_sym_preproc_def_token1] = ACTIONS(1226), - [aux_sym_preproc_if_token1] = ACTIONS(1226), - [aux_sym_preproc_if_token2] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1226), - [aux_sym_preproc_else_token1] = ACTIONS(1226), - [aux_sym_preproc_elif_token1] = ACTIONS(1226), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1226), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1226), - [sym_preproc_directive] = ACTIONS(1226), - [anon_sym_LPAREN2] = ACTIONS(1228), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1226), - [anon_sym_PLUS] = ACTIONS(1226), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym___extension__] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1226), - [anon_sym_extern] = ACTIONS(1226), - [anon_sym___attribute__] = ACTIONS(1226), - [anon_sym___scanf] = ACTIONS(1226), - [anon_sym___printf] = ACTIONS(1226), - [anon_sym___read_mostly] = ACTIONS(1226), - [anon_sym___must_hold] = ACTIONS(1226), - [anon_sym___ro_after_init] = ACTIONS(1226), - [anon_sym___noreturn] = ACTIONS(1226), - [anon_sym___cold] = ACTIONS(1226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1228), - [anon_sym___declspec] = ACTIONS(1226), - [anon_sym___init] = ACTIONS(1226), - [anon_sym___exit] = ACTIONS(1226), - [anon_sym___cdecl] = ACTIONS(1226), - [anon_sym___clrcall] = ACTIONS(1226), - [anon_sym___stdcall] = ACTIONS(1226), - [anon_sym___fastcall] = ACTIONS(1226), - [anon_sym___thiscall] = ACTIONS(1226), - [anon_sym___vectorcall] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_signed] = ACTIONS(1226), - [anon_sym_unsigned] = ACTIONS(1226), - [anon_sym_long] = ACTIONS(1226), - [anon_sym_short] = ACTIONS(1226), - [anon_sym_static] = ACTIONS(1226), - [anon_sym_auto] = ACTIONS(1226), - [anon_sym_register] = ACTIONS(1226), - [anon_sym_inline] = ACTIONS(1226), - [anon_sym___inline] = ACTIONS(1226), - [anon_sym___inline__] = ACTIONS(1226), - [anon_sym___forceinline] = ACTIONS(1226), - [anon_sym_thread_local] = ACTIONS(1226), - [anon_sym___thread] = ACTIONS(1226), - [anon_sym_const] = ACTIONS(1226), - [anon_sym_constexpr] = ACTIONS(1226), - [anon_sym_volatile] = ACTIONS(1226), - [anon_sym_restrict] = ACTIONS(1226), - [anon_sym___restrict__] = ACTIONS(1226), - [anon_sym__Atomic] = ACTIONS(1226), - [anon_sym__Noreturn] = ACTIONS(1226), - [anon_sym_noreturn] = ACTIONS(1226), - [anon_sym_alignas] = ACTIONS(1226), - [anon_sym__Alignas] = ACTIONS(1226), - [sym_primitive_type] = ACTIONS(1226), - [anon_sym_enum] = ACTIONS(1226), - [anon_sym_struct] = ACTIONS(1226), - [anon_sym_union] = ACTIONS(1226), - [anon_sym_if] = ACTIONS(1226), - [anon_sym_else] = ACTIONS(1226), - [anon_sym_switch] = ACTIONS(1226), - [anon_sym_case] = ACTIONS(1226), - [anon_sym_default] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_do] = ACTIONS(1226), - [anon_sym_for] = ACTIONS(1226), - [anon_sym_return] = ACTIONS(1226), - [anon_sym_break] = ACTIONS(1226), - [anon_sym_continue] = ACTIONS(1226), - [anon_sym_goto] = ACTIONS(1226), - [anon_sym___try] = ACTIONS(1226), - [anon_sym___leave] = ACTIONS(1226), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_sizeof] = ACTIONS(1226), - [anon_sym___alignof__] = ACTIONS(1226), - [anon_sym___alignof] = ACTIONS(1226), - [anon_sym__alignof] = ACTIONS(1226), - [anon_sym_alignof] = ACTIONS(1226), - [anon_sym__Alignof] = ACTIONS(1226), - [anon_sym_offsetof] = ACTIONS(1226), - [anon_sym__Generic] = ACTIONS(1226), - [anon_sym_asm] = ACTIONS(1226), - [anon_sym___asm__] = ACTIONS(1226), - [sym_number_literal] = ACTIONS(1228), - [anon_sym_L_SQUOTE] = ACTIONS(1228), - [anon_sym_u_SQUOTE] = ACTIONS(1228), - [anon_sym_U_SQUOTE] = ACTIONS(1228), - [anon_sym_u8_SQUOTE] = ACTIONS(1228), - [anon_sym_SQUOTE] = ACTIONS(1228), - [anon_sym_L_DQUOTE] = ACTIONS(1228), - [anon_sym_u_DQUOTE] = ACTIONS(1228), - [anon_sym_U_DQUOTE] = ACTIONS(1228), - [anon_sym_u8_DQUOTE] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym_true] = ACTIONS(1226), - [sym_false] = ACTIONS(1226), - [anon_sym_NULL] = ACTIONS(1226), - [anon_sym_nullptr] = ACTIONS(1226), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(59), + [anon_sym_enum] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [84] = { + [82] = { + [sym_declaration] = STATE(654), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1735), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(895), + [sym_ms_declspec_modifier] = STATE(895), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym__for_statement_body] = STATE(3309), + [sym_expression] = STATE(1585), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3337), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), [sym_identifier] = ACTIONS(1226), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1226), - [aux_sym_preproc_def_token1] = ACTIONS(1226), - [aux_sym_preproc_if_token1] = ACTIONS(1226), - [aux_sym_preproc_if_token2] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1226), - [aux_sym_preproc_else_token1] = ACTIONS(1226), - [aux_sym_preproc_elif_token1] = ACTIONS(1226), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1226), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1226), - [sym_preproc_directive] = ACTIONS(1226), - [anon_sym_LPAREN2] = ACTIONS(1228), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1226), - [anon_sym_PLUS] = ACTIONS(1226), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym___extension__] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1226), - [anon_sym_extern] = ACTIONS(1226), - [anon_sym___attribute__] = ACTIONS(1226), - [anon_sym___scanf] = ACTIONS(1226), - [anon_sym___printf] = ACTIONS(1226), - [anon_sym___read_mostly] = ACTIONS(1226), - [anon_sym___must_hold] = ACTIONS(1226), - [anon_sym___ro_after_init] = ACTIONS(1226), - [anon_sym___noreturn] = ACTIONS(1226), - [anon_sym___cold] = ACTIONS(1226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1228), - [anon_sym___declspec] = ACTIONS(1226), - [anon_sym___init] = ACTIONS(1226), - [anon_sym___exit] = ACTIONS(1226), - [anon_sym___cdecl] = ACTIONS(1226), - [anon_sym___clrcall] = ACTIONS(1226), - [anon_sym___stdcall] = ACTIONS(1226), - [anon_sym___fastcall] = ACTIONS(1226), - [anon_sym___thiscall] = ACTIONS(1226), - [anon_sym___vectorcall] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_signed] = ACTIONS(1226), - [anon_sym_unsigned] = ACTIONS(1226), - [anon_sym_long] = ACTIONS(1226), - [anon_sym_short] = ACTIONS(1226), - [anon_sym_static] = ACTIONS(1226), - [anon_sym_auto] = ACTIONS(1226), - [anon_sym_register] = ACTIONS(1226), - [anon_sym_inline] = ACTIONS(1226), - [anon_sym___inline] = ACTIONS(1226), - [anon_sym___inline__] = ACTIONS(1226), - [anon_sym___forceinline] = ACTIONS(1226), - [anon_sym_thread_local] = ACTIONS(1226), - [anon_sym___thread] = ACTIONS(1226), - [anon_sym_const] = ACTIONS(1226), - [anon_sym_constexpr] = ACTIONS(1226), - [anon_sym_volatile] = ACTIONS(1226), - [anon_sym_restrict] = ACTIONS(1226), - [anon_sym___restrict__] = ACTIONS(1226), - [anon_sym__Atomic] = ACTIONS(1226), - [anon_sym__Noreturn] = ACTIONS(1226), - [anon_sym_noreturn] = ACTIONS(1226), - [anon_sym_alignas] = ACTIONS(1226), - [anon_sym__Alignas] = ACTIONS(1226), - [sym_primitive_type] = ACTIONS(1226), - [anon_sym_enum] = ACTIONS(1226), - [anon_sym_struct] = ACTIONS(1226), - [anon_sym_union] = ACTIONS(1226), - [anon_sym_if] = ACTIONS(1226), - [anon_sym_else] = ACTIONS(1226), - [anon_sym_switch] = ACTIONS(1226), - [anon_sym_case] = ACTIONS(1226), - [anon_sym_default] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_do] = ACTIONS(1226), - [anon_sym_for] = ACTIONS(1226), - [anon_sym_return] = ACTIONS(1226), - [anon_sym_break] = ACTIONS(1226), - [anon_sym_continue] = ACTIONS(1226), - [anon_sym_goto] = ACTIONS(1226), - [anon_sym___try] = ACTIONS(1226), - [anon_sym___leave] = ACTIONS(1226), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_sizeof] = ACTIONS(1226), - [anon_sym___alignof__] = ACTIONS(1226), - [anon_sym___alignof] = ACTIONS(1226), - [anon_sym__alignof] = ACTIONS(1226), - [anon_sym_alignof] = ACTIONS(1226), - [anon_sym__Alignof] = ACTIONS(1226), - [anon_sym_offsetof] = ACTIONS(1226), - [anon_sym__Generic] = ACTIONS(1226), - [anon_sym_asm] = ACTIONS(1226), - [anon_sym___asm__] = ACTIONS(1226), - [sym_number_literal] = ACTIONS(1228), - [anon_sym_L_SQUOTE] = ACTIONS(1228), - [anon_sym_u_SQUOTE] = ACTIONS(1228), - [anon_sym_U_SQUOTE] = ACTIONS(1228), - [anon_sym_u8_SQUOTE] = ACTIONS(1228), - [anon_sym_SQUOTE] = ACTIONS(1228), - [anon_sym_L_DQUOTE] = ACTIONS(1228), - [anon_sym_u_DQUOTE] = ACTIONS(1228), - [anon_sym_U_DQUOTE] = ACTIONS(1228), - [anon_sym_u8_DQUOTE] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym_true] = ACTIONS(1226), - [sym_false] = ACTIONS(1226), - [anon_sym_NULL] = ACTIONS(1226), - [anon_sym_nullptr] = ACTIONS(1226), - [sym_comment] = ACTIONS(5), - }, - [85] = { - [sym_identifier] = ACTIONS(1230), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1230), - [aux_sym_preproc_def_token1] = ACTIONS(1230), - [aux_sym_preproc_if_token1] = ACTIONS(1230), - [aux_sym_preproc_if_token2] = ACTIONS(1230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1230), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1230), - [aux_sym_preproc_else_token1] = ACTIONS(1230), - [aux_sym_preproc_elif_token1] = ACTIONS(1230), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1230), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1230), - [sym_preproc_directive] = ACTIONS(1230), - [anon_sym_LPAREN2] = ACTIONS(1232), - [anon_sym_BANG] = ACTIONS(1232), - [anon_sym_TILDE] = ACTIONS(1232), - [anon_sym_DASH] = ACTIONS(1230), - [anon_sym_PLUS] = ACTIONS(1230), - [anon_sym_STAR] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(1232), - [anon_sym_SEMI] = ACTIONS(1232), - [anon_sym___extension__] = ACTIONS(1230), - [anon_sym_typedef] = ACTIONS(1230), - [anon_sym_extern] = ACTIONS(1230), - [anon_sym___attribute__] = ACTIONS(1230), - [anon_sym___scanf] = ACTIONS(1230), - [anon_sym___printf] = ACTIONS(1230), - [anon_sym___read_mostly] = ACTIONS(1230), - [anon_sym___must_hold] = ACTIONS(1230), - [anon_sym___ro_after_init] = ACTIONS(1230), - [anon_sym___noreturn] = ACTIONS(1230), - [anon_sym___cold] = ACTIONS(1230), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1232), - [anon_sym___declspec] = ACTIONS(1230), - [anon_sym___init] = ACTIONS(1230), - [anon_sym___exit] = ACTIONS(1230), - [anon_sym___cdecl] = ACTIONS(1230), - [anon_sym___clrcall] = ACTIONS(1230), - [anon_sym___stdcall] = ACTIONS(1230), - [anon_sym___fastcall] = ACTIONS(1230), - [anon_sym___thiscall] = ACTIONS(1230), - [anon_sym___vectorcall] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_signed] = ACTIONS(1230), - [anon_sym_unsigned] = ACTIONS(1230), - [anon_sym_long] = ACTIONS(1230), - [anon_sym_short] = ACTIONS(1230), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_auto] = ACTIONS(1230), - [anon_sym_register] = ACTIONS(1230), - [anon_sym_inline] = ACTIONS(1230), - [anon_sym___inline] = ACTIONS(1230), - [anon_sym___inline__] = ACTIONS(1230), - [anon_sym___forceinline] = ACTIONS(1230), - [anon_sym_thread_local] = ACTIONS(1230), - [anon_sym___thread] = ACTIONS(1230), - [anon_sym_const] = ACTIONS(1230), - [anon_sym_constexpr] = ACTIONS(1230), - [anon_sym_volatile] = ACTIONS(1230), - [anon_sym_restrict] = ACTIONS(1230), - [anon_sym___restrict__] = ACTIONS(1230), - [anon_sym__Atomic] = ACTIONS(1230), - [anon_sym__Noreturn] = ACTIONS(1230), - [anon_sym_noreturn] = ACTIONS(1230), - [anon_sym_alignas] = ACTIONS(1230), - [anon_sym__Alignas] = ACTIONS(1230), - [sym_primitive_type] = ACTIONS(1230), - [anon_sym_enum] = ACTIONS(1230), - [anon_sym_struct] = ACTIONS(1230), - [anon_sym_union] = ACTIONS(1230), - [anon_sym_if] = ACTIONS(1230), - [anon_sym_else] = ACTIONS(1230), - [anon_sym_switch] = ACTIONS(1230), - [anon_sym_case] = ACTIONS(1230), - [anon_sym_default] = ACTIONS(1230), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_do] = ACTIONS(1230), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(1230), - [anon_sym_break] = ACTIONS(1230), - [anon_sym_continue] = ACTIONS(1230), - [anon_sym_goto] = ACTIONS(1230), - [anon_sym___try] = ACTIONS(1230), - [anon_sym___leave] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1232), - [anon_sym_PLUS_PLUS] = ACTIONS(1232), - [anon_sym_sizeof] = ACTIONS(1230), - [anon_sym___alignof__] = ACTIONS(1230), - [anon_sym___alignof] = ACTIONS(1230), - [anon_sym__alignof] = ACTIONS(1230), - [anon_sym_alignof] = ACTIONS(1230), - [anon_sym__Alignof] = ACTIONS(1230), - [anon_sym_offsetof] = ACTIONS(1230), - [anon_sym__Generic] = ACTIONS(1230), - [anon_sym_asm] = ACTIONS(1230), - [anon_sym___asm__] = ACTIONS(1230), - [sym_number_literal] = ACTIONS(1232), - [anon_sym_L_SQUOTE] = ACTIONS(1232), - [anon_sym_u_SQUOTE] = ACTIONS(1232), - [anon_sym_U_SQUOTE] = ACTIONS(1232), - [anon_sym_u8_SQUOTE] = ACTIONS(1232), - [anon_sym_SQUOTE] = ACTIONS(1232), - [anon_sym_L_DQUOTE] = ACTIONS(1232), - [anon_sym_u_DQUOTE] = ACTIONS(1232), - [anon_sym_U_DQUOTE] = ACTIONS(1232), - [anon_sym_u8_DQUOTE] = ACTIONS(1232), - [anon_sym_DQUOTE] = ACTIONS(1232), - [sym_true] = ACTIONS(1230), - [sym_false] = ACTIONS(1230), - [anon_sym_NULL] = ACTIONS(1230), - [anon_sym_nullptr] = ACTIONS(1230), - [sym_comment] = ACTIONS(5), - }, - [86] = { - [sym_identifier] = ACTIONS(1234), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1234), - [aux_sym_preproc_def_token1] = ACTIONS(1234), - [aux_sym_preproc_if_token1] = ACTIONS(1234), - [aux_sym_preproc_if_token2] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), - [aux_sym_preproc_else_token1] = ACTIONS(1234), - [aux_sym_preproc_elif_token1] = ACTIONS(1234), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1234), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1234), - [sym_preproc_directive] = ACTIONS(1234), - [anon_sym_LPAREN2] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym___extension__] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym___attribute__] = ACTIONS(1234), - [anon_sym___scanf] = ACTIONS(1234), - [anon_sym___printf] = ACTIONS(1234), - [anon_sym___read_mostly] = ACTIONS(1234), - [anon_sym___must_hold] = ACTIONS(1234), - [anon_sym___ro_after_init] = ACTIONS(1234), - [anon_sym___noreturn] = ACTIONS(1234), - [anon_sym___cold] = ACTIONS(1234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), - [anon_sym___declspec] = ACTIONS(1234), - [anon_sym___init] = ACTIONS(1234), - [anon_sym___exit] = ACTIONS(1234), - [anon_sym___cdecl] = ACTIONS(1234), - [anon_sym___clrcall] = ACTIONS(1234), - [anon_sym___stdcall] = ACTIONS(1234), - [anon_sym___fastcall] = ACTIONS(1234), - [anon_sym___thiscall] = ACTIONS(1234), - [anon_sym___vectorcall] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_signed] = ACTIONS(1234), - [anon_sym_unsigned] = ACTIONS(1234), - [anon_sym_long] = ACTIONS(1234), - [anon_sym_short] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_auto] = ACTIONS(1234), - [anon_sym_register] = ACTIONS(1234), - [anon_sym_inline] = ACTIONS(1234), - [anon_sym___inline] = ACTIONS(1234), - [anon_sym___inline__] = ACTIONS(1234), - [anon_sym___forceinline] = ACTIONS(1234), - [anon_sym_thread_local] = ACTIONS(1234), - [anon_sym___thread] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_constexpr] = ACTIONS(1234), - [anon_sym_volatile] = ACTIONS(1234), - [anon_sym_restrict] = ACTIONS(1234), - [anon_sym___restrict__] = ACTIONS(1234), - [anon_sym__Atomic] = ACTIONS(1234), - [anon_sym__Noreturn] = ACTIONS(1234), - [anon_sym_noreturn] = ACTIONS(1234), - [anon_sym_alignas] = ACTIONS(1234), - [anon_sym__Alignas] = ACTIONS(1234), - [sym_primitive_type] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [anon_sym_switch] = ACTIONS(1234), - [anon_sym_case] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_goto] = ACTIONS(1234), - [anon_sym___try] = ACTIONS(1234), - [anon_sym___leave] = ACTIONS(1234), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_sizeof] = ACTIONS(1234), - [anon_sym___alignof__] = ACTIONS(1234), - [anon_sym___alignof] = ACTIONS(1234), - [anon_sym__alignof] = ACTIONS(1234), - [anon_sym_alignof] = ACTIONS(1234), - [anon_sym__Alignof] = ACTIONS(1234), - [anon_sym_offsetof] = ACTIONS(1234), - [anon_sym__Generic] = ACTIONS(1234), - [anon_sym_asm] = ACTIONS(1234), - [anon_sym___asm__] = ACTIONS(1234), - [sym_number_literal] = ACTIONS(1236), - [anon_sym_L_SQUOTE] = ACTIONS(1236), - [anon_sym_u_SQUOTE] = ACTIONS(1236), - [anon_sym_U_SQUOTE] = ACTIONS(1236), - [anon_sym_u8_SQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_L_DQUOTE] = ACTIONS(1236), - [anon_sym_u_DQUOTE] = ACTIONS(1236), - [anon_sym_U_DQUOTE] = ACTIONS(1236), - [anon_sym_u8_DQUOTE] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1236), - [sym_true] = ACTIONS(1234), - [sym_false] = ACTIONS(1234), - [anon_sym_NULL] = ACTIONS(1234), - [anon_sym_nullptr] = ACTIONS(1234), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(59), + [anon_sym_enum] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [87] = { - [sym_identifier] = ACTIONS(1234), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1234), - [aux_sym_preproc_def_token1] = ACTIONS(1234), - [aux_sym_preproc_if_token1] = ACTIONS(1234), - [aux_sym_preproc_if_token2] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), - [aux_sym_preproc_else_token1] = ACTIONS(1234), - [aux_sym_preproc_elif_token1] = ACTIONS(1234), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1234), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1234), - [sym_preproc_directive] = ACTIONS(1234), - [anon_sym_LPAREN2] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym___extension__] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym___attribute__] = ACTIONS(1234), - [anon_sym___scanf] = ACTIONS(1234), - [anon_sym___printf] = ACTIONS(1234), - [anon_sym___read_mostly] = ACTIONS(1234), - [anon_sym___must_hold] = ACTIONS(1234), - [anon_sym___ro_after_init] = ACTIONS(1234), - [anon_sym___noreturn] = ACTIONS(1234), - [anon_sym___cold] = ACTIONS(1234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), - [anon_sym___declspec] = ACTIONS(1234), - [anon_sym___init] = ACTIONS(1234), - [anon_sym___exit] = ACTIONS(1234), - [anon_sym___cdecl] = ACTIONS(1234), - [anon_sym___clrcall] = ACTIONS(1234), - [anon_sym___stdcall] = ACTIONS(1234), - [anon_sym___fastcall] = ACTIONS(1234), - [anon_sym___thiscall] = ACTIONS(1234), - [anon_sym___vectorcall] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_signed] = ACTIONS(1234), - [anon_sym_unsigned] = ACTIONS(1234), - [anon_sym_long] = ACTIONS(1234), - [anon_sym_short] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_auto] = ACTIONS(1234), - [anon_sym_register] = ACTIONS(1234), - [anon_sym_inline] = ACTIONS(1234), - [anon_sym___inline] = ACTIONS(1234), - [anon_sym___inline__] = ACTIONS(1234), - [anon_sym___forceinline] = ACTIONS(1234), - [anon_sym_thread_local] = ACTIONS(1234), - [anon_sym___thread] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_constexpr] = ACTIONS(1234), - [anon_sym_volatile] = ACTIONS(1234), - [anon_sym_restrict] = ACTIONS(1234), - [anon_sym___restrict__] = ACTIONS(1234), - [anon_sym__Atomic] = ACTIONS(1234), - [anon_sym__Noreturn] = ACTIONS(1234), - [anon_sym_noreturn] = ACTIONS(1234), - [anon_sym_alignas] = ACTIONS(1234), - [anon_sym__Alignas] = ACTIONS(1234), - [sym_primitive_type] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [anon_sym_switch] = ACTIONS(1234), - [anon_sym_case] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_goto] = ACTIONS(1234), - [anon_sym___try] = ACTIONS(1234), - [anon_sym___leave] = ACTIONS(1234), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_sizeof] = ACTIONS(1234), - [anon_sym___alignof__] = ACTIONS(1234), - [anon_sym___alignof] = ACTIONS(1234), - [anon_sym__alignof] = ACTIONS(1234), - [anon_sym_alignof] = ACTIONS(1234), - [anon_sym__Alignof] = ACTIONS(1234), - [anon_sym_offsetof] = ACTIONS(1234), - [anon_sym__Generic] = ACTIONS(1234), - [anon_sym_asm] = ACTIONS(1234), - [anon_sym___asm__] = ACTIONS(1234), - [sym_number_literal] = ACTIONS(1236), - [anon_sym_L_SQUOTE] = ACTIONS(1236), - [anon_sym_u_SQUOTE] = ACTIONS(1236), - [anon_sym_U_SQUOTE] = ACTIONS(1236), - [anon_sym_u8_SQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_L_DQUOTE] = ACTIONS(1236), - [anon_sym_u_DQUOTE] = ACTIONS(1236), - [anon_sym_U_DQUOTE] = ACTIONS(1236), - [anon_sym_u8_DQUOTE] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1236), - [sym_true] = ACTIONS(1234), - [sym_false] = ACTIONS(1234), - [anon_sym_NULL] = ACTIONS(1234), - [anon_sym_nullptr] = ACTIONS(1234), + [83] = { + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1877), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym_variadic_parameter] = STATE(2911), + [sym_parameter_declaration] = STATE(2911), + [sym_expression] = STATE(1626), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(1206), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1208), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym___extension__] = ACTIONS(1238), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [88] = { - [sym_identifier] = ACTIONS(1238), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1238), - [aux_sym_preproc_def_token1] = ACTIONS(1238), - [aux_sym_preproc_if_token1] = ACTIONS(1238), - [aux_sym_preproc_if_token2] = ACTIONS(1238), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1238), - [aux_sym_preproc_else_token1] = ACTIONS(1238), - [aux_sym_preproc_elif_token1] = ACTIONS(1238), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1238), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1238), - [sym_preproc_directive] = ACTIONS(1238), - [anon_sym_LPAREN2] = ACTIONS(1240), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1240), + [84] = { + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1877), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym_variadic_parameter] = STATE(2906), + [sym_parameter_declaration] = STATE(2906), + [sym_expression] = STATE(1626), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(1206), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1208), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), [anon_sym___extension__] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1238), - [anon_sym_extern] = ACTIONS(1238), - [anon_sym___attribute__] = ACTIONS(1238), - [anon_sym___scanf] = ACTIONS(1238), - [anon_sym___printf] = ACTIONS(1238), - [anon_sym___read_mostly] = ACTIONS(1238), - [anon_sym___must_hold] = ACTIONS(1238), - [anon_sym___ro_after_init] = ACTIONS(1238), - [anon_sym___noreturn] = ACTIONS(1238), - [anon_sym___cold] = ACTIONS(1238), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1240), - [anon_sym___declspec] = ACTIONS(1238), - [anon_sym___init] = ACTIONS(1238), - [anon_sym___exit] = ACTIONS(1238), - [anon_sym___cdecl] = ACTIONS(1238), - [anon_sym___clrcall] = ACTIONS(1238), - [anon_sym___stdcall] = ACTIONS(1238), - [anon_sym___fastcall] = ACTIONS(1238), - [anon_sym___thiscall] = ACTIONS(1238), - [anon_sym___vectorcall] = ACTIONS(1238), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_signed] = ACTIONS(1238), - [anon_sym_unsigned] = ACTIONS(1238), - [anon_sym_long] = ACTIONS(1238), - [anon_sym_short] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_auto] = ACTIONS(1238), - [anon_sym_register] = ACTIONS(1238), - [anon_sym_inline] = ACTIONS(1238), - [anon_sym___inline] = ACTIONS(1238), - [anon_sym___inline__] = ACTIONS(1238), - [anon_sym___forceinline] = ACTIONS(1238), - [anon_sym_thread_local] = ACTIONS(1238), - [anon_sym___thread] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_constexpr] = ACTIONS(1238), - [anon_sym_volatile] = ACTIONS(1238), - [anon_sym_restrict] = ACTIONS(1238), - [anon_sym___restrict__] = ACTIONS(1238), - [anon_sym__Atomic] = ACTIONS(1238), - [anon_sym__Noreturn] = ACTIONS(1238), - [anon_sym_noreturn] = ACTIONS(1238), - [anon_sym_alignas] = ACTIONS(1238), - [anon_sym__Alignas] = ACTIONS(1238), - [sym_primitive_type] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1238), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_else] = ACTIONS(1238), - [anon_sym_switch] = ACTIONS(1238), - [anon_sym_case] = ACTIONS(1238), - [anon_sym_default] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_do] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_goto] = ACTIONS(1238), - [anon_sym___try] = ACTIONS(1238), - [anon_sym___leave] = ACTIONS(1238), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [anon_sym_sizeof] = ACTIONS(1238), - [anon_sym___alignof__] = ACTIONS(1238), - [anon_sym___alignof] = ACTIONS(1238), - [anon_sym__alignof] = ACTIONS(1238), - [anon_sym_alignof] = ACTIONS(1238), - [anon_sym__Alignof] = ACTIONS(1238), - [anon_sym_offsetof] = ACTIONS(1238), - [anon_sym__Generic] = ACTIONS(1238), - [anon_sym_asm] = ACTIONS(1238), - [anon_sym___asm__] = ACTIONS(1238), - [sym_number_literal] = ACTIONS(1240), - [anon_sym_L_SQUOTE] = ACTIONS(1240), - [anon_sym_u_SQUOTE] = ACTIONS(1240), - [anon_sym_U_SQUOTE] = ACTIONS(1240), - [anon_sym_u8_SQUOTE] = ACTIONS(1240), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_L_DQUOTE] = ACTIONS(1240), - [anon_sym_u_DQUOTE] = ACTIONS(1240), - [anon_sym_U_DQUOTE] = ACTIONS(1240), - [anon_sym_u8_DQUOTE] = ACTIONS(1240), - [anon_sym_DQUOTE] = ACTIONS(1240), - [sym_true] = ACTIONS(1238), - [sym_false] = ACTIONS(1238), - [anon_sym_NULL] = ACTIONS(1238), - [anon_sym_nullptr] = ACTIONS(1238), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [89] = { - [sym_identifier] = ACTIONS(1242), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1242), - [aux_sym_preproc_def_token1] = ACTIONS(1242), - [aux_sym_preproc_if_token1] = ACTIONS(1242), - [aux_sym_preproc_if_token2] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), - [aux_sym_preproc_else_token1] = ACTIONS(1242), - [aux_sym_preproc_elif_token1] = ACTIONS(1242), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1242), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1242), - [sym_preproc_directive] = ACTIONS(1242), - [anon_sym_LPAREN2] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_TILDE] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym___extension__] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym___attribute__] = ACTIONS(1242), - [anon_sym___scanf] = ACTIONS(1242), - [anon_sym___printf] = ACTIONS(1242), - [anon_sym___read_mostly] = ACTIONS(1242), - [anon_sym___must_hold] = ACTIONS(1242), - [anon_sym___ro_after_init] = ACTIONS(1242), - [anon_sym___noreturn] = ACTIONS(1242), - [anon_sym___cold] = ACTIONS(1242), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1244), - [anon_sym___declspec] = ACTIONS(1242), - [anon_sym___init] = ACTIONS(1242), - [anon_sym___exit] = ACTIONS(1242), - [anon_sym___cdecl] = ACTIONS(1242), - [anon_sym___clrcall] = ACTIONS(1242), - [anon_sym___stdcall] = ACTIONS(1242), - [anon_sym___fastcall] = ACTIONS(1242), - [anon_sym___thiscall] = ACTIONS(1242), - [anon_sym___vectorcall] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_signed] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_long] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_register] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym___inline] = ACTIONS(1242), - [anon_sym___inline__] = ACTIONS(1242), - [anon_sym___forceinline] = ACTIONS(1242), - [anon_sym_thread_local] = ACTIONS(1242), - [anon_sym___thread] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_constexpr] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym___restrict__] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [anon_sym__Noreturn] = ACTIONS(1242), - [anon_sym_noreturn] = ACTIONS(1242), - [anon_sym_alignas] = ACTIONS(1242), - [anon_sym__Alignas] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_case] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [anon_sym___try] = ACTIONS(1242), - [anon_sym___leave] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym___alignof__] = ACTIONS(1242), - [anon_sym___alignof] = ACTIONS(1242), - [anon_sym__alignof] = ACTIONS(1242), - [anon_sym_alignof] = ACTIONS(1242), - [anon_sym__Alignof] = ACTIONS(1242), - [anon_sym_offsetof] = ACTIONS(1242), - [anon_sym__Generic] = ACTIONS(1242), - [anon_sym_asm] = ACTIONS(1242), - [anon_sym___asm__] = ACTIONS(1242), - [sym_number_literal] = ACTIONS(1244), - [anon_sym_L_SQUOTE] = ACTIONS(1244), - [anon_sym_u_SQUOTE] = ACTIONS(1244), - [anon_sym_U_SQUOTE] = ACTIONS(1244), - [anon_sym_u8_SQUOTE] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1244), - [anon_sym_L_DQUOTE] = ACTIONS(1244), - [anon_sym_u_DQUOTE] = ACTIONS(1244), - [anon_sym_U_DQUOTE] = ACTIONS(1244), - [anon_sym_u8_DQUOTE] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(1244), - [sym_true] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_NULL] = ACTIONS(1242), - [anon_sym_nullptr] = ACTIONS(1242), + [85] = { + [sym_else_clause] = STATE(123), + [sym_identifier] = ACTIONS(1240), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1240), + [aux_sym_preproc_def_token1] = ACTIONS(1240), + [aux_sym_preproc_if_token1] = ACTIONS(1240), + [aux_sym_preproc_if_token2] = ACTIONS(1240), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1240), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1240), + [aux_sym_preproc_else_token1] = ACTIONS(1240), + [aux_sym_preproc_elif_token1] = ACTIONS(1240), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1240), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1240), + [sym_preproc_directive] = ACTIONS(1240), + [anon_sym_LPAREN2] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_TILDE] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1240), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym___extension__] = ACTIONS(1240), + [anon_sym_typedef] = ACTIONS(1240), + [anon_sym_extern] = ACTIONS(1240), + [anon_sym___attribute__] = ACTIONS(1240), + [anon_sym___scanf] = ACTIONS(1240), + [anon_sym___printf] = ACTIONS(1240), + [anon_sym___read_mostly] = ACTIONS(1240), + [anon_sym___must_hold] = ACTIONS(1240), + [anon_sym___ro_after_init] = ACTIONS(1240), + [anon_sym___noreturn] = ACTIONS(1240), + [anon_sym___cold] = ACTIONS(1240), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1242), + [anon_sym___declspec] = ACTIONS(1240), + [anon_sym___init] = ACTIONS(1240), + [anon_sym___exit] = ACTIONS(1240), + [anon_sym___cdecl] = ACTIONS(1240), + [anon_sym___clrcall] = ACTIONS(1240), + [anon_sym___stdcall] = ACTIONS(1240), + [anon_sym___fastcall] = ACTIONS(1240), + [anon_sym___thiscall] = ACTIONS(1240), + [anon_sym___vectorcall] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1242), + [anon_sym_signed] = ACTIONS(1240), + [anon_sym_unsigned] = ACTIONS(1240), + [anon_sym_long] = ACTIONS(1240), + [anon_sym_short] = ACTIONS(1240), + [anon_sym_static] = ACTIONS(1240), + [anon_sym_auto] = ACTIONS(1240), + [anon_sym_register] = ACTIONS(1240), + [anon_sym_inline] = ACTIONS(1240), + [anon_sym___inline] = ACTIONS(1240), + [anon_sym___inline__] = ACTIONS(1240), + [anon_sym___forceinline] = ACTIONS(1240), + [anon_sym_thread_local] = ACTIONS(1240), + [anon_sym___thread] = ACTIONS(1240), + [anon_sym_const] = ACTIONS(1240), + [anon_sym_constexpr] = ACTIONS(1240), + [anon_sym_volatile] = ACTIONS(1240), + [anon_sym_restrict] = ACTIONS(1240), + [anon_sym___restrict__] = ACTIONS(1240), + [anon_sym__Atomic] = ACTIONS(1240), + [anon_sym__Noreturn] = ACTIONS(1240), + [anon_sym_noreturn] = ACTIONS(1240), + [anon_sym_alignas] = ACTIONS(1240), + [anon_sym__Alignas] = ACTIONS(1240), + [sym_primitive_type] = ACTIONS(1240), + [anon_sym_enum] = ACTIONS(1240), + [anon_sym_struct] = ACTIONS(1240), + [anon_sym_union] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(1240), + [anon_sym_else] = ACTIONS(1244), + [anon_sym_switch] = ACTIONS(1240), + [anon_sym_case] = ACTIONS(1240), + [anon_sym_default] = ACTIONS(1240), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_do] = ACTIONS(1240), + [anon_sym_for] = ACTIONS(1240), + [anon_sym_return] = ACTIONS(1240), + [anon_sym_break] = ACTIONS(1240), + [anon_sym_continue] = ACTIONS(1240), + [anon_sym_goto] = ACTIONS(1240), + [anon_sym___try] = ACTIONS(1240), + [anon_sym___leave] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1242), + [anon_sym_PLUS_PLUS] = ACTIONS(1242), + [anon_sym_sizeof] = ACTIONS(1240), + [anon_sym___alignof__] = ACTIONS(1240), + [anon_sym___alignof] = ACTIONS(1240), + [anon_sym__alignof] = ACTIONS(1240), + [anon_sym_alignof] = ACTIONS(1240), + [anon_sym__Alignof] = ACTIONS(1240), + [anon_sym_offsetof] = ACTIONS(1240), + [anon_sym__Generic] = ACTIONS(1240), + [anon_sym_asm] = ACTIONS(1240), + [anon_sym___asm__] = ACTIONS(1240), + [sym_number_literal] = ACTIONS(1242), + [anon_sym_L_SQUOTE] = ACTIONS(1242), + [anon_sym_u_SQUOTE] = ACTIONS(1242), + [anon_sym_U_SQUOTE] = ACTIONS(1242), + [anon_sym_u8_SQUOTE] = ACTIONS(1242), + [anon_sym_SQUOTE] = ACTIONS(1242), + [anon_sym_L_DQUOTE] = ACTIONS(1242), + [anon_sym_u_DQUOTE] = ACTIONS(1242), + [anon_sym_U_DQUOTE] = ACTIONS(1242), + [anon_sym_u8_DQUOTE] = ACTIONS(1242), + [anon_sym_DQUOTE] = ACTIONS(1242), + [sym_true] = ACTIONS(1240), + [sym_false] = ACTIONS(1240), + [anon_sym_NULL] = ACTIONS(1240), + [anon_sym_nullptr] = ACTIONS(1240), [sym_comment] = ACTIONS(5), }, - [90] = { + [86] = { [sym_identifier] = ACTIONS(1246), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1246), @@ -32059,349 +31700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1246), [sym_comment] = ACTIONS(5), }, - [91] = { - [sym_identifier] = ACTIONS(1242), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1242), - [aux_sym_preproc_def_token1] = ACTIONS(1242), - [aux_sym_preproc_if_token1] = ACTIONS(1242), - [aux_sym_preproc_if_token2] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), - [aux_sym_preproc_else_token1] = ACTIONS(1242), - [aux_sym_preproc_elif_token1] = ACTIONS(1242), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1242), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1242), - [sym_preproc_directive] = ACTIONS(1242), - [anon_sym_LPAREN2] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_TILDE] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym___extension__] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym___attribute__] = ACTIONS(1242), - [anon_sym___scanf] = ACTIONS(1242), - [anon_sym___printf] = ACTIONS(1242), - [anon_sym___read_mostly] = ACTIONS(1242), - [anon_sym___must_hold] = ACTIONS(1242), - [anon_sym___ro_after_init] = ACTIONS(1242), - [anon_sym___noreturn] = ACTIONS(1242), - [anon_sym___cold] = ACTIONS(1242), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1244), - [anon_sym___declspec] = ACTIONS(1242), - [anon_sym___init] = ACTIONS(1242), - [anon_sym___exit] = ACTIONS(1242), - [anon_sym___cdecl] = ACTIONS(1242), - [anon_sym___clrcall] = ACTIONS(1242), - [anon_sym___stdcall] = ACTIONS(1242), - [anon_sym___fastcall] = ACTIONS(1242), - [anon_sym___thiscall] = ACTIONS(1242), - [anon_sym___vectorcall] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_signed] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_long] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_register] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym___inline] = ACTIONS(1242), - [anon_sym___inline__] = ACTIONS(1242), - [anon_sym___forceinline] = ACTIONS(1242), - [anon_sym_thread_local] = ACTIONS(1242), - [anon_sym___thread] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_constexpr] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym___restrict__] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [anon_sym__Noreturn] = ACTIONS(1242), - [anon_sym_noreturn] = ACTIONS(1242), - [anon_sym_alignas] = ACTIONS(1242), - [anon_sym__Alignas] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_case] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [anon_sym___try] = ACTIONS(1242), - [anon_sym___leave] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym___alignof__] = ACTIONS(1242), - [anon_sym___alignof] = ACTIONS(1242), - [anon_sym__alignof] = ACTIONS(1242), - [anon_sym_alignof] = ACTIONS(1242), - [anon_sym__Alignof] = ACTIONS(1242), - [anon_sym_offsetof] = ACTIONS(1242), - [anon_sym__Generic] = ACTIONS(1242), - [anon_sym_asm] = ACTIONS(1242), - [anon_sym___asm__] = ACTIONS(1242), - [sym_number_literal] = ACTIONS(1244), - [anon_sym_L_SQUOTE] = ACTIONS(1244), - [anon_sym_u_SQUOTE] = ACTIONS(1244), - [anon_sym_U_SQUOTE] = ACTIONS(1244), - [anon_sym_u8_SQUOTE] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1244), - [anon_sym_L_DQUOTE] = ACTIONS(1244), - [anon_sym_u_DQUOTE] = ACTIONS(1244), - [anon_sym_U_DQUOTE] = ACTIONS(1244), - [anon_sym_u8_DQUOTE] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(1244), - [sym_true] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_NULL] = ACTIONS(1242), - [anon_sym_nullptr] = ACTIONS(1242), - [sym_comment] = ACTIONS(5), - }, - [92] = { - [sym_identifier] = ACTIONS(1242), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1242), - [aux_sym_preproc_def_token1] = ACTIONS(1242), - [aux_sym_preproc_if_token1] = ACTIONS(1242), - [aux_sym_preproc_if_token2] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), - [aux_sym_preproc_else_token1] = ACTIONS(1242), - [aux_sym_preproc_elif_token1] = ACTIONS(1242), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1242), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1242), - [sym_preproc_directive] = ACTIONS(1242), - [anon_sym_LPAREN2] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_TILDE] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym___extension__] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym___attribute__] = ACTIONS(1242), - [anon_sym___scanf] = ACTIONS(1242), - [anon_sym___printf] = ACTIONS(1242), - [anon_sym___read_mostly] = ACTIONS(1242), - [anon_sym___must_hold] = ACTIONS(1242), - [anon_sym___ro_after_init] = ACTIONS(1242), - [anon_sym___noreturn] = ACTIONS(1242), - [anon_sym___cold] = ACTIONS(1242), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1244), - [anon_sym___declspec] = ACTIONS(1242), - [anon_sym___init] = ACTIONS(1242), - [anon_sym___exit] = ACTIONS(1242), - [anon_sym___cdecl] = ACTIONS(1242), - [anon_sym___clrcall] = ACTIONS(1242), - [anon_sym___stdcall] = ACTIONS(1242), - [anon_sym___fastcall] = ACTIONS(1242), - [anon_sym___thiscall] = ACTIONS(1242), - [anon_sym___vectorcall] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_signed] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_long] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_register] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym___inline] = ACTIONS(1242), - [anon_sym___inline__] = ACTIONS(1242), - [anon_sym___forceinline] = ACTIONS(1242), - [anon_sym_thread_local] = ACTIONS(1242), - [anon_sym___thread] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_constexpr] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym___restrict__] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [anon_sym__Noreturn] = ACTIONS(1242), - [anon_sym_noreturn] = ACTIONS(1242), - [anon_sym_alignas] = ACTIONS(1242), - [anon_sym__Alignas] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_case] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [anon_sym___try] = ACTIONS(1242), - [anon_sym___leave] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym___alignof__] = ACTIONS(1242), - [anon_sym___alignof] = ACTIONS(1242), - [anon_sym__alignof] = ACTIONS(1242), - [anon_sym_alignof] = ACTIONS(1242), - [anon_sym__Alignof] = ACTIONS(1242), - [anon_sym_offsetof] = ACTIONS(1242), - [anon_sym__Generic] = ACTIONS(1242), - [anon_sym_asm] = ACTIONS(1242), - [anon_sym___asm__] = ACTIONS(1242), - [sym_number_literal] = ACTIONS(1244), - [anon_sym_L_SQUOTE] = ACTIONS(1244), - [anon_sym_u_SQUOTE] = ACTIONS(1244), - [anon_sym_U_SQUOTE] = ACTIONS(1244), - [anon_sym_u8_SQUOTE] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1244), - [anon_sym_L_DQUOTE] = ACTIONS(1244), - [anon_sym_u_DQUOTE] = ACTIONS(1244), - [anon_sym_U_DQUOTE] = ACTIONS(1244), - [anon_sym_u8_DQUOTE] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(1244), - [sym_true] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_NULL] = ACTIONS(1242), - [anon_sym_nullptr] = ACTIONS(1242), - [sym_comment] = ACTIONS(5), - }, - [93] = { - [sym_identifier] = ACTIONS(1234), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1234), - [aux_sym_preproc_def_token1] = ACTIONS(1234), - [aux_sym_preproc_if_token1] = ACTIONS(1234), - [aux_sym_preproc_if_token2] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), - [aux_sym_preproc_else_token1] = ACTIONS(1234), - [aux_sym_preproc_elif_token1] = ACTIONS(1234), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1234), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1234), - [sym_preproc_directive] = ACTIONS(1234), - [anon_sym_LPAREN2] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym___extension__] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym___attribute__] = ACTIONS(1234), - [anon_sym___scanf] = ACTIONS(1234), - [anon_sym___printf] = ACTIONS(1234), - [anon_sym___read_mostly] = ACTIONS(1234), - [anon_sym___must_hold] = ACTIONS(1234), - [anon_sym___ro_after_init] = ACTIONS(1234), - [anon_sym___noreturn] = ACTIONS(1234), - [anon_sym___cold] = ACTIONS(1234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), - [anon_sym___declspec] = ACTIONS(1234), - [anon_sym___init] = ACTIONS(1234), - [anon_sym___exit] = ACTIONS(1234), - [anon_sym___cdecl] = ACTIONS(1234), - [anon_sym___clrcall] = ACTIONS(1234), - [anon_sym___stdcall] = ACTIONS(1234), - [anon_sym___fastcall] = ACTIONS(1234), - [anon_sym___thiscall] = ACTIONS(1234), - [anon_sym___vectorcall] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_signed] = ACTIONS(1234), - [anon_sym_unsigned] = ACTIONS(1234), - [anon_sym_long] = ACTIONS(1234), - [anon_sym_short] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_auto] = ACTIONS(1234), - [anon_sym_register] = ACTIONS(1234), - [anon_sym_inline] = ACTIONS(1234), - [anon_sym___inline] = ACTIONS(1234), - [anon_sym___inline__] = ACTIONS(1234), - [anon_sym___forceinline] = ACTIONS(1234), - [anon_sym_thread_local] = ACTIONS(1234), - [anon_sym___thread] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_constexpr] = ACTIONS(1234), - [anon_sym_volatile] = ACTIONS(1234), - [anon_sym_restrict] = ACTIONS(1234), - [anon_sym___restrict__] = ACTIONS(1234), - [anon_sym__Atomic] = ACTIONS(1234), - [anon_sym__Noreturn] = ACTIONS(1234), - [anon_sym_noreturn] = ACTIONS(1234), - [anon_sym_alignas] = ACTIONS(1234), - [anon_sym__Alignas] = ACTIONS(1234), - [sym_primitive_type] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [anon_sym_switch] = ACTIONS(1234), - [anon_sym_case] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_goto] = ACTIONS(1234), - [anon_sym___try] = ACTIONS(1234), - [anon_sym___leave] = ACTIONS(1234), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_sizeof] = ACTIONS(1234), - [anon_sym___alignof__] = ACTIONS(1234), - [anon_sym___alignof] = ACTIONS(1234), - [anon_sym__alignof] = ACTIONS(1234), - [anon_sym_alignof] = ACTIONS(1234), - [anon_sym__Alignof] = ACTIONS(1234), - [anon_sym_offsetof] = ACTIONS(1234), - [anon_sym__Generic] = ACTIONS(1234), - [anon_sym_asm] = ACTIONS(1234), - [anon_sym___asm__] = ACTIONS(1234), - [sym_number_literal] = ACTIONS(1236), - [anon_sym_L_SQUOTE] = ACTIONS(1236), - [anon_sym_u_SQUOTE] = ACTIONS(1236), - [anon_sym_U_SQUOTE] = ACTIONS(1236), - [anon_sym_u8_SQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_L_DQUOTE] = ACTIONS(1236), - [anon_sym_u_DQUOTE] = ACTIONS(1236), - [anon_sym_U_DQUOTE] = ACTIONS(1236), - [anon_sym_u8_DQUOTE] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1236), - [sym_true] = ACTIONS(1234), - [sym_false] = ACTIONS(1234), - [anon_sym_NULL] = ACTIONS(1234), - [anon_sym_nullptr] = ACTIONS(1234), - [sym_comment] = ACTIONS(5), - }, - [94] = { + [87] = { [sym_identifier] = ACTIONS(1250), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1250), @@ -32515,7 +31814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1250), [sym_comment] = ACTIONS(5), }, - [95] = { + [88] = { [sym_identifier] = ACTIONS(1254), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1254), @@ -32629,7 +31928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1254), [sym_comment] = ACTIONS(5), }, - [96] = { + [89] = { [sym_identifier] = ACTIONS(1258), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1258), @@ -32743,7 +32042,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1258), [sym_comment] = ACTIONS(5), }, - [97] = { + [90] = { + [sym_identifier] = ACTIONS(1246), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1246), + [aux_sym_preproc_def_token1] = ACTIONS(1246), + [aux_sym_preproc_if_token1] = ACTIONS(1246), + [aux_sym_preproc_if_token2] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1246), + [aux_sym_preproc_else_token1] = ACTIONS(1246), + [aux_sym_preproc_elif_token1] = ACTIONS(1246), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1246), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1246), + [sym_preproc_directive] = ACTIONS(1246), + [anon_sym_LPAREN2] = ACTIONS(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_TILDE] = ACTIONS(1248), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_PLUS] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1248), + [anon_sym___extension__] = ACTIONS(1246), + [anon_sym_typedef] = ACTIONS(1246), + [anon_sym_extern] = ACTIONS(1246), + [anon_sym___attribute__] = ACTIONS(1246), + [anon_sym___scanf] = ACTIONS(1246), + [anon_sym___printf] = ACTIONS(1246), + [anon_sym___read_mostly] = ACTIONS(1246), + [anon_sym___must_hold] = ACTIONS(1246), + [anon_sym___ro_after_init] = ACTIONS(1246), + [anon_sym___noreturn] = ACTIONS(1246), + [anon_sym___cold] = ACTIONS(1246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1248), + [anon_sym___declspec] = ACTIONS(1246), + [anon_sym___init] = ACTIONS(1246), + [anon_sym___exit] = ACTIONS(1246), + [anon_sym___cdecl] = ACTIONS(1246), + [anon_sym___clrcall] = ACTIONS(1246), + [anon_sym___stdcall] = ACTIONS(1246), + [anon_sym___fastcall] = ACTIONS(1246), + [anon_sym___thiscall] = ACTIONS(1246), + [anon_sym___vectorcall] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_signed] = ACTIONS(1246), + [anon_sym_unsigned] = ACTIONS(1246), + [anon_sym_long] = ACTIONS(1246), + [anon_sym_short] = ACTIONS(1246), + [anon_sym_static] = ACTIONS(1246), + [anon_sym_auto] = ACTIONS(1246), + [anon_sym_register] = ACTIONS(1246), + [anon_sym_inline] = ACTIONS(1246), + [anon_sym___inline] = ACTIONS(1246), + [anon_sym___inline__] = ACTIONS(1246), + [anon_sym___forceinline] = ACTIONS(1246), + [anon_sym_thread_local] = ACTIONS(1246), + [anon_sym___thread] = ACTIONS(1246), + [anon_sym_const] = ACTIONS(1246), + [anon_sym_constexpr] = ACTIONS(1246), + [anon_sym_volatile] = ACTIONS(1246), + [anon_sym_restrict] = ACTIONS(1246), + [anon_sym___restrict__] = ACTIONS(1246), + [anon_sym__Atomic] = ACTIONS(1246), + [anon_sym__Noreturn] = ACTIONS(1246), + [anon_sym_noreturn] = ACTIONS(1246), + [anon_sym_alignas] = ACTIONS(1246), + [anon_sym__Alignas] = ACTIONS(1246), + [sym_primitive_type] = ACTIONS(1246), + [anon_sym_enum] = ACTIONS(1246), + [anon_sym_struct] = ACTIONS(1246), + [anon_sym_union] = ACTIONS(1246), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_else] = ACTIONS(1246), + [anon_sym_switch] = ACTIONS(1246), + [anon_sym_case] = ACTIONS(1246), + [anon_sym_default] = ACTIONS(1246), + [anon_sym_while] = ACTIONS(1246), + [anon_sym_do] = ACTIONS(1246), + [anon_sym_for] = ACTIONS(1246), + [anon_sym_return] = ACTIONS(1246), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1246), + [anon_sym_goto] = ACTIONS(1246), + [anon_sym___try] = ACTIONS(1246), + [anon_sym___leave] = ACTIONS(1246), + [anon_sym_DASH_DASH] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_sizeof] = ACTIONS(1246), + [anon_sym___alignof__] = ACTIONS(1246), + [anon_sym___alignof] = ACTIONS(1246), + [anon_sym__alignof] = ACTIONS(1246), + [anon_sym_alignof] = ACTIONS(1246), + [anon_sym__Alignof] = ACTIONS(1246), + [anon_sym_offsetof] = ACTIONS(1246), + [anon_sym__Generic] = ACTIONS(1246), + [anon_sym_asm] = ACTIONS(1246), + [anon_sym___asm__] = ACTIONS(1246), + [sym_number_literal] = ACTIONS(1248), + [anon_sym_L_SQUOTE] = ACTIONS(1248), + [anon_sym_u_SQUOTE] = ACTIONS(1248), + [anon_sym_U_SQUOTE] = ACTIONS(1248), + [anon_sym_u8_SQUOTE] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1248), + [anon_sym_L_DQUOTE] = ACTIONS(1248), + [anon_sym_u_DQUOTE] = ACTIONS(1248), + [anon_sym_U_DQUOTE] = ACTIONS(1248), + [anon_sym_u8_DQUOTE] = ACTIONS(1248), + [anon_sym_DQUOTE] = ACTIONS(1248), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), + [anon_sym_NULL] = ACTIONS(1246), + [anon_sym_nullptr] = ACTIONS(1246), + [sym_comment] = ACTIONS(5), + }, + [91] = { [sym_identifier] = ACTIONS(1262), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1262), @@ -32857,7 +32270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1262), [sym_comment] = ACTIONS(5), }, - [98] = { + [92] = { [sym_identifier] = ACTIONS(1266), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1266), @@ -32971,7 +32384,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1266), [sym_comment] = ACTIONS(5), }, - [99] = { + [93] = { [sym_identifier] = ACTIONS(1270), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1270), @@ -33085,7 +32498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1270), [sym_comment] = ACTIONS(5), }, - [100] = { + [94] = { [sym_identifier] = ACTIONS(1274), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1274), @@ -33199,7 +32612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1274), [sym_comment] = ACTIONS(5), }, - [101] = { + [95] = { [sym_identifier] = ACTIONS(1278), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1278), @@ -33313,7 +32726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1278), [sym_comment] = ACTIONS(5), }, - [102] = { + [96] = { [sym_identifier] = ACTIONS(1282), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1282), @@ -33427,7 +32840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1282), [sym_comment] = ACTIONS(5), }, - [103] = { + [97] = { [sym_identifier] = ACTIONS(1286), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1286), @@ -33541,7 +32954,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1286), [sym_comment] = ACTIONS(5), }, - [104] = { + [98] = { [sym_identifier] = ACTIONS(1290), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1290), @@ -33655,121 +33068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1290), [sym_comment] = ACTIONS(5), }, - [105] = { - [sym_identifier] = ACTIONS(1274), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1274), - [aux_sym_preproc_def_token1] = ACTIONS(1274), - [aux_sym_preproc_if_token1] = ACTIONS(1274), - [aux_sym_preproc_if_token2] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), - [aux_sym_preproc_else_token1] = ACTIONS(1274), - [aux_sym_preproc_elif_token1] = ACTIONS(1274), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1274), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1274), - [sym_preproc_directive] = ACTIONS(1274), - [anon_sym_LPAREN2] = ACTIONS(1276), - [anon_sym_BANG] = ACTIONS(1276), - [anon_sym_TILDE] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym___extension__] = ACTIONS(1274), - [anon_sym_typedef] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym___attribute__] = ACTIONS(1274), - [anon_sym___scanf] = ACTIONS(1274), - [anon_sym___printf] = ACTIONS(1274), - [anon_sym___read_mostly] = ACTIONS(1274), - [anon_sym___must_hold] = ACTIONS(1274), - [anon_sym___ro_after_init] = ACTIONS(1274), - [anon_sym___noreturn] = ACTIONS(1274), - [anon_sym___cold] = ACTIONS(1274), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1276), - [anon_sym___declspec] = ACTIONS(1274), - [anon_sym___init] = ACTIONS(1274), - [anon_sym___exit] = ACTIONS(1274), - [anon_sym___cdecl] = ACTIONS(1274), - [anon_sym___clrcall] = ACTIONS(1274), - [anon_sym___stdcall] = ACTIONS(1274), - [anon_sym___fastcall] = ACTIONS(1274), - [anon_sym___thiscall] = ACTIONS(1274), - [anon_sym___vectorcall] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_signed] = ACTIONS(1274), - [anon_sym_unsigned] = ACTIONS(1274), - [anon_sym_long] = ACTIONS(1274), - [anon_sym_short] = ACTIONS(1274), - [anon_sym_static] = ACTIONS(1274), - [anon_sym_auto] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_inline] = ACTIONS(1274), - [anon_sym___inline] = ACTIONS(1274), - [anon_sym___inline__] = ACTIONS(1274), - [anon_sym___forceinline] = ACTIONS(1274), - [anon_sym_thread_local] = ACTIONS(1274), - [anon_sym___thread] = ACTIONS(1274), - [anon_sym_const] = ACTIONS(1274), - [anon_sym_constexpr] = ACTIONS(1274), - [anon_sym_volatile] = ACTIONS(1274), - [anon_sym_restrict] = ACTIONS(1274), - [anon_sym___restrict__] = ACTIONS(1274), - [anon_sym__Atomic] = ACTIONS(1274), - [anon_sym__Noreturn] = ACTIONS(1274), - [anon_sym_noreturn] = ACTIONS(1274), - [anon_sym_alignas] = ACTIONS(1274), - [anon_sym__Alignas] = ACTIONS(1274), - [sym_primitive_type] = ACTIONS(1274), - [anon_sym_enum] = ACTIONS(1274), - [anon_sym_struct] = ACTIONS(1274), - [anon_sym_union] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_else] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(1274), - [anon_sym_case] = ACTIONS(1274), - [anon_sym_default] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_do] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_goto] = ACTIONS(1274), - [anon_sym___try] = ACTIONS(1274), - [anon_sym___leave] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_sizeof] = ACTIONS(1274), - [anon_sym___alignof__] = ACTIONS(1274), - [anon_sym___alignof] = ACTIONS(1274), - [anon_sym__alignof] = ACTIONS(1274), - [anon_sym_alignof] = ACTIONS(1274), - [anon_sym__Alignof] = ACTIONS(1274), - [anon_sym_offsetof] = ACTIONS(1274), - [anon_sym__Generic] = ACTIONS(1274), - [anon_sym_asm] = ACTIONS(1274), - [anon_sym___asm__] = ACTIONS(1274), - [sym_number_literal] = ACTIONS(1276), - [anon_sym_L_SQUOTE] = ACTIONS(1276), - [anon_sym_u_SQUOTE] = ACTIONS(1276), - [anon_sym_U_SQUOTE] = ACTIONS(1276), - [anon_sym_u8_SQUOTE] = ACTIONS(1276), - [anon_sym_SQUOTE] = ACTIONS(1276), - [anon_sym_L_DQUOTE] = ACTIONS(1276), - [anon_sym_u_DQUOTE] = ACTIONS(1276), - [anon_sym_U_DQUOTE] = ACTIONS(1276), - [anon_sym_u8_DQUOTE] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym_true] = ACTIONS(1274), - [sym_false] = ACTIONS(1274), - [anon_sym_NULL] = ACTIONS(1274), - [anon_sym_nullptr] = ACTIONS(1274), - [sym_comment] = ACTIONS(5), - }, - [106] = { + [99] = { [sym_identifier] = ACTIONS(1294), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1294), @@ -33883,7 +33182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1294), [sym_comment] = ACTIONS(5), }, - [107] = { + [100] = { [sym_identifier] = ACTIONS(1298), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1298), @@ -33997,7 +33296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(5), }, - [108] = { + [101] = { [sym_identifier] = ACTIONS(1302), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1302), @@ -34111,235 +33410,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(5), }, - [109] = { - [sym_identifier] = ACTIONS(1294), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1294), - [aux_sym_preproc_def_token1] = ACTIONS(1294), - [aux_sym_preproc_if_token1] = ACTIONS(1294), - [aux_sym_preproc_if_token2] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), - [aux_sym_preproc_else_token1] = ACTIONS(1294), - [aux_sym_preproc_elif_token1] = ACTIONS(1294), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1294), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1294), - [sym_preproc_directive] = ACTIONS(1294), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1296), - [anon_sym_TILDE] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym___extension__] = ACTIONS(1294), - [anon_sym_typedef] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym___attribute__] = ACTIONS(1294), - [anon_sym___scanf] = ACTIONS(1294), - [anon_sym___printf] = ACTIONS(1294), - [anon_sym___read_mostly] = ACTIONS(1294), - [anon_sym___must_hold] = ACTIONS(1294), - [anon_sym___ro_after_init] = ACTIONS(1294), - [anon_sym___noreturn] = ACTIONS(1294), - [anon_sym___cold] = ACTIONS(1294), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1296), - [anon_sym___declspec] = ACTIONS(1294), - [anon_sym___init] = ACTIONS(1294), - [anon_sym___exit] = ACTIONS(1294), - [anon_sym___cdecl] = ACTIONS(1294), - [anon_sym___clrcall] = ACTIONS(1294), - [anon_sym___stdcall] = ACTIONS(1294), - [anon_sym___fastcall] = ACTIONS(1294), - [anon_sym___thiscall] = ACTIONS(1294), - [anon_sym___vectorcall] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_signed] = ACTIONS(1294), - [anon_sym_unsigned] = ACTIONS(1294), - [anon_sym_long] = ACTIONS(1294), - [anon_sym_short] = ACTIONS(1294), - [anon_sym_static] = ACTIONS(1294), - [anon_sym_auto] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_inline] = ACTIONS(1294), - [anon_sym___inline] = ACTIONS(1294), - [anon_sym___inline__] = ACTIONS(1294), - [anon_sym___forceinline] = ACTIONS(1294), - [anon_sym_thread_local] = ACTIONS(1294), - [anon_sym___thread] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [anon_sym_constexpr] = ACTIONS(1294), - [anon_sym_volatile] = ACTIONS(1294), - [anon_sym_restrict] = ACTIONS(1294), - [anon_sym___restrict__] = ACTIONS(1294), - [anon_sym__Atomic] = ACTIONS(1294), - [anon_sym__Noreturn] = ACTIONS(1294), - [anon_sym_noreturn] = ACTIONS(1294), - [anon_sym_alignas] = ACTIONS(1294), - [anon_sym__Alignas] = ACTIONS(1294), - [sym_primitive_type] = ACTIONS(1294), - [anon_sym_enum] = ACTIONS(1294), - [anon_sym_struct] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1294), - [anon_sym_switch] = ACTIONS(1294), - [anon_sym_case] = ACTIONS(1294), - [anon_sym_default] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_goto] = ACTIONS(1294), - [anon_sym___try] = ACTIONS(1294), - [anon_sym___leave] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_sizeof] = ACTIONS(1294), - [anon_sym___alignof__] = ACTIONS(1294), - [anon_sym___alignof] = ACTIONS(1294), - [anon_sym__alignof] = ACTIONS(1294), - [anon_sym_alignof] = ACTIONS(1294), - [anon_sym__Alignof] = ACTIONS(1294), - [anon_sym_offsetof] = ACTIONS(1294), - [anon_sym__Generic] = ACTIONS(1294), - [anon_sym_asm] = ACTIONS(1294), - [anon_sym___asm__] = ACTIONS(1294), - [sym_number_literal] = ACTIONS(1296), - [anon_sym_L_SQUOTE] = ACTIONS(1296), - [anon_sym_u_SQUOTE] = ACTIONS(1296), - [anon_sym_U_SQUOTE] = ACTIONS(1296), - [anon_sym_u8_SQUOTE] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [anon_sym_L_DQUOTE] = ACTIONS(1296), - [anon_sym_u_DQUOTE] = ACTIONS(1296), - [anon_sym_U_DQUOTE] = ACTIONS(1296), - [anon_sym_u8_DQUOTE] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym_true] = ACTIONS(1294), - [sym_false] = ACTIONS(1294), - [anon_sym_NULL] = ACTIONS(1294), - [anon_sym_nullptr] = ACTIONS(1294), - [sym_comment] = ACTIONS(5), - }, - [110] = { - [sym_identifier] = ACTIONS(1250), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1250), - [aux_sym_preproc_def_token1] = ACTIONS(1250), - [aux_sym_preproc_if_token1] = ACTIONS(1250), - [aux_sym_preproc_if_token2] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), - [aux_sym_preproc_else_token1] = ACTIONS(1250), - [aux_sym_preproc_elif_token1] = ACTIONS(1250), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1250), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1250), - [sym_preproc_directive] = ACTIONS(1250), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(1252), - [anon_sym_TILDE] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym___extension__] = ACTIONS(1250), - [anon_sym_typedef] = ACTIONS(1250), - [anon_sym_extern] = ACTIONS(1250), - [anon_sym___attribute__] = ACTIONS(1250), - [anon_sym___scanf] = ACTIONS(1250), - [anon_sym___printf] = ACTIONS(1250), - [anon_sym___read_mostly] = ACTIONS(1250), - [anon_sym___must_hold] = ACTIONS(1250), - [anon_sym___ro_after_init] = ACTIONS(1250), - [anon_sym___noreturn] = ACTIONS(1250), - [anon_sym___cold] = ACTIONS(1250), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), - [anon_sym___declspec] = ACTIONS(1250), - [anon_sym___init] = ACTIONS(1250), - [anon_sym___exit] = ACTIONS(1250), - [anon_sym___cdecl] = ACTIONS(1250), - [anon_sym___clrcall] = ACTIONS(1250), - [anon_sym___stdcall] = ACTIONS(1250), - [anon_sym___fastcall] = ACTIONS(1250), - [anon_sym___thiscall] = ACTIONS(1250), - [anon_sym___vectorcall] = ACTIONS(1250), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_signed] = ACTIONS(1250), - [anon_sym_unsigned] = ACTIONS(1250), - [anon_sym_long] = ACTIONS(1250), - [anon_sym_short] = ACTIONS(1250), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_auto] = ACTIONS(1250), - [anon_sym_register] = ACTIONS(1250), - [anon_sym_inline] = ACTIONS(1250), - [anon_sym___inline] = ACTIONS(1250), - [anon_sym___inline__] = ACTIONS(1250), - [anon_sym___forceinline] = ACTIONS(1250), - [anon_sym_thread_local] = ACTIONS(1250), - [anon_sym___thread] = ACTIONS(1250), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_constexpr] = ACTIONS(1250), - [anon_sym_volatile] = ACTIONS(1250), - [anon_sym_restrict] = ACTIONS(1250), - [anon_sym___restrict__] = ACTIONS(1250), - [anon_sym__Atomic] = ACTIONS(1250), - [anon_sym__Noreturn] = ACTIONS(1250), - [anon_sym_noreturn] = ACTIONS(1250), - [anon_sym_alignas] = ACTIONS(1250), - [anon_sym__Alignas] = ACTIONS(1250), - [sym_primitive_type] = ACTIONS(1250), - [anon_sym_enum] = ACTIONS(1250), - [anon_sym_struct] = ACTIONS(1250), - [anon_sym_union] = ACTIONS(1250), - [anon_sym_if] = ACTIONS(1250), - [anon_sym_else] = ACTIONS(1250), - [anon_sym_switch] = ACTIONS(1250), - [anon_sym_case] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1250), - [anon_sym_while] = ACTIONS(1250), - [anon_sym_do] = ACTIONS(1250), - [anon_sym_for] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_break] = ACTIONS(1250), - [anon_sym_continue] = ACTIONS(1250), - [anon_sym_goto] = ACTIONS(1250), - [anon_sym___try] = ACTIONS(1250), - [anon_sym___leave] = ACTIONS(1250), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_sizeof] = ACTIONS(1250), - [anon_sym___alignof__] = ACTIONS(1250), - [anon_sym___alignof] = ACTIONS(1250), - [anon_sym__alignof] = ACTIONS(1250), - [anon_sym_alignof] = ACTIONS(1250), - [anon_sym__Alignof] = ACTIONS(1250), - [anon_sym_offsetof] = ACTIONS(1250), - [anon_sym__Generic] = ACTIONS(1250), - [anon_sym_asm] = ACTIONS(1250), - [anon_sym___asm__] = ACTIONS(1250), - [sym_number_literal] = ACTIONS(1252), - [anon_sym_L_SQUOTE] = ACTIONS(1252), - [anon_sym_u_SQUOTE] = ACTIONS(1252), - [anon_sym_U_SQUOTE] = ACTIONS(1252), - [anon_sym_u8_SQUOTE] = ACTIONS(1252), - [anon_sym_SQUOTE] = ACTIONS(1252), - [anon_sym_L_DQUOTE] = ACTIONS(1252), - [anon_sym_u_DQUOTE] = ACTIONS(1252), - [anon_sym_U_DQUOTE] = ACTIONS(1252), - [anon_sym_u8_DQUOTE] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym_true] = ACTIONS(1250), - [sym_false] = ACTIONS(1250), - [anon_sym_NULL] = ACTIONS(1250), - [anon_sym_nullptr] = ACTIONS(1250), - [sym_comment] = ACTIONS(5), - }, - [111] = { + [102] = { [sym_identifier] = ACTIONS(1306), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1306), @@ -34453,235 +33524,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(5), }, - [112] = { - [sym_identifier] = ACTIONS(1274), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1274), - [aux_sym_preproc_def_token1] = ACTIONS(1274), - [aux_sym_preproc_if_token1] = ACTIONS(1274), - [aux_sym_preproc_if_token2] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), - [aux_sym_preproc_else_token1] = ACTIONS(1274), - [aux_sym_preproc_elif_token1] = ACTIONS(1274), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1274), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1274), - [sym_preproc_directive] = ACTIONS(1274), - [anon_sym_LPAREN2] = ACTIONS(1276), - [anon_sym_BANG] = ACTIONS(1276), - [anon_sym_TILDE] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym___extension__] = ACTIONS(1274), - [anon_sym_typedef] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym___attribute__] = ACTIONS(1274), - [anon_sym___scanf] = ACTIONS(1274), - [anon_sym___printf] = ACTIONS(1274), - [anon_sym___read_mostly] = ACTIONS(1274), - [anon_sym___must_hold] = ACTIONS(1274), - [anon_sym___ro_after_init] = ACTIONS(1274), - [anon_sym___noreturn] = ACTIONS(1274), - [anon_sym___cold] = ACTIONS(1274), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1276), - [anon_sym___declspec] = ACTIONS(1274), - [anon_sym___init] = ACTIONS(1274), - [anon_sym___exit] = ACTIONS(1274), - [anon_sym___cdecl] = ACTIONS(1274), - [anon_sym___clrcall] = ACTIONS(1274), - [anon_sym___stdcall] = ACTIONS(1274), - [anon_sym___fastcall] = ACTIONS(1274), - [anon_sym___thiscall] = ACTIONS(1274), - [anon_sym___vectorcall] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_signed] = ACTIONS(1274), - [anon_sym_unsigned] = ACTIONS(1274), - [anon_sym_long] = ACTIONS(1274), - [anon_sym_short] = ACTIONS(1274), - [anon_sym_static] = ACTIONS(1274), - [anon_sym_auto] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_inline] = ACTIONS(1274), - [anon_sym___inline] = ACTIONS(1274), - [anon_sym___inline__] = ACTIONS(1274), - [anon_sym___forceinline] = ACTIONS(1274), - [anon_sym_thread_local] = ACTIONS(1274), - [anon_sym___thread] = ACTIONS(1274), - [anon_sym_const] = ACTIONS(1274), - [anon_sym_constexpr] = ACTIONS(1274), - [anon_sym_volatile] = ACTIONS(1274), - [anon_sym_restrict] = ACTIONS(1274), - [anon_sym___restrict__] = ACTIONS(1274), - [anon_sym__Atomic] = ACTIONS(1274), - [anon_sym__Noreturn] = ACTIONS(1274), - [anon_sym_noreturn] = ACTIONS(1274), - [anon_sym_alignas] = ACTIONS(1274), - [anon_sym__Alignas] = ACTIONS(1274), - [sym_primitive_type] = ACTIONS(1274), - [anon_sym_enum] = ACTIONS(1274), - [anon_sym_struct] = ACTIONS(1274), - [anon_sym_union] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_else] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(1274), - [anon_sym_case] = ACTIONS(1274), - [anon_sym_default] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_do] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_goto] = ACTIONS(1274), - [anon_sym___try] = ACTIONS(1274), - [anon_sym___leave] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_sizeof] = ACTIONS(1274), - [anon_sym___alignof__] = ACTIONS(1274), - [anon_sym___alignof] = ACTIONS(1274), - [anon_sym__alignof] = ACTIONS(1274), - [anon_sym_alignof] = ACTIONS(1274), - [anon_sym__Alignof] = ACTIONS(1274), - [anon_sym_offsetof] = ACTIONS(1274), - [anon_sym__Generic] = ACTIONS(1274), - [anon_sym_asm] = ACTIONS(1274), - [anon_sym___asm__] = ACTIONS(1274), - [sym_number_literal] = ACTIONS(1276), - [anon_sym_L_SQUOTE] = ACTIONS(1276), - [anon_sym_u_SQUOTE] = ACTIONS(1276), - [anon_sym_U_SQUOTE] = ACTIONS(1276), - [anon_sym_u8_SQUOTE] = ACTIONS(1276), - [anon_sym_SQUOTE] = ACTIONS(1276), - [anon_sym_L_DQUOTE] = ACTIONS(1276), - [anon_sym_u_DQUOTE] = ACTIONS(1276), - [anon_sym_U_DQUOTE] = ACTIONS(1276), - [anon_sym_u8_DQUOTE] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym_true] = ACTIONS(1274), - [sym_false] = ACTIONS(1274), - [anon_sym_NULL] = ACTIONS(1274), - [anon_sym_nullptr] = ACTIONS(1274), - [sym_comment] = ACTIONS(5), - }, - [113] = { - [sym_identifier] = ACTIONS(1294), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1294), - [aux_sym_preproc_def_token1] = ACTIONS(1294), - [aux_sym_preproc_if_token1] = ACTIONS(1294), - [aux_sym_preproc_if_token2] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), - [aux_sym_preproc_else_token1] = ACTIONS(1294), - [aux_sym_preproc_elif_token1] = ACTIONS(1294), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1294), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1294), - [sym_preproc_directive] = ACTIONS(1294), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1296), - [anon_sym_TILDE] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym___extension__] = ACTIONS(1294), - [anon_sym_typedef] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym___attribute__] = ACTIONS(1294), - [anon_sym___scanf] = ACTIONS(1294), - [anon_sym___printf] = ACTIONS(1294), - [anon_sym___read_mostly] = ACTIONS(1294), - [anon_sym___must_hold] = ACTIONS(1294), - [anon_sym___ro_after_init] = ACTIONS(1294), - [anon_sym___noreturn] = ACTIONS(1294), - [anon_sym___cold] = ACTIONS(1294), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1296), - [anon_sym___declspec] = ACTIONS(1294), - [anon_sym___init] = ACTIONS(1294), - [anon_sym___exit] = ACTIONS(1294), - [anon_sym___cdecl] = ACTIONS(1294), - [anon_sym___clrcall] = ACTIONS(1294), - [anon_sym___stdcall] = ACTIONS(1294), - [anon_sym___fastcall] = ACTIONS(1294), - [anon_sym___thiscall] = ACTIONS(1294), - [anon_sym___vectorcall] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_signed] = ACTIONS(1294), - [anon_sym_unsigned] = ACTIONS(1294), - [anon_sym_long] = ACTIONS(1294), - [anon_sym_short] = ACTIONS(1294), - [anon_sym_static] = ACTIONS(1294), - [anon_sym_auto] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_inline] = ACTIONS(1294), - [anon_sym___inline] = ACTIONS(1294), - [anon_sym___inline__] = ACTIONS(1294), - [anon_sym___forceinline] = ACTIONS(1294), - [anon_sym_thread_local] = ACTIONS(1294), - [anon_sym___thread] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [anon_sym_constexpr] = ACTIONS(1294), - [anon_sym_volatile] = ACTIONS(1294), - [anon_sym_restrict] = ACTIONS(1294), - [anon_sym___restrict__] = ACTIONS(1294), - [anon_sym__Atomic] = ACTIONS(1294), - [anon_sym__Noreturn] = ACTIONS(1294), - [anon_sym_noreturn] = ACTIONS(1294), - [anon_sym_alignas] = ACTIONS(1294), - [anon_sym__Alignas] = ACTIONS(1294), - [sym_primitive_type] = ACTIONS(1294), - [anon_sym_enum] = ACTIONS(1294), - [anon_sym_struct] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1294), - [anon_sym_switch] = ACTIONS(1294), - [anon_sym_case] = ACTIONS(1294), - [anon_sym_default] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_goto] = ACTIONS(1294), - [anon_sym___try] = ACTIONS(1294), - [anon_sym___leave] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_sizeof] = ACTIONS(1294), - [anon_sym___alignof__] = ACTIONS(1294), - [anon_sym___alignof] = ACTIONS(1294), - [anon_sym__alignof] = ACTIONS(1294), - [anon_sym_alignof] = ACTIONS(1294), - [anon_sym__Alignof] = ACTIONS(1294), - [anon_sym_offsetof] = ACTIONS(1294), - [anon_sym__Generic] = ACTIONS(1294), - [anon_sym_asm] = ACTIONS(1294), - [anon_sym___asm__] = ACTIONS(1294), - [sym_number_literal] = ACTIONS(1296), - [anon_sym_L_SQUOTE] = ACTIONS(1296), - [anon_sym_u_SQUOTE] = ACTIONS(1296), - [anon_sym_U_SQUOTE] = ACTIONS(1296), - [anon_sym_u8_SQUOTE] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [anon_sym_L_DQUOTE] = ACTIONS(1296), - [anon_sym_u_DQUOTE] = ACTIONS(1296), - [anon_sym_U_DQUOTE] = ACTIONS(1296), - [anon_sym_u8_DQUOTE] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym_true] = ACTIONS(1294), - [sym_false] = ACTIONS(1294), - [anon_sym_NULL] = ACTIONS(1294), - [anon_sym_nullptr] = ACTIONS(1294), - [sym_comment] = ACTIONS(5), - }, - [114] = { + [103] = { [sym_identifier] = ACTIONS(1310), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1310), @@ -34795,7 +33638,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1310), [sym_comment] = ACTIONS(5), }, - [115] = { + [104] = { + [sym_identifier] = ACTIONS(1306), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym___scanf] = ACTIONS(1306), + [anon_sym___printf] = ACTIONS(1306), + [anon_sym___read_mostly] = ACTIONS(1306), + [anon_sym___must_hold] = ACTIONS(1306), + [anon_sym___ro_after_init] = ACTIONS(1306), + [anon_sym___noreturn] = ACTIONS(1306), + [anon_sym___cold] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___init] = ACTIONS(1306), + [anon_sym___exit] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [anon_sym_alignas] = ACTIONS(1306), + [anon_sym__Alignas] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(5), + }, + [105] = { + [sym_identifier] = ACTIONS(1306), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym___scanf] = ACTIONS(1306), + [anon_sym___printf] = ACTIONS(1306), + [anon_sym___read_mostly] = ACTIONS(1306), + [anon_sym___must_hold] = ACTIONS(1306), + [anon_sym___ro_after_init] = ACTIONS(1306), + [anon_sym___noreturn] = ACTIONS(1306), + [anon_sym___cold] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___init] = ACTIONS(1306), + [anon_sym___exit] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [anon_sym_alignas] = ACTIONS(1306), + [anon_sym__Alignas] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(5), + }, + [106] = { [sym_identifier] = ACTIONS(1314), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1314), @@ -34909,7 +33980,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1314), [sym_comment] = ACTIONS(5), }, - [116] = { + [107] = { [sym_identifier] = ACTIONS(1318), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1318), @@ -35023,7 +34094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(5), }, - [117] = { + [108] = { [sym_identifier] = ACTIONS(1322), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1322), @@ -35137,53 +34208,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1322), [sym_comment] = ACTIONS(5), }, - [118] = { - [sym_identifier] = ACTIONS(1326), + [109] = { + [sym_identifier] = ACTIONS(1318), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1326), - [aux_sym_preproc_def_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token2] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), - [aux_sym_preproc_else_token1] = ACTIONS(1326), - [aux_sym_preproc_elif_token1] = ACTIONS(1326), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1326), - [sym_preproc_directive] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym___extension__] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym___attribute__] = ACTIONS(1326), - [anon_sym___scanf] = ACTIONS(1326), - [anon_sym___printf] = ACTIONS(1326), - [anon_sym___read_mostly] = ACTIONS(1326), - [anon_sym___must_hold] = ACTIONS(1326), - [anon_sym___ro_after_init] = ACTIONS(1326), - [anon_sym___noreturn] = ACTIONS(1326), - [anon_sym___cold] = ACTIONS(1326), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym___init] = ACTIONS(1326), - [anon_sym___exit] = ACTIONS(1326), - [anon_sym___cdecl] = ACTIONS(1326), - [anon_sym___clrcall] = ACTIONS(1326), - [anon_sym___stdcall] = ACTIONS(1326), - [anon_sym___fastcall] = ACTIONS(1326), - [anon_sym___thiscall] = ACTIONS(1326), - [anon_sym___vectorcall] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token2] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [aux_sym_preproc_else_token1] = ACTIONS(1318), + [aux_sym_preproc_elif_token1] = ACTIONS(1318), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym___scanf] = ACTIONS(1318), + [anon_sym___printf] = ACTIONS(1318), + [anon_sym___read_mostly] = ACTIONS(1318), + [anon_sym___must_hold] = ACTIONS(1318), + [anon_sym___ro_after_init] = ACTIONS(1318), + [anon_sym___noreturn] = ACTIONS(1318), + [anon_sym___cold] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___init] = ACTIONS(1318), + [anon_sym___exit] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [anon_sym_alignas] = ACTIONS(1318), + [anon_sym__Alignas] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), + [sym_comment] = ACTIONS(5), + }, + [110] = { + [sym_identifier] = ACTIONS(1326), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token2] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [aux_sym_preproc_else_token1] = ACTIONS(1326), + [aux_sym_preproc_elif_token1] = ACTIONS(1326), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym___scanf] = ACTIONS(1326), + [anon_sym___printf] = ACTIONS(1326), + [anon_sym___read_mostly] = ACTIONS(1326), + [anon_sym___must_hold] = ACTIONS(1326), + [anon_sym___ro_after_init] = ACTIONS(1326), + [anon_sym___noreturn] = ACTIONS(1326), + [anon_sym___cold] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___init] = ACTIONS(1326), + [anon_sym___exit] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), [anon_sym_short] = ACTIONS(1326), [anon_sym_static] = ACTIONS(1326), [anon_sym_auto] = ACTIONS(1326), @@ -35251,7 +34436,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1326), [sym_comment] = ACTIONS(5), }, - [119] = { + [111] = { [sym_identifier] = ACTIONS(1330), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1330), @@ -35365,7 +34550,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1330), [sym_comment] = ACTIONS(5), }, - [120] = { + [112] = { + [sym_identifier] = ACTIONS(1250), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1250), + [aux_sym_preproc_def_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token2] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), + [aux_sym_preproc_else_token1] = ACTIONS(1250), + [aux_sym_preproc_elif_token1] = ACTIONS(1250), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1250), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1250), + [sym_preproc_directive] = ACTIONS(1250), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym___extension__] = ACTIONS(1250), + [anon_sym_typedef] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1250), + [anon_sym___attribute__] = ACTIONS(1250), + [anon_sym___scanf] = ACTIONS(1250), + [anon_sym___printf] = ACTIONS(1250), + [anon_sym___read_mostly] = ACTIONS(1250), + [anon_sym___must_hold] = ACTIONS(1250), + [anon_sym___ro_after_init] = ACTIONS(1250), + [anon_sym___noreturn] = ACTIONS(1250), + [anon_sym___cold] = ACTIONS(1250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), + [anon_sym___declspec] = ACTIONS(1250), + [anon_sym___init] = ACTIONS(1250), + [anon_sym___exit] = ACTIONS(1250), + [anon_sym___cdecl] = ACTIONS(1250), + [anon_sym___clrcall] = ACTIONS(1250), + [anon_sym___stdcall] = ACTIONS(1250), + [anon_sym___fastcall] = ACTIONS(1250), + [anon_sym___thiscall] = ACTIONS(1250), + [anon_sym___vectorcall] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_signed] = ACTIONS(1250), + [anon_sym_unsigned] = ACTIONS(1250), + [anon_sym_long] = ACTIONS(1250), + [anon_sym_short] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_auto] = ACTIONS(1250), + [anon_sym_register] = ACTIONS(1250), + [anon_sym_inline] = ACTIONS(1250), + [anon_sym___inline] = ACTIONS(1250), + [anon_sym___inline__] = ACTIONS(1250), + [anon_sym___forceinline] = ACTIONS(1250), + [anon_sym_thread_local] = ACTIONS(1250), + [anon_sym___thread] = ACTIONS(1250), + [anon_sym_const] = ACTIONS(1250), + [anon_sym_constexpr] = ACTIONS(1250), + [anon_sym_volatile] = ACTIONS(1250), + [anon_sym_restrict] = ACTIONS(1250), + [anon_sym___restrict__] = ACTIONS(1250), + [anon_sym__Atomic] = ACTIONS(1250), + [anon_sym__Noreturn] = ACTIONS(1250), + [anon_sym_noreturn] = ACTIONS(1250), + [anon_sym_alignas] = ACTIONS(1250), + [anon_sym__Alignas] = ACTIONS(1250), + [sym_primitive_type] = ACTIONS(1250), + [anon_sym_enum] = ACTIONS(1250), + [anon_sym_struct] = ACTIONS(1250), + [anon_sym_union] = ACTIONS(1250), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_else] = ACTIONS(1250), + [anon_sym_switch] = ACTIONS(1250), + [anon_sym_case] = ACTIONS(1250), + [anon_sym_default] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [anon_sym_do] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_goto] = ACTIONS(1250), + [anon_sym___try] = ACTIONS(1250), + [anon_sym___leave] = ACTIONS(1250), + [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_sizeof] = ACTIONS(1250), + [anon_sym___alignof__] = ACTIONS(1250), + [anon_sym___alignof] = ACTIONS(1250), + [anon_sym__alignof] = ACTIONS(1250), + [anon_sym_alignof] = ACTIONS(1250), + [anon_sym__Alignof] = ACTIONS(1250), + [anon_sym_offsetof] = ACTIONS(1250), + [anon_sym__Generic] = ACTIONS(1250), + [anon_sym_asm] = ACTIONS(1250), + [anon_sym___asm__] = ACTIONS(1250), + [sym_number_literal] = ACTIONS(1252), + [anon_sym_L_SQUOTE] = ACTIONS(1252), + [anon_sym_u_SQUOTE] = ACTIONS(1252), + [anon_sym_U_SQUOTE] = ACTIONS(1252), + [anon_sym_u8_SQUOTE] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1252), + [anon_sym_L_DQUOTE] = ACTIONS(1252), + [anon_sym_u_DQUOTE] = ACTIONS(1252), + [anon_sym_U_DQUOTE] = ACTIONS(1252), + [anon_sym_u8_DQUOTE] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_true] = ACTIONS(1250), + [sym_false] = ACTIONS(1250), + [anon_sym_NULL] = ACTIONS(1250), + [anon_sym_nullptr] = ACTIONS(1250), + [sym_comment] = ACTIONS(5), + }, + [113] = { [sym_identifier] = ACTIONS(1334), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1334), @@ -35479,7 +34778,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(5), }, - [121] = { + [114] = { + [sym_identifier] = ACTIONS(1250), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1250), + [aux_sym_preproc_def_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token2] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), + [aux_sym_preproc_else_token1] = ACTIONS(1250), + [aux_sym_preproc_elif_token1] = ACTIONS(1250), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1250), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1250), + [sym_preproc_directive] = ACTIONS(1250), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym___extension__] = ACTIONS(1250), + [anon_sym_typedef] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1250), + [anon_sym___attribute__] = ACTIONS(1250), + [anon_sym___scanf] = ACTIONS(1250), + [anon_sym___printf] = ACTIONS(1250), + [anon_sym___read_mostly] = ACTIONS(1250), + [anon_sym___must_hold] = ACTIONS(1250), + [anon_sym___ro_after_init] = ACTIONS(1250), + [anon_sym___noreturn] = ACTIONS(1250), + [anon_sym___cold] = ACTIONS(1250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), + [anon_sym___declspec] = ACTIONS(1250), + [anon_sym___init] = ACTIONS(1250), + [anon_sym___exit] = ACTIONS(1250), + [anon_sym___cdecl] = ACTIONS(1250), + [anon_sym___clrcall] = ACTIONS(1250), + [anon_sym___stdcall] = ACTIONS(1250), + [anon_sym___fastcall] = ACTIONS(1250), + [anon_sym___thiscall] = ACTIONS(1250), + [anon_sym___vectorcall] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_signed] = ACTIONS(1250), + [anon_sym_unsigned] = ACTIONS(1250), + [anon_sym_long] = ACTIONS(1250), + [anon_sym_short] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_auto] = ACTIONS(1250), + [anon_sym_register] = ACTIONS(1250), + [anon_sym_inline] = ACTIONS(1250), + [anon_sym___inline] = ACTIONS(1250), + [anon_sym___inline__] = ACTIONS(1250), + [anon_sym___forceinline] = ACTIONS(1250), + [anon_sym_thread_local] = ACTIONS(1250), + [anon_sym___thread] = ACTIONS(1250), + [anon_sym_const] = ACTIONS(1250), + [anon_sym_constexpr] = ACTIONS(1250), + [anon_sym_volatile] = ACTIONS(1250), + [anon_sym_restrict] = ACTIONS(1250), + [anon_sym___restrict__] = ACTIONS(1250), + [anon_sym__Atomic] = ACTIONS(1250), + [anon_sym__Noreturn] = ACTIONS(1250), + [anon_sym_noreturn] = ACTIONS(1250), + [anon_sym_alignas] = ACTIONS(1250), + [anon_sym__Alignas] = ACTIONS(1250), + [sym_primitive_type] = ACTIONS(1250), + [anon_sym_enum] = ACTIONS(1250), + [anon_sym_struct] = ACTIONS(1250), + [anon_sym_union] = ACTIONS(1250), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_else] = ACTIONS(1250), + [anon_sym_switch] = ACTIONS(1250), + [anon_sym_case] = ACTIONS(1250), + [anon_sym_default] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [anon_sym_do] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_goto] = ACTIONS(1250), + [anon_sym___try] = ACTIONS(1250), + [anon_sym___leave] = ACTIONS(1250), + [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_sizeof] = ACTIONS(1250), + [anon_sym___alignof__] = ACTIONS(1250), + [anon_sym___alignof] = ACTIONS(1250), + [anon_sym__alignof] = ACTIONS(1250), + [anon_sym_alignof] = ACTIONS(1250), + [anon_sym__Alignof] = ACTIONS(1250), + [anon_sym_offsetof] = ACTIONS(1250), + [anon_sym__Generic] = ACTIONS(1250), + [anon_sym_asm] = ACTIONS(1250), + [anon_sym___asm__] = ACTIONS(1250), + [sym_number_literal] = ACTIONS(1252), + [anon_sym_L_SQUOTE] = ACTIONS(1252), + [anon_sym_u_SQUOTE] = ACTIONS(1252), + [anon_sym_U_SQUOTE] = ACTIONS(1252), + [anon_sym_u8_SQUOTE] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1252), + [anon_sym_L_DQUOTE] = ACTIONS(1252), + [anon_sym_u_DQUOTE] = ACTIONS(1252), + [anon_sym_U_DQUOTE] = ACTIONS(1252), + [anon_sym_u8_DQUOTE] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_true] = ACTIONS(1250), + [sym_false] = ACTIONS(1250), + [anon_sym_NULL] = ACTIONS(1250), + [anon_sym_nullptr] = ACTIONS(1250), + [sym_comment] = ACTIONS(5), + }, + [115] = { [sym_identifier] = ACTIONS(1338), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1338), @@ -35593,7 +35006,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1338), [sym_comment] = ACTIONS(5), }, - [122] = { + [116] = { [sym_identifier] = ACTIONS(1342), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1342), @@ -35707,7 +35120,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1342), [sym_comment] = ACTIONS(5), }, - [123] = { + [117] = { [sym_identifier] = ACTIONS(1346), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1346), @@ -35821,7 +35234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1346), [sym_comment] = ACTIONS(5), }, - [124] = { + [118] = { [sym_identifier] = ACTIONS(1350), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1350), @@ -35935,7 +35348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(5), }, - [125] = { + [119] = { [sym_identifier] = ACTIONS(1354), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1354), @@ -36007,6 +35420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1354), [anon_sym_union] = ACTIONS(1354), [anon_sym_if] = ACTIONS(1354), + [anon_sym_else] = ACTIONS(1354), [anon_sym_switch] = ACTIONS(1354), [anon_sym_case] = ACTIONS(1354), [anon_sym_default] = ACTIONS(1354), @@ -36048,7 +35462,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1354), [sym_comment] = ACTIONS(5), }, - [126] = { + [120] = { [sym_identifier] = ACTIONS(1358), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1358), @@ -36120,6 +35534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1358), [anon_sym_union] = ACTIONS(1358), [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), [anon_sym_switch] = ACTIONS(1358), [anon_sym_case] = ACTIONS(1358), [anon_sym_default] = ACTIONS(1358), @@ -36161,7 +35576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1358), [sym_comment] = ACTIONS(5), }, - [127] = { + [121] = { [sym_identifier] = ACTIONS(1362), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1362), @@ -36233,6 +35648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1362), [anon_sym_union] = ACTIONS(1362), [anon_sym_if] = ACTIONS(1362), + [anon_sym_else] = ACTIONS(1362), [anon_sym_switch] = ACTIONS(1362), [anon_sym_case] = ACTIONS(1362), [anon_sym_default] = ACTIONS(1362), @@ -36274,7 +35690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1362), [sym_comment] = ACTIONS(5), }, - [128] = { + [122] = { [sym_identifier] = ACTIONS(1366), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1366), @@ -36346,6 +35762,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1366), [anon_sym_union] = ACTIONS(1366), [anon_sym_if] = ACTIONS(1366), + [anon_sym_else] = ACTIONS(1366), [anon_sym_switch] = ACTIONS(1366), [anon_sym_case] = ACTIONS(1366), [anon_sym_default] = ACTIONS(1366), @@ -36387,120 +35804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1366), [sym_comment] = ACTIONS(5), }, - [129] = { - [sym_identifier] = ACTIONS(1354), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token2] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [aux_sym_preproc_else_token1] = ACTIONS(1354), - [aux_sym_preproc_elif_token1] = ACTIONS(1354), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [anon_sym_LPAREN2] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym___extension__] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym___attribute__] = ACTIONS(1354), - [anon_sym___scanf] = ACTIONS(1354), - [anon_sym___printf] = ACTIONS(1354), - [anon_sym___read_mostly] = ACTIONS(1354), - [anon_sym___must_hold] = ACTIONS(1354), - [anon_sym___ro_after_init] = ACTIONS(1354), - [anon_sym___noreturn] = ACTIONS(1354), - [anon_sym___cold] = ACTIONS(1354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), - [anon_sym___declspec] = ACTIONS(1354), - [anon_sym___init] = ACTIONS(1354), - [anon_sym___exit] = ACTIONS(1354), - [anon_sym___cdecl] = ACTIONS(1354), - [anon_sym___clrcall] = ACTIONS(1354), - [anon_sym___stdcall] = ACTIONS(1354), - [anon_sym___fastcall] = ACTIONS(1354), - [anon_sym___thiscall] = ACTIONS(1354), - [anon_sym___vectorcall] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym___inline] = ACTIONS(1354), - [anon_sym___inline__] = ACTIONS(1354), - [anon_sym___forceinline] = ACTIONS(1354), - [anon_sym_thread_local] = ACTIONS(1354), - [anon_sym___thread] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_constexpr] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym___restrict__] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [anon_sym__Noreturn] = ACTIONS(1354), - [anon_sym_noreturn] = ACTIONS(1354), - [anon_sym_alignas] = ACTIONS(1354), - [anon_sym__Alignas] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [anon_sym___try] = ACTIONS(1354), - [anon_sym___leave] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym___alignof__] = ACTIONS(1354), - [anon_sym___alignof] = ACTIONS(1354), - [anon_sym__alignof] = ACTIONS(1354), - [anon_sym_alignof] = ACTIONS(1354), - [anon_sym__Alignof] = ACTIONS(1354), - [anon_sym_offsetof] = ACTIONS(1354), - [anon_sym__Generic] = ACTIONS(1354), - [anon_sym_asm] = ACTIONS(1354), - [anon_sym___asm__] = ACTIONS(1354), - [sym_number_literal] = ACTIONS(1356), - [anon_sym_L_SQUOTE] = ACTIONS(1356), - [anon_sym_u_SQUOTE] = ACTIONS(1356), - [anon_sym_U_SQUOTE] = ACTIONS(1356), - [anon_sym_u8_SQUOTE] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_L_DQUOTE] = ACTIONS(1356), - [anon_sym_u_DQUOTE] = ACTIONS(1356), - [anon_sym_U_DQUOTE] = ACTIONS(1356), - [anon_sym_u8_DQUOTE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_NULL] = ACTIONS(1354), - [anon_sym_nullptr] = ACTIONS(1354), - [sym_comment] = ACTIONS(5), - }, - [130] = { + [123] = { [sym_identifier] = ACTIONS(1370), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1370), @@ -36572,6 +35876,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1370), [anon_sym_union] = ACTIONS(1370), [anon_sym_if] = ACTIONS(1370), + [anon_sym_else] = ACTIONS(1370), [anon_sym_switch] = ACTIONS(1370), [anon_sym_case] = ACTIONS(1370), [anon_sym_default] = ACTIONS(1370), @@ -36613,7 +35918,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1370), [sym_comment] = ACTIONS(5), }, - [131] = { + [124] = { [sym_identifier] = ACTIONS(1374), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1374), @@ -36685,6 +35990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1374), [anon_sym_union] = ACTIONS(1374), [anon_sym_if] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), [anon_sym_switch] = ACTIONS(1374), [anon_sym_case] = ACTIONS(1374), [anon_sym_default] = ACTIONS(1374), @@ -36726,7 +36032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1374), [sym_comment] = ACTIONS(5), }, - [132] = { + [125] = { [sym_identifier] = ACTIONS(1378), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1378), @@ -36798,6 +36104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1378), [anon_sym_union] = ACTIONS(1378), [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), [anon_sym_switch] = ACTIONS(1378), [anon_sym_case] = ACTIONS(1378), [anon_sym_default] = ACTIONS(1378), @@ -36839,293 +36146,636 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(5), }, - [133] = { - [sym_identifier] = ACTIONS(1366), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token2] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), - [aux_sym_preproc_else_token1] = ACTIONS(1366), - [aux_sym_preproc_elif_token1] = ACTIONS(1366), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1366), - [sym_preproc_directive] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_TILDE] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym___attribute__] = ACTIONS(1366), - [anon_sym___scanf] = ACTIONS(1366), - [anon_sym___printf] = ACTIONS(1366), - [anon_sym___read_mostly] = ACTIONS(1366), - [anon_sym___must_hold] = ACTIONS(1366), - [anon_sym___ro_after_init] = ACTIONS(1366), - [anon_sym___noreturn] = ACTIONS(1366), - [anon_sym___cold] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), - [anon_sym___declspec] = ACTIONS(1366), - [anon_sym___init] = ACTIONS(1366), - [anon_sym___exit] = ACTIONS(1366), - [anon_sym___cdecl] = ACTIONS(1366), - [anon_sym___clrcall] = ACTIONS(1366), - [anon_sym___stdcall] = ACTIONS(1366), - [anon_sym___fastcall] = ACTIONS(1366), - [anon_sym___thiscall] = ACTIONS(1366), - [anon_sym___vectorcall] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1366), - [anon_sym_unsigned] = ACTIONS(1366), - [anon_sym_long] = ACTIONS(1366), - [anon_sym_short] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_auto] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1366), - [anon_sym_inline] = ACTIONS(1366), - [anon_sym___inline] = ACTIONS(1366), - [anon_sym___inline__] = ACTIONS(1366), - [anon_sym___forceinline] = ACTIONS(1366), - [anon_sym_thread_local] = ACTIONS(1366), - [anon_sym___thread] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_constexpr] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1366), - [anon_sym_restrict] = ACTIONS(1366), - [anon_sym___restrict__] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1366), - [anon_sym__Noreturn] = ACTIONS(1366), - [anon_sym_noreturn] = ACTIONS(1366), - [anon_sym_alignas] = ACTIONS(1366), - [anon_sym__Alignas] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1366), - [anon_sym_case] = ACTIONS(1366), - [anon_sym_default] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_do] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_goto] = ACTIONS(1366), - [anon_sym___try] = ACTIONS(1366), - [anon_sym___leave] = ACTIONS(1366), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_sizeof] = ACTIONS(1366), - [anon_sym___alignof__] = ACTIONS(1366), - [anon_sym___alignof] = ACTIONS(1366), - [anon_sym__alignof] = ACTIONS(1366), - [anon_sym_alignof] = ACTIONS(1366), - [anon_sym__Alignof] = ACTIONS(1366), - [anon_sym_offsetof] = ACTIONS(1366), - [anon_sym__Generic] = ACTIONS(1366), - [anon_sym_asm] = ACTIONS(1366), - [anon_sym___asm__] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(1368), - [anon_sym_L_SQUOTE] = ACTIONS(1368), - [anon_sym_u_SQUOTE] = ACTIONS(1368), - [anon_sym_U_SQUOTE] = ACTIONS(1368), - [anon_sym_u8_SQUOTE] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_L_DQUOTE] = ACTIONS(1368), - [anon_sym_u_DQUOTE] = ACTIONS(1368), - [anon_sym_U_DQUOTE] = ACTIONS(1368), - [anon_sym_u8_DQUOTE] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [anon_sym_NULL] = ACTIONS(1366), - [anon_sym_nullptr] = ACTIONS(1366), - [sym_comment] = ACTIONS(5), - }, - [134] = { - [sym_identifier] = ACTIONS(1382), + [126] = { + [sym_identifier] = ACTIONS(1378), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token2] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [aux_sym_preproc_else_token1] = ACTIONS(1382), - [aux_sym_preproc_elif_token1] = ACTIONS(1382), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym___extension__] = ACTIONS(1382), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym___scanf] = ACTIONS(1382), - [anon_sym___printf] = ACTIONS(1382), - [anon_sym___read_mostly] = ACTIONS(1382), - [anon_sym___must_hold] = ACTIONS(1382), - [anon_sym___ro_after_init] = ACTIONS(1382), - [anon_sym___noreturn] = ACTIONS(1382), - [anon_sym___cold] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___init] = ACTIONS(1382), - [anon_sym___exit] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym___inline] = ACTIONS(1382), - [anon_sym___inline__] = ACTIONS(1382), - [anon_sym___forceinline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym___thread] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_constexpr] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1382), - [anon_sym_restrict] = ACTIONS(1382), - [anon_sym___restrict__] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1382), - [anon_sym__Noreturn] = ACTIONS(1382), - [anon_sym_noreturn] = ACTIONS(1382), - [anon_sym_alignas] = ACTIONS(1382), - [anon_sym__Alignas] = ACTIONS(1382), - [sym_primitive_type] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1382), - [anon_sym___try] = ACTIONS(1382), - [anon_sym___leave] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym___alignof__] = ACTIONS(1382), - [anon_sym___alignof] = ACTIONS(1382), - [anon_sym__alignof] = ACTIONS(1382), - [anon_sym_alignof] = ACTIONS(1382), - [anon_sym__Alignof] = ACTIONS(1382), - [anon_sym_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym___asm__] = ACTIONS(1382), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_L_SQUOTE] = ACTIONS(1384), - [anon_sym_u_SQUOTE] = ACTIONS(1384), - [anon_sym_U_SQUOTE] = ACTIONS(1384), - [anon_sym_u8_SQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_L_DQUOTE] = ACTIONS(1384), - [anon_sym_u_DQUOTE] = ACTIONS(1384), - [anon_sym_U_DQUOTE] = ACTIONS(1384), - [anon_sym_u8_DQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [anon_sym_NULL] = ACTIONS(1382), - [anon_sym_nullptr] = ACTIONS(1382), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token2] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [aux_sym_preproc_else_token1] = ACTIONS(1378), + [aux_sym_preproc_elif_token1] = ACTIONS(1378), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym___scanf] = ACTIONS(1378), + [anon_sym___printf] = ACTIONS(1378), + [anon_sym___read_mostly] = ACTIONS(1378), + [anon_sym___must_hold] = ACTIONS(1378), + [anon_sym___ro_after_init] = ACTIONS(1378), + [anon_sym___noreturn] = ACTIONS(1378), + [anon_sym___cold] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___init] = ACTIONS(1378), + [anon_sym___exit] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [anon_sym_alignas] = ACTIONS(1378), + [anon_sym__Alignas] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(5), }, - [135] = { - [sym_identifier] = ACTIONS(1386), + [127] = { + [sym_identifier] = ACTIONS(1374), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token2] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [aux_sym_preproc_else_token1] = ACTIONS(1386), - [aux_sym_preproc_elif_token1] = ACTIONS(1386), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1389), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym___extension__] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym___scanf] = ACTIONS(1386), - [anon_sym___printf] = ACTIONS(1386), - [anon_sym___read_mostly] = ACTIONS(1386), - [anon_sym___must_hold] = ACTIONS(1386), - [anon_sym___ro_after_init] = ACTIONS(1386), - [anon_sym___noreturn] = ACTIONS(1386), - [anon_sym___cold] = ACTIONS(1386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(1386), - [anon_sym___init] = ACTIONS(1386), - [anon_sym___exit] = ACTIONS(1386), - [anon_sym___cdecl] = ACTIONS(1386), - [anon_sym___clrcall] = ACTIONS(1386), - [anon_sym___stdcall] = ACTIONS(1386), - [anon_sym___fastcall] = ACTIONS(1386), - [anon_sym___thiscall] = ACTIONS(1386), - [anon_sym___vectorcall] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym___inline] = ACTIONS(1386), - [anon_sym___inline__] = ACTIONS(1386), - [anon_sym___forceinline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym___thread] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_constexpr] = ACTIONS(1386), - [anon_sym_volatile] = ACTIONS(1386), - [anon_sym_restrict] = ACTIONS(1386), + [aux_sym_preproc_include_token1] = ACTIONS(1374), + [aux_sym_preproc_def_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token2] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), + [aux_sym_preproc_else_token1] = ACTIONS(1374), + [aux_sym_preproc_elif_token1] = ACTIONS(1374), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1374), + [sym_preproc_directive] = ACTIONS(1374), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym___extension__] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym___attribute__] = ACTIONS(1374), + [anon_sym___scanf] = ACTIONS(1374), + [anon_sym___printf] = ACTIONS(1374), + [anon_sym___read_mostly] = ACTIONS(1374), + [anon_sym___must_hold] = ACTIONS(1374), + [anon_sym___ro_after_init] = ACTIONS(1374), + [anon_sym___noreturn] = ACTIONS(1374), + [anon_sym___cold] = ACTIONS(1374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym___declspec] = ACTIONS(1374), + [anon_sym___init] = ACTIONS(1374), + [anon_sym___exit] = ACTIONS(1374), + [anon_sym___cdecl] = ACTIONS(1374), + [anon_sym___clrcall] = ACTIONS(1374), + [anon_sym___stdcall] = ACTIONS(1374), + [anon_sym___fastcall] = ACTIONS(1374), + [anon_sym___thiscall] = ACTIONS(1374), + [anon_sym___vectorcall] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_constexpr] = ACTIONS(1374), + [anon_sym_volatile] = ACTIONS(1374), + [anon_sym_restrict] = ACTIONS(1374), + [anon_sym___restrict__] = ACTIONS(1374), + [anon_sym__Atomic] = ACTIONS(1374), + [anon_sym__Noreturn] = ACTIONS(1374), + [anon_sym_noreturn] = ACTIONS(1374), + [anon_sym_alignas] = ACTIONS(1374), + [anon_sym__Alignas] = ACTIONS(1374), + [sym_primitive_type] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_switch] = ACTIONS(1374), + [anon_sym_case] = ACTIONS(1374), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_goto] = ACTIONS(1374), + [anon_sym___try] = ACTIONS(1374), + [anon_sym___leave] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = ACTIONS(1374), + [anon_sym_offsetof] = ACTIONS(1374), + [anon_sym__Generic] = ACTIONS(1374), + [anon_sym_asm] = ACTIONS(1374), + [anon_sym___asm__] = ACTIONS(1374), + [sym_number_literal] = ACTIONS(1376), + [anon_sym_L_SQUOTE] = ACTIONS(1376), + [anon_sym_u_SQUOTE] = ACTIONS(1376), + [anon_sym_U_SQUOTE] = ACTIONS(1376), + [anon_sym_u8_SQUOTE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_L_DQUOTE] = ACTIONS(1376), + [anon_sym_u_DQUOTE] = ACTIONS(1376), + [anon_sym_U_DQUOTE] = ACTIONS(1376), + [anon_sym_u8_DQUOTE] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [anon_sym_NULL] = ACTIONS(1374), + [anon_sym_nullptr] = ACTIONS(1374), + [sym_comment] = ACTIONS(5), + }, + [128] = { + [sym_identifier] = ACTIONS(1378), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token2] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [aux_sym_preproc_else_token1] = ACTIONS(1378), + [aux_sym_preproc_elif_token1] = ACTIONS(1378), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym___scanf] = ACTIONS(1378), + [anon_sym___printf] = ACTIONS(1378), + [anon_sym___read_mostly] = ACTIONS(1378), + [anon_sym___must_hold] = ACTIONS(1378), + [anon_sym___ro_after_init] = ACTIONS(1378), + [anon_sym___noreturn] = ACTIONS(1378), + [anon_sym___cold] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___init] = ACTIONS(1378), + [anon_sym___exit] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [anon_sym_alignas] = ACTIONS(1378), + [anon_sym__Alignas] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), + [sym_comment] = ACTIONS(5), + }, + [129] = { + [sym_identifier] = ACTIONS(1374), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1374), + [aux_sym_preproc_def_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token2] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), + [aux_sym_preproc_else_token1] = ACTIONS(1374), + [aux_sym_preproc_elif_token1] = ACTIONS(1374), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1374), + [sym_preproc_directive] = ACTIONS(1374), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym___extension__] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym___attribute__] = ACTIONS(1374), + [anon_sym___scanf] = ACTIONS(1374), + [anon_sym___printf] = ACTIONS(1374), + [anon_sym___read_mostly] = ACTIONS(1374), + [anon_sym___must_hold] = ACTIONS(1374), + [anon_sym___ro_after_init] = ACTIONS(1374), + [anon_sym___noreturn] = ACTIONS(1374), + [anon_sym___cold] = ACTIONS(1374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym___declspec] = ACTIONS(1374), + [anon_sym___init] = ACTIONS(1374), + [anon_sym___exit] = ACTIONS(1374), + [anon_sym___cdecl] = ACTIONS(1374), + [anon_sym___clrcall] = ACTIONS(1374), + [anon_sym___stdcall] = ACTIONS(1374), + [anon_sym___fastcall] = ACTIONS(1374), + [anon_sym___thiscall] = ACTIONS(1374), + [anon_sym___vectorcall] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_constexpr] = ACTIONS(1374), + [anon_sym_volatile] = ACTIONS(1374), + [anon_sym_restrict] = ACTIONS(1374), + [anon_sym___restrict__] = ACTIONS(1374), + [anon_sym__Atomic] = ACTIONS(1374), + [anon_sym__Noreturn] = ACTIONS(1374), + [anon_sym_noreturn] = ACTIONS(1374), + [anon_sym_alignas] = ACTIONS(1374), + [anon_sym__Alignas] = ACTIONS(1374), + [sym_primitive_type] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_switch] = ACTIONS(1374), + [anon_sym_case] = ACTIONS(1374), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_goto] = ACTIONS(1374), + [anon_sym___try] = ACTIONS(1374), + [anon_sym___leave] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = ACTIONS(1374), + [anon_sym_offsetof] = ACTIONS(1374), + [anon_sym__Generic] = ACTIONS(1374), + [anon_sym_asm] = ACTIONS(1374), + [anon_sym___asm__] = ACTIONS(1374), + [sym_number_literal] = ACTIONS(1376), + [anon_sym_L_SQUOTE] = ACTIONS(1376), + [anon_sym_u_SQUOTE] = ACTIONS(1376), + [anon_sym_U_SQUOTE] = ACTIONS(1376), + [anon_sym_u8_SQUOTE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_L_DQUOTE] = ACTIONS(1376), + [anon_sym_u_DQUOTE] = ACTIONS(1376), + [anon_sym_U_DQUOTE] = ACTIONS(1376), + [anon_sym_u8_DQUOTE] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [anon_sym_NULL] = ACTIONS(1374), + [anon_sym_nullptr] = ACTIONS(1374), + [sym_comment] = ACTIONS(5), + }, + [130] = { + [sym_identifier] = ACTIONS(1382), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token2] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), + [aux_sym_preproc_else_token1] = ACTIONS(1382), + [aux_sym_preproc_elif_token1] = ACTIONS(1382), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1382), + [sym_preproc_directive] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym___extension__] = ACTIONS(1382), + [anon_sym_typedef] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1382), + [anon_sym___scanf] = ACTIONS(1382), + [anon_sym___printf] = ACTIONS(1382), + [anon_sym___read_mostly] = ACTIONS(1382), + [anon_sym___must_hold] = ACTIONS(1382), + [anon_sym___ro_after_init] = ACTIONS(1382), + [anon_sym___noreturn] = ACTIONS(1382), + [anon_sym___cold] = ACTIONS(1382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), + [anon_sym___declspec] = ACTIONS(1382), + [anon_sym___init] = ACTIONS(1382), + [anon_sym___exit] = ACTIONS(1382), + [anon_sym___cdecl] = ACTIONS(1382), + [anon_sym___clrcall] = ACTIONS(1382), + [anon_sym___stdcall] = ACTIONS(1382), + [anon_sym___fastcall] = ACTIONS(1382), + [anon_sym___thiscall] = ACTIONS(1382), + [anon_sym___vectorcall] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_signed] = ACTIONS(1382), + [anon_sym_unsigned] = ACTIONS(1382), + [anon_sym_long] = ACTIONS(1382), + [anon_sym_short] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_auto] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym___inline] = ACTIONS(1382), + [anon_sym___inline__] = ACTIONS(1382), + [anon_sym___forceinline] = ACTIONS(1382), + [anon_sym_thread_local] = ACTIONS(1382), + [anon_sym___thread] = ACTIONS(1382), + [anon_sym_const] = ACTIONS(1382), + [anon_sym_constexpr] = ACTIONS(1382), + [anon_sym_volatile] = ACTIONS(1382), + [anon_sym_restrict] = ACTIONS(1382), + [anon_sym___restrict__] = ACTIONS(1382), + [anon_sym__Atomic] = ACTIONS(1382), + [anon_sym__Noreturn] = ACTIONS(1382), + [anon_sym_noreturn] = ACTIONS(1382), + [anon_sym_alignas] = ACTIONS(1382), + [anon_sym__Alignas] = ACTIONS(1382), + [sym_primitive_type] = ACTIONS(1382), + [anon_sym_enum] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_do] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_goto] = ACTIONS(1382), + [anon_sym___try] = ACTIONS(1382), + [anon_sym___leave] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym___alignof__] = ACTIONS(1382), + [anon_sym___alignof] = ACTIONS(1382), + [anon_sym__alignof] = ACTIONS(1382), + [anon_sym_alignof] = ACTIONS(1382), + [anon_sym__Alignof] = ACTIONS(1382), + [anon_sym_offsetof] = ACTIONS(1382), + [anon_sym__Generic] = ACTIONS(1382), + [anon_sym_asm] = ACTIONS(1382), + [anon_sym___asm__] = ACTIONS(1382), + [sym_number_literal] = ACTIONS(1384), + [anon_sym_L_SQUOTE] = ACTIONS(1384), + [anon_sym_u_SQUOTE] = ACTIONS(1384), + [anon_sym_U_SQUOTE] = ACTIONS(1384), + [anon_sym_u8_SQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_L_DQUOTE] = ACTIONS(1384), + [anon_sym_u_DQUOTE] = ACTIONS(1384), + [anon_sym_U_DQUOTE] = ACTIONS(1384), + [anon_sym_u8_DQUOTE] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [anon_sym_NULL] = ACTIONS(1382), + [anon_sym_nullptr] = ACTIONS(1382), + [sym_comment] = ACTIONS(5), + }, + [131] = { + [sym_identifier] = ACTIONS(1386), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1386), + [aux_sym_preproc_def_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token2] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), + [aux_sym_preproc_else_token1] = ACTIONS(1386), + [aux_sym_preproc_elif_token1] = ACTIONS(1386), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1386), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1386), + [sym_preproc_directive] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym___extension__] = ACTIONS(1386), + [anon_sym_typedef] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym___attribute__] = ACTIONS(1386), + [anon_sym___scanf] = ACTIONS(1386), + [anon_sym___printf] = ACTIONS(1386), + [anon_sym___read_mostly] = ACTIONS(1386), + [anon_sym___must_hold] = ACTIONS(1386), + [anon_sym___ro_after_init] = ACTIONS(1386), + [anon_sym___noreturn] = ACTIONS(1386), + [anon_sym___cold] = ACTIONS(1386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), + [anon_sym___declspec] = ACTIONS(1386), + [anon_sym___init] = ACTIONS(1386), + [anon_sym___exit] = ACTIONS(1386), + [anon_sym___cdecl] = ACTIONS(1386), + [anon_sym___clrcall] = ACTIONS(1386), + [anon_sym___stdcall] = ACTIONS(1386), + [anon_sym___fastcall] = ACTIONS(1386), + [anon_sym___thiscall] = ACTIONS(1386), + [anon_sym___vectorcall] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_signed] = ACTIONS(1386), + [anon_sym_unsigned] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_auto] = ACTIONS(1386), + [anon_sym_register] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym___inline] = ACTIONS(1386), + [anon_sym___inline__] = ACTIONS(1386), + [anon_sym___forceinline] = ACTIONS(1386), + [anon_sym_thread_local] = ACTIONS(1386), + [anon_sym___thread] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(1386), + [anon_sym_constexpr] = ACTIONS(1386), + [anon_sym_volatile] = ACTIONS(1386), + [anon_sym_restrict] = ACTIONS(1386), [anon_sym___restrict__] = ACTIONS(1386), [anon_sym__Atomic] = ACTIONS(1386), [anon_sym__Noreturn] = ACTIONS(1386), @@ -37149,8 +36799,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(1386), [anon_sym___try] = ACTIONS(1386), [anon_sym___leave] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1389), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), [anon_sym_sizeof] = ACTIONS(1386), [anon_sym___alignof__] = ACTIONS(1386), [anon_sym___alignof] = ACTIONS(1386), @@ -37161,4181 +36811,4868 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(1386), [anon_sym_asm] = ACTIONS(1386), [anon_sym___asm__] = ACTIONS(1386), - [sym_number_literal] = ACTIONS(1389), - [anon_sym_L_SQUOTE] = ACTIONS(1389), - [anon_sym_u_SQUOTE] = ACTIONS(1389), - [anon_sym_U_SQUOTE] = ACTIONS(1389), - [anon_sym_u8_SQUOTE] = ACTIONS(1389), - [anon_sym_SQUOTE] = ACTIONS(1389), - [anon_sym_L_DQUOTE] = ACTIONS(1389), - [anon_sym_u_DQUOTE] = ACTIONS(1389), - [anon_sym_U_DQUOTE] = ACTIONS(1389), - [anon_sym_u8_DQUOTE] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1389), + [sym_number_literal] = ACTIONS(1388), + [anon_sym_L_SQUOTE] = ACTIONS(1388), + [anon_sym_u_SQUOTE] = ACTIONS(1388), + [anon_sym_U_SQUOTE] = ACTIONS(1388), + [anon_sym_u8_SQUOTE] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_L_DQUOTE] = ACTIONS(1388), + [anon_sym_u_DQUOTE] = ACTIONS(1388), + [anon_sym_U_DQUOTE] = ACTIONS(1388), + [anon_sym_u8_DQUOTE] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), [sym_true] = ACTIONS(1386), [sym_false] = ACTIONS(1386), [anon_sym_NULL] = ACTIONS(1386), [anon_sym_nullptr] = ACTIONS(1386), [sym_comment] = ACTIONS(5), }, - [136] = { - [sym_identifier] = ACTIONS(1392), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1392), - [aux_sym_preproc_def_token1] = ACTIONS(1392), - [aux_sym_preproc_if_token1] = ACTIONS(1392), - [aux_sym_preproc_if_token2] = ACTIONS(1392), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1392), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1392), - [aux_sym_preproc_else_token1] = ACTIONS(1392), - [aux_sym_preproc_elif_token1] = ACTIONS(1392), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1392), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1392), - [sym_preproc_directive] = ACTIONS(1392), - [anon_sym_LPAREN2] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1392), - [anon_sym_PLUS] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1394), - [anon_sym___extension__] = ACTIONS(1392), - [anon_sym_typedef] = ACTIONS(1392), - [anon_sym_extern] = ACTIONS(1392), - [anon_sym___attribute__] = ACTIONS(1392), - [anon_sym___scanf] = ACTIONS(1392), - [anon_sym___printf] = ACTIONS(1392), - [anon_sym___read_mostly] = ACTIONS(1392), - [anon_sym___must_hold] = ACTIONS(1392), - [anon_sym___ro_after_init] = ACTIONS(1392), - [anon_sym___noreturn] = ACTIONS(1392), - [anon_sym___cold] = ACTIONS(1392), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1394), - [anon_sym___declspec] = ACTIONS(1392), - [anon_sym___init] = ACTIONS(1392), - [anon_sym___exit] = ACTIONS(1392), - [anon_sym___cdecl] = ACTIONS(1392), - [anon_sym___clrcall] = ACTIONS(1392), - [anon_sym___stdcall] = ACTIONS(1392), - [anon_sym___fastcall] = ACTIONS(1392), - [anon_sym___thiscall] = ACTIONS(1392), - [anon_sym___vectorcall] = ACTIONS(1392), - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_signed] = ACTIONS(1392), - [anon_sym_unsigned] = ACTIONS(1392), - [anon_sym_long] = ACTIONS(1392), - [anon_sym_short] = ACTIONS(1392), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_auto] = ACTIONS(1392), - [anon_sym_register] = ACTIONS(1392), - [anon_sym_inline] = ACTIONS(1392), - [anon_sym___inline] = ACTIONS(1392), - [anon_sym___inline__] = ACTIONS(1392), - [anon_sym___forceinline] = ACTIONS(1392), - [anon_sym_thread_local] = ACTIONS(1392), - [anon_sym___thread] = ACTIONS(1392), - [anon_sym_const] = ACTIONS(1392), - [anon_sym_constexpr] = ACTIONS(1392), - [anon_sym_volatile] = ACTIONS(1392), - [anon_sym_restrict] = ACTIONS(1392), - [anon_sym___restrict__] = ACTIONS(1392), - [anon_sym__Atomic] = ACTIONS(1392), - [anon_sym__Noreturn] = ACTIONS(1392), - [anon_sym_noreturn] = ACTIONS(1392), - [anon_sym_alignas] = ACTIONS(1392), - [anon_sym__Alignas] = ACTIONS(1392), - [sym_primitive_type] = ACTIONS(1392), - [anon_sym_enum] = ACTIONS(1392), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_union] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1392), - [anon_sym_switch] = ACTIONS(1392), - [anon_sym_case] = ACTIONS(1392), - [anon_sym_default] = ACTIONS(1392), - [anon_sym_while] = ACTIONS(1392), - [anon_sym_do] = ACTIONS(1392), - [anon_sym_for] = ACTIONS(1392), - [anon_sym_return] = ACTIONS(1392), - [anon_sym_break] = ACTIONS(1392), - [anon_sym_continue] = ACTIONS(1392), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym___try] = ACTIONS(1392), - [anon_sym___leave] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(1394), - [anon_sym_PLUS_PLUS] = ACTIONS(1394), - [anon_sym_sizeof] = ACTIONS(1392), - [anon_sym___alignof__] = ACTIONS(1392), - [anon_sym___alignof] = ACTIONS(1392), - [anon_sym__alignof] = ACTIONS(1392), - [anon_sym_alignof] = ACTIONS(1392), - [anon_sym__Alignof] = ACTIONS(1392), - [anon_sym_offsetof] = ACTIONS(1392), - [anon_sym__Generic] = ACTIONS(1392), - [anon_sym_asm] = ACTIONS(1392), - [anon_sym___asm__] = ACTIONS(1392), - [sym_number_literal] = ACTIONS(1394), - [anon_sym_L_SQUOTE] = ACTIONS(1394), - [anon_sym_u_SQUOTE] = ACTIONS(1394), - [anon_sym_U_SQUOTE] = ACTIONS(1394), - [anon_sym_u8_SQUOTE] = ACTIONS(1394), - [anon_sym_SQUOTE] = ACTIONS(1394), - [anon_sym_L_DQUOTE] = ACTIONS(1394), - [anon_sym_u_DQUOTE] = ACTIONS(1394), - [anon_sym_U_DQUOTE] = ACTIONS(1394), - [anon_sym_u8_DQUOTE] = ACTIONS(1394), - [anon_sym_DQUOTE] = ACTIONS(1394), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [anon_sym_NULL] = ACTIONS(1392), - [anon_sym_nullptr] = ACTIONS(1392), + [132] = { + [sym_identifier] = ACTIONS(1390), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token2] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), + [aux_sym_preproc_else_token1] = ACTIONS(1390), + [aux_sym_preproc_elif_token1] = ACTIONS(1390), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1390), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1390), + [sym_preproc_directive] = ACTIONS(1390), + [anon_sym_LPAREN2] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym___extension__] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym___attribute__] = ACTIONS(1390), + [anon_sym___scanf] = ACTIONS(1390), + [anon_sym___printf] = ACTIONS(1390), + [anon_sym___read_mostly] = ACTIONS(1390), + [anon_sym___must_hold] = ACTIONS(1390), + [anon_sym___ro_after_init] = ACTIONS(1390), + [anon_sym___noreturn] = ACTIONS(1390), + [anon_sym___cold] = ACTIONS(1390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), + [anon_sym___declspec] = ACTIONS(1390), + [anon_sym___init] = ACTIONS(1390), + [anon_sym___exit] = ACTIONS(1390), + [anon_sym___cdecl] = ACTIONS(1390), + [anon_sym___clrcall] = ACTIONS(1390), + [anon_sym___stdcall] = ACTIONS(1390), + [anon_sym___fastcall] = ACTIONS(1390), + [anon_sym___thiscall] = ACTIONS(1390), + [anon_sym___vectorcall] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_signed] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_auto] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym___inline] = ACTIONS(1390), + [anon_sym___inline__] = ACTIONS(1390), + [anon_sym___forceinline] = ACTIONS(1390), + [anon_sym_thread_local] = ACTIONS(1390), + [anon_sym___thread] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_constexpr] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_restrict] = ACTIONS(1390), + [anon_sym___restrict__] = ACTIONS(1390), + [anon_sym__Atomic] = ACTIONS(1390), + [anon_sym__Noreturn] = ACTIONS(1390), + [anon_sym_noreturn] = ACTIONS(1390), + [anon_sym_alignas] = ACTIONS(1390), + [anon_sym__Alignas] = ACTIONS(1390), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_goto] = ACTIONS(1390), + [anon_sym___try] = ACTIONS(1390), + [anon_sym___leave] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym___alignof__] = ACTIONS(1390), + [anon_sym___alignof] = ACTIONS(1390), + [anon_sym__alignof] = ACTIONS(1390), + [anon_sym_alignof] = ACTIONS(1390), + [anon_sym__Alignof] = ACTIONS(1390), + [anon_sym_offsetof] = ACTIONS(1390), + [anon_sym__Generic] = ACTIONS(1390), + [anon_sym_asm] = ACTIONS(1390), + [anon_sym___asm__] = ACTIONS(1390), + [sym_number_literal] = ACTIONS(1392), + [anon_sym_L_SQUOTE] = ACTIONS(1392), + [anon_sym_u_SQUOTE] = ACTIONS(1392), + [anon_sym_U_SQUOTE] = ACTIONS(1392), + [anon_sym_u8_SQUOTE] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_L_DQUOTE] = ACTIONS(1392), + [anon_sym_u_DQUOTE] = ACTIONS(1392), + [anon_sym_U_DQUOTE] = ACTIONS(1392), + [anon_sym_u8_DQUOTE] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [anon_sym_NULL] = ACTIONS(1390), + [anon_sym_nullptr] = ACTIONS(1390), [sym_comment] = ACTIONS(5), }, - [137] = { - [sym_identifier] = ACTIONS(1396), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1396), - [aux_sym_preproc_def_token1] = ACTIONS(1396), - [aux_sym_preproc_if_token1] = ACTIONS(1396), - [aux_sym_preproc_if_token2] = ACTIONS(1396), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1396), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1396), - [aux_sym_preproc_else_token1] = ACTIONS(1396), - [aux_sym_preproc_elif_token1] = ACTIONS(1396), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1396), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1396), - [sym_preproc_directive] = ACTIONS(1396), - [anon_sym_LPAREN2] = ACTIONS(1398), - [anon_sym_BANG] = ACTIONS(1398), - [anon_sym_TILDE] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1398), - [anon_sym___extension__] = ACTIONS(1396), - [anon_sym_typedef] = ACTIONS(1396), - [anon_sym_extern] = ACTIONS(1396), - [anon_sym___attribute__] = ACTIONS(1396), - [anon_sym___scanf] = ACTIONS(1396), - [anon_sym___printf] = ACTIONS(1396), - [anon_sym___read_mostly] = ACTIONS(1396), - [anon_sym___must_hold] = ACTIONS(1396), - [anon_sym___ro_after_init] = ACTIONS(1396), - [anon_sym___noreturn] = ACTIONS(1396), - [anon_sym___cold] = ACTIONS(1396), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1398), - [anon_sym___declspec] = ACTIONS(1396), - [anon_sym___init] = ACTIONS(1396), - [anon_sym___exit] = ACTIONS(1396), - [anon_sym___cdecl] = ACTIONS(1396), - [anon_sym___clrcall] = ACTIONS(1396), - [anon_sym___stdcall] = ACTIONS(1396), - [anon_sym___fastcall] = ACTIONS(1396), - [anon_sym___thiscall] = ACTIONS(1396), - [anon_sym___vectorcall] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_signed] = ACTIONS(1396), - [anon_sym_unsigned] = ACTIONS(1396), - [anon_sym_long] = ACTIONS(1396), - [anon_sym_short] = ACTIONS(1396), - [anon_sym_static] = ACTIONS(1396), - [anon_sym_auto] = ACTIONS(1396), - [anon_sym_register] = ACTIONS(1396), - [anon_sym_inline] = ACTIONS(1396), - [anon_sym___inline] = ACTIONS(1396), - [anon_sym___inline__] = ACTIONS(1396), - [anon_sym___forceinline] = ACTIONS(1396), - [anon_sym_thread_local] = ACTIONS(1396), - [anon_sym___thread] = ACTIONS(1396), - [anon_sym_const] = ACTIONS(1396), - [anon_sym_constexpr] = ACTIONS(1396), - [anon_sym_volatile] = ACTIONS(1396), - [anon_sym_restrict] = ACTIONS(1396), - [anon_sym___restrict__] = ACTIONS(1396), - [anon_sym__Atomic] = ACTIONS(1396), - [anon_sym__Noreturn] = ACTIONS(1396), - [anon_sym_noreturn] = ACTIONS(1396), - [anon_sym_alignas] = ACTIONS(1396), - [anon_sym__Alignas] = ACTIONS(1396), - [sym_primitive_type] = ACTIONS(1396), - [anon_sym_enum] = ACTIONS(1396), - [anon_sym_struct] = ACTIONS(1396), - [anon_sym_union] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1396), - [anon_sym_switch] = ACTIONS(1396), - [anon_sym_case] = ACTIONS(1396), - [anon_sym_default] = ACTIONS(1396), - [anon_sym_while] = ACTIONS(1396), - [anon_sym_do] = ACTIONS(1396), - [anon_sym_for] = ACTIONS(1396), - [anon_sym_return] = ACTIONS(1396), - [anon_sym_break] = ACTIONS(1396), - [anon_sym_continue] = ACTIONS(1396), - [anon_sym_goto] = ACTIONS(1396), - [anon_sym___try] = ACTIONS(1396), - [anon_sym___leave] = ACTIONS(1396), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_sizeof] = ACTIONS(1396), - [anon_sym___alignof__] = ACTIONS(1396), - [anon_sym___alignof] = ACTIONS(1396), - [anon_sym__alignof] = ACTIONS(1396), - [anon_sym_alignof] = ACTIONS(1396), - [anon_sym__Alignof] = ACTIONS(1396), - [anon_sym_offsetof] = ACTIONS(1396), - [anon_sym__Generic] = ACTIONS(1396), - [anon_sym_asm] = ACTIONS(1396), - [anon_sym___asm__] = ACTIONS(1396), - [sym_number_literal] = ACTIONS(1398), - [anon_sym_L_SQUOTE] = ACTIONS(1398), - [anon_sym_u_SQUOTE] = ACTIONS(1398), - [anon_sym_U_SQUOTE] = ACTIONS(1398), - [anon_sym_u8_SQUOTE] = ACTIONS(1398), - [anon_sym_SQUOTE] = ACTIONS(1398), - [anon_sym_L_DQUOTE] = ACTIONS(1398), - [anon_sym_u_DQUOTE] = ACTIONS(1398), - [anon_sym_U_DQUOTE] = ACTIONS(1398), - [anon_sym_u8_DQUOTE] = ACTIONS(1398), - [anon_sym_DQUOTE] = ACTIONS(1398), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [anon_sym_NULL] = ACTIONS(1396), - [anon_sym_nullptr] = ACTIONS(1396), + [133] = { + [sym_identifier] = ACTIONS(1394), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1394), + [aux_sym_preproc_def_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token2] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), + [aux_sym_preproc_else_token1] = ACTIONS(1394), + [aux_sym_preproc_elif_token1] = ACTIONS(1394), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1394), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1394), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym___extension__] = ACTIONS(1394), + [anon_sym_typedef] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym___attribute__] = ACTIONS(1394), + [anon_sym___scanf] = ACTIONS(1394), + [anon_sym___printf] = ACTIONS(1394), + [anon_sym___read_mostly] = ACTIONS(1394), + [anon_sym___must_hold] = ACTIONS(1394), + [anon_sym___ro_after_init] = ACTIONS(1394), + [anon_sym___noreturn] = ACTIONS(1394), + [anon_sym___cold] = ACTIONS(1394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), + [anon_sym___declspec] = ACTIONS(1394), + [anon_sym___init] = ACTIONS(1394), + [anon_sym___exit] = ACTIONS(1394), + [anon_sym___cdecl] = ACTIONS(1394), + [anon_sym___clrcall] = ACTIONS(1394), + [anon_sym___stdcall] = ACTIONS(1394), + [anon_sym___fastcall] = ACTIONS(1394), + [anon_sym___thiscall] = ACTIONS(1394), + [anon_sym___vectorcall] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_signed] = ACTIONS(1394), + [anon_sym_unsigned] = ACTIONS(1394), + [anon_sym_long] = ACTIONS(1394), + [anon_sym_short] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_auto] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym___inline] = ACTIONS(1394), + [anon_sym___inline__] = ACTIONS(1394), + [anon_sym___forceinline] = ACTIONS(1394), + [anon_sym_thread_local] = ACTIONS(1394), + [anon_sym___thread] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_constexpr] = ACTIONS(1394), + [anon_sym_volatile] = ACTIONS(1394), + [anon_sym_restrict] = ACTIONS(1394), + [anon_sym___restrict__] = ACTIONS(1394), + [anon_sym__Atomic] = ACTIONS(1394), + [anon_sym__Noreturn] = ACTIONS(1394), + [anon_sym_noreturn] = ACTIONS(1394), + [anon_sym_alignas] = ACTIONS(1394), + [anon_sym__Alignas] = ACTIONS(1394), + [sym_primitive_type] = ACTIONS(1394), + [anon_sym_enum] = ACTIONS(1394), + [anon_sym_struct] = ACTIONS(1394), + [anon_sym_union] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_switch] = ACTIONS(1394), + [anon_sym_case] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_goto] = ACTIONS(1394), + [anon_sym___try] = ACTIONS(1394), + [anon_sym___leave] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym___alignof__] = ACTIONS(1394), + [anon_sym___alignof] = ACTIONS(1394), + [anon_sym__alignof] = ACTIONS(1394), + [anon_sym_alignof] = ACTIONS(1394), + [anon_sym__Alignof] = ACTIONS(1394), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1394), + [anon_sym___asm__] = ACTIONS(1394), + [sym_number_literal] = ACTIONS(1396), + [anon_sym_L_SQUOTE] = ACTIONS(1396), + [anon_sym_u_SQUOTE] = ACTIONS(1396), + [anon_sym_U_SQUOTE] = ACTIONS(1396), + [anon_sym_u8_SQUOTE] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_L_DQUOTE] = ACTIONS(1396), + [anon_sym_u_DQUOTE] = ACTIONS(1396), + [anon_sym_U_DQUOTE] = ACTIONS(1396), + [anon_sym_u8_DQUOTE] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [anon_sym_NULL] = ACTIONS(1394), + [anon_sym_nullptr] = ACTIONS(1394), [sym_comment] = ACTIONS(5), }, - [138] = { - [sym_identifier] = ACTIONS(1400), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1400), - [aux_sym_preproc_def_token1] = ACTIONS(1400), - [aux_sym_preproc_if_token1] = ACTIONS(1400), - [aux_sym_preproc_if_token2] = ACTIONS(1400), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1400), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1400), - [aux_sym_preproc_else_token1] = ACTIONS(1400), - [aux_sym_preproc_elif_token1] = ACTIONS(1400), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1400), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1400), - [sym_preproc_directive] = ACTIONS(1400), - [anon_sym_LPAREN2] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1402), - [anon_sym___extension__] = ACTIONS(1400), - [anon_sym_typedef] = ACTIONS(1400), - [anon_sym_extern] = ACTIONS(1400), - [anon_sym___attribute__] = ACTIONS(1400), - [anon_sym___scanf] = ACTIONS(1400), - [anon_sym___printf] = ACTIONS(1400), - [anon_sym___read_mostly] = ACTIONS(1400), - [anon_sym___must_hold] = ACTIONS(1400), - [anon_sym___ro_after_init] = ACTIONS(1400), - [anon_sym___noreturn] = ACTIONS(1400), - [anon_sym___cold] = ACTIONS(1400), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1402), - [anon_sym___declspec] = ACTIONS(1400), - [anon_sym___init] = ACTIONS(1400), - [anon_sym___exit] = ACTIONS(1400), - [anon_sym___cdecl] = ACTIONS(1400), - [anon_sym___clrcall] = ACTIONS(1400), - [anon_sym___stdcall] = ACTIONS(1400), - [anon_sym___fastcall] = ACTIONS(1400), - [anon_sym___thiscall] = ACTIONS(1400), - [anon_sym___vectorcall] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_signed] = ACTIONS(1400), - [anon_sym_unsigned] = ACTIONS(1400), - [anon_sym_long] = ACTIONS(1400), - [anon_sym_short] = ACTIONS(1400), - [anon_sym_static] = ACTIONS(1400), - [anon_sym_auto] = ACTIONS(1400), - [anon_sym_register] = ACTIONS(1400), - [anon_sym_inline] = ACTIONS(1400), - [anon_sym___inline] = ACTIONS(1400), - [anon_sym___inline__] = ACTIONS(1400), - [anon_sym___forceinline] = ACTIONS(1400), - [anon_sym_thread_local] = ACTIONS(1400), - [anon_sym___thread] = ACTIONS(1400), - [anon_sym_const] = ACTIONS(1400), - [anon_sym_constexpr] = ACTIONS(1400), - [anon_sym_volatile] = ACTIONS(1400), - [anon_sym_restrict] = ACTIONS(1400), - [anon_sym___restrict__] = ACTIONS(1400), - [anon_sym__Atomic] = ACTIONS(1400), - [anon_sym__Noreturn] = ACTIONS(1400), - [anon_sym_noreturn] = ACTIONS(1400), - [anon_sym_alignas] = ACTIONS(1400), - [anon_sym__Alignas] = ACTIONS(1400), - [sym_primitive_type] = ACTIONS(1400), - [anon_sym_enum] = ACTIONS(1400), - [anon_sym_struct] = ACTIONS(1400), - [anon_sym_union] = ACTIONS(1400), - [anon_sym_if] = ACTIONS(1400), - [anon_sym_switch] = ACTIONS(1400), - [anon_sym_case] = ACTIONS(1400), - [anon_sym_default] = ACTIONS(1400), - [anon_sym_while] = ACTIONS(1400), - [anon_sym_do] = ACTIONS(1400), - [anon_sym_for] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(1400), - [anon_sym_break] = ACTIONS(1400), - [anon_sym_continue] = ACTIONS(1400), - [anon_sym_goto] = ACTIONS(1400), - [anon_sym___try] = ACTIONS(1400), - [anon_sym___leave] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1402), - [anon_sym_PLUS_PLUS] = ACTIONS(1402), - [anon_sym_sizeof] = ACTIONS(1400), - [anon_sym___alignof__] = ACTIONS(1400), - [anon_sym___alignof] = ACTIONS(1400), - [anon_sym__alignof] = ACTIONS(1400), - [anon_sym_alignof] = ACTIONS(1400), - [anon_sym__Alignof] = ACTIONS(1400), - [anon_sym_offsetof] = ACTIONS(1400), - [anon_sym__Generic] = ACTIONS(1400), - [anon_sym_asm] = ACTIONS(1400), - [anon_sym___asm__] = ACTIONS(1400), - [sym_number_literal] = ACTIONS(1402), - [anon_sym_L_SQUOTE] = ACTIONS(1402), - [anon_sym_u_SQUOTE] = ACTIONS(1402), - [anon_sym_U_SQUOTE] = ACTIONS(1402), - [anon_sym_u8_SQUOTE] = ACTIONS(1402), - [anon_sym_SQUOTE] = ACTIONS(1402), - [anon_sym_L_DQUOTE] = ACTIONS(1402), - [anon_sym_u_DQUOTE] = ACTIONS(1402), - [anon_sym_U_DQUOTE] = ACTIONS(1402), - [anon_sym_u8_DQUOTE] = ACTIONS(1402), - [anon_sym_DQUOTE] = ACTIONS(1402), - [sym_true] = ACTIONS(1400), - [sym_false] = ACTIONS(1400), - [anon_sym_NULL] = ACTIONS(1400), - [anon_sym_nullptr] = ACTIONS(1400), + [134] = { + [sym_identifier] = ACTIONS(1398), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1398), + [aux_sym_preproc_def_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token2] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), + [aux_sym_preproc_else_token1] = ACTIONS(1398), + [aux_sym_preproc_elif_token1] = ACTIONS(1398), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1398), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1398), + [sym_preproc_directive] = ACTIONS(1398), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym___extension__] = ACTIONS(1398), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym___scanf] = ACTIONS(1398), + [anon_sym___printf] = ACTIONS(1398), + [anon_sym___read_mostly] = ACTIONS(1398), + [anon_sym___must_hold] = ACTIONS(1398), + [anon_sym___ro_after_init] = ACTIONS(1398), + [anon_sym___noreturn] = ACTIONS(1398), + [anon_sym___cold] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___init] = ACTIONS(1398), + [anon_sym___exit] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym___inline] = ACTIONS(1398), + [anon_sym___inline__] = ACTIONS(1398), + [anon_sym___forceinline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym___thread] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [anon_sym_alignas] = ACTIONS(1398), + [anon_sym__Alignas] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_switch] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_do] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_goto] = ACTIONS(1398), + [anon_sym___try] = ACTIONS(1398), + [anon_sym___leave] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym___alignof__] = ACTIONS(1398), + [anon_sym___alignof] = ACTIONS(1398), + [anon_sym__alignof] = ACTIONS(1398), + [anon_sym_alignof] = ACTIONS(1398), + [anon_sym__Alignof] = ACTIONS(1398), + [anon_sym_offsetof] = ACTIONS(1398), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1398), + [anon_sym___asm__] = ACTIONS(1398), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1400), + [anon_sym_u_SQUOTE] = ACTIONS(1400), + [anon_sym_U_SQUOTE] = ACTIONS(1400), + [anon_sym_u8_SQUOTE] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_L_DQUOTE] = ACTIONS(1400), + [anon_sym_u_DQUOTE] = ACTIONS(1400), + [anon_sym_U_DQUOTE] = ACTIONS(1400), + [anon_sym_u8_DQUOTE] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [anon_sym_NULL] = ACTIONS(1398), + [anon_sym_nullptr] = ACTIONS(1398), [sym_comment] = ACTIONS(5), }, - [139] = { - [sym_identifier] = ACTIONS(1404), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1404), - [aux_sym_preproc_def_token1] = ACTIONS(1404), - [aux_sym_preproc_if_token1] = ACTIONS(1404), - [aux_sym_preproc_if_token2] = ACTIONS(1404), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1404), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1404), - [aux_sym_preproc_else_token1] = ACTIONS(1404), - [aux_sym_preproc_elif_token1] = ACTIONS(1404), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1404), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1404), - [sym_preproc_directive] = ACTIONS(1404), - [anon_sym_LPAREN2] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(1406), - [anon_sym_TILDE] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1404), - [anon_sym_STAR] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1406), - [anon_sym_SEMI] = ACTIONS(1406), - [anon_sym___extension__] = ACTIONS(1404), - [anon_sym_typedef] = ACTIONS(1404), - [anon_sym_extern] = ACTIONS(1404), - [anon_sym___attribute__] = ACTIONS(1404), - [anon_sym___scanf] = ACTIONS(1404), - [anon_sym___printf] = ACTIONS(1404), - [anon_sym___read_mostly] = ACTIONS(1404), - [anon_sym___must_hold] = ACTIONS(1404), - [anon_sym___ro_after_init] = ACTIONS(1404), - [anon_sym___noreturn] = ACTIONS(1404), - [anon_sym___cold] = ACTIONS(1404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), - [anon_sym___declspec] = ACTIONS(1404), - [anon_sym___init] = ACTIONS(1404), - [anon_sym___exit] = ACTIONS(1404), - [anon_sym___cdecl] = ACTIONS(1404), - [anon_sym___clrcall] = ACTIONS(1404), - [anon_sym___stdcall] = ACTIONS(1404), - [anon_sym___fastcall] = ACTIONS(1404), - [anon_sym___thiscall] = ACTIONS(1404), - [anon_sym___vectorcall] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_signed] = ACTIONS(1404), - [anon_sym_unsigned] = ACTIONS(1404), - [anon_sym_long] = ACTIONS(1404), - [anon_sym_short] = ACTIONS(1404), - [anon_sym_static] = ACTIONS(1404), - [anon_sym_auto] = ACTIONS(1404), - [anon_sym_register] = ACTIONS(1404), - [anon_sym_inline] = ACTIONS(1404), - [anon_sym___inline] = ACTIONS(1404), - [anon_sym___inline__] = ACTIONS(1404), - [anon_sym___forceinline] = ACTIONS(1404), - [anon_sym_thread_local] = ACTIONS(1404), - [anon_sym___thread] = ACTIONS(1404), - [anon_sym_const] = ACTIONS(1404), - [anon_sym_constexpr] = ACTIONS(1404), - [anon_sym_volatile] = ACTIONS(1404), - [anon_sym_restrict] = ACTIONS(1404), - [anon_sym___restrict__] = ACTIONS(1404), - [anon_sym__Atomic] = ACTIONS(1404), - [anon_sym__Noreturn] = ACTIONS(1404), - [anon_sym_noreturn] = ACTIONS(1404), - [anon_sym_alignas] = ACTIONS(1404), - [anon_sym__Alignas] = ACTIONS(1404), - [sym_primitive_type] = ACTIONS(1404), - [anon_sym_enum] = ACTIONS(1404), - [anon_sym_struct] = ACTIONS(1404), - [anon_sym_union] = ACTIONS(1404), - [anon_sym_if] = ACTIONS(1404), - [anon_sym_switch] = ACTIONS(1404), - [anon_sym_case] = ACTIONS(1404), - [anon_sym_default] = ACTIONS(1404), - [anon_sym_while] = ACTIONS(1404), - [anon_sym_do] = ACTIONS(1404), - [anon_sym_for] = ACTIONS(1404), - [anon_sym_return] = ACTIONS(1404), - [anon_sym_break] = ACTIONS(1404), - [anon_sym_continue] = ACTIONS(1404), - [anon_sym_goto] = ACTIONS(1404), - [anon_sym___try] = ACTIONS(1404), - [anon_sym___leave] = ACTIONS(1404), - [anon_sym_DASH_DASH] = ACTIONS(1406), - [anon_sym_PLUS_PLUS] = ACTIONS(1406), - [anon_sym_sizeof] = ACTIONS(1404), - [anon_sym___alignof__] = ACTIONS(1404), - [anon_sym___alignof] = ACTIONS(1404), - [anon_sym__alignof] = ACTIONS(1404), - [anon_sym_alignof] = ACTIONS(1404), - [anon_sym__Alignof] = ACTIONS(1404), - [anon_sym_offsetof] = ACTIONS(1404), - [anon_sym__Generic] = ACTIONS(1404), - [anon_sym_asm] = ACTIONS(1404), - [anon_sym___asm__] = ACTIONS(1404), - [sym_number_literal] = ACTIONS(1406), - [anon_sym_L_SQUOTE] = ACTIONS(1406), - [anon_sym_u_SQUOTE] = ACTIONS(1406), - [anon_sym_U_SQUOTE] = ACTIONS(1406), - [anon_sym_u8_SQUOTE] = ACTIONS(1406), - [anon_sym_SQUOTE] = ACTIONS(1406), - [anon_sym_L_DQUOTE] = ACTIONS(1406), - [anon_sym_u_DQUOTE] = ACTIONS(1406), - [anon_sym_U_DQUOTE] = ACTIONS(1406), - [anon_sym_u8_DQUOTE] = ACTIONS(1406), - [anon_sym_DQUOTE] = ACTIONS(1406), - [sym_true] = ACTIONS(1404), - [sym_false] = ACTIONS(1404), - [anon_sym_NULL] = ACTIONS(1404), - [anon_sym_nullptr] = ACTIONS(1404), + [135] = { + [sym_identifier] = ACTIONS(1402), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1402), + [aux_sym_preproc_def_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token2] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), + [aux_sym_preproc_else_token1] = ACTIONS(1402), + [aux_sym_preproc_elif_token1] = ACTIONS(1402), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1402), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1402), + [sym_preproc_directive] = ACTIONS(1402), + [anon_sym_LPAREN2] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym___extension__] = ACTIONS(1402), + [anon_sym_typedef] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1402), + [anon_sym___scanf] = ACTIONS(1402), + [anon_sym___printf] = ACTIONS(1402), + [anon_sym___read_mostly] = ACTIONS(1402), + [anon_sym___must_hold] = ACTIONS(1402), + [anon_sym___ro_after_init] = ACTIONS(1402), + [anon_sym___noreturn] = ACTIONS(1402), + [anon_sym___cold] = ACTIONS(1402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1402), + [anon_sym___init] = ACTIONS(1402), + [anon_sym___exit] = ACTIONS(1402), + [anon_sym___cdecl] = ACTIONS(1402), + [anon_sym___clrcall] = ACTIONS(1402), + [anon_sym___stdcall] = ACTIONS(1402), + [anon_sym___fastcall] = ACTIONS(1402), + [anon_sym___thiscall] = ACTIONS(1402), + [anon_sym___vectorcall] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_auto] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1402), + [anon_sym_inline] = ACTIONS(1402), + [anon_sym___inline] = ACTIONS(1402), + [anon_sym___inline__] = ACTIONS(1402), + [anon_sym___forceinline] = ACTIONS(1402), + [anon_sym_thread_local] = ACTIONS(1402), + [anon_sym___thread] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_constexpr] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1402), + [anon_sym_restrict] = ACTIONS(1402), + [anon_sym___restrict__] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1402), + [anon_sym__Noreturn] = ACTIONS(1402), + [anon_sym_noreturn] = ACTIONS(1402), + [anon_sym_alignas] = ACTIONS(1402), + [anon_sym__Alignas] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_switch] = ACTIONS(1402), + [anon_sym_case] = ACTIONS(1402), + [anon_sym_default] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1402), + [anon_sym_do] = ACTIONS(1402), + [anon_sym_for] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_break] = ACTIONS(1402), + [anon_sym_continue] = ACTIONS(1402), + [anon_sym_goto] = ACTIONS(1402), + [anon_sym___try] = ACTIONS(1402), + [anon_sym___leave] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1402), + [anon_sym___alignof__] = ACTIONS(1402), + [anon_sym___alignof] = ACTIONS(1402), + [anon_sym__alignof] = ACTIONS(1402), + [anon_sym_alignof] = ACTIONS(1402), + [anon_sym__Alignof] = ACTIONS(1402), + [anon_sym_offsetof] = ACTIONS(1402), + [anon_sym__Generic] = ACTIONS(1402), + [anon_sym_asm] = ACTIONS(1402), + [anon_sym___asm__] = ACTIONS(1402), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1404), + [anon_sym_u_SQUOTE] = ACTIONS(1404), + [anon_sym_U_SQUOTE] = ACTIONS(1404), + [anon_sym_u8_SQUOTE] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_L_DQUOTE] = ACTIONS(1404), + [anon_sym_u_DQUOTE] = ACTIONS(1404), + [anon_sym_U_DQUOTE] = ACTIONS(1404), + [anon_sym_u8_DQUOTE] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [anon_sym_NULL] = ACTIONS(1402), + [anon_sym_nullptr] = ACTIONS(1402), [sym_comment] = ACTIONS(5), }, - [140] = { - [sym_identifier] = ACTIONS(1408), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1408), - [aux_sym_preproc_def_token1] = ACTIONS(1408), - [aux_sym_preproc_if_token1] = ACTIONS(1408), - [aux_sym_preproc_if_token2] = ACTIONS(1408), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1408), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1408), - [aux_sym_preproc_else_token1] = ACTIONS(1408), - [aux_sym_preproc_elif_token1] = ACTIONS(1408), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1408), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1408), - [sym_preproc_directive] = ACTIONS(1408), - [anon_sym_LPAREN2] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1410), - [anon_sym_TILDE] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_STAR] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym___extension__] = ACTIONS(1408), - [anon_sym_typedef] = ACTIONS(1408), - [anon_sym_extern] = ACTIONS(1408), - [anon_sym___attribute__] = ACTIONS(1408), - [anon_sym___scanf] = ACTIONS(1408), - [anon_sym___printf] = ACTIONS(1408), - [anon_sym___read_mostly] = ACTIONS(1408), - [anon_sym___must_hold] = ACTIONS(1408), - [anon_sym___ro_after_init] = ACTIONS(1408), - [anon_sym___noreturn] = ACTIONS(1408), - [anon_sym___cold] = ACTIONS(1408), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1410), - [anon_sym___declspec] = ACTIONS(1408), - [anon_sym___init] = ACTIONS(1408), - [anon_sym___exit] = ACTIONS(1408), - [anon_sym___cdecl] = ACTIONS(1408), - [anon_sym___clrcall] = ACTIONS(1408), - [anon_sym___stdcall] = ACTIONS(1408), - [anon_sym___fastcall] = ACTIONS(1408), - [anon_sym___thiscall] = ACTIONS(1408), - [anon_sym___vectorcall] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_signed] = ACTIONS(1408), - [anon_sym_unsigned] = ACTIONS(1408), - [anon_sym_long] = ACTIONS(1408), - [anon_sym_short] = ACTIONS(1408), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_auto] = ACTIONS(1408), - [anon_sym_register] = ACTIONS(1408), - [anon_sym_inline] = ACTIONS(1408), - [anon_sym___inline] = ACTIONS(1408), - [anon_sym___inline__] = ACTIONS(1408), - [anon_sym___forceinline] = ACTIONS(1408), - [anon_sym_thread_local] = ACTIONS(1408), - [anon_sym___thread] = ACTIONS(1408), - [anon_sym_const] = ACTIONS(1408), - [anon_sym_constexpr] = ACTIONS(1408), - [anon_sym_volatile] = ACTIONS(1408), - [anon_sym_restrict] = ACTIONS(1408), - [anon_sym___restrict__] = ACTIONS(1408), - [anon_sym__Atomic] = ACTIONS(1408), - [anon_sym__Noreturn] = ACTIONS(1408), - [anon_sym_noreturn] = ACTIONS(1408), - [anon_sym_alignas] = ACTIONS(1408), - [anon_sym__Alignas] = ACTIONS(1408), - [sym_primitive_type] = ACTIONS(1408), - [anon_sym_enum] = ACTIONS(1408), - [anon_sym_struct] = ACTIONS(1408), - [anon_sym_union] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1408), - [anon_sym_switch] = ACTIONS(1408), - [anon_sym_case] = ACTIONS(1408), - [anon_sym_default] = ACTIONS(1408), - [anon_sym_while] = ACTIONS(1408), - [anon_sym_do] = ACTIONS(1408), - [anon_sym_for] = ACTIONS(1408), - [anon_sym_return] = ACTIONS(1408), - [anon_sym_break] = ACTIONS(1408), - [anon_sym_continue] = ACTIONS(1408), - [anon_sym_goto] = ACTIONS(1408), - [anon_sym___try] = ACTIONS(1408), - [anon_sym___leave] = ACTIONS(1408), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_sizeof] = ACTIONS(1408), - [anon_sym___alignof__] = ACTIONS(1408), - [anon_sym___alignof] = ACTIONS(1408), - [anon_sym__alignof] = ACTIONS(1408), - [anon_sym_alignof] = ACTIONS(1408), - [anon_sym__Alignof] = ACTIONS(1408), - [anon_sym_offsetof] = ACTIONS(1408), - [anon_sym__Generic] = ACTIONS(1408), - [anon_sym_asm] = ACTIONS(1408), - [anon_sym___asm__] = ACTIONS(1408), - [sym_number_literal] = ACTIONS(1410), - [anon_sym_L_SQUOTE] = ACTIONS(1410), - [anon_sym_u_SQUOTE] = ACTIONS(1410), - [anon_sym_U_SQUOTE] = ACTIONS(1410), - [anon_sym_u8_SQUOTE] = ACTIONS(1410), - [anon_sym_SQUOTE] = ACTIONS(1410), - [anon_sym_L_DQUOTE] = ACTIONS(1410), - [anon_sym_u_DQUOTE] = ACTIONS(1410), - [anon_sym_U_DQUOTE] = ACTIONS(1410), - [anon_sym_u8_DQUOTE] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [anon_sym_NULL] = ACTIONS(1408), - [anon_sym_nullptr] = ACTIONS(1408), + [136] = { + [sym_identifier] = ACTIONS(1402), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1402), + [aux_sym_preproc_def_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token2] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), + [aux_sym_preproc_else_token1] = ACTIONS(1402), + [aux_sym_preproc_elif_token1] = ACTIONS(1402), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1402), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1402), + [sym_preproc_directive] = ACTIONS(1402), + [anon_sym_LPAREN2] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym___extension__] = ACTIONS(1402), + [anon_sym_typedef] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1402), + [anon_sym___scanf] = ACTIONS(1402), + [anon_sym___printf] = ACTIONS(1402), + [anon_sym___read_mostly] = ACTIONS(1402), + [anon_sym___must_hold] = ACTIONS(1402), + [anon_sym___ro_after_init] = ACTIONS(1402), + [anon_sym___noreturn] = ACTIONS(1402), + [anon_sym___cold] = ACTIONS(1402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1402), + [anon_sym___init] = ACTIONS(1402), + [anon_sym___exit] = ACTIONS(1402), + [anon_sym___cdecl] = ACTIONS(1402), + [anon_sym___clrcall] = ACTIONS(1402), + [anon_sym___stdcall] = ACTIONS(1402), + [anon_sym___fastcall] = ACTIONS(1402), + [anon_sym___thiscall] = ACTIONS(1402), + [anon_sym___vectorcall] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_auto] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1402), + [anon_sym_inline] = ACTIONS(1402), + [anon_sym___inline] = ACTIONS(1402), + [anon_sym___inline__] = ACTIONS(1402), + [anon_sym___forceinline] = ACTIONS(1402), + [anon_sym_thread_local] = ACTIONS(1402), + [anon_sym___thread] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_constexpr] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1402), + [anon_sym_restrict] = ACTIONS(1402), + [anon_sym___restrict__] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1402), + [anon_sym__Noreturn] = ACTIONS(1402), + [anon_sym_noreturn] = ACTIONS(1402), + [anon_sym_alignas] = ACTIONS(1402), + [anon_sym__Alignas] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_switch] = ACTIONS(1402), + [anon_sym_case] = ACTIONS(1402), + [anon_sym_default] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1402), + [anon_sym_do] = ACTIONS(1402), + [anon_sym_for] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_break] = ACTIONS(1402), + [anon_sym_continue] = ACTIONS(1402), + [anon_sym_goto] = ACTIONS(1402), + [anon_sym___try] = ACTIONS(1402), + [anon_sym___leave] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1402), + [anon_sym___alignof__] = ACTIONS(1402), + [anon_sym___alignof] = ACTIONS(1402), + [anon_sym__alignof] = ACTIONS(1402), + [anon_sym_alignof] = ACTIONS(1402), + [anon_sym__Alignof] = ACTIONS(1402), + [anon_sym_offsetof] = ACTIONS(1402), + [anon_sym__Generic] = ACTIONS(1402), + [anon_sym_asm] = ACTIONS(1402), + [anon_sym___asm__] = ACTIONS(1402), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1404), + [anon_sym_u_SQUOTE] = ACTIONS(1404), + [anon_sym_U_SQUOTE] = ACTIONS(1404), + [anon_sym_u8_SQUOTE] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_L_DQUOTE] = ACTIONS(1404), + [anon_sym_u_DQUOTE] = ACTIONS(1404), + [anon_sym_U_DQUOTE] = ACTIONS(1404), + [anon_sym_u8_DQUOTE] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [anon_sym_NULL] = ACTIONS(1402), + [anon_sym_nullptr] = ACTIONS(1402), + [sym_comment] = ACTIONS(5), + }, + [137] = { + [sym_identifier] = ACTIONS(1398), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1398), + [aux_sym_preproc_def_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token2] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), + [aux_sym_preproc_else_token1] = ACTIONS(1398), + [aux_sym_preproc_elif_token1] = ACTIONS(1398), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1398), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1398), + [sym_preproc_directive] = ACTIONS(1398), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym___extension__] = ACTIONS(1398), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym___scanf] = ACTIONS(1398), + [anon_sym___printf] = ACTIONS(1398), + [anon_sym___read_mostly] = ACTIONS(1398), + [anon_sym___must_hold] = ACTIONS(1398), + [anon_sym___ro_after_init] = ACTIONS(1398), + [anon_sym___noreturn] = ACTIONS(1398), + [anon_sym___cold] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___init] = ACTIONS(1398), + [anon_sym___exit] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym___inline] = ACTIONS(1398), + [anon_sym___inline__] = ACTIONS(1398), + [anon_sym___forceinline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym___thread] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [anon_sym_alignas] = ACTIONS(1398), + [anon_sym__Alignas] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_switch] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_do] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_goto] = ACTIONS(1398), + [anon_sym___try] = ACTIONS(1398), + [anon_sym___leave] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym___alignof__] = ACTIONS(1398), + [anon_sym___alignof] = ACTIONS(1398), + [anon_sym__alignof] = ACTIONS(1398), + [anon_sym_alignof] = ACTIONS(1398), + [anon_sym__Alignof] = ACTIONS(1398), + [anon_sym_offsetof] = ACTIONS(1398), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1398), + [anon_sym___asm__] = ACTIONS(1398), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1400), + [anon_sym_u_SQUOTE] = ACTIONS(1400), + [anon_sym_U_SQUOTE] = ACTIONS(1400), + [anon_sym_u8_SQUOTE] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_L_DQUOTE] = ACTIONS(1400), + [anon_sym_u_DQUOTE] = ACTIONS(1400), + [anon_sym_U_DQUOTE] = ACTIONS(1400), + [anon_sym_u8_DQUOTE] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [anon_sym_NULL] = ACTIONS(1398), + [anon_sym_nullptr] = ACTIONS(1398), + [sym_comment] = ACTIONS(5), + }, + [138] = { + [sym_identifier] = ACTIONS(1406), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1406), + [aux_sym_preproc_def_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token2] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), + [aux_sym_preproc_else_token1] = ACTIONS(1406), + [aux_sym_preproc_elif_token1] = ACTIONS(1406), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1406), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1406), + [sym_preproc_directive] = ACTIONS(1406), + [anon_sym_LPAREN2] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym___extension__] = ACTIONS(1406), + [anon_sym_typedef] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym___attribute__] = ACTIONS(1406), + [anon_sym___scanf] = ACTIONS(1406), + [anon_sym___printf] = ACTIONS(1406), + [anon_sym___read_mostly] = ACTIONS(1406), + [anon_sym___must_hold] = ACTIONS(1406), + [anon_sym___ro_after_init] = ACTIONS(1406), + [anon_sym___noreturn] = ACTIONS(1406), + [anon_sym___cold] = ACTIONS(1406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), + [anon_sym___declspec] = ACTIONS(1406), + [anon_sym___init] = ACTIONS(1406), + [anon_sym___exit] = ACTIONS(1406), + [anon_sym___cdecl] = ACTIONS(1406), + [anon_sym___clrcall] = ACTIONS(1406), + [anon_sym___stdcall] = ACTIONS(1406), + [anon_sym___fastcall] = ACTIONS(1406), + [anon_sym___thiscall] = ACTIONS(1406), + [anon_sym___vectorcall] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_signed] = ACTIONS(1406), + [anon_sym_unsigned] = ACTIONS(1406), + [anon_sym_long] = ACTIONS(1406), + [anon_sym_short] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_auto] = ACTIONS(1406), + [anon_sym_register] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym___inline] = ACTIONS(1406), + [anon_sym___inline__] = ACTIONS(1406), + [anon_sym___forceinline] = ACTIONS(1406), + [anon_sym_thread_local] = ACTIONS(1406), + [anon_sym___thread] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1406), + [anon_sym_constexpr] = ACTIONS(1406), + [anon_sym_volatile] = ACTIONS(1406), + [anon_sym_restrict] = ACTIONS(1406), + [anon_sym___restrict__] = ACTIONS(1406), + [anon_sym__Atomic] = ACTIONS(1406), + [anon_sym__Noreturn] = ACTIONS(1406), + [anon_sym_noreturn] = ACTIONS(1406), + [anon_sym_alignas] = ACTIONS(1406), + [anon_sym__Alignas] = ACTIONS(1406), + [sym_primitive_type] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_switch] = ACTIONS(1406), + [anon_sym_case] = ACTIONS(1406), + [anon_sym_default] = ACTIONS(1406), + [anon_sym_while] = ACTIONS(1406), + [anon_sym_do] = ACTIONS(1406), + [anon_sym_for] = ACTIONS(1406), + [anon_sym_return] = ACTIONS(1406), + [anon_sym_break] = ACTIONS(1406), + [anon_sym_continue] = ACTIONS(1406), + [anon_sym_goto] = ACTIONS(1406), + [anon_sym___try] = ACTIONS(1406), + [anon_sym___leave] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1406), + [anon_sym___alignof__] = ACTIONS(1406), + [anon_sym___alignof] = ACTIONS(1406), + [anon_sym__alignof] = ACTIONS(1406), + [anon_sym_alignof] = ACTIONS(1406), + [anon_sym__Alignof] = ACTIONS(1406), + [anon_sym_offsetof] = ACTIONS(1406), + [anon_sym__Generic] = ACTIONS(1406), + [anon_sym_asm] = ACTIONS(1406), + [anon_sym___asm__] = ACTIONS(1406), + [sym_number_literal] = ACTIONS(1408), + [anon_sym_L_SQUOTE] = ACTIONS(1408), + [anon_sym_u_SQUOTE] = ACTIONS(1408), + [anon_sym_U_SQUOTE] = ACTIONS(1408), + [anon_sym_u8_SQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_L_DQUOTE] = ACTIONS(1408), + [anon_sym_u_DQUOTE] = ACTIONS(1408), + [anon_sym_U_DQUOTE] = ACTIONS(1408), + [anon_sym_u8_DQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [sym_true] = ACTIONS(1406), + [sym_false] = ACTIONS(1406), + [anon_sym_NULL] = ACTIONS(1406), + [anon_sym_nullptr] = ACTIONS(1406), + [sym_comment] = ACTIONS(5), + }, + [139] = { + [sym_identifier] = ACTIONS(1410), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1410), + [aux_sym_preproc_def_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token2] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), + [aux_sym_preproc_else_token1] = ACTIONS(1410), + [aux_sym_preproc_elif_token1] = ACTIONS(1410), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1410), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1410), + [sym_preproc_directive] = ACTIONS(1410), + [anon_sym_LPAREN2] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym___extension__] = ACTIONS(1410), + [anon_sym_typedef] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym___attribute__] = ACTIONS(1410), + [anon_sym___scanf] = ACTIONS(1410), + [anon_sym___printf] = ACTIONS(1410), + [anon_sym___read_mostly] = ACTIONS(1410), + [anon_sym___must_hold] = ACTIONS(1410), + [anon_sym___ro_after_init] = ACTIONS(1410), + [anon_sym___noreturn] = ACTIONS(1410), + [anon_sym___cold] = ACTIONS(1410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), + [anon_sym___declspec] = ACTIONS(1410), + [anon_sym___init] = ACTIONS(1410), + [anon_sym___exit] = ACTIONS(1410), + [anon_sym___cdecl] = ACTIONS(1410), + [anon_sym___clrcall] = ACTIONS(1410), + [anon_sym___stdcall] = ACTIONS(1410), + [anon_sym___fastcall] = ACTIONS(1410), + [anon_sym___thiscall] = ACTIONS(1410), + [anon_sym___vectorcall] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_auto] = ACTIONS(1410), + [anon_sym_register] = ACTIONS(1410), + [anon_sym_inline] = ACTIONS(1410), + [anon_sym___inline] = ACTIONS(1410), + [anon_sym___inline__] = ACTIONS(1410), + [anon_sym___forceinline] = ACTIONS(1410), + [anon_sym_thread_local] = ACTIONS(1410), + [anon_sym___thread] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_constexpr] = ACTIONS(1410), + [anon_sym_volatile] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), + [anon_sym___restrict__] = ACTIONS(1410), + [anon_sym__Atomic] = ACTIONS(1410), + [anon_sym__Noreturn] = ACTIONS(1410), + [anon_sym_noreturn] = ACTIONS(1410), + [anon_sym_alignas] = ACTIONS(1410), + [anon_sym__Alignas] = ACTIONS(1410), + [sym_primitive_type] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_switch] = ACTIONS(1410), + [anon_sym_case] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_do] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_goto] = ACTIONS(1410), + [anon_sym___try] = ACTIONS(1410), + [anon_sym___leave] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_sizeof] = ACTIONS(1410), + [anon_sym___alignof__] = ACTIONS(1410), + [anon_sym___alignof] = ACTIONS(1410), + [anon_sym__alignof] = ACTIONS(1410), + [anon_sym_alignof] = ACTIONS(1410), + [anon_sym__Alignof] = ACTIONS(1410), + [anon_sym_offsetof] = ACTIONS(1410), + [anon_sym__Generic] = ACTIONS(1410), + [anon_sym_asm] = ACTIONS(1410), + [anon_sym___asm__] = ACTIONS(1410), + [sym_number_literal] = ACTIONS(1412), + [anon_sym_L_SQUOTE] = ACTIONS(1412), + [anon_sym_u_SQUOTE] = ACTIONS(1412), + [anon_sym_U_SQUOTE] = ACTIONS(1412), + [anon_sym_u8_SQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_L_DQUOTE] = ACTIONS(1412), + [anon_sym_u_DQUOTE] = ACTIONS(1412), + [anon_sym_U_DQUOTE] = ACTIONS(1412), + [anon_sym_u8_DQUOTE] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_true] = ACTIONS(1410), + [sym_false] = ACTIONS(1410), + [anon_sym_NULL] = ACTIONS(1410), + [anon_sym_nullptr] = ACTIONS(1410), + [sym_comment] = ACTIONS(5), + }, + [140] = { + [sym_identifier] = ACTIONS(1414), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token2] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [aux_sym_preproc_else_token1] = ACTIONS(1414), + [aux_sym_preproc_elif_token1] = ACTIONS(1414), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym___extension__] = ACTIONS(1414), + [anon_sym_typedef] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym___attribute__] = ACTIONS(1414), + [anon_sym___scanf] = ACTIONS(1414), + [anon_sym___printf] = ACTIONS(1414), + [anon_sym___read_mostly] = ACTIONS(1414), + [anon_sym___must_hold] = ACTIONS(1414), + [anon_sym___ro_after_init] = ACTIONS(1414), + [anon_sym___noreturn] = ACTIONS(1414), + [anon_sym___cold] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), + [anon_sym___declspec] = ACTIONS(1414), + [anon_sym___init] = ACTIONS(1414), + [anon_sym___exit] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym___inline] = ACTIONS(1414), + [anon_sym___inline__] = ACTIONS(1414), + [anon_sym___forceinline] = ACTIONS(1414), + [anon_sym_thread_local] = ACTIONS(1414), + [anon_sym___thread] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_constexpr] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym___restrict__] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym__Noreturn] = ACTIONS(1414), + [anon_sym_noreturn] = ACTIONS(1414), + [anon_sym_alignas] = ACTIONS(1414), + [anon_sym__Alignas] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym___try] = ACTIONS(1414), + [anon_sym___leave] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym___alignof__] = ACTIONS(1414), + [anon_sym___alignof] = ACTIONS(1414), + [anon_sym__alignof] = ACTIONS(1414), + [anon_sym_alignof] = ACTIONS(1414), + [anon_sym__Alignof] = ACTIONS(1414), + [anon_sym_offsetof] = ACTIONS(1414), + [anon_sym__Generic] = ACTIONS(1414), + [anon_sym_asm] = ACTIONS(1414), + [anon_sym___asm__] = ACTIONS(1414), + [sym_number_literal] = ACTIONS(1416), + [anon_sym_L_SQUOTE] = ACTIONS(1416), + [anon_sym_u_SQUOTE] = ACTIONS(1416), + [anon_sym_U_SQUOTE] = ACTIONS(1416), + [anon_sym_u8_SQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_L_DQUOTE] = ACTIONS(1416), + [anon_sym_u_DQUOTE] = ACTIONS(1416), + [anon_sym_U_DQUOTE] = ACTIONS(1416), + [anon_sym_u8_DQUOTE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [anon_sym_NULL] = ACTIONS(1414), + [anon_sym_nullptr] = ACTIONS(1414), [sym_comment] = ACTIONS(5), }, [141] = { - [sym_identifier] = ACTIONS(1412), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1412), - [aux_sym_preproc_def_token1] = ACTIONS(1412), - [aux_sym_preproc_if_token1] = ACTIONS(1412), - [aux_sym_preproc_if_token2] = ACTIONS(1412), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1412), - [aux_sym_preproc_else_token1] = ACTIONS(1412), - [aux_sym_preproc_elif_token1] = ACTIONS(1412), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1412), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1412), - [sym_preproc_directive] = ACTIONS(1412), - [anon_sym_LPAREN2] = ACTIONS(1414), - [anon_sym_BANG] = ACTIONS(1414), - [anon_sym_TILDE] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1414), - [anon_sym___extension__] = ACTIONS(1412), - [anon_sym_typedef] = ACTIONS(1412), - [anon_sym_extern] = ACTIONS(1412), - [anon_sym___attribute__] = ACTIONS(1412), - [anon_sym___scanf] = ACTIONS(1412), - [anon_sym___printf] = ACTIONS(1412), - [anon_sym___read_mostly] = ACTIONS(1412), - [anon_sym___must_hold] = ACTIONS(1412), - [anon_sym___ro_after_init] = ACTIONS(1412), - [anon_sym___noreturn] = ACTIONS(1412), - [anon_sym___cold] = ACTIONS(1412), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1414), - [anon_sym___declspec] = ACTIONS(1412), - [anon_sym___init] = ACTIONS(1412), - [anon_sym___exit] = ACTIONS(1412), - [anon_sym___cdecl] = ACTIONS(1412), - [anon_sym___clrcall] = ACTIONS(1412), - [anon_sym___stdcall] = ACTIONS(1412), - [anon_sym___fastcall] = ACTIONS(1412), - [anon_sym___thiscall] = ACTIONS(1412), - [anon_sym___vectorcall] = ACTIONS(1412), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_signed] = ACTIONS(1412), - [anon_sym_unsigned] = ACTIONS(1412), - [anon_sym_long] = ACTIONS(1412), - [anon_sym_short] = ACTIONS(1412), - [anon_sym_static] = ACTIONS(1412), - [anon_sym_auto] = ACTIONS(1412), - [anon_sym_register] = ACTIONS(1412), - [anon_sym_inline] = ACTIONS(1412), - [anon_sym___inline] = ACTIONS(1412), - [anon_sym___inline__] = ACTIONS(1412), - [anon_sym___forceinline] = ACTIONS(1412), - [anon_sym_thread_local] = ACTIONS(1412), - [anon_sym___thread] = ACTIONS(1412), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_constexpr] = ACTIONS(1412), - [anon_sym_volatile] = ACTIONS(1412), - [anon_sym_restrict] = ACTIONS(1412), - [anon_sym___restrict__] = ACTIONS(1412), - [anon_sym__Atomic] = ACTIONS(1412), - [anon_sym__Noreturn] = ACTIONS(1412), - [anon_sym_noreturn] = ACTIONS(1412), - [anon_sym_alignas] = ACTIONS(1412), - [anon_sym__Alignas] = ACTIONS(1412), - [sym_primitive_type] = ACTIONS(1412), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_struct] = ACTIONS(1412), - [anon_sym_union] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1412), - [anon_sym_switch] = ACTIONS(1412), - [anon_sym_case] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1412), - [anon_sym_while] = ACTIONS(1412), - [anon_sym_do] = ACTIONS(1412), - [anon_sym_for] = ACTIONS(1412), - [anon_sym_return] = ACTIONS(1412), - [anon_sym_break] = ACTIONS(1412), - [anon_sym_continue] = ACTIONS(1412), - [anon_sym_goto] = ACTIONS(1412), - [anon_sym___try] = ACTIONS(1412), - [anon_sym___leave] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1414), - [anon_sym_PLUS_PLUS] = ACTIONS(1414), - [anon_sym_sizeof] = ACTIONS(1412), - [anon_sym___alignof__] = ACTIONS(1412), - [anon_sym___alignof] = ACTIONS(1412), - [anon_sym__alignof] = ACTIONS(1412), - [anon_sym_alignof] = ACTIONS(1412), - [anon_sym__Alignof] = ACTIONS(1412), - [anon_sym_offsetof] = ACTIONS(1412), - [anon_sym__Generic] = ACTIONS(1412), - [anon_sym_asm] = ACTIONS(1412), - [anon_sym___asm__] = ACTIONS(1412), - [sym_number_literal] = ACTIONS(1414), - [anon_sym_L_SQUOTE] = ACTIONS(1414), - [anon_sym_u_SQUOTE] = ACTIONS(1414), - [anon_sym_U_SQUOTE] = ACTIONS(1414), - [anon_sym_u8_SQUOTE] = ACTIONS(1414), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_L_DQUOTE] = ACTIONS(1414), - [anon_sym_u_DQUOTE] = ACTIONS(1414), - [anon_sym_U_DQUOTE] = ACTIONS(1414), - [anon_sym_u8_DQUOTE] = ACTIONS(1414), - [anon_sym_DQUOTE] = ACTIONS(1414), - [sym_true] = ACTIONS(1412), - [sym_false] = ACTIONS(1412), - [anon_sym_NULL] = ACTIONS(1412), - [anon_sym_nullptr] = ACTIONS(1412), + [sym_identifier] = ACTIONS(1418), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token2] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [aux_sym_preproc_else_token1] = ACTIONS(1418), + [aux_sym_preproc_elif_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___extension__] = ACTIONS(1418), + [anon_sym_typedef] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym___attribute__] = ACTIONS(1418), + [anon_sym___scanf] = ACTIONS(1418), + [anon_sym___printf] = ACTIONS(1418), + [anon_sym___read_mostly] = ACTIONS(1418), + [anon_sym___must_hold] = ACTIONS(1418), + [anon_sym___ro_after_init] = ACTIONS(1418), + [anon_sym___noreturn] = ACTIONS(1418), + [anon_sym___cold] = ACTIONS(1418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), + [anon_sym___declspec] = ACTIONS(1418), + [anon_sym___init] = ACTIONS(1418), + [anon_sym___exit] = ACTIONS(1418), + [anon_sym___cdecl] = ACTIONS(1418), + [anon_sym___clrcall] = ACTIONS(1418), + [anon_sym___stdcall] = ACTIONS(1418), + [anon_sym___fastcall] = ACTIONS(1418), + [anon_sym___thiscall] = ACTIONS(1418), + [anon_sym___vectorcall] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_inline] = ACTIONS(1418), + [anon_sym___inline] = ACTIONS(1418), + [anon_sym___inline__] = ACTIONS(1418), + [anon_sym___forceinline] = ACTIONS(1418), + [anon_sym_thread_local] = ACTIONS(1418), + [anon_sym___thread] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_constexpr] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym___restrict__] = ACTIONS(1418), + [anon_sym__Atomic] = ACTIONS(1418), + [anon_sym__Noreturn] = ACTIONS(1418), + [anon_sym_noreturn] = ACTIONS(1418), + [anon_sym_alignas] = ACTIONS(1418), + [anon_sym__Alignas] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym___try] = ACTIONS(1418), + [anon_sym___leave] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(1418), + [anon_sym___alignof__] = ACTIONS(1418), + [anon_sym___alignof] = ACTIONS(1418), + [anon_sym__alignof] = ACTIONS(1418), + [anon_sym_alignof] = ACTIONS(1418), + [anon_sym__Alignof] = ACTIONS(1418), + [anon_sym_offsetof] = ACTIONS(1418), + [anon_sym__Generic] = ACTIONS(1418), + [anon_sym_asm] = ACTIONS(1418), + [anon_sym___asm__] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(1420), + [anon_sym_L_SQUOTE] = ACTIONS(1420), + [anon_sym_u_SQUOTE] = ACTIONS(1420), + [anon_sym_U_SQUOTE] = ACTIONS(1420), + [anon_sym_u8_SQUOTE] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_L_DQUOTE] = ACTIONS(1420), + [anon_sym_u_DQUOTE] = ACTIONS(1420), + [anon_sym_U_DQUOTE] = ACTIONS(1420), + [anon_sym_u8_DQUOTE] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [sym_true] = ACTIONS(1418), + [sym_false] = ACTIONS(1418), + [anon_sym_NULL] = ACTIONS(1418), + [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(5), }, [142] = { - [sym_identifier] = ACTIONS(1416), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1416), - [aux_sym_preproc_def_token1] = ACTIONS(1416), - [aux_sym_preproc_if_token1] = ACTIONS(1416), - [aux_sym_preproc_if_token2] = ACTIONS(1416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1416), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1416), - [aux_sym_preproc_else_token1] = ACTIONS(1416), - [aux_sym_preproc_elif_token1] = ACTIONS(1416), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1416), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1416), - [sym_preproc_directive] = ACTIONS(1416), - [anon_sym_LPAREN2] = ACTIONS(1418), - [anon_sym_BANG] = ACTIONS(1418), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_typedef] = ACTIONS(1416), - [anon_sym_extern] = ACTIONS(1416), - [anon_sym___attribute__] = ACTIONS(1416), - [anon_sym___scanf] = ACTIONS(1416), - [anon_sym___printf] = ACTIONS(1416), - [anon_sym___read_mostly] = ACTIONS(1416), - [anon_sym___must_hold] = ACTIONS(1416), - [anon_sym___ro_after_init] = ACTIONS(1416), - [anon_sym___noreturn] = ACTIONS(1416), - [anon_sym___cold] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym___declspec] = ACTIONS(1416), - [anon_sym___init] = ACTIONS(1416), - [anon_sym___exit] = ACTIONS(1416), - [anon_sym___cdecl] = ACTIONS(1416), - [anon_sym___clrcall] = ACTIONS(1416), - [anon_sym___stdcall] = ACTIONS(1416), - [anon_sym___fastcall] = ACTIONS(1416), - [anon_sym___thiscall] = ACTIONS(1416), - [anon_sym___vectorcall] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_signed] = ACTIONS(1416), - [anon_sym_unsigned] = ACTIONS(1416), - [anon_sym_long] = ACTIONS(1416), - [anon_sym_short] = ACTIONS(1416), - [anon_sym_static] = ACTIONS(1416), - [anon_sym_auto] = ACTIONS(1416), - [anon_sym_register] = ACTIONS(1416), - [anon_sym_inline] = ACTIONS(1416), - [anon_sym___inline] = ACTIONS(1416), - [anon_sym___inline__] = ACTIONS(1416), - [anon_sym___forceinline] = ACTIONS(1416), - [anon_sym_thread_local] = ACTIONS(1416), - [anon_sym___thread] = ACTIONS(1416), - [anon_sym_const] = ACTIONS(1416), - [anon_sym_constexpr] = ACTIONS(1416), - [anon_sym_volatile] = ACTIONS(1416), - [anon_sym_restrict] = ACTIONS(1416), - [anon_sym___restrict__] = ACTIONS(1416), - [anon_sym__Atomic] = ACTIONS(1416), - [anon_sym__Noreturn] = ACTIONS(1416), - [anon_sym_noreturn] = ACTIONS(1416), - [anon_sym_alignas] = ACTIONS(1416), - [anon_sym__Alignas] = ACTIONS(1416), - [sym_primitive_type] = ACTIONS(1416), - [anon_sym_enum] = ACTIONS(1416), - [anon_sym_struct] = ACTIONS(1416), - [anon_sym_union] = ACTIONS(1416), - [anon_sym_if] = ACTIONS(1416), - [anon_sym_switch] = ACTIONS(1416), - [anon_sym_case] = ACTIONS(1416), - [anon_sym_default] = ACTIONS(1416), - [anon_sym_while] = ACTIONS(1416), - [anon_sym_do] = ACTIONS(1416), - [anon_sym_for] = ACTIONS(1416), - [anon_sym_return] = ACTIONS(1416), - [anon_sym_break] = ACTIONS(1416), - [anon_sym_continue] = ACTIONS(1416), - [anon_sym_goto] = ACTIONS(1416), - [anon_sym___try] = ACTIONS(1416), - [anon_sym___leave] = ACTIONS(1416), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_sizeof] = ACTIONS(1416), - [anon_sym___alignof__] = ACTIONS(1416), - [anon_sym___alignof] = ACTIONS(1416), - [anon_sym__alignof] = ACTIONS(1416), - [anon_sym_alignof] = ACTIONS(1416), - [anon_sym__Alignof] = ACTIONS(1416), - [anon_sym_offsetof] = ACTIONS(1416), - [anon_sym__Generic] = ACTIONS(1416), - [anon_sym_asm] = ACTIONS(1416), - [anon_sym___asm__] = ACTIONS(1416), - [sym_number_literal] = ACTIONS(1418), - [anon_sym_L_SQUOTE] = ACTIONS(1418), - [anon_sym_u_SQUOTE] = ACTIONS(1418), - [anon_sym_U_SQUOTE] = ACTIONS(1418), - [anon_sym_u8_SQUOTE] = ACTIONS(1418), - [anon_sym_SQUOTE] = ACTIONS(1418), - [anon_sym_L_DQUOTE] = ACTIONS(1418), - [anon_sym_u_DQUOTE] = ACTIONS(1418), - [anon_sym_U_DQUOTE] = ACTIONS(1418), - [anon_sym_u8_DQUOTE] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym_true] = ACTIONS(1416), - [sym_false] = ACTIONS(1416), - [anon_sym_NULL] = ACTIONS(1416), - [anon_sym_nullptr] = ACTIONS(1416), + [sym_identifier] = ACTIONS(1422), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1422), + [aux_sym_preproc_def_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token2] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [aux_sym_preproc_else_token1] = ACTIONS(1422), + [aux_sym_preproc_elif_token1] = ACTIONS(1422), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1422), + [sym_preproc_directive] = ACTIONS(1422), + [anon_sym_LPAREN2] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_PLUS] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym___extension__] = ACTIONS(1422), + [anon_sym_typedef] = ACTIONS(1422), + [anon_sym_extern] = ACTIONS(1422), + [anon_sym___attribute__] = ACTIONS(1422), + [anon_sym___scanf] = ACTIONS(1422), + [anon_sym___printf] = ACTIONS(1422), + [anon_sym___read_mostly] = ACTIONS(1422), + [anon_sym___must_hold] = ACTIONS(1422), + [anon_sym___ro_after_init] = ACTIONS(1422), + [anon_sym___noreturn] = ACTIONS(1422), + [anon_sym___cold] = ACTIONS(1422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), + [anon_sym___declspec] = ACTIONS(1422), + [anon_sym___init] = ACTIONS(1422), + [anon_sym___exit] = ACTIONS(1422), + [anon_sym___cdecl] = ACTIONS(1422), + [anon_sym___clrcall] = ACTIONS(1422), + [anon_sym___stdcall] = ACTIONS(1422), + [anon_sym___fastcall] = ACTIONS(1422), + [anon_sym___thiscall] = ACTIONS(1422), + [anon_sym___vectorcall] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_signed] = ACTIONS(1422), + [anon_sym_unsigned] = ACTIONS(1422), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_short] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_auto] = ACTIONS(1422), + [anon_sym_register] = ACTIONS(1422), + [anon_sym_inline] = ACTIONS(1422), + [anon_sym___inline] = ACTIONS(1422), + [anon_sym___inline__] = ACTIONS(1422), + [anon_sym___forceinline] = ACTIONS(1422), + [anon_sym_thread_local] = ACTIONS(1422), + [anon_sym___thread] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_constexpr] = ACTIONS(1422), + [anon_sym_volatile] = ACTIONS(1422), + [anon_sym_restrict] = ACTIONS(1422), + [anon_sym___restrict__] = ACTIONS(1422), + [anon_sym__Atomic] = ACTIONS(1422), + [anon_sym__Noreturn] = ACTIONS(1422), + [anon_sym_noreturn] = ACTIONS(1422), + [anon_sym_alignas] = ACTIONS(1422), + [anon_sym__Alignas] = ACTIONS(1422), + [sym_primitive_type] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1422), + [anon_sym_switch] = ACTIONS(1422), + [anon_sym_case] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_while] = ACTIONS(1422), + [anon_sym_do] = ACTIONS(1422), + [anon_sym_for] = ACTIONS(1422), + [anon_sym_return] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1422), + [anon_sym_continue] = ACTIONS(1422), + [anon_sym_goto] = ACTIONS(1422), + [anon_sym___try] = ACTIONS(1422), + [anon_sym___leave] = ACTIONS(1422), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1422), + [anon_sym___alignof__] = ACTIONS(1422), + [anon_sym___alignof] = ACTIONS(1422), + [anon_sym__alignof] = ACTIONS(1422), + [anon_sym_alignof] = ACTIONS(1422), + [anon_sym__Alignof] = ACTIONS(1422), + [anon_sym_offsetof] = ACTIONS(1422), + [anon_sym__Generic] = ACTIONS(1422), + [anon_sym_asm] = ACTIONS(1422), + [anon_sym___asm__] = ACTIONS(1422), + [sym_number_literal] = ACTIONS(1424), + [anon_sym_L_SQUOTE] = ACTIONS(1424), + [anon_sym_u_SQUOTE] = ACTIONS(1424), + [anon_sym_U_SQUOTE] = ACTIONS(1424), + [anon_sym_u8_SQUOTE] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_L_DQUOTE] = ACTIONS(1424), + [anon_sym_u_DQUOTE] = ACTIONS(1424), + [anon_sym_U_DQUOTE] = ACTIONS(1424), + [anon_sym_u8_DQUOTE] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [sym_true] = ACTIONS(1422), + [sym_false] = ACTIONS(1422), + [anon_sym_NULL] = ACTIONS(1422), + [anon_sym_nullptr] = ACTIONS(1422), [sym_comment] = ACTIONS(5), }, [143] = { - [sym_identifier] = ACTIONS(1420), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1420), - [aux_sym_preproc_def_token1] = ACTIONS(1420), - [aux_sym_preproc_if_token1] = ACTIONS(1420), - [aux_sym_preproc_if_token2] = ACTIONS(1420), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1420), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1420), - [aux_sym_preproc_else_token1] = ACTIONS(1420), - [aux_sym_preproc_elif_token1] = ACTIONS(1420), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1420), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1420), - [sym_preproc_directive] = ACTIONS(1420), - [anon_sym_LPAREN2] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1422), - [anon_sym_TILDE] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1420), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1422), - [anon_sym___extension__] = ACTIONS(1420), - [anon_sym_typedef] = ACTIONS(1420), - [anon_sym_extern] = ACTIONS(1420), - [anon_sym___attribute__] = ACTIONS(1420), - [anon_sym___scanf] = ACTIONS(1420), - [anon_sym___printf] = ACTIONS(1420), - [anon_sym___read_mostly] = ACTIONS(1420), - [anon_sym___must_hold] = ACTIONS(1420), - [anon_sym___ro_after_init] = ACTIONS(1420), - [anon_sym___noreturn] = ACTIONS(1420), - [anon_sym___cold] = ACTIONS(1420), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1422), - [anon_sym___declspec] = ACTIONS(1420), - [anon_sym___init] = ACTIONS(1420), - [anon_sym___exit] = ACTIONS(1420), - [anon_sym___cdecl] = ACTIONS(1420), - [anon_sym___clrcall] = ACTIONS(1420), - [anon_sym___stdcall] = ACTIONS(1420), - [anon_sym___fastcall] = ACTIONS(1420), - [anon_sym___thiscall] = ACTIONS(1420), - [anon_sym___vectorcall] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_signed] = ACTIONS(1420), - [anon_sym_unsigned] = ACTIONS(1420), - [anon_sym_long] = ACTIONS(1420), - [anon_sym_short] = ACTIONS(1420), - [anon_sym_static] = ACTIONS(1420), - [anon_sym_auto] = ACTIONS(1420), - [anon_sym_register] = ACTIONS(1420), - [anon_sym_inline] = ACTIONS(1420), - [anon_sym___inline] = ACTIONS(1420), - [anon_sym___inline__] = ACTIONS(1420), - [anon_sym___forceinline] = ACTIONS(1420), - [anon_sym_thread_local] = ACTIONS(1420), - [anon_sym___thread] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1420), - [anon_sym_constexpr] = ACTIONS(1420), - [anon_sym_volatile] = ACTIONS(1420), - [anon_sym_restrict] = ACTIONS(1420), - [anon_sym___restrict__] = ACTIONS(1420), - [anon_sym__Atomic] = ACTIONS(1420), - [anon_sym__Noreturn] = ACTIONS(1420), - [anon_sym_noreturn] = ACTIONS(1420), - [anon_sym_alignas] = ACTIONS(1420), - [anon_sym__Alignas] = ACTIONS(1420), - [sym_primitive_type] = ACTIONS(1420), - [anon_sym_enum] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1420), - [anon_sym_union] = ACTIONS(1420), - [anon_sym_if] = ACTIONS(1420), - [anon_sym_switch] = ACTIONS(1420), - [anon_sym_case] = ACTIONS(1420), - [anon_sym_default] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1420), - [anon_sym_do] = ACTIONS(1420), - [anon_sym_for] = ACTIONS(1420), - [anon_sym_return] = ACTIONS(1420), - [anon_sym_break] = ACTIONS(1420), - [anon_sym_continue] = ACTIONS(1420), - [anon_sym_goto] = ACTIONS(1420), - [anon_sym___try] = ACTIONS(1420), - [anon_sym___leave] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1422), - [anon_sym_PLUS_PLUS] = ACTIONS(1422), - [anon_sym_sizeof] = ACTIONS(1420), - [anon_sym___alignof__] = ACTIONS(1420), - [anon_sym___alignof] = ACTIONS(1420), - [anon_sym__alignof] = ACTIONS(1420), - [anon_sym_alignof] = ACTIONS(1420), - [anon_sym__Alignof] = ACTIONS(1420), - [anon_sym_offsetof] = ACTIONS(1420), - [anon_sym__Generic] = ACTIONS(1420), - [anon_sym_asm] = ACTIONS(1420), - [anon_sym___asm__] = ACTIONS(1420), - [sym_number_literal] = ACTIONS(1422), - [anon_sym_L_SQUOTE] = ACTIONS(1422), - [anon_sym_u_SQUOTE] = ACTIONS(1422), - [anon_sym_U_SQUOTE] = ACTIONS(1422), - [anon_sym_u8_SQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1422), - [anon_sym_L_DQUOTE] = ACTIONS(1422), - [anon_sym_u_DQUOTE] = ACTIONS(1422), - [anon_sym_U_DQUOTE] = ACTIONS(1422), - [anon_sym_u8_DQUOTE] = ACTIONS(1422), - [anon_sym_DQUOTE] = ACTIONS(1422), - [sym_true] = ACTIONS(1420), - [sym_false] = ACTIONS(1420), - [anon_sym_NULL] = ACTIONS(1420), - [anon_sym_nullptr] = ACTIONS(1420), + [sym_identifier] = ACTIONS(1426), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1426), + [aux_sym_preproc_def_token1] = ACTIONS(1426), + [aux_sym_preproc_if_token1] = ACTIONS(1426), + [aux_sym_preproc_if_token2] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), + [aux_sym_preproc_else_token1] = ACTIONS(1426), + [aux_sym_preproc_elif_token1] = ACTIONS(1426), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1426), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1426), + [sym_preproc_directive] = ACTIONS(1426), + [anon_sym_LPAREN2] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym___extension__] = ACTIONS(1426), + [anon_sym_typedef] = ACTIONS(1426), + [anon_sym_extern] = ACTIONS(1426), + [anon_sym___attribute__] = ACTIONS(1426), + [anon_sym___scanf] = ACTIONS(1426), + [anon_sym___printf] = ACTIONS(1426), + [anon_sym___read_mostly] = ACTIONS(1426), + [anon_sym___must_hold] = ACTIONS(1426), + [anon_sym___ro_after_init] = ACTIONS(1426), + [anon_sym___noreturn] = ACTIONS(1426), + [anon_sym___cold] = ACTIONS(1426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), + [anon_sym___declspec] = ACTIONS(1426), + [anon_sym___init] = ACTIONS(1426), + [anon_sym___exit] = ACTIONS(1426), + [anon_sym___cdecl] = ACTIONS(1426), + [anon_sym___clrcall] = ACTIONS(1426), + [anon_sym___stdcall] = ACTIONS(1426), + [anon_sym___fastcall] = ACTIONS(1426), + [anon_sym___thiscall] = ACTIONS(1426), + [anon_sym___vectorcall] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_signed] = ACTIONS(1426), + [anon_sym_unsigned] = ACTIONS(1426), + [anon_sym_long] = ACTIONS(1426), + [anon_sym_short] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1426), + [anon_sym_auto] = ACTIONS(1426), + [anon_sym_register] = ACTIONS(1426), + [anon_sym_inline] = ACTIONS(1426), + [anon_sym___inline] = ACTIONS(1426), + [anon_sym___inline__] = ACTIONS(1426), + [anon_sym___forceinline] = ACTIONS(1426), + [anon_sym_thread_local] = ACTIONS(1426), + [anon_sym___thread] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_constexpr] = ACTIONS(1426), + [anon_sym_volatile] = ACTIONS(1426), + [anon_sym_restrict] = ACTIONS(1426), + [anon_sym___restrict__] = ACTIONS(1426), + [anon_sym__Atomic] = ACTIONS(1426), + [anon_sym__Noreturn] = ACTIONS(1426), + [anon_sym_noreturn] = ACTIONS(1426), + [anon_sym_alignas] = ACTIONS(1426), + [anon_sym__Alignas] = ACTIONS(1426), + [sym_primitive_type] = ACTIONS(1426), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1426), + [anon_sym_union] = ACTIONS(1426), + [anon_sym_if] = ACTIONS(1426), + [anon_sym_switch] = ACTIONS(1426), + [anon_sym_case] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1426), + [anon_sym_while] = ACTIONS(1426), + [anon_sym_do] = ACTIONS(1426), + [anon_sym_for] = ACTIONS(1426), + [anon_sym_return] = ACTIONS(1426), + [anon_sym_break] = ACTIONS(1426), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_goto] = ACTIONS(1426), + [anon_sym___try] = ACTIONS(1426), + [anon_sym___leave] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [anon_sym_sizeof] = ACTIONS(1426), + [anon_sym___alignof__] = ACTIONS(1426), + [anon_sym___alignof] = ACTIONS(1426), + [anon_sym__alignof] = ACTIONS(1426), + [anon_sym_alignof] = ACTIONS(1426), + [anon_sym__Alignof] = ACTIONS(1426), + [anon_sym_offsetof] = ACTIONS(1426), + [anon_sym__Generic] = ACTIONS(1426), + [anon_sym_asm] = ACTIONS(1426), + [anon_sym___asm__] = ACTIONS(1426), + [sym_number_literal] = ACTIONS(1428), + [anon_sym_L_SQUOTE] = ACTIONS(1428), + [anon_sym_u_SQUOTE] = ACTIONS(1428), + [anon_sym_U_SQUOTE] = ACTIONS(1428), + [anon_sym_u8_SQUOTE] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_L_DQUOTE] = ACTIONS(1428), + [anon_sym_u_DQUOTE] = ACTIONS(1428), + [anon_sym_U_DQUOTE] = ACTIONS(1428), + [anon_sym_u8_DQUOTE] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [sym_true] = ACTIONS(1426), + [sym_false] = ACTIONS(1426), + [anon_sym_NULL] = ACTIONS(1426), + [anon_sym_nullptr] = ACTIONS(1426), [sym_comment] = ACTIONS(5), }, [144] = { - [sym_identifier] = ACTIONS(1412), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1412), - [aux_sym_preproc_def_token1] = ACTIONS(1412), - [aux_sym_preproc_if_token1] = ACTIONS(1412), - [aux_sym_preproc_if_token2] = ACTIONS(1412), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1412), - [aux_sym_preproc_else_token1] = ACTIONS(1412), - [aux_sym_preproc_elif_token1] = ACTIONS(1412), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1412), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1412), - [sym_preproc_directive] = ACTIONS(1412), - [anon_sym_LPAREN2] = ACTIONS(1414), - [anon_sym_BANG] = ACTIONS(1414), - [anon_sym_TILDE] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1414), - [anon_sym___extension__] = ACTIONS(1412), - [anon_sym_typedef] = ACTIONS(1412), - [anon_sym_extern] = ACTIONS(1412), - [anon_sym___attribute__] = ACTIONS(1412), - [anon_sym___scanf] = ACTIONS(1412), - [anon_sym___printf] = ACTIONS(1412), - [anon_sym___read_mostly] = ACTIONS(1412), - [anon_sym___must_hold] = ACTIONS(1412), - [anon_sym___ro_after_init] = ACTIONS(1412), - [anon_sym___noreturn] = ACTIONS(1412), - [anon_sym___cold] = ACTIONS(1412), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1414), - [anon_sym___declspec] = ACTIONS(1412), - [anon_sym___init] = ACTIONS(1412), - [anon_sym___exit] = ACTIONS(1412), - [anon_sym___cdecl] = ACTIONS(1412), - [anon_sym___clrcall] = ACTIONS(1412), - [anon_sym___stdcall] = ACTIONS(1412), - [anon_sym___fastcall] = ACTIONS(1412), - [anon_sym___thiscall] = ACTIONS(1412), - [anon_sym___vectorcall] = ACTIONS(1412), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_signed] = ACTIONS(1412), - [anon_sym_unsigned] = ACTIONS(1412), - [anon_sym_long] = ACTIONS(1412), - [anon_sym_short] = ACTIONS(1412), - [anon_sym_static] = ACTIONS(1412), - [anon_sym_auto] = ACTIONS(1412), - [anon_sym_register] = ACTIONS(1412), - [anon_sym_inline] = ACTIONS(1412), - [anon_sym___inline] = ACTIONS(1412), - [anon_sym___inline__] = ACTIONS(1412), - [anon_sym___forceinline] = ACTIONS(1412), - [anon_sym_thread_local] = ACTIONS(1412), - [anon_sym___thread] = ACTIONS(1412), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_constexpr] = ACTIONS(1412), - [anon_sym_volatile] = ACTIONS(1412), - [anon_sym_restrict] = ACTIONS(1412), - [anon_sym___restrict__] = ACTIONS(1412), - [anon_sym__Atomic] = ACTIONS(1412), - [anon_sym__Noreturn] = ACTIONS(1412), - [anon_sym_noreturn] = ACTIONS(1412), - [anon_sym_alignas] = ACTIONS(1412), - [anon_sym__Alignas] = ACTIONS(1412), - [sym_primitive_type] = ACTIONS(1412), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_struct] = ACTIONS(1412), - [anon_sym_union] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1412), - [anon_sym_switch] = ACTIONS(1412), - [anon_sym_case] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1412), - [anon_sym_while] = ACTIONS(1412), - [anon_sym_do] = ACTIONS(1412), - [anon_sym_for] = ACTIONS(1412), - [anon_sym_return] = ACTIONS(1412), - [anon_sym_break] = ACTIONS(1412), - [anon_sym_continue] = ACTIONS(1412), - [anon_sym_goto] = ACTIONS(1412), - [anon_sym___try] = ACTIONS(1412), - [anon_sym___leave] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1414), - [anon_sym_PLUS_PLUS] = ACTIONS(1414), - [anon_sym_sizeof] = ACTIONS(1412), - [anon_sym___alignof__] = ACTIONS(1412), - [anon_sym___alignof] = ACTIONS(1412), - [anon_sym__alignof] = ACTIONS(1412), - [anon_sym_alignof] = ACTIONS(1412), - [anon_sym__Alignof] = ACTIONS(1412), - [anon_sym_offsetof] = ACTIONS(1412), - [anon_sym__Generic] = ACTIONS(1412), - [anon_sym_asm] = ACTIONS(1412), - [anon_sym___asm__] = ACTIONS(1412), - [sym_number_literal] = ACTIONS(1414), - [anon_sym_L_SQUOTE] = ACTIONS(1414), - [anon_sym_u_SQUOTE] = ACTIONS(1414), - [anon_sym_U_SQUOTE] = ACTIONS(1414), - [anon_sym_u8_SQUOTE] = ACTIONS(1414), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_L_DQUOTE] = ACTIONS(1414), - [anon_sym_u_DQUOTE] = ACTIONS(1414), - [anon_sym_U_DQUOTE] = ACTIONS(1414), - [anon_sym_u8_DQUOTE] = ACTIONS(1414), - [anon_sym_DQUOTE] = ACTIONS(1414), - [sym_true] = ACTIONS(1412), - [sym_false] = ACTIONS(1412), - [anon_sym_NULL] = ACTIONS(1412), - [anon_sym_nullptr] = ACTIONS(1412), + [sym_identifier] = ACTIONS(1430), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1430), + [aux_sym_preproc_def_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token2] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), + [aux_sym_preproc_else_token1] = ACTIONS(1430), + [aux_sym_preproc_elif_token1] = ACTIONS(1430), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1430), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1430), + [sym_preproc_directive] = ACTIONS(1430), + [anon_sym_LPAREN2] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym___extension__] = ACTIONS(1430), + [anon_sym_typedef] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym___attribute__] = ACTIONS(1430), + [anon_sym___scanf] = ACTIONS(1430), + [anon_sym___printf] = ACTIONS(1430), + [anon_sym___read_mostly] = ACTIONS(1430), + [anon_sym___must_hold] = ACTIONS(1430), + [anon_sym___ro_after_init] = ACTIONS(1430), + [anon_sym___noreturn] = ACTIONS(1430), + [anon_sym___cold] = ACTIONS(1430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), + [anon_sym___declspec] = ACTIONS(1430), + [anon_sym___init] = ACTIONS(1430), + [anon_sym___exit] = ACTIONS(1430), + [anon_sym___cdecl] = ACTIONS(1430), + [anon_sym___clrcall] = ACTIONS(1430), + [anon_sym___stdcall] = ACTIONS(1430), + [anon_sym___fastcall] = ACTIONS(1430), + [anon_sym___thiscall] = ACTIONS(1430), + [anon_sym___vectorcall] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_signed] = ACTIONS(1430), + [anon_sym_unsigned] = ACTIONS(1430), + [anon_sym_long] = ACTIONS(1430), + [anon_sym_short] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_auto] = ACTIONS(1430), + [anon_sym_register] = ACTIONS(1430), + [anon_sym_inline] = ACTIONS(1430), + [anon_sym___inline] = ACTIONS(1430), + [anon_sym___inline__] = ACTIONS(1430), + [anon_sym___forceinline] = ACTIONS(1430), + [anon_sym_thread_local] = ACTIONS(1430), + [anon_sym___thread] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_constexpr] = ACTIONS(1430), + [anon_sym_volatile] = ACTIONS(1430), + [anon_sym_restrict] = ACTIONS(1430), + [anon_sym___restrict__] = ACTIONS(1430), + [anon_sym__Atomic] = ACTIONS(1430), + [anon_sym__Noreturn] = ACTIONS(1430), + [anon_sym_noreturn] = ACTIONS(1430), + [anon_sym_alignas] = ACTIONS(1430), + [anon_sym__Alignas] = ACTIONS(1430), + [sym_primitive_type] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_switch] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_do] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_goto] = ACTIONS(1430), + [anon_sym___try] = ACTIONS(1430), + [anon_sym___leave] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1430), + [anon_sym___alignof__] = ACTIONS(1430), + [anon_sym___alignof] = ACTIONS(1430), + [anon_sym__alignof] = ACTIONS(1430), + [anon_sym_alignof] = ACTIONS(1430), + [anon_sym__Alignof] = ACTIONS(1430), + [anon_sym_offsetof] = ACTIONS(1430), + [anon_sym__Generic] = ACTIONS(1430), + [anon_sym_asm] = ACTIONS(1430), + [anon_sym___asm__] = ACTIONS(1430), + [sym_number_literal] = ACTIONS(1432), + [anon_sym_L_SQUOTE] = ACTIONS(1432), + [anon_sym_u_SQUOTE] = ACTIONS(1432), + [anon_sym_U_SQUOTE] = ACTIONS(1432), + [anon_sym_u8_SQUOTE] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_L_DQUOTE] = ACTIONS(1432), + [anon_sym_u_DQUOTE] = ACTIONS(1432), + [anon_sym_U_DQUOTE] = ACTIONS(1432), + [anon_sym_u8_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1432), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [anon_sym_NULL] = ACTIONS(1430), + [anon_sym_nullptr] = ACTIONS(1430), [sym_comment] = ACTIONS(5), }, [145] = { - [sym_identifier] = ACTIONS(1424), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1424), - [aux_sym_preproc_def_token1] = ACTIONS(1424), - [aux_sym_preproc_if_token1] = ACTIONS(1424), - [aux_sym_preproc_if_token2] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), - [aux_sym_preproc_else_token1] = ACTIONS(1424), - [aux_sym_preproc_elif_token1] = ACTIONS(1424), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1424), - [sym_preproc_directive] = ACTIONS(1424), - [anon_sym_LPAREN2] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_TILDE] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1424), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym___extension__] = ACTIONS(1424), - [anon_sym_typedef] = ACTIONS(1424), - [anon_sym_extern] = ACTIONS(1424), - [anon_sym___attribute__] = ACTIONS(1424), - [anon_sym___scanf] = ACTIONS(1424), - [anon_sym___printf] = ACTIONS(1424), - [anon_sym___read_mostly] = ACTIONS(1424), - [anon_sym___must_hold] = ACTIONS(1424), - [anon_sym___ro_after_init] = ACTIONS(1424), - [anon_sym___noreturn] = ACTIONS(1424), - [anon_sym___cold] = ACTIONS(1424), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), - [anon_sym___declspec] = ACTIONS(1424), - [anon_sym___init] = ACTIONS(1424), - [anon_sym___exit] = ACTIONS(1424), - [anon_sym___cdecl] = ACTIONS(1424), - [anon_sym___clrcall] = ACTIONS(1424), - [anon_sym___stdcall] = ACTIONS(1424), - [anon_sym___fastcall] = ACTIONS(1424), - [anon_sym___thiscall] = ACTIONS(1424), - [anon_sym___vectorcall] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_signed] = ACTIONS(1424), - [anon_sym_unsigned] = ACTIONS(1424), - [anon_sym_long] = ACTIONS(1424), - [anon_sym_short] = ACTIONS(1424), - [anon_sym_static] = ACTIONS(1424), - [anon_sym_auto] = ACTIONS(1424), - [anon_sym_register] = ACTIONS(1424), - [anon_sym_inline] = ACTIONS(1424), - [anon_sym___inline] = ACTIONS(1424), - [anon_sym___inline__] = ACTIONS(1424), - [anon_sym___forceinline] = ACTIONS(1424), - [anon_sym_thread_local] = ACTIONS(1424), - [anon_sym___thread] = ACTIONS(1424), - [anon_sym_const] = ACTIONS(1424), - [anon_sym_constexpr] = ACTIONS(1424), - [anon_sym_volatile] = ACTIONS(1424), - [anon_sym_restrict] = ACTIONS(1424), - [anon_sym___restrict__] = ACTIONS(1424), - [anon_sym__Atomic] = ACTIONS(1424), - [anon_sym__Noreturn] = ACTIONS(1424), - [anon_sym_noreturn] = ACTIONS(1424), - [anon_sym_alignas] = ACTIONS(1424), - [anon_sym__Alignas] = ACTIONS(1424), - [sym_primitive_type] = ACTIONS(1424), - [anon_sym_enum] = ACTIONS(1424), - [anon_sym_struct] = ACTIONS(1424), - [anon_sym_union] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1424), - [anon_sym_switch] = ACTIONS(1424), - [anon_sym_case] = ACTIONS(1424), - [anon_sym_default] = ACTIONS(1424), - [anon_sym_while] = ACTIONS(1424), - [anon_sym_do] = ACTIONS(1424), - [anon_sym_for] = ACTIONS(1424), - [anon_sym_return] = ACTIONS(1424), - [anon_sym_break] = ACTIONS(1424), - [anon_sym_continue] = ACTIONS(1424), - [anon_sym_goto] = ACTIONS(1424), - [anon_sym___try] = ACTIONS(1424), - [anon_sym___leave] = ACTIONS(1424), - [anon_sym_DASH_DASH] = ACTIONS(1426), - [anon_sym_PLUS_PLUS] = ACTIONS(1426), - [anon_sym_sizeof] = ACTIONS(1424), - [anon_sym___alignof__] = ACTIONS(1424), - [anon_sym___alignof] = ACTIONS(1424), - [anon_sym__alignof] = ACTIONS(1424), - [anon_sym_alignof] = ACTIONS(1424), - [anon_sym__Alignof] = ACTIONS(1424), - [anon_sym_offsetof] = ACTIONS(1424), - [anon_sym__Generic] = ACTIONS(1424), - [anon_sym_asm] = ACTIONS(1424), - [anon_sym___asm__] = ACTIONS(1424), - [sym_number_literal] = ACTIONS(1426), - [anon_sym_L_SQUOTE] = ACTIONS(1426), - [anon_sym_u_SQUOTE] = ACTIONS(1426), - [anon_sym_U_SQUOTE] = ACTIONS(1426), - [anon_sym_u8_SQUOTE] = ACTIONS(1426), - [anon_sym_SQUOTE] = ACTIONS(1426), - [anon_sym_L_DQUOTE] = ACTIONS(1426), - [anon_sym_u_DQUOTE] = ACTIONS(1426), - [anon_sym_U_DQUOTE] = ACTIONS(1426), - [anon_sym_u8_DQUOTE] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [sym_true] = ACTIONS(1424), - [sym_false] = ACTIONS(1424), - [anon_sym_NULL] = ACTIONS(1424), - [anon_sym_nullptr] = ACTIONS(1424), + [sym_identifier] = ACTIONS(1434), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1434), + [aux_sym_preproc_def_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token2] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), + [aux_sym_preproc_else_token1] = ACTIONS(1434), + [aux_sym_preproc_elif_token1] = ACTIONS(1434), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1434), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1434), + [sym_preproc_directive] = ACTIONS(1434), + [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym___extension__] = ACTIONS(1434), + [anon_sym_typedef] = ACTIONS(1434), + [anon_sym_extern] = ACTIONS(1434), + [anon_sym___attribute__] = ACTIONS(1434), + [anon_sym___scanf] = ACTIONS(1434), + [anon_sym___printf] = ACTIONS(1434), + [anon_sym___read_mostly] = ACTIONS(1434), + [anon_sym___must_hold] = ACTIONS(1434), + [anon_sym___ro_after_init] = ACTIONS(1434), + [anon_sym___noreturn] = ACTIONS(1434), + [anon_sym___cold] = ACTIONS(1434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), + [anon_sym___declspec] = ACTIONS(1434), + [anon_sym___init] = ACTIONS(1434), + [anon_sym___exit] = ACTIONS(1434), + [anon_sym___cdecl] = ACTIONS(1434), + [anon_sym___clrcall] = ACTIONS(1434), + [anon_sym___stdcall] = ACTIONS(1434), + [anon_sym___fastcall] = ACTIONS(1434), + [anon_sym___thiscall] = ACTIONS(1434), + [anon_sym___vectorcall] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1434), + [anon_sym_unsigned] = ACTIONS(1434), + [anon_sym_long] = ACTIONS(1434), + [anon_sym_short] = ACTIONS(1434), + [anon_sym_static] = ACTIONS(1434), + [anon_sym_auto] = ACTIONS(1434), + [anon_sym_register] = ACTIONS(1434), + [anon_sym_inline] = ACTIONS(1434), + [anon_sym___inline] = ACTIONS(1434), + [anon_sym___inline__] = ACTIONS(1434), + [anon_sym___forceinline] = ACTIONS(1434), + [anon_sym_thread_local] = ACTIONS(1434), + [anon_sym___thread] = ACTIONS(1434), + [anon_sym_const] = ACTIONS(1434), + [anon_sym_constexpr] = ACTIONS(1434), + [anon_sym_volatile] = ACTIONS(1434), + [anon_sym_restrict] = ACTIONS(1434), + [anon_sym___restrict__] = ACTIONS(1434), + [anon_sym__Atomic] = ACTIONS(1434), + [anon_sym__Noreturn] = ACTIONS(1434), + [anon_sym_noreturn] = ACTIONS(1434), + [anon_sym_alignas] = ACTIONS(1434), + [anon_sym__Alignas] = ACTIONS(1434), + [sym_primitive_type] = ACTIONS(1434), + [anon_sym_enum] = ACTIONS(1434), + [anon_sym_struct] = ACTIONS(1434), + [anon_sym_union] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1434), + [anon_sym_switch] = ACTIONS(1434), + [anon_sym_case] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_while] = ACTIONS(1434), + [anon_sym_do] = ACTIONS(1434), + [anon_sym_for] = ACTIONS(1434), + [anon_sym_return] = ACTIONS(1434), + [anon_sym_break] = ACTIONS(1434), + [anon_sym_continue] = ACTIONS(1434), + [anon_sym_goto] = ACTIONS(1434), + [anon_sym___try] = ACTIONS(1434), + [anon_sym___leave] = ACTIONS(1434), + [anon_sym_DASH_DASH] = ACTIONS(1436), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1434), + [anon_sym___alignof__] = ACTIONS(1434), + [anon_sym___alignof] = ACTIONS(1434), + [anon_sym__alignof] = ACTIONS(1434), + [anon_sym_alignof] = ACTIONS(1434), + [anon_sym__Alignof] = ACTIONS(1434), + [anon_sym_offsetof] = ACTIONS(1434), + [anon_sym__Generic] = ACTIONS(1434), + [anon_sym_asm] = ACTIONS(1434), + [anon_sym___asm__] = ACTIONS(1434), + [sym_number_literal] = ACTIONS(1436), + [anon_sym_L_SQUOTE] = ACTIONS(1436), + [anon_sym_u_SQUOTE] = ACTIONS(1436), + [anon_sym_U_SQUOTE] = ACTIONS(1436), + [anon_sym_u8_SQUOTE] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_L_DQUOTE] = ACTIONS(1436), + [anon_sym_u_DQUOTE] = ACTIONS(1436), + [anon_sym_U_DQUOTE] = ACTIONS(1436), + [anon_sym_u8_DQUOTE] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [anon_sym_NULL] = ACTIONS(1434), + [anon_sym_nullptr] = ACTIONS(1434), [sym_comment] = ACTIONS(5), }, [146] = { - [sym_identifier] = ACTIONS(1428), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1428), - [aux_sym_preproc_def_token1] = ACTIONS(1428), - [aux_sym_preproc_if_token1] = ACTIONS(1428), - [aux_sym_preproc_if_token2] = ACTIONS(1428), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1428), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1428), - [aux_sym_preproc_else_token1] = ACTIONS(1428), - [aux_sym_preproc_elif_token1] = ACTIONS(1428), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1428), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1428), - [sym_preproc_directive] = ACTIONS(1428), - [anon_sym_LPAREN2] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym___extension__] = ACTIONS(1428), - [anon_sym_typedef] = ACTIONS(1428), - [anon_sym_extern] = ACTIONS(1428), - [anon_sym___attribute__] = ACTIONS(1428), - [anon_sym___scanf] = ACTIONS(1428), - [anon_sym___printf] = ACTIONS(1428), - [anon_sym___read_mostly] = ACTIONS(1428), - [anon_sym___must_hold] = ACTIONS(1428), - [anon_sym___ro_after_init] = ACTIONS(1428), - [anon_sym___noreturn] = ACTIONS(1428), - [anon_sym___cold] = ACTIONS(1428), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1430), - [anon_sym___declspec] = ACTIONS(1428), - [anon_sym___init] = ACTIONS(1428), - [anon_sym___exit] = ACTIONS(1428), - [anon_sym___cdecl] = ACTIONS(1428), - [anon_sym___clrcall] = ACTIONS(1428), - [anon_sym___stdcall] = ACTIONS(1428), - [anon_sym___fastcall] = ACTIONS(1428), - [anon_sym___thiscall] = ACTIONS(1428), - [anon_sym___vectorcall] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_signed] = ACTIONS(1428), - [anon_sym_unsigned] = ACTIONS(1428), - [anon_sym_long] = ACTIONS(1428), - [anon_sym_short] = ACTIONS(1428), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_auto] = ACTIONS(1428), - [anon_sym_register] = ACTIONS(1428), - [anon_sym_inline] = ACTIONS(1428), - [anon_sym___inline] = ACTIONS(1428), - [anon_sym___inline__] = ACTIONS(1428), - [anon_sym___forceinline] = ACTIONS(1428), - [anon_sym_thread_local] = ACTIONS(1428), - [anon_sym___thread] = ACTIONS(1428), - [anon_sym_const] = ACTIONS(1428), - [anon_sym_constexpr] = ACTIONS(1428), - [anon_sym_volatile] = ACTIONS(1428), - [anon_sym_restrict] = ACTIONS(1428), - [anon_sym___restrict__] = ACTIONS(1428), - [anon_sym__Atomic] = ACTIONS(1428), - [anon_sym__Noreturn] = ACTIONS(1428), - [anon_sym_noreturn] = ACTIONS(1428), - [anon_sym_alignas] = ACTIONS(1428), - [anon_sym__Alignas] = ACTIONS(1428), - [sym_primitive_type] = ACTIONS(1428), - [anon_sym_enum] = ACTIONS(1428), - [anon_sym_struct] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1428), - [anon_sym_if] = ACTIONS(1428), - [anon_sym_switch] = ACTIONS(1428), - [anon_sym_case] = ACTIONS(1428), - [anon_sym_default] = ACTIONS(1428), - [anon_sym_while] = ACTIONS(1428), - [anon_sym_do] = ACTIONS(1428), - [anon_sym_for] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1428), - [anon_sym_break] = ACTIONS(1428), - [anon_sym_continue] = ACTIONS(1428), - [anon_sym_goto] = ACTIONS(1428), - [anon_sym___try] = ACTIONS(1428), - [anon_sym___leave] = ACTIONS(1428), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_sizeof] = ACTIONS(1428), - [anon_sym___alignof__] = ACTIONS(1428), - [anon_sym___alignof] = ACTIONS(1428), - [anon_sym__alignof] = ACTIONS(1428), - [anon_sym_alignof] = ACTIONS(1428), - [anon_sym__Alignof] = ACTIONS(1428), - [anon_sym_offsetof] = ACTIONS(1428), - [anon_sym__Generic] = ACTIONS(1428), - [anon_sym_asm] = ACTIONS(1428), - [anon_sym___asm__] = ACTIONS(1428), - [sym_number_literal] = ACTIONS(1430), - [anon_sym_L_SQUOTE] = ACTIONS(1430), - [anon_sym_u_SQUOTE] = ACTIONS(1430), - [anon_sym_U_SQUOTE] = ACTIONS(1430), - [anon_sym_u8_SQUOTE] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_L_DQUOTE] = ACTIONS(1430), - [anon_sym_u_DQUOTE] = ACTIONS(1430), - [anon_sym_U_DQUOTE] = ACTIONS(1430), - [anon_sym_u8_DQUOTE] = ACTIONS(1430), - [anon_sym_DQUOTE] = ACTIONS(1430), - [sym_true] = ACTIONS(1428), - [sym_false] = ACTIONS(1428), - [anon_sym_NULL] = ACTIONS(1428), - [anon_sym_nullptr] = ACTIONS(1428), + [sym_identifier] = ACTIONS(1438), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1438), + [aux_sym_preproc_def_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token2] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), + [aux_sym_preproc_else_token1] = ACTIONS(1438), + [aux_sym_preproc_elif_token1] = ACTIONS(1438), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1438), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1438), + [sym_preproc_directive] = ACTIONS(1438), + [anon_sym_LPAREN2] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_TILDE] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1440), + [anon_sym___extension__] = ACTIONS(1438), + [anon_sym_typedef] = ACTIONS(1438), + [anon_sym_extern] = ACTIONS(1438), + [anon_sym___attribute__] = ACTIONS(1438), + [anon_sym___scanf] = ACTIONS(1438), + [anon_sym___printf] = ACTIONS(1438), + [anon_sym___read_mostly] = ACTIONS(1438), + [anon_sym___must_hold] = ACTIONS(1438), + [anon_sym___ro_after_init] = ACTIONS(1438), + [anon_sym___noreturn] = ACTIONS(1438), + [anon_sym___cold] = ACTIONS(1438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), + [anon_sym___declspec] = ACTIONS(1438), + [anon_sym___init] = ACTIONS(1438), + [anon_sym___exit] = ACTIONS(1438), + [anon_sym___cdecl] = ACTIONS(1438), + [anon_sym___clrcall] = ACTIONS(1438), + [anon_sym___stdcall] = ACTIONS(1438), + [anon_sym___fastcall] = ACTIONS(1438), + [anon_sym___thiscall] = ACTIONS(1438), + [anon_sym___vectorcall] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_signed] = ACTIONS(1438), + [anon_sym_unsigned] = ACTIONS(1438), + [anon_sym_long] = ACTIONS(1438), + [anon_sym_short] = ACTIONS(1438), + [anon_sym_static] = ACTIONS(1438), + [anon_sym_auto] = ACTIONS(1438), + [anon_sym_register] = ACTIONS(1438), + [anon_sym_inline] = ACTIONS(1438), + [anon_sym___inline] = ACTIONS(1438), + [anon_sym___inline__] = ACTIONS(1438), + [anon_sym___forceinline] = ACTIONS(1438), + [anon_sym_thread_local] = ACTIONS(1438), + [anon_sym___thread] = ACTIONS(1438), + [anon_sym_const] = ACTIONS(1438), + [anon_sym_constexpr] = ACTIONS(1438), + [anon_sym_volatile] = ACTIONS(1438), + [anon_sym_restrict] = ACTIONS(1438), + [anon_sym___restrict__] = ACTIONS(1438), + [anon_sym__Atomic] = ACTIONS(1438), + [anon_sym__Noreturn] = ACTIONS(1438), + [anon_sym_noreturn] = ACTIONS(1438), + [anon_sym_alignas] = ACTIONS(1438), + [anon_sym__Alignas] = ACTIONS(1438), + [sym_primitive_type] = ACTIONS(1438), + [anon_sym_enum] = ACTIONS(1438), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_union] = ACTIONS(1438), + [anon_sym_if] = ACTIONS(1438), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1438), + [anon_sym_do] = ACTIONS(1438), + [anon_sym_for] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_goto] = ACTIONS(1438), + [anon_sym___try] = ACTIONS(1438), + [anon_sym___leave] = ACTIONS(1438), + [anon_sym_DASH_DASH] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1440), + [anon_sym_sizeof] = ACTIONS(1438), + [anon_sym___alignof__] = ACTIONS(1438), + [anon_sym___alignof] = ACTIONS(1438), + [anon_sym__alignof] = ACTIONS(1438), + [anon_sym_alignof] = ACTIONS(1438), + [anon_sym__Alignof] = ACTIONS(1438), + [anon_sym_offsetof] = ACTIONS(1438), + [anon_sym__Generic] = ACTIONS(1438), + [anon_sym_asm] = ACTIONS(1438), + [anon_sym___asm__] = ACTIONS(1438), + [sym_number_literal] = ACTIONS(1440), + [anon_sym_L_SQUOTE] = ACTIONS(1440), + [anon_sym_u_SQUOTE] = ACTIONS(1440), + [anon_sym_U_SQUOTE] = ACTIONS(1440), + [anon_sym_u8_SQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1440), + [anon_sym_L_DQUOTE] = ACTIONS(1440), + [anon_sym_u_DQUOTE] = ACTIONS(1440), + [anon_sym_U_DQUOTE] = ACTIONS(1440), + [anon_sym_u8_DQUOTE] = ACTIONS(1440), + [anon_sym_DQUOTE] = ACTIONS(1440), + [sym_true] = ACTIONS(1438), + [sym_false] = ACTIONS(1438), + [anon_sym_NULL] = ACTIONS(1438), + [anon_sym_nullptr] = ACTIONS(1438), [sym_comment] = ACTIONS(5), }, [147] = { - [sym_identifier] = ACTIONS(1432), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1432), - [aux_sym_preproc_def_token1] = ACTIONS(1432), - [aux_sym_preproc_if_token1] = ACTIONS(1432), - [aux_sym_preproc_if_token2] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), - [aux_sym_preproc_else_token1] = ACTIONS(1432), - [aux_sym_preproc_elif_token1] = ACTIONS(1432), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1432), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1432), - [sym_preproc_directive] = ACTIONS(1432), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym___extension__] = ACTIONS(1432), - [anon_sym_typedef] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1432), - [anon_sym___attribute__] = ACTIONS(1432), - [anon_sym___scanf] = ACTIONS(1432), - [anon_sym___printf] = ACTIONS(1432), - [anon_sym___read_mostly] = ACTIONS(1432), - [anon_sym___must_hold] = ACTIONS(1432), - [anon_sym___ro_after_init] = ACTIONS(1432), - [anon_sym___noreturn] = ACTIONS(1432), - [anon_sym___cold] = ACTIONS(1432), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), - [anon_sym___declspec] = ACTIONS(1432), - [anon_sym___init] = ACTIONS(1432), - [anon_sym___exit] = ACTIONS(1432), - [anon_sym___cdecl] = ACTIONS(1432), - [anon_sym___clrcall] = ACTIONS(1432), - [anon_sym___stdcall] = ACTIONS(1432), - [anon_sym___fastcall] = ACTIONS(1432), - [anon_sym___thiscall] = ACTIONS(1432), - [anon_sym___vectorcall] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_signed] = ACTIONS(1432), - [anon_sym_unsigned] = ACTIONS(1432), - [anon_sym_long] = ACTIONS(1432), - [anon_sym_short] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_auto] = ACTIONS(1432), - [anon_sym_register] = ACTIONS(1432), - [anon_sym_inline] = ACTIONS(1432), - [anon_sym___inline] = ACTIONS(1432), - [anon_sym___inline__] = ACTIONS(1432), - [anon_sym___forceinline] = ACTIONS(1432), - [anon_sym_thread_local] = ACTIONS(1432), - [anon_sym___thread] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_constexpr] = ACTIONS(1432), - [anon_sym_volatile] = ACTIONS(1432), - [anon_sym_restrict] = ACTIONS(1432), - [anon_sym___restrict__] = ACTIONS(1432), - [anon_sym__Atomic] = ACTIONS(1432), - [anon_sym__Noreturn] = ACTIONS(1432), - [anon_sym_noreturn] = ACTIONS(1432), - [anon_sym_alignas] = ACTIONS(1432), - [anon_sym__Alignas] = ACTIONS(1432), - [sym_primitive_type] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_struct] = ACTIONS(1432), - [anon_sym_union] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_case] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_goto] = ACTIONS(1432), - [anon_sym___try] = ACTIONS(1432), - [anon_sym___leave] = ACTIONS(1432), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_sizeof] = ACTIONS(1432), - [anon_sym___alignof__] = ACTIONS(1432), - [anon_sym___alignof] = ACTIONS(1432), - [anon_sym__alignof] = ACTIONS(1432), - [anon_sym_alignof] = ACTIONS(1432), - [anon_sym__Alignof] = ACTIONS(1432), - [anon_sym_offsetof] = ACTIONS(1432), - [anon_sym__Generic] = ACTIONS(1432), - [anon_sym_asm] = ACTIONS(1432), - [anon_sym___asm__] = ACTIONS(1432), - [sym_number_literal] = ACTIONS(1434), - [anon_sym_L_SQUOTE] = ACTIONS(1434), - [anon_sym_u_SQUOTE] = ACTIONS(1434), - [anon_sym_U_SQUOTE] = ACTIONS(1434), - [anon_sym_u8_SQUOTE] = ACTIONS(1434), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_L_DQUOTE] = ACTIONS(1434), - [anon_sym_u_DQUOTE] = ACTIONS(1434), - [anon_sym_U_DQUOTE] = ACTIONS(1434), - [anon_sym_u8_DQUOTE] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(1434), - [sym_true] = ACTIONS(1432), - [sym_false] = ACTIONS(1432), - [anon_sym_NULL] = ACTIONS(1432), - [anon_sym_nullptr] = ACTIONS(1432), + [sym_identifier] = ACTIONS(1442), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1442), + [aux_sym_preproc_def_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token2] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), + [aux_sym_preproc_else_token1] = ACTIONS(1442), + [aux_sym_preproc_elif_token1] = ACTIONS(1442), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1442), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1442), + [sym_preproc_directive] = ACTIONS(1442), + [anon_sym_LPAREN2] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym___extension__] = ACTIONS(1442), + [anon_sym_typedef] = ACTIONS(1442), + [anon_sym_extern] = ACTIONS(1442), + [anon_sym___attribute__] = ACTIONS(1442), + [anon_sym___scanf] = ACTIONS(1442), + [anon_sym___printf] = ACTIONS(1442), + [anon_sym___read_mostly] = ACTIONS(1442), + [anon_sym___must_hold] = ACTIONS(1442), + [anon_sym___ro_after_init] = ACTIONS(1442), + [anon_sym___noreturn] = ACTIONS(1442), + [anon_sym___cold] = ACTIONS(1442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), + [anon_sym___declspec] = ACTIONS(1442), + [anon_sym___init] = ACTIONS(1442), + [anon_sym___exit] = ACTIONS(1442), + [anon_sym___cdecl] = ACTIONS(1442), + [anon_sym___clrcall] = ACTIONS(1442), + [anon_sym___stdcall] = ACTIONS(1442), + [anon_sym___fastcall] = ACTIONS(1442), + [anon_sym___thiscall] = ACTIONS(1442), + [anon_sym___vectorcall] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_signed] = ACTIONS(1442), + [anon_sym_unsigned] = ACTIONS(1442), + [anon_sym_long] = ACTIONS(1442), + [anon_sym_short] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_auto] = ACTIONS(1442), + [anon_sym_register] = ACTIONS(1442), + [anon_sym_inline] = ACTIONS(1442), + [anon_sym___inline] = ACTIONS(1442), + [anon_sym___inline__] = ACTIONS(1442), + [anon_sym___forceinline] = ACTIONS(1442), + [anon_sym_thread_local] = ACTIONS(1442), + [anon_sym___thread] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_constexpr] = ACTIONS(1442), + [anon_sym_volatile] = ACTIONS(1442), + [anon_sym_restrict] = ACTIONS(1442), + [anon_sym___restrict__] = ACTIONS(1442), + [anon_sym__Atomic] = ACTIONS(1442), + [anon_sym__Noreturn] = ACTIONS(1442), + [anon_sym_noreturn] = ACTIONS(1442), + [anon_sym_alignas] = ACTIONS(1442), + [anon_sym__Alignas] = ACTIONS(1442), + [sym_primitive_type] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_case] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_do] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_goto] = ACTIONS(1442), + [anon_sym___try] = ACTIONS(1442), + [anon_sym___leave] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [anon_sym_sizeof] = ACTIONS(1442), + [anon_sym___alignof__] = ACTIONS(1442), + [anon_sym___alignof] = ACTIONS(1442), + [anon_sym__alignof] = ACTIONS(1442), + [anon_sym_alignof] = ACTIONS(1442), + [anon_sym__Alignof] = ACTIONS(1442), + [anon_sym_offsetof] = ACTIONS(1442), + [anon_sym__Generic] = ACTIONS(1442), + [anon_sym_asm] = ACTIONS(1442), + [anon_sym___asm__] = ACTIONS(1442), + [sym_number_literal] = ACTIONS(1444), + [anon_sym_L_SQUOTE] = ACTIONS(1444), + [anon_sym_u_SQUOTE] = ACTIONS(1444), + [anon_sym_U_SQUOTE] = ACTIONS(1444), + [anon_sym_u8_SQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_L_DQUOTE] = ACTIONS(1444), + [anon_sym_u_DQUOTE] = ACTIONS(1444), + [anon_sym_U_DQUOTE] = ACTIONS(1444), + [anon_sym_u8_DQUOTE] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [sym_true] = ACTIONS(1442), + [sym_false] = ACTIONS(1442), + [anon_sym_NULL] = ACTIONS(1442), + [anon_sym_nullptr] = ACTIONS(1442), [sym_comment] = ACTIONS(5), }, [148] = { - [sym_identifier] = ACTIONS(1436), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1436), - [aux_sym_preproc_def_token1] = ACTIONS(1436), - [aux_sym_preproc_if_token1] = ACTIONS(1436), - [aux_sym_preproc_if_token2] = ACTIONS(1436), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), - [aux_sym_preproc_else_token1] = ACTIONS(1436), - [aux_sym_preproc_elif_token1] = ACTIONS(1436), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1436), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1436), - [sym_preproc_directive] = ACTIONS(1436), - [anon_sym_LPAREN2] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1436), - [anon_sym_typedef] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym___attribute__] = ACTIONS(1436), - [anon_sym___scanf] = ACTIONS(1436), - [anon_sym___printf] = ACTIONS(1436), - [anon_sym___read_mostly] = ACTIONS(1436), - [anon_sym___must_hold] = ACTIONS(1436), - [anon_sym___ro_after_init] = ACTIONS(1436), - [anon_sym___noreturn] = ACTIONS(1436), - [anon_sym___cold] = ACTIONS(1436), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), - [anon_sym___declspec] = ACTIONS(1436), - [anon_sym___init] = ACTIONS(1436), - [anon_sym___exit] = ACTIONS(1436), - [anon_sym___cdecl] = ACTIONS(1436), - [anon_sym___clrcall] = ACTIONS(1436), - [anon_sym___stdcall] = ACTIONS(1436), - [anon_sym___fastcall] = ACTIONS(1436), - [anon_sym___thiscall] = ACTIONS(1436), - [anon_sym___vectorcall] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1438), - [anon_sym_signed] = ACTIONS(1436), - [anon_sym_unsigned] = ACTIONS(1436), - [anon_sym_long] = ACTIONS(1436), - [anon_sym_short] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_auto] = ACTIONS(1436), - [anon_sym_register] = ACTIONS(1436), - [anon_sym_inline] = ACTIONS(1436), - [anon_sym___inline] = ACTIONS(1436), - [anon_sym___inline__] = ACTIONS(1436), - [anon_sym___forceinline] = ACTIONS(1436), - [anon_sym_thread_local] = ACTIONS(1436), - [anon_sym___thread] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_constexpr] = ACTIONS(1436), - [anon_sym_volatile] = ACTIONS(1436), - [anon_sym_restrict] = ACTIONS(1436), - [anon_sym___restrict__] = ACTIONS(1436), - [anon_sym__Atomic] = ACTIONS(1436), - [anon_sym__Noreturn] = ACTIONS(1436), - [anon_sym_noreturn] = ACTIONS(1436), - [anon_sym_alignas] = ACTIONS(1436), - [anon_sym__Alignas] = ACTIONS(1436), - [sym_primitive_type] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1436), - [anon_sym_struct] = ACTIONS(1436), - [anon_sym_union] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1436), - [anon_sym_case] = ACTIONS(1436), - [anon_sym_default] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_goto] = ACTIONS(1436), - [anon_sym___try] = ACTIONS(1436), - [anon_sym___leave] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_sizeof] = ACTIONS(1436), - [anon_sym___alignof__] = ACTIONS(1436), - [anon_sym___alignof] = ACTIONS(1436), - [anon_sym__alignof] = ACTIONS(1436), - [anon_sym_alignof] = ACTIONS(1436), - [anon_sym__Alignof] = ACTIONS(1436), - [anon_sym_offsetof] = ACTIONS(1436), - [anon_sym__Generic] = ACTIONS(1436), - [anon_sym_asm] = ACTIONS(1436), - [anon_sym___asm__] = ACTIONS(1436), - [sym_number_literal] = ACTIONS(1438), - [anon_sym_L_SQUOTE] = ACTIONS(1438), - [anon_sym_u_SQUOTE] = ACTIONS(1438), - [anon_sym_U_SQUOTE] = ACTIONS(1438), - [anon_sym_u8_SQUOTE] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1438), - [anon_sym_L_DQUOTE] = ACTIONS(1438), - [anon_sym_u_DQUOTE] = ACTIONS(1438), - [anon_sym_U_DQUOTE] = ACTIONS(1438), - [anon_sym_u8_DQUOTE] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1438), - [sym_true] = ACTIONS(1436), - [sym_false] = ACTIONS(1436), - [anon_sym_NULL] = ACTIONS(1436), - [anon_sym_nullptr] = ACTIONS(1436), + [sym_identifier] = ACTIONS(1446), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1446), + [aux_sym_preproc_def_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token2] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), + [aux_sym_preproc_else_token1] = ACTIONS(1446), + [aux_sym_preproc_elif_token1] = ACTIONS(1446), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1446), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1446), + [sym_preproc_directive] = ACTIONS(1446), + [anon_sym_LPAREN2] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym___extension__] = ACTIONS(1446), + [anon_sym_typedef] = ACTIONS(1446), + [anon_sym_extern] = ACTIONS(1446), + [anon_sym___attribute__] = ACTIONS(1446), + [anon_sym___scanf] = ACTIONS(1446), + [anon_sym___printf] = ACTIONS(1446), + [anon_sym___read_mostly] = ACTIONS(1446), + [anon_sym___must_hold] = ACTIONS(1446), + [anon_sym___ro_after_init] = ACTIONS(1446), + [anon_sym___noreturn] = ACTIONS(1446), + [anon_sym___cold] = ACTIONS(1446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym___declspec] = ACTIONS(1446), + [anon_sym___init] = ACTIONS(1446), + [anon_sym___exit] = ACTIONS(1446), + [anon_sym___cdecl] = ACTIONS(1446), + [anon_sym___clrcall] = ACTIONS(1446), + [anon_sym___stdcall] = ACTIONS(1446), + [anon_sym___fastcall] = ACTIONS(1446), + [anon_sym___thiscall] = ACTIONS(1446), + [anon_sym___vectorcall] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_signed] = ACTIONS(1446), + [anon_sym_unsigned] = ACTIONS(1446), + [anon_sym_long] = ACTIONS(1446), + [anon_sym_short] = ACTIONS(1446), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_auto] = ACTIONS(1446), + [anon_sym_register] = ACTIONS(1446), + [anon_sym_inline] = ACTIONS(1446), + [anon_sym___inline] = ACTIONS(1446), + [anon_sym___inline__] = ACTIONS(1446), + [anon_sym___forceinline] = ACTIONS(1446), + [anon_sym_thread_local] = ACTIONS(1446), + [anon_sym___thread] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_constexpr] = ACTIONS(1446), + [anon_sym_volatile] = ACTIONS(1446), + [anon_sym_restrict] = ACTIONS(1446), + [anon_sym___restrict__] = ACTIONS(1446), + [anon_sym__Atomic] = ACTIONS(1446), + [anon_sym__Noreturn] = ACTIONS(1446), + [anon_sym_noreturn] = ACTIONS(1446), + [anon_sym_alignas] = ACTIONS(1446), + [anon_sym__Alignas] = ACTIONS(1446), + [sym_primitive_type] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_switch] = ACTIONS(1446), + [anon_sym_case] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_do] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_goto] = ACTIONS(1446), + [anon_sym___try] = ACTIONS(1446), + [anon_sym___leave] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1446), + [anon_sym___alignof__] = ACTIONS(1446), + [anon_sym___alignof] = ACTIONS(1446), + [anon_sym__alignof] = ACTIONS(1446), + [anon_sym_alignof] = ACTIONS(1446), + [anon_sym__Alignof] = ACTIONS(1446), + [anon_sym_offsetof] = ACTIONS(1446), + [anon_sym__Generic] = ACTIONS(1446), + [anon_sym_asm] = ACTIONS(1446), + [anon_sym___asm__] = ACTIONS(1446), + [sym_number_literal] = ACTIONS(1448), + [anon_sym_L_SQUOTE] = ACTIONS(1448), + [anon_sym_u_SQUOTE] = ACTIONS(1448), + [anon_sym_U_SQUOTE] = ACTIONS(1448), + [anon_sym_u8_SQUOTE] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_L_DQUOTE] = ACTIONS(1448), + [anon_sym_u_DQUOTE] = ACTIONS(1448), + [anon_sym_U_DQUOTE] = ACTIONS(1448), + [anon_sym_u8_DQUOTE] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_true] = ACTIONS(1446), + [sym_false] = ACTIONS(1446), + [anon_sym_NULL] = ACTIONS(1446), + [anon_sym_nullptr] = ACTIONS(1446), [sym_comment] = ACTIONS(5), }, [149] = { - [sym_identifier] = ACTIONS(1440), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1440), - [aux_sym_preproc_def_token1] = ACTIONS(1440), - [aux_sym_preproc_if_token1] = ACTIONS(1440), - [aux_sym_preproc_if_token2] = ACTIONS(1440), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), - [aux_sym_preproc_else_token1] = ACTIONS(1440), - [aux_sym_preproc_elif_token1] = ACTIONS(1440), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1440), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1440), - [sym_preproc_directive] = ACTIONS(1440), - [anon_sym_LPAREN2] = ACTIONS(1442), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym___extension__] = ACTIONS(1440), - [anon_sym_typedef] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym___attribute__] = ACTIONS(1440), - [anon_sym___scanf] = ACTIONS(1440), - [anon_sym___printf] = ACTIONS(1440), - [anon_sym___read_mostly] = ACTIONS(1440), - [anon_sym___must_hold] = ACTIONS(1440), - [anon_sym___ro_after_init] = ACTIONS(1440), - [anon_sym___noreturn] = ACTIONS(1440), - [anon_sym___cold] = ACTIONS(1440), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), - [anon_sym___declspec] = ACTIONS(1440), - [anon_sym___init] = ACTIONS(1440), - [anon_sym___exit] = ACTIONS(1440), - [anon_sym___cdecl] = ACTIONS(1440), - [anon_sym___clrcall] = ACTIONS(1440), - [anon_sym___stdcall] = ACTIONS(1440), - [anon_sym___fastcall] = ACTIONS(1440), - [anon_sym___thiscall] = ACTIONS(1440), - [anon_sym___vectorcall] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1442), - [anon_sym_signed] = ACTIONS(1440), - [anon_sym_unsigned] = ACTIONS(1440), - [anon_sym_long] = ACTIONS(1440), - [anon_sym_short] = ACTIONS(1440), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_auto] = ACTIONS(1440), - [anon_sym_register] = ACTIONS(1440), - [anon_sym_inline] = ACTIONS(1440), - [anon_sym___inline] = ACTIONS(1440), - [anon_sym___inline__] = ACTIONS(1440), - [anon_sym___forceinline] = ACTIONS(1440), - [anon_sym_thread_local] = ACTIONS(1440), - [anon_sym___thread] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_constexpr] = ACTIONS(1440), - [anon_sym_volatile] = ACTIONS(1440), - [anon_sym_restrict] = ACTIONS(1440), - [anon_sym___restrict__] = ACTIONS(1440), - [anon_sym__Atomic] = ACTIONS(1440), - [anon_sym__Noreturn] = ACTIONS(1440), - [anon_sym_noreturn] = ACTIONS(1440), - [anon_sym_alignas] = ACTIONS(1440), - [anon_sym__Alignas] = ACTIONS(1440), - [sym_primitive_type] = ACTIONS(1440), - [anon_sym_enum] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_union] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1440), - [anon_sym_case] = ACTIONS(1440), - [anon_sym_default] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_goto] = ACTIONS(1440), - [anon_sym___try] = ACTIONS(1440), - [anon_sym___leave] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_sizeof] = ACTIONS(1440), - [anon_sym___alignof__] = ACTIONS(1440), - [anon_sym___alignof] = ACTIONS(1440), - [anon_sym__alignof] = ACTIONS(1440), - [anon_sym_alignof] = ACTIONS(1440), - [anon_sym__Alignof] = ACTIONS(1440), - [anon_sym_offsetof] = ACTIONS(1440), - [anon_sym__Generic] = ACTIONS(1440), - [anon_sym_asm] = ACTIONS(1440), - [anon_sym___asm__] = ACTIONS(1440), - [sym_number_literal] = ACTIONS(1442), - [anon_sym_L_SQUOTE] = ACTIONS(1442), - [anon_sym_u_SQUOTE] = ACTIONS(1442), - [anon_sym_U_SQUOTE] = ACTIONS(1442), - [anon_sym_u8_SQUOTE] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_L_DQUOTE] = ACTIONS(1442), - [anon_sym_u_DQUOTE] = ACTIONS(1442), - [anon_sym_U_DQUOTE] = ACTIONS(1442), - [anon_sym_u8_DQUOTE] = ACTIONS(1442), - [anon_sym_DQUOTE] = ACTIONS(1442), - [sym_true] = ACTIONS(1440), - [sym_false] = ACTIONS(1440), - [anon_sym_NULL] = ACTIONS(1440), - [anon_sym_nullptr] = ACTIONS(1440), + [sym_identifier] = ACTIONS(1450), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1450), + [aux_sym_preproc_def_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token2] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), + [aux_sym_preproc_else_token1] = ACTIONS(1450), + [aux_sym_preproc_elif_token1] = ACTIONS(1450), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1450), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1450), + [sym_preproc_directive] = ACTIONS(1450), + [anon_sym_LPAREN2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym___extension__] = ACTIONS(1450), + [anon_sym_typedef] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym___attribute__] = ACTIONS(1450), + [anon_sym___scanf] = ACTIONS(1450), + [anon_sym___printf] = ACTIONS(1450), + [anon_sym___read_mostly] = ACTIONS(1450), + [anon_sym___must_hold] = ACTIONS(1450), + [anon_sym___ro_after_init] = ACTIONS(1450), + [anon_sym___noreturn] = ACTIONS(1450), + [anon_sym___cold] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), + [anon_sym___declspec] = ACTIONS(1450), + [anon_sym___init] = ACTIONS(1450), + [anon_sym___exit] = ACTIONS(1450), + [anon_sym___cdecl] = ACTIONS(1450), + [anon_sym___clrcall] = ACTIONS(1450), + [anon_sym___stdcall] = ACTIONS(1450), + [anon_sym___fastcall] = ACTIONS(1450), + [anon_sym___thiscall] = ACTIONS(1450), + [anon_sym___vectorcall] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_signed] = ACTIONS(1450), + [anon_sym_unsigned] = ACTIONS(1450), + [anon_sym_long] = ACTIONS(1450), + [anon_sym_short] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_auto] = ACTIONS(1450), + [anon_sym_register] = ACTIONS(1450), + [anon_sym_inline] = ACTIONS(1450), + [anon_sym___inline] = ACTIONS(1450), + [anon_sym___inline__] = ACTIONS(1450), + [anon_sym___forceinline] = ACTIONS(1450), + [anon_sym_thread_local] = ACTIONS(1450), + [anon_sym___thread] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_constexpr] = ACTIONS(1450), + [anon_sym_volatile] = ACTIONS(1450), + [anon_sym_restrict] = ACTIONS(1450), + [anon_sym___restrict__] = ACTIONS(1450), + [anon_sym__Atomic] = ACTIONS(1450), + [anon_sym__Noreturn] = ACTIONS(1450), + [anon_sym_noreturn] = ACTIONS(1450), + [anon_sym_alignas] = ACTIONS(1450), + [anon_sym__Alignas] = ACTIONS(1450), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_switch] = ACTIONS(1450), + [anon_sym_case] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_do] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_goto] = ACTIONS(1450), + [anon_sym___try] = ACTIONS(1450), + [anon_sym___leave] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [anon_sym_sizeof] = ACTIONS(1450), + [anon_sym___alignof__] = ACTIONS(1450), + [anon_sym___alignof] = ACTIONS(1450), + [anon_sym__alignof] = ACTIONS(1450), + [anon_sym_alignof] = ACTIONS(1450), + [anon_sym__Alignof] = ACTIONS(1450), + [anon_sym_offsetof] = ACTIONS(1450), + [anon_sym__Generic] = ACTIONS(1450), + [anon_sym_asm] = ACTIONS(1450), + [anon_sym___asm__] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(1452), + [anon_sym_L_SQUOTE] = ACTIONS(1452), + [anon_sym_u_SQUOTE] = ACTIONS(1452), + [anon_sym_U_SQUOTE] = ACTIONS(1452), + [anon_sym_u8_SQUOTE] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_L_DQUOTE] = ACTIONS(1452), + [anon_sym_u_DQUOTE] = ACTIONS(1452), + [anon_sym_U_DQUOTE] = ACTIONS(1452), + [anon_sym_u8_DQUOTE] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [sym_true] = ACTIONS(1450), + [sym_false] = ACTIONS(1450), + [anon_sym_NULL] = ACTIONS(1450), + [anon_sym_nullptr] = ACTIONS(1450), [sym_comment] = ACTIONS(5), }, [150] = { - [sym_identifier] = ACTIONS(1444), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1444), - [aux_sym_preproc_def_token1] = ACTIONS(1444), - [aux_sym_preproc_if_token1] = ACTIONS(1444), - [aux_sym_preproc_if_token2] = ACTIONS(1444), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), - [aux_sym_preproc_else_token1] = ACTIONS(1444), - [aux_sym_preproc_elif_token1] = ACTIONS(1444), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1444), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1444), - [sym_preproc_directive] = ACTIONS(1444), - [anon_sym_LPAREN2] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_TILDE] = ACTIONS(1446), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1446), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym___extension__] = ACTIONS(1444), - [anon_sym_typedef] = ACTIONS(1444), - [anon_sym_extern] = ACTIONS(1444), - [anon_sym___attribute__] = ACTIONS(1444), - [anon_sym___scanf] = ACTIONS(1444), - [anon_sym___printf] = ACTIONS(1444), - [anon_sym___read_mostly] = ACTIONS(1444), - [anon_sym___must_hold] = ACTIONS(1444), - [anon_sym___ro_after_init] = ACTIONS(1444), - [anon_sym___noreturn] = ACTIONS(1444), - [anon_sym___cold] = ACTIONS(1444), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), - [anon_sym___declspec] = ACTIONS(1444), - [anon_sym___init] = ACTIONS(1444), - [anon_sym___exit] = ACTIONS(1444), - [anon_sym___cdecl] = ACTIONS(1444), - [anon_sym___clrcall] = ACTIONS(1444), - [anon_sym___stdcall] = ACTIONS(1444), - [anon_sym___fastcall] = ACTIONS(1444), - [anon_sym___thiscall] = ACTIONS(1444), - [anon_sym___vectorcall] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_signed] = ACTIONS(1444), - [anon_sym_unsigned] = ACTIONS(1444), - [anon_sym_long] = ACTIONS(1444), - [anon_sym_short] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_auto] = ACTIONS(1444), - [anon_sym_register] = ACTIONS(1444), - [anon_sym_inline] = ACTIONS(1444), - [anon_sym___inline] = ACTIONS(1444), - [anon_sym___inline__] = ACTIONS(1444), - [anon_sym___forceinline] = ACTIONS(1444), - [anon_sym_thread_local] = ACTIONS(1444), - [anon_sym___thread] = ACTIONS(1444), - [anon_sym_const] = ACTIONS(1444), - [anon_sym_constexpr] = ACTIONS(1444), - [anon_sym_volatile] = ACTIONS(1444), - [anon_sym_restrict] = ACTIONS(1444), - [anon_sym___restrict__] = ACTIONS(1444), - [anon_sym__Atomic] = ACTIONS(1444), - [anon_sym__Noreturn] = ACTIONS(1444), - [anon_sym_noreturn] = ACTIONS(1444), - [anon_sym_alignas] = ACTIONS(1444), - [anon_sym__Alignas] = ACTIONS(1444), - [sym_primitive_type] = ACTIONS(1444), - [anon_sym_enum] = ACTIONS(1444), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_union] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_switch] = ACTIONS(1444), - [anon_sym_case] = ACTIONS(1444), - [anon_sym_default] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_do] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_goto] = ACTIONS(1444), - [anon_sym___try] = ACTIONS(1444), - [anon_sym___leave] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_sizeof] = ACTIONS(1444), - [anon_sym___alignof__] = ACTIONS(1444), - [anon_sym___alignof] = ACTIONS(1444), - [anon_sym__alignof] = ACTIONS(1444), - [anon_sym_alignof] = ACTIONS(1444), - [anon_sym__Alignof] = ACTIONS(1444), - [anon_sym_offsetof] = ACTIONS(1444), - [anon_sym__Generic] = ACTIONS(1444), - [anon_sym_asm] = ACTIONS(1444), - [anon_sym___asm__] = ACTIONS(1444), - [sym_number_literal] = ACTIONS(1446), - [anon_sym_L_SQUOTE] = ACTIONS(1446), - [anon_sym_u_SQUOTE] = ACTIONS(1446), - [anon_sym_U_SQUOTE] = ACTIONS(1446), - [anon_sym_u8_SQUOTE] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1446), - [anon_sym_L_DQUOTE] = ACTIONS(1446), - [anon_sym_u_DQUOTE] = ACTIONS(1446), - [anon_sym_U_DQUOTE] = ACTIONS(1446), - [anon_sym_u8_DQUOTE] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(1446), - [sym_true] = ACTIONS(1444), - [sym_false] = ACTIONS(1444), - [anon_sym_NULL] = ACTIONS(1444), - [anon_sym_nullptr] = ACTIONS(1444), + [sym_identifier] = ACTIONS(1454), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1454), + [aux_sym_preproc_def_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token2] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), + [aux_sym_preproc_else_token1] = ACTIONS(1454), + [aux_sym_preproc_elif_token1] = ACTIONS(1454), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), + [sym_preproc_directive] = ACTIONS(1454), + [anon_sym_LPAREN2] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym___extension__] = ACTIONS(1454), + [anon_sym_typedef] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym___attribute__] = ACTIONS(1454), + [anon_sym___scanf] = ACTIONS(1454), + [anon_sym___printf] = ACTIONS(1454), + [anon_sym___read_mostly] = ACTIONS(1454), + [anon_sym___must_hold] = ACTIONS(1454), + [anon_sym___ro_after_init] = ACTIONS(1454), + [anon_sym___noreturn] = ACTIONS(1454), + [anon_sym___cold] = ACTIONS(1454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), + [anon_sym___declspec] = ACTIONS(1454), + [anon_sym___init] = ACTIONS(1454), + [anon_sym___exit] = ACTIONS(1454), + [anon_sym___cdecl] = ACTIONS(1454), + [anon_sym___clrcall] = ACTIONS(1454), + [anon_sym___stdcall] = ACTIONS(1454), + [anon_sym___fastcall] = ACTIONS(1454), + [anon_sym___thiscall] = ACTIONS(1454), + [anon_sym___vectorcall] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_signed] = ACTIONS(1454), + [anon_sym_unsigned] = ACTIONS(1454), + [anon_sym_long] = ACTIONS(1454), + [anon_sym_short] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_auto] = ACTIONS(1454), + [anon_sym_register] = ACTIONS(1454), + [anon_sym_inline] = ACTIONS(1454), + [anon_sym___inline] = ACTIONS(1454), + [anon_sym___inline__] = ACTIONS(1454), + [anon_sym___forceinline] = ACTIONS(1454), + [anon_sym_thread_local] = ACTIONS(1454), + [anon_sym___thread] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_constexpr] = ACTIONS(1454), + [anon_sym_volatile] = ACTIONS(1454), + [anon_sym_restrict] = ACTIONS(1454), + [anon_sym___restrict__] = ACTIONS(1454), + [anon_sym__Atomic] = ACTIONS(1454), + [anon_sym__Noreturn] = ACTIONS(1454), + [anon_sym_noreturn] = ACTIONS(1454), + [anon_sym_alignas] = ACTIONS(1454), + [anon_sym__Alignas] = ACTIONS(1454), + [sym_primitive_type] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_switch] = ACTIONS(1454), + [anon_sym_case] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_do] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_goto] = ACTIONS(1454), + [anon_sym___try] = ACTIONS(1454), + [anon_sym___leave] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [anon_sym_sizeof] = ACTIONS(1454), + [anon_sym___alignof__] = ACTIONS(1454), + [anon_sym___alignof] = ACTIONS(1454), + [anon_sym__alignof] = ACTIONS(1454), + [anon_sym_alignof] = ACTIONS(1454), + [anon_sym__Alignof] = ACTIONS(1454), + [anon_sym_offsetof] = ACTIONS(1454), + [anon_sym__Generic] = ACTIONS(1454), + [anon_sym_asm] = ACTIONS(1454), + [anon_sym___asm__] = ACTIONS(1454), + [sym_number_literal] = ACTIONS(1456), + [anon_sym_L_SQUOTE] = ACTIONS(1456), + [anon_sym_u_SQUOTE] = ACTIONS(1456), + [anon_sym_U_SQUOTE] = ACTIONS(1456), + [anon_sym_u8_SQUOTE] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_L_DQUOTE] = ACTIONS(1456), + [anon_sym_u_DQUOTE] = ACTIONS(1456), + [anon_sym_U_DQUOTE] = ACTIONS(1456), + [anon_sym_u8_DQUOTE] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [anon_sym_NULL] = ACTIONS(1454), + [anon_sym_nullptr] = ACTIONS(1454), [sym_comment] = ACTIONS(5), }, [151] = { - [sym_identifier] = ACTIONS(1448), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1448), - [aux_sym_preproc_def_token1] = ACTIONS(1448), - [aux_sym_preproc_if_token1] = ACTIONS(1448), - [aux_sym_preproc_if_token2] = ACTIONS(1448), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), - [aux_sym_preproc_else_token1] = ACTIONS(1448), - [aux_sym_preproc_elif_token1] = ACTIONS(1448), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1448), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1448), - [sym_preproc_directive] = ACTIONS(1448), - [anon_sym_LPAREN2] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym___extension__] = ACTIONS(1448), - [anon_sym_typedef] = ACTIONS(1448), - [anon_sym_extern] = ACTIONS(1448), - [anon_sym___attribute__] = ACTIONS(1448), - [anon_sym___scanf] = ACTIONS(1448), - [anon_sym___printf] = ACTIONS(1448), - [anon_sym___read_mostly] = ACTIONS(1448), - [anon_sym___must_hold] = ACTIONS(1448), - [anon_sym___ro_after_init] = ACTIONS(1448), - [anon_sym___noreturn] = ACTIONS(1448), - [anon_sym___cold] = ACTIONS(1448), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), - [anon_sym___declspec] = ACTIONS(1448), - [anon_sym___init] = ACTIONS(1448), - [anon_sym___exit] = ACTIONS(1448), - [anon_sym___cdecl] = ACTIONS(1448), - [anon_sym___clrcall] = ACTIONS(1448), - [anon_sym___stdcall] = ACTIONS(1448), - [anon_sym___fastcall] = ACTIONS(1448), - [anon_sym___thiscall] = ACTIONS(1448), - [anon_sym___vectorcall] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_signed] = ACTIONS(1448), - [anon_sym_unsigned] = ACTIONS(1448), - [anon_sym_long] = ACTIONS(1448), - [anon_sym_short] = ACTIONS(1448), - [anon_sym_static] = ACTIONS(1448), - [anon_sym_auto] = ACTIONS(1448), - [anon_sym_register] = ACTIONS(1448), - [anon_sym_inline] = ACTIONS(1448), - [anon_sym___inline] = ACTIONS(1448), - [anon_sym___inline__] = ACTIONS(1448), - [anon_sym___forceinline] = ACTIONS(1448), - [anon_sym_thread_local] = ACTIONS(1448), - [anon_sym___thread] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_constexpr] = ACTIONS(1448), - [anon_sym_volatile] = ACTIONS(1448), - [anon_sym_restrict] = ACTIONS(1448), - [anon_sym___restrict__] = ACTIONS(1448), - [anon_sym__Atomic] = ACTIONS(1448), - [anon_sym__Noreturn] = ACTIONS(1448), - [anon_sym_noreturn] = ACTIONS(1448), - [anon_sym_alignas] = ACTIONS(1448), - [anon_sym__Alignas] = ACTIONS(1448), - [sym_primitive_type] = ACTIONS(1448), - [anon_sym_enum] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1448), - [anon_sym_union] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1448), - [anon_sym_case] = ACTIONS(1448), - [anon_sym_default] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_do] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_goto] = ACTIONS(1448), - [anon_sym___try] = ACTIONS(1448), - [anon_sym___leave] = ACTIONS(1448), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_sizeof] = ACTIONS(1448), - [anon_sym___alignof__] = ACTIONS(1448), - [anon_sym___alignof] = ACTIONS(1448), - [anon_sym__alignof] = ACTIONS(1448), - [anon_sym_alignof] = ACTIONS(1448), - [anon_sym__Alignof] = ACTIONS(1448), - [anon_sym_offsetof] = ACTIONS(1448), - [anon_sym__Generic] = ACTIONS(1448), - [anon_sym_asm] = ACTIONS(1448), - [anon_sym___asm__] = ACTIONS(1448), - [sym_number_literal] = ACTIONS(1450), - [anon_sym_L_SQUOTE] = ACTIONS(1450), - [anon_sym_u_SQUOTE] = ACTIONS(1450), - [anon_sym_U_SQUOTE] = ACTIONS(1450), - [anon_sym_u8_SQUOTE] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_L_DQUOTE] = ACTIONS(1450), - [anon_sym_u_DQUOTE] = ACTIONS(1450), - [anon_sym_U_DQUOTE] = ACTIONS(1450), - [anon_sym_u8_DQUOTE] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(1450), - [sym_true] = ACTIONS(1448), - [sym_false] = ACTIONS(1448), - [anon_sym_NULL] = ACTIONS(1448), - [anon_sym_nullptr] = ACTIONS(1448), + [sym_identifier] = ACTIONS(1450), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1450), + [aux_sym_preproc_def_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token2] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), + [aux_sym_preproc_else_token1] = ACTIONS(1450), + [aux_sym_preproc_elif_token1] = ACTIONS(1450), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1450), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1450), + [sym_preproc_directive] = ACTIONS(1450), + [anon_sym_LPAREN2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym___extension__] = ACTIONS(1450), + [anon_sym_typedef] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym___attribute__] = ACTIONS(1450), + [anon_sym___scanf] = ACTIONS(1450), + [anon_sym___printf] = ACTIONS(1450), + [anon_sym___read_mostly] = ACTIONS(1450), + [anon_sym___must_hold] = ACTIONS(1450), + [anon_sym___ro_after_init] = ACTIONS(1450), + [anon_sym___noreturn] = ACTIONS(1450), + [anon_sym___cold] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), + [anon_sym___declspec] = ACTIONS(1450), + [anon_sym___init] = ACTIONS(1450), + [anon_sym___exit] = ACTIONS(1450), + [anon_sym___cdecl] = ACTIONS(1450), + [anon_sym___clrcall] = ACTIONS(1450), + [anon_sym___stdcall] = ACTIONS(1450), + [anon_sym___fastcall] = ACTIONS(1450), + [anon_sym___thiscall] = ACTIONS(1450), + [anon_sym___vectorcall] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_signed] = ACTIONS(1450), + [anon_sym_unsigned] = ACTIONS(1450), + [anon_sym_long] = ACTIONS(1450), + [anon_sym_short] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_auto] = ACTIONS(1450), + [anon_sym_register] = ACTIONS(1450), + [anon_sym_inline] = ACTIONS(1450), + [anon_sym___inline] = ACTIONS(1450), + [anon_sym___inline__] = ACTIONS(1450), + [anon_sym___forceinline] = ACTIONS(1450), + [anon_sym_thread_local] = ACTIONS(1450), + [anon_sym___thread] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_constexpr] = ACTIONS(1450), + [anon_sym_volatile] = ACTIONS(1450), + [anon_sym_restrict] = ACTIONS(1450), + [anon_sym___restrict__] = ACTIONS(1450), + [anon_sym__Atomic] = ACTIONS(1450), + [anon_sym__Noreturn] = ACTIONS(1450), + [anon_sym_noreturn] = ACTIONS(1450), + [anon_sym_alignas] = ACTIONS(1450), + [anon_sym__Alignas] = ACTIONS(1450), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_switch] = ACTIONS(1450), + [anon_sym_case] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_do] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_goto] = ACTIONS(1450), + [anon_sym___try] = ACTIONS(1450), + [anon_sym___leave] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [anon_sym_sizeof] = ACTIONS(1450), + [anon_sym___alignof__] = ACTIONS(1450), + [anon_sym___alignof] = ACTIONS(1450), + [anon_sym__alignof] = ACTIONS(1450), + [anon_sym_alignof] = ACTIONS(1450), + [anon_sym__Alignof] = ACTIONS(1450), + [anon_sym_offsetof] = ACTIONS(1450), + [anon_sym__Generic] = ACTIONS(1450), + [anon_sym_asm] = ACTIONS(1450), + [anon_sym___asm__] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(1452), + [anon_sym_L_SQUOTE] = ACTIONS(1452), + [anon_sym_u_SQUOTE] = ACTIONS(1452), + [anon_sym_U_SQUOTE] = ACTIONS(1452), + [anon_sym_u8_SQUOTE] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_L_DQUOTE] = ACTIONS(1452), + [anon_sym_u_DQUOTE] = ACTIONS(1452), + [anon_sym_U_DQUOTE] = ACTIONS(1452), + [anon_sym_u8_DQUOTE] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [sym_true] = ACTIONS(1450), + [sym_false] = ACTIONS(1450), + [anon_sym_NULL] = ACTIONS(1450), + [anon_sym_nullptr] = ACTIONS(1450), [sym_comment] = ACTIONS(5), }, [152] = { - [sym_identifier] = ACTIONS(1452), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1452), - [aux_sym_preproc_def_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token2] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), - [aux_sym_preproc_else_token1] = ACTIONS(1452), - [aux_sym_preproc_elif_token1] = ACTIONS(1452), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1452), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1452), - [sym_preproc_directive] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym___extension__] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym___attribute__] = ACTIONS(1452), - [anon_sym___scanf] = ACTIONS(1452), - [anon_sym___printf] = ACTIONS(1452), - [anon_sym___read_mostly] = ACTIONS(1452), - [anon_sym___must_hold] = ACTIONS(1452), - [anon_sym___ro_after_init] = ACTIONS(1452), - [anon_sym___noreturn] = ACTIONS(1452), - [anon_sym___cold] = ACTIONS(1452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym___declspec] = ACTIONS(1452), - [anon_sym___init] = ACTIONS(1452), - [anon_sym___exit] = ACTIONS(1452), - [anon_sym___cdecl] = ACTIONS(1452), - [anon_sym___clrcall] = ACTIONS(1452), - [anon_sym___stdcall] = ACTIONS(1452), - [anon_sym___fastcall] = ACTIONS(1452), - [anon_sym___thiscall] = ACTIONS(1452), - [anon_sym___vectorcall] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_signed] = ACTIONS(1452), - [anon_sym_unsigned] = ACTIONS(1452), - [anon_sym_long] = ACTIONS(1452), - [anon_sym_short] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_auto] = ACTIONS(1452), - [anon_sym_register] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym___inline] = ACTIONS(1452), - [anon_sym___inline__] = ACTIONS(1452), - [anon_sym___forceinline] = ACTIONS(1452), - [anon_sym_thread_local] = ACTIONS(1452), - [anon_sym___thread] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_constexpr] = ACTIONS(1452), - [anon_sym_volatile] = ACTIONS(1452), - [anon_sym_restrict] = ACTIONS(1452), - [anon_sym___restrict__] = ACTIONS(1452), - [anon_sym__Atomic] = ACTIONS(1452), - [anon_sym__Noreturn] = ACTIONS(1452), - [anon_sym_noreturn] = ACTIONS(1452), - [anon_sym_alignas] = ACTIONS(1452), - [anon_sym__Alignas] = ACTIONS(1452), - [sym_primitive_type] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_case] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_goto] = ACTIONS(1452), - [anon_sym___try] = ACTIONS(1452), - [anon_sym___leave] = ACTIONS(1452), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_sizeof] = ACTIONS(1452), - [anon_sym___alignof__] = ACTIONS(1452), - [anon_sym___alignof] = ACTIONS(1452), - [anon_sym__alignof] = ACTIONS(1452), - [anon_sym_alignof] = ACTIONS(1452), - [anon_sym__Alignof] = ACTIONS(1452), - [anon_sym_offsetof] = ACTIONS(1452), - [anon_sym__Generic] = ACTIONS(1452), - [anon_sym_asm] = ACTIONS(1452), - [anon_sym___asm__] = ACTIONS(1452), - [sym_number_literal] = ACTIONS(1454), - [anon_sym_L_SQUOTE] = ACTIONS(1454), - [anon_sym_u_SQUOTE] = ACTIONS(1454), - [anon_sym_U_SQUOTE] = ACTIONS(1454), - [anon_sym_u8_SQUOTE] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_L_DQUOTE] = ACTIONS(1454), - [anon_sym_u_DQUOTE] = ACTIONS(1454), - [anon_sym_U_DQUOTE] = ACTIONS(1454), - [anon_sym_u8_DQUOTE] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym_true] = ACTIONS(1452), - [sym_false] = ACTIONS(1452), - [anon_sym_NULL] = ACTIONS(1452), - [anon_sym_nullptr] = ACTIONS(1452), + [sym_identifier] = ACTIONS(1458), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1458), + [aux_sym_preproc_def_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token2] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1458), + [aux_sym_preproc_else_token1] = ACTIONS(1458), + [aux_sym_preproc_elif_token1] = ACTIONS(1458), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1458), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1458), + [sym_preproc_directive] = ACTIONS(1458), + [anon_sym_LPAREN2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym___extension__] = ACTIONS(1458), + [anon_sym_typedef] = ACTIONS(1458), + [anon_sym_extern] = ACTIONS(1458), + [anon_sym___attribute__] = ACTIONS(1458), + [anon_sym___scanf] = ACTIONS(1458), + [anon_sym___printf] = ACTIONS(1458), + [anon_sym___read_mostly] = ACTIONS(1458), + [anon_sym___must_hold] = ACTIONS(1458), + [anon_sym___ro_after_init] = ACTIONS(1458), + [anon_sym___noreturn] = ACTIONS(1458), + [anon_sym___cold] = ACTIONS(1458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1460), + [anon_sym___declspec] = ACTIONS(1458), + [anon_sym___init] = ACTIONS(1458), + [anon_sym___exit] = ACTIONS(1458), + [anon_sym___cdecl] = ACTIONS(1458), + [anon_sym___clrcall] = ACTIONS(1458), + [anon_sym___stdcall] = ACTIONS(1458), + [anon_sym___fastcall] = ACTIONS(1458), + [anon_sym___thiscall] = ACTIONS(1458), + [anon_sym___vectorcall] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_signed] = ACTIONS(1458), + [anon_sym_unsigned] = ACTIONS(1458), + [anon_sym_long] = ACTIONS(1458), + [anon_sym_short] = ACTIONS(1458), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_auto] = ACTIONS(1458), + [anon_sym_register] = ACTIONS(1458), + [anon_sym_inline] = ACTIONS(1458), + [anon_sym___inline] = ACTIONS(1458), + [anon_sym___inline__] = ACTIONS(1458), + [anon_sym___forceinline] = ACTIONS(1458), + [anon_sym_thread_local] = ACTIONS(1458), + [anon_sym___thread] = ACTIONS(1458), + [anon_sym_const] = ACTIONS(1458), + [anon_sym_constexpr] = ACTIONS(1458), + [anon_sym_volatile] = ACTIONS(1458), + [anon_sym_restrict] = ACTIONS(1458), + [anon_sym___restrict__] = ACTIONS(1458), + [anon_sym__Atomic] = ACTIONS(1458), + [anon_sym__Noreturn] = ACTIONS(1458), + [anon_sym_noreturn] = ACTIONS(1458), + [anon_sym_alignas] = ACTIONS(1458), + [anon_sym__Alignas] = ACTIONS(1458), + [sym_primitive_type] = ACTIONS(1458), + [anon_sym_enum] = ACTIONS(1458), + [anon_sym_struct] = ACTIONS(1458), + [anon_sym_union] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1458), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), + [anon_sym_while] = ACTIONS(1458), + [anon_sym_do] = ACTIONS(1458), + [anon_sym_for] = ACTIONS(1458), + [anon_sym_return] = ACTIONS(1458), + [anon_sym_break] = ACTIONS(1458), + [anon_sym_continue] = ACTIONS(1458), + [anon_sym_goto] = ACTIONS(1458), + [anon_sym___try] = ACTIONS(1458), + [anon_sym___leave] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [anon_sym_sizeof] = ACTIONS(1458), + [anon_sym___alignof__] = ACTIONS(1458), + [anon_sym___alignof] = ACTIONS(1458), + [anon_sym__alignof] = ACTIONS(1458), + [anon_sym_alignof] = ACTIONS(1458), + [anon_sym__Alignof] = ACTIONS(1458), + [anon_sym_offsetof] = ACTIONS(1458), + [anon_sym__Generic] = ACTIONS(1458), + [anon_sym_asm] = ACTIONS(1458), + [anon_sym___asm__] = ACTIONS(1458), + [sym_number_literal] = ACTIONS(1460), + [anon_sym_L_SQUOTE] = ACTIONS(1460), + [anon_sym_u_SQUOTE] = ACTIONS(1460), + [anon_sym_U_SQUOTE] = ACTIONS(1460), + [anon_sym_u8_SQUOTE] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_L_DQUOTE] = ACTIONS(1460), + [anon_sym_u_DQUOTE] = ACTIONS(1460), + [anon_sym_U_DQUOTE] = ACTIONS(1460), + [anon_sym_u8_DQUOTE] = ACTIONS(1460), + [anon_sym_DQUOTE] = ACTIONS(1460), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [anon_sym_NULL] = ACTIONS(1458), + [anon_sym_nullptr] = ACTIONS(1458), [sym_comment] = ACTIONS(5), }, [153] = { - [sym_identifier] = ACTIONS(1456), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1456), - [aux_sym_preproc_def_token1] = ACTIONS(1456), - [aux_sym_preproc_if_token1] = ACTIONS(1456), - [aux_sym_preproc_if_token2] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), - [aux_sym_preproc_else_token1] = ACTIONS(1456), - [aux_sym_preproc_elif_token1] = ACTIONS(1456), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1456), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1456), - [sym_preproc_directive] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym___extension__] = ACTIONS(1456), - [anon_sym_typedef] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1456), - [anon_sym___attribute__] = ACTIONS(1456), - [anon_sym___scanf] = ACTIONS(1456), - [anon_sym___printf] = ACTIONS(1456), - [anon_sym___read_mostly] = ACTIONS(1456), - [anon_sym___must_hold] = ACTIONS(1456), - [anon_sym___ro_after_init] = ACTIONS(1456), - [anon_sym___noreturn] = ACTIONS(1456), - [anon_sym___cold] = ACTIONS(1456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), - [anon_sym___declspec] = ACTIONS(1456), - [anon_sym___init] = ACTIONS(1456), - [anon_sym___exit] = ACTIONS(1456), - [anon_sym___cdecl] = ACTIONS(1456), - [anon_sym___clrcall] = ACTIONS(1456), - [anon_sym___stdcall] = ACTIONS(1456), - [anon_sym___fastcall] = ACTIONS(1456), - [anon_sym___thiscall] = ACTIONS(1456), - [anon_sym___vectorcall] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_signed] = ACTIONS(1456), - [anon_sym_unsigned] = ACTIONS(1456), - [anon_sym_long] = ACTIONS(1456), - [anon_sym_short] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_auto] = ACTIONS(1456), - [anon_sym_register] = ACTIONS(1456), - [anon_sym_inline] = ACTIONS(1456), - [anon_sym___inline] = ACTIONS(1456), - [anon_sym___inline__] = ACTIONS(1456), - [anon_sym___forceinline] = ACTIONS(1456), - [anon_sym_thread_local] = ACTIONS(1456), - [anon_sym___thread] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_constexpr] = ACTIONS(1456), - [anon_sym_volatile] = ACTIONS(1456), - [anon_sym_restrict] = ACTIONS(1456), - [anon_sym___restrict__] = ACTIONS(1456), - [anon_sym__Atomic] = ACTIONS(1456), - [anon_sym__Noreturn] = ACTIONS(1456), - [anon_sym_noreturn] = ACTIONS(1456), - [anon_sym_alignas] = ACTIONS(1456), - [anon_sym__Alignas] = ACTIONS(1456), - [sym_primitive_type] = ACTIONS(1456), - [anon_sym_enum] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1456), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_switch] = ACTIONS(1456), - [anon_sym_case] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_do] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_goto] = ACTIONS(1456), - [anon_sym___try] = ACTIONS(1456), - [anon_sym___leave] = ACTIONS(1456), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_sizeof] = ACTIONS(1456), - [anon_sym___alignof__] = ACTIONS(1456), - [anon_sym___alignof] = ACTIONS(1456), - [anon_sym__alignof] = ACTIONS(1456), - [anon_sym_alignof] = ACTIONS(1456), - [anon_sym__Alignof] = ACTIONS(1456), - [anon_sym_offsetof] = ACTIONS(1456), - [anon_sym__Generic] = ACTIONS(1456), - [anon_sym_asm] = ACTIONS(1456), - [anon_sym___asm__] = ACTIONS(1456), - [sym_number_literal] = ACTIONS(1458), - [anon_sym_L_SQUOTE] = ACTIONS(1458), - [anon_sym_u_SQUOTE] = ACTIONS(1458), - [anon_sym_U_SQUOTE] = ACTIONS(1458), - [anon_sym_u8_SQUOTE] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_L_DQUOTE] = ACTIONS(1458), - [anon_sym_u_DQUOTE] = ACTIONS(1458), - [anon_sym_U_DQUOTE] = ACTIONS(1458), - [anon_sym_u8_DQUOTE] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [anon_sym_NULL] = ACTIONS(1456), - [anon_sym_nullptr] = ACTIONS(1456), + [sym_identifier] = ACTIONS(1462), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1462), + [aux_sym_preproc_def_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token2] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1462), + [aux_sym_preproc_else_token1] = ACTIONS(1462), + [aux_sym_preproc_elif_token1] = ACTIONS(1462), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1462), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1462), + [sym_preproc_directive] = ACTIONS(1462), + [anon_sym_LPAREN2] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym___extension__] = ACTIONS(1462), + [anon_sym_typedef] = ACTIONS(1462), + [anon_sym_extern] = ACTIONS(1462), + [anon_sym___attribute__] = ACTIONS(1462), + [anon_sym___scanf] = ACTIONS(1462), + [anon_sym___printf] = ACTIONS(1462), + [anon_sym___read_mostly] = ACTIONS(1462), + [anon_sym___must_hold] = ACTIONS(1462), + [anon_sym___ro_after_init] = ACTIONS(1462), + [anon_sym___noreturn] = ACTIONS(1462), + [anon_sym___cold] = ACTIONS(1462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1464), + [anon_sym___declspec] = ACTIONS(1462), + [anon_sym___init] = ACTIONS(1462), + [anon_sym___exit] = ACTIONS(1462), + [anon_sym___cdecl] = ACTIONS(1462), + [anon_sym___clrcall] = ACTIONS(1462), + [anon_sym___stdcall] = ACTIONS(1462), + [anon_sym___fastcall] = ACTIONS(1462), + [anon_sym___thiscall] = ACTIONS(1462), + [anon_sym___vectorcall] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_signed] = ACTIONS(1462), + [anon_sym_unsigned] = ACTIONS(1462), + [anon_sym_long] = ACTIONS(1462), + [anon_sym_short] = ACTIONS(1462), + [anon_sym_static] = ACTIONS(1462), + [anon_sym_auto] = ACTIONS(1462), + [anon_sym_register] = ACTIONS(1462), + [anon_sym_inline] = ACTIONS(1462), + [anon_sym___inline] = ACTIONS(1462), + [anon_sym___inline__] = ACTIONS(1462), + [anon_sym___forceinline] = ACTIONS(1462), + [anon_sym_thread_local] = ACTIONS(1462), + [anon_sym___thread] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1462), + [anon_sym_constexpr] = ACTIONS(1462), + [anon_sym_volatile] = ACTIONS(1462), + [anon_sym_restrict] = ACTIONS(1462), + [anon_sym___restrict__] = ACTIONS(1462), + [anon_sym__Atomic] = ACTIONS(1462), + [anon_sym__Noreturn] = ACTIONS(1462), + [anon_sym_noreturn] = ACTIONS(1462), + [anon_sym_alignas] = ACTIONS(1462), + [anon_sym__Alignas] = ACTIONS(1462), + [sym_primitive_type] = ACTIONS(1462), + [anon_sym_enum] = ACTIONS(1462), + [anon_sym_struct] = ACTIONS(1462), + [anon_sym_union] = ACTIONS(1462), + [anon_sym_if] = ACTIONS(1462), + [anon_sym_switch] = ACTIONS(1462), + [anon_sym_case] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1462), + [anon_sym_do] = ACTIONS(1462), + [anon_sym_for] = ACTIONS(1462), + [anon_sym_return] = ACTIONS(1462), + [anon_sym_break] = ACTIONS(1462), + [anon_sym_continue] = ACTIONS(1462), + [anon_sym_goto] = ACTIONS(1462), + [anon_sym___try] = ACTIONS(1462), + [anon_sym___leave] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1464), + [anon_sym_PLUS_PLUS] = ACTIONS(1464), + [anon_sym_sizeof] = ACTIONS(1462), + [anon_sym___alignof__] = ACTIONS(1462), + [anon_sym___alignof] = ACTIONS(1462), + [anon_sym__alignof] = ACTIONS(1462), + [anon_sym_alignof] = ACTIONS(1462), + [anon_sym__Alignof] = ACTIONS(1462), + [anon_sym_offsetof] = ACTIONS(1462), + [anon_sym__Generic] = ACTIONS(1462), + [anon_sym_asm] = ACTIONS(1462), + [anon_sym___asm__] = ACTIONS(1462), + [sym_number_literal] = ACTIONS(1464), + [anon_sym_L_SQUOTE] = ACTIONS(1464), + [anon_sym_u_SQUOTE] = ACTIONS(1464), + [anon_sym_U_SQUOTE] = ACTIONS(1464), + [anon_sym_u8_SQUOTE] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_L_DQUOTE] = ACTIONS(1464), + [anon_sym_u_DQUOTE] = ACTIONS(1464), + [anon_sym_U_DQUOTE] = ACTIONS(1464), + [anon_sym_u8_DQUOTE] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(1464), + [sym_true] = ACTIONS(1462), + [sym_false] = ACTIONS(1462), + [anon_sym_NULL] = ACTIONS(1462), + [anon_sym_nullptr] = ACTIONS(1462), [sym_comment] = ACTIONS(5), }, [154] = { - [sym_identifier] = ACTIONS(1452), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1452), - [aux_sym_preproc_def_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token2] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), - [aux_sym_preproc_else_token1] = ACTIONS(1452), - [aux_sym_preproc_elif_token1] = ACTIONS(1452), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1452), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1452), - [sym_preproc_directive] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym___extension__] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym___attribute__] = ACTIONS(1452), - [anon_sym___scanf] = ACTIONS(1452), - [anon_sym___printf] = ACTIONS(1452), - [anon_sym___read_mostly] = ACTIONS(1452), - [anon_sym___must_hold] = ACTIONS(1452), - [anon_sym___ro_after_init] = ACTIONS(1452), - [anon_sym___noreturn] = ACTIONS(1452), - [anon_sym___cold] = ACTIONS(1452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym___declspec] = ACTIONS(1452), - [anon_sym___init] = ACTIONS(1452), - [anon_sym___exit] = ACTIONS(1452), - [anon_sym___cdecl] = ACTIONS(1452), - [anon_sym___clrcall] = ACTIONS(1452), - [anon_sym___stdcall] = ACTIONS(1452), - [anon_sym___fastcall] = ACTIONS(1452), - [anon_sym___thiscall] = ACTIONS(1452), - [anon_sym___vectorcall] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_signed] = ACTIONS(1452), - [anon_sym_unsigned] = ACTIONS(1452), - [anon_sym_long] = ACTIONS(1452), - [anon_sym_short] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_auto] = ACTIONS(1452), - [anon_sym_register] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym___inline] = ACTIONS(1452), - [anon_sym___inline__] = ACTIONS(1452), - [anon_sym___forceinline] = ACTIONS(1452), - [anon_sym_thread_local] = ACTIONS(1452), - [anon_sym___thread] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_constexpr] = ACTIONS(1452), - [anon_sym_volatile] = ACTIONS(1452), - [anon_sym_restrict] = ACTIONS(1452), - [anon_sym___restrict__] = ACTIONS(1452), - [anon_sym__Atomic] = ACTIONS(1452), - [anon_sym__Noreturn] = ACTIONS(1452), - [anon_sym_noreturn] = ACTIONS(1452), - [anon_sym_alignas] = ACTIONS(1452), - [anon_sym__Alignas] = ACTIONS(1452), - [sym_primitive_type] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_case] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_goto] = ACTIONS(1452), - [anon_sym___try] = ACTIONS(1452), - [anon_sym___leave] = ACTIONS(1452), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_sizeof] = ACTIONS(1452), - [anon_sym___alignof__] = ACTIONS(1452), - [anon_sym___alignof] = ACTIONS(1452), - [anon_sym__alignof] = ACTIONS(1452), - [anon_sym_alignof] = ACTIONS(1452), - [anon_sym__Alignof] = ACTIONS(1452), - [anon_sym_offsetof] = ACTIONS(1452), - [anon_sym__Generic] = ACTIONS(1452), - [anon_sym_asm] = ACTIONS(1452), - [anon_sym___asm__] = ACTIONS(1452), - [sym_number_literal] = ACTIONS(1454), - [anon_sym_L_SQUOTE] = ACTIONS(1454), - [anon_sym_u_SQUOTE] = ACTIONS(1454), - [anon_sym_U_SQUOTE] = ACTIONS(1454), - [anon_sym_u8_SQUOTE] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_L_DQUOTE] = ACTIONS(1454), - [anon_sym_u_DQUOTE] = ACTIONS(1454), - [anon_sym_U_DQUOTE] = ACTIONS(1454), - [anon_sym_u8_DQUOTE] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym_true] = ACTIONS(1452), - [sym_false] = ACTIONS(1452), - [anon_sym_NULL] = ACTIONS(1452), - [anon_sym_nullptr] = ACTIONS(1452), + [sym_identifier] = ACTIONS(1466), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1466), + [aux_sym_preproc_def_token1] = ACTIONS(1466), + [aux_sym_preproc_if_token1] = ACTIONS(1466), + [aux_sym_preproc_if_token2] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1466), + [aux_sym_preproc_else_token1] = ACTIONS(1466), + [aux_sym_preproc_elif_token1] = ACTIONS(1466), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1466), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1466), + [sym_preproc_directive] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym___extension__] = ACTIONS(1466), + [anon_sym_typedef] = ACTIONS(1466), + [anon_sym_extern] = ACTIONS(1466), + [anon_sym___attribute__] = ACTIONS(1466), + [anon_sym___scanf] = ACTIONS(1466), + [anon_sym___printf] = ACTIONS(1466), + [anon_sym___read_mostly] = ACTIONS(1466), + [anon_sym___must_hold] = ACTIONS(1466), + [anon_sym___ro_after_init] = ACTIONS(1466), + [anon_sym___noreturn] = ACTIONS(1466), + [anon_sym___cold] = ACTIONS(1466), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1468), + [anon_sym___declspec] = ACTIONS(1466), + [anon_sym___init] = ACTIONS(1466), + [anon_sym___exit] = ACTIONS(1466), + [anon_sym___cdecl] = ACTIONS(1466), + [anon_sym___clrcall] = ACTIONS(1466), + [anon_sym___stdcall] = ACTIONS(1466), + [anon_sym___fastcall] = ACTIONS(1466), + [anon_sym___thiscall] = ACTIONS(1466), + [anon_sym___vectorcall] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_signed] = ACTIONS(1466), + [anon_sym_unsigned] = ACTIONS(1466), + [anon_sym_long] = ACTIONS(1466), + [anon_sym_short] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_auto] = ACTIONS(1466), + [anon_sym_register] = ACTIONS(1466), + [anon_sym_inline] = ACTIONS(1466), + [anon_sym___inline] = ACTIONS(1466), + [anon_sym___inline__] = ACTIONS(1466), + [anon_sym___forceinline] = ACTIONS(1466), + [anon_sym_thread_local] = ACTIONS(1466), + [anon_sym___thread] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(1466), + [anon_sym_constexpr] = ACTIONS(1466), + [anon_sym_volatile] = ACTIONS(1466), + [anon_sym_restrict] = ACTIONS(1466), + [anon_sym___restrict__] = ACTIONS(1466), + [anon_sym__Atomic] = ACTIONS(1466), + [anon_sym__Noreturn] = ACTIONS(1466), + [anon_sym_noreturn] = ACTIONS(1466), + [anon_sym_alignas] = ACTIONS(1466), + [anon_sym__Alignas] = ACTIONS(1466), + [sym_primitive_type] = ACTIONS(1466), + [anon_sym_enum] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1466), + [anon_sym_union] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1466), + [anon_sym_switch] = ACTIONS(1466), + [anon_sym_case] = ACTIONS(1466), + [anon_sym_default] = ACTIONS(1466), + [anon_sym_while] = ACTIONS(1466), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1466), + [anon_sym_return] = ACTIONS(1466), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1466), + [anon_sym_goto] = ACTIONS(1466), + [anon_sym___try] = ACTIONS(1466), + [anon_sym___leave] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_sizeof] = ACTIONS(1466), + [anon_sym___alignof__] = ACTIONS(1466), + [anon_sym___alignof] = ACTIONS(1466), + [anon_sym__alignof] = ACTIONS(1466), + [anon_sym_alignof] = ACTIONS(1466), + [anon_sym__Alignof] = ACTIONS(1466), + [anon_sym_offsetof] = ACTIONS(1466), + [anon_sym__Generic] = ACTIONS(1466), + [anon_sym_asm] = ACTIONS(1466), + [anon_sym___asm__] = ACTIONS(1466), + [sym_number_literal] = ACTIONS(1468), + [anon_sym_L_SQUOTE] = ACTIONS(1468), + [anon_sym_u_SQUOTE] = ACTIONS(1468), + [anon_sym_U_SQUOTE] = ACTIONS(1468), + [anon_sym_u8_SQUOTE] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_L_DQUOTE] = ACTIONS(1468), + [anon_sym_u_DQUOTE] = ACTIONS(1468), + [anon_sym_U_DQUOTE] = ACTIONS(1468), + [anon_sym_u8_DQUOTE] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1468), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [anon_sym_NULL] = ACTIONS(1466), + [anon_sym_nullptr] = ACTIONS(1466), [sym_comment] = ACTIONS(5), }, [155] = { - [sym_identifier] = ACTIONS(1460), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1460), - [aux_sym_preproc_def_token1] = ACTIONS(1460), - [aux_sym_preproc_if_token1] = ACTIONS(1460), - [aux_sym_preproc_if_token2] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), - [aux_sym_preproc_else_token1] = ACTIONS(1460), - [aux_sym_preproc_elif_token1] = ACTIONS(1460), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1460), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1460), - [sym_preproc_directive] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym___extension__] = ACTIONS(1460), - [anon_sym_typedef] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1460), - [anon_sym___attribute__] = ACTIONS(1460), - [anon_sym___scanf] = ACTIONS(1460), - [anon_sym___printf] = ACTIONS(1460), - [anon_sym___read_mostly] = ACTIONS(1460), - [anon_sym___must_hold] = ACTIONS(1460), - [anon_sym___ro_after_init] = ACTIONS(1460), - [anon_sym___noreturn] = ACTIONS(1460), - [anon_sym___cold] = ACTIONS(1460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym___declspec] = ACTIONS(1460), - [anon_sym___init] = ACTIONS(1460), - [anon_sym___exit] = ACTIONS(1460), - [anon_sym___cdecl] = ACTIONS(1460), - [anon_sym___clrcall] = ACTIONS(1460), - [anon_sym___stdcall] = ACTIONS(1460), - [anon_sym___fastcall] = ACTIONS(1460), - [anon_sym___thiscall] = ACTIONS(1460), - [anon_sym___vectorcall] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1462), - [anon_sym_signed] = ACTIONS(1460), - [anon_sym_unsigned] = ACTIONS(1460), - [anon_sym_long] = ACTIONS(1460), - [anon_sym_short] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_auto] = ACTIONS(1460), - [anon_sym_register] = ACTIONS(1460), - [anon_sym_inline] = ACTIONS(1460), - [anon_sym___inline] = ACTIONS(1460), - [anon_sym___inline__] = ACTIONS(1460), - [anon_sym___forceinline] = ACTIONS(1460), - [anon_sym_thread_local] = ACTIONS(1460), - [anon_sym___thread] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_constexpr] = ACTIONS(1460), - [anon_sym_volatile] = ACTIONS(1460), - [anon_sym_restrict] = ACTIONS(1460), - [anon_sym___restrict__] = ACTIONS(1460), - [anon_sym__Atomic] = ACTIONS(1460), - [anon_sym__Noreturn] = ACTIONS(1460), - [anon_sym_noreturn] = ACTIONS(1460), - [anon_sym_alignas] = ACTIONS(1460), - [anon_sym__Alignas] = ACTIONS(1460), - [sym_primitive_type] = ACTIONS(1460), - [anon_sym_enum] = ACTIONS(1460), - [anon_sym_struct] = ACTIONS(1460), - [anon_sym_union] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_switch] = ACTIONS(1460), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_do] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_goto] = ACTIONS(1460), - [anon_sym___try] = ACTIONS(1460), - [anon_sym___leave] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1462), - [anon_sym_sizeof] = ACTIONS(1460), - [anon_sym___alignof__] = ACTIONS(1460), - [anon_sym___alignof] = ACTIONS(1460), - [anon_sym__alignof] = ACTIONS(1460), - [anon_sym_alignof] = ACTIONS(1460), - [anon_sym__Alignof] = ACTIONS(1460), - [anon_sym_offsetof] = ACTIONS(1460), - [anon_sym__Generic] = ACTIONS(1460), - [anon_sym_asm] = ACTIONS(1460), - [anon_sym___asm__] = ACTIONS(1460), - [sym_number_literal] = ACTIONS(1462), - [anon_sym_L_SQUOTE] = ACTIONS(1462), - [anon_sym_u_SQUOTE] = ACTIONS(1462), - [anon_sym_U_SQUOTE] = ACTIONS(1462), - [anon_sym_u8_SQUOTE] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_L_DQUOTE] = ACTIONS(1462), - [anon_sym_u_DQUOTE] = ACTIONS(1462), - [anon_sym_U_DQUOTE] = ACTIONS(1462), - [anon_sym_u8_DQUOTE] = ACTIONS(1462), - [anon_sym_DQUOTE] = ACTIONS(1462), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [anon_sym_NULL] = ACTIONS(1460), - [anon_sym_nullptr] = ACTIONS(1460), + [sym_identifier] = ACTIONS(1470), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1470), + [aux_sym_preproc_def_token1] = ACTIONS(1470), + [aux_sym_preproc_if_token1] = ACTIONS(1470), + [aux_sym_preproc_if_token2] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1470), + [aux_sym_preproc_else_token1] = ACTIONS(1470), + [aux_sym_preproc_elif_token1] = ACTIONS(1470), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1470), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1470), + [sym_preproc_directive] = ACTIONS(1470), + [anon_sym_LPAREN2] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym___extension__] = ACTIONS(1470), + [anon_sym_typedef] = ACTIONS(1470), + [anon_sym_extern] = ACTIONS(1470), + [anon_sym___attribute__] = ACTIONS(1470), + [anon_sym___scanf] = ACTIONS(1470), + [anon_sym___printf] = ACTIONS(1470), + [anon_sym___read_mostly] = ACTIONS(1470), + [anon_sym___must_hold] = ACTIONS(1470), + [anon_sym___ro_after_init] = ACTIONS(1470), + [anon_sym___noreturn] = ACTIONS(1470), + [anon_sym___cold] = ACTIONS(1470), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1472), + [anon_sym___declspec] = ACTIONS(1470), + [anon_sym___init] = ACTIONS(1470), + [anon_sym___exit] = ACTIONS(1470), + [anon_sym___cdecl] = ACTIONS(1470), + [anon_sym___clrcall] = ACTIONS(1470), + [anon_sym___stdcall] = ACTIONS(1470), + [anon_sym___fastcall] = ACTIONS(1470), + [anon_sym___thiscall] = ACTIONS(1470), + [anon_sym___vectorcall] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_signed] = ACTIONS(1470), + [anon_sym_unsigned] = ACTIONS(1470), + [anon_sym_long] = ACTIONS(1470), + [anon_sym_short] = ACTIONS(1470), + [anon_sym_static] = ACTIONS(1470), + [anon_sym_auto] = ACTIONS(1470), + [anon_sym_register] = ACTIONS(1470), + [anon_sym_inline] = ACTIONS(1470), + [anon_sym___inline] = ACTIONS(1470), + [anon_sym___inline__] = ACTIONS(1470), + [anon_sym___forceinline] = ACTIONS(1470), + [anon_sym_thread_local] = ACTIONS(1470), + [anon_sym___thread] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_constexpr] = ACTIONS(1470), + [anon_sym_volatile] = ACTIONS(1470), + [anon_sym_restrict] = ACTIONS(1470), + [anon_sym___restrict__] = ACTIONS(1470), + [anon_sym__Atomic] = ACTIONS(1470), + [anon_sym__Noreturn] = ACTIONS(1470), + [anon_sym_noreturn] = ACTIONS(1470), + [anon_sym_alignas] = ACTIONS(1470), + [anon_sym__Alignas] = ACTIONS(1470), + [sym_primitive_type] = ACTIONS(1470), + [anon_sym_enum] = ACTIONS(1470), + [anon_sym_struct] = ACTIONS(1470), + [anon_sym_union] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_case] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_do] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_continue] = ACTIONS(1470), + [anon_sym_goto] = ACTIONS(1470), + [anon_sym___try] = ACTIONS(1470), + [anon_sym___leave] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_sizeof] = ACTIONS(1470), + [anon_sym___alignof__] = ACTIONS(1470), + [anon_sym___alignof] = ACTIONS(1470), + [anon_sym__alignof] = ACTIONS(1470), + [anon_sym_alignof] = ACTIONS(1470), + [anon_sym__Alignof] = ACTIONS(1470), + [anon_sym_offsetof] = ACTIONS(1470), + [anon_sym__Generic] = ACTIONS(1470), + [anon_sym_asm] = ACTIONS(1470), + [anon_sym___asm__] = ACTIONS(1470), + [sym_number_literal] = ACTIONS(1472), + [anon_sym_L_SQUOTE] = ACTIONS(1472), + [anon_sym_u_SQUOTE] = ACTIONS(1472), + [anon_sym_U_SQUOTE] = ACTIONS(1472), + [anon_sym_u8_SQUOTE] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_L_DQUOTE] = ACTIONS(1472), + [anon_sym_u_DQUOTE] = ACTIONS(1472), + [anon_sym_U_DQUOTE] = ACTIONS(1472), + [anon_sym_u8_DQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [anon_sym_NULL] = ACTIONS(1470), + [anon_sym_nullptr] = ACTIONS(1470), [sym_comment] = ACTIONS(5), }, [156] = { - [sym_identifier] = ACTIONS(1464), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1464), - [aux_sym_preproc_def_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token2] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), - [aux_sym_preproc_else_token1] = ACTIONS(1464), - [aux_sym_preproc_elif_token1] = ACTIONS(1464), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1464), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1464), - [sym_preproc_directive] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym___extension__] = ACTIONS(1464), - [anon_sym_typedef] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym___attribute__] = ACTIONS(1464), - [anon_sym___scanf] = ACTIONS(1464), - [anon_sym___printf] = ACTIONS(1464), - [anon_sym___read_mostly] = ACTIONS(1464), - [anon_sym___must_hold] = ACTIONS(1464), - [anon_sym___ro_after_init] = ACTIONS(1464), - [anon_sym___noreturn] = ACTIONS(1464), - [anon_sym___cold] = ACTIONS(1464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), - [anon_sym___declspec] = ACTIONS(1464), - [anon_sym___init] = ACTIONS(1464), - [anon_sym___exit] = ACTIONS(1464), - [anon_sym___cdecl] = ACTIONS(1464), - [anon_sym___clrcall] = ACTIONS(1464), - [anon_sym___stdcall] = ACTIONS(1464), - [anon_sym___fastcall] = ACTIONS(1464), - [anon_sym___thiscall] = ACTIONS(1464), - [anon_sym___vectorcall] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_signed] = ACTIONS(1464), - [anon_sym_unsigned] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_auto] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_inline] = ACTIONS(1464), - [anon_sym___inline] = ACTIONS(1464), - [anon_sym___inline__] = ACTIONS(1464), - [anon_sym___forceinline] = ACTIONS(1464), - [anon_sym_thread_local] = ACTIONS(1464), - [anon_sym___thread] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_constexpr] = ACTIONS(1464), - [anon_sym_volatile] = ACTIONS(1464), - [anon_sym_restrict] = ACTIONS(1464), - [anon_sym___restrict__] = ACTIONS(1464), - [anon_sym__Atomic] = ACTIONS(1464), - [anon_sym__Noreturn] = ACTIONS(1464), - [anon_sym_noreturn] = ACTIONS(1464), - [anon_sym_alignas] = ACTIONS(1464), - [anon_sym__Alignas] = ACTIONS(1464), - [sym_primitive_type] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_case] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_goto] = ACTIONS(1464), - [anon_sym___try] = ACTIONS(1464), - [anon_sym___leave] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_sizeof] = ACTIONS(1464), - [anon_sym___alignof__] = ACTIONS(1464), - [anon_sym___alignof] = ACTIONS(1464), - [anon_sym__alignof] = ACTIONS(1464), - [anon_sym_alignof] = ACTIONS(1464), - [anon_sym__Alignof] = ACTIONS(1464), - [anon_sym_offsetof] = ACTIONS(1464), - [anon_sym__Generic] = ACTIONS(1464), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym___asm__] = ACTIONS(1464), - [sym_number_literal] = ACTIONS(1466), - [anon_sym_L_SQUOTE] = ACTIONS(1466), - [anon_sym_u_SQUOTE] = ACTIONS(1466), - [anon_sym_U_SQUOTE] = ACTIONS(1466), - [anon_sym_u8_SQUOTE] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_L_DQUOTE] = ACTIONS(1466), - [anon_sym_u_DQUOTE] = ACTIONS(1466), - [anon_sym_U_DQUOTE] = ACTIONS(1466), - [anon_sym_u8_DQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym_true] = ACTIONS(1464), - [sym_false] = ACTIONS(1464), - [anon_sym_NULL] = ACTIONS(1464), - [anon_sym_nullptr] = ACTIONS(1464), + [sym_identifier] = ACTIONS(1462), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1462), + [aux_sym_preproc_def_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token2] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1462), + [aux_sym_preproc_else_token1] = ACTIONS(1462), + [aux_sym_preproc_elif_token1] = ACTIONS(1462), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1462), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1462), + [sym_preproc_directive] = ACTIONS(1462), + [anon_sym_LPAREN2] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym___extension__] = ACTIONS(1462), + [anon_sym_typedef] = ACTIONS(1462), + [anon_sym_extern] = ACTIONS(1462), + [anon_sym___attribute__] = ACTIONS(1462), + [anon_sym___scanf] = ACTIONS(1462), + [anon_sym___printf] = ACTIONS(1462), + [anon_sym___read_mostly] = ACTIONS(1462), + [anon_sym___must_hold] = ACTIONS(1462), + [anon_sym___ro_after_init] = ACTIONS(1462), + [anon_sym___noreturn] = ACTIONS(1462), + [anon_sym___cold] = ACTIONS(1462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1464), + [anon_sym___declspec] = ACTIONS(1462), + [anon_sym___init] = ACTIONS(1462), + [anon_sym___exit] = ACTIONS(1462), + [anon_sym___cdecl] = ACTIONS(1462), + [anon_sym___clrcall] = ACTIONS(1462), + [anon_sym___stdcall] = ACTIONS(1462), + [anon_sym___fastcall] = ACTIONS(1462), + [anon_sym___thiscall] = ACTIONS(1462), + [anon_sym___vectorcall] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_signed] = ACTIONS(1462), + [anon_sym_unsigned] = ACTIONS(1462), + [anon_sym_long] = ACTIONS(1462), + [anon_sym_short] = ACTIONS(1462), + [anon_sym_static] = ACTIONS(1462), + [anon_sym_auto] = ACTIONS(1462), + [anon_sym_register] = ACTIONS(1462), + [anon_sym_inline] = ACTIONS(1462), + [anon_sym___inline] = ACTIONS(1462), + [anon_sym___inline__] = ACTIONS(1462), + [anon_sym___forceinline] = ACTIONS(1462), + [anon_sym_thread_local] = ACTIONS(1462), + [anon_sym___thread] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1462), + [anon_sym_constexpr] = ACTIONS(1462), + [anon_sym_volatile] = ACTIONS(1462), + [anon_sym_restrict] = ACTIONS(1462), + [anon_sym___restrict__] = ACTIONS(1462), + [anon_sym__Atomic] = ACTIONS(1462), + [anon_sym__Noreturn] = ACTIONS(1462), + [anon_sym_noreturn] = ACTIONS(1462), + [anon_sym_alignas] = ACTIONS(1462), + [anon_sym__Alignas] = ACTIONS(1462), + [sym_primitive_type] = ACTIONS(1462), + [anon_sym_enum] = ACTIONS(1462), + [anon_sym_struct] = ACTIONS(1462), + [anon_sym_union] = ACTIONS(1462), + [anon_sym_if] = ACTIONS(1462), + [anon_sym_switch] = ACTIONS(1462), + [anon_sym_case] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1462), + [anon_sym_do] = ACTIONS(1462), + [anon_sym_for] = ACTIONS(1462), + [anon_sym_return] = ACTIONS(1462), + [anon_sym_break] = ACTIONS(1462), + [anon_sym_continue] = ACTIONS(1462), + [anon_sym_goto] = ACTIONS(1462), + [anon_sym___try] = ACTIONS(1462), + [anon_sym___leave] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1464), + [anon_sym_PLUS_PLUS] = ACTIONS(1464), + [anon_sym_sizeof] = ACTIONS(1462), + [anon_sym___alignof__] = ACTIONS(1462), + [anon_sym___alignof] = ACTIONS(1462), + [anon_sym__alignof] = ACTIONS(1462), + [anon_sym_alignof] = ACTIONS(1462), + [anon_sym__Alignof] = ACTIONS(1462), + [anon_sym_offsetof] = ACTIONS(1462), + [anon_sym__Generic] = ACTIONS(1462), + [anon_sym_asm] = ACTIONS(1462), + [anon_sym___asm__] = ACTIONS(1462), + [sym_number_literal] = ACTIONS(1464), + [anon_sym_L_SQUOTE] = ACTIONS(1464), + [anon_sym_u_SQUOTE] = ACTIONS(1464), + [anon_sym_U_SQUOTE] = ACTIONS(1464), + [anon_sym_u8_SQUOTE] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_L_DQUOTE] = ACTIONS(1464), + [anon_sym_u_DQUOTE] = ACTIONS(1464), + [anon_sym_U_DQUOTE] = ACTIONS(1464), + [anon_sym_u8_DQUOTE] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(1464), + [sym_true] = ACTIONS(1462), + [sym_false] = ACTIONS(1462), + [anon_sym_NULL] = ACTIONS(1462), + [anon_sym_nullptr] = ACTIONS(1462), [sym_comment] = ACTIONS(5), }, [157] = { - [sym_identifier] = ACTIONS(1468), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1468), - [aux_sym_preproc_def_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token2] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), - [aux_sym_preproc_else_token1] = ACTIONS(1468), - [aux_sym_preproc_elif_token1] = ACTIONS(1468), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1468), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1468), - [sym_preproc_directive] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym___extension__] = ACTIONS(1468), - [anon_sym_typedef] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1468), - [anon_sym___attribute__] = ACTIONS(1468), - [anon_sym___scanf] = ACTIONS(1468), - [anon_sym___printf] = ACTIONS(1468), - [anon_sym___read_mostly] = ACTIONS(1468), - [anon_sym___must_hold] = ACTIONS(1468), - [anon_sym___ro_after_init] = ACTIONS(1468), - [anon_sym___noreturn] = ACTIONS(1468), - [anon_sym___cold] = ACTIONS(1468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), - [anon_sym___declspec] = ACTIONS(1468), - [anon_sym___init] = ACTIONS(1468), - [anon_sym___exit] = ACTIONS(1468), - [anon_sym___cdecl] = ACTIONS(1468), - [anon_sym___clrcall] = ACTIONS(1468), - [anon_sym___stdcall] = ACTIONS(1468), - [anon_sym___fastcall] = ACTIONS(1468), - [anon_sym___thiscall] = ACTIONS(1468), - [anon_sym___vectorcall] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_signed] = ACTIONS(1468), - [anon_sym_unsigned] = ACTIONS(1468), - [anon_sym_long] = ACTIONS(1468), - [anon_sym_short] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_auto] = ACTIONS(1468), - [anon_sym_register] = ACTIONS(1468), - [anon_sym_inline] = ACTIONS(1468), - [anon_sym___inline] = ACTIONS(1468), - [anon_sym___inline__] = ACTIONS(1468), - [anon_sym___forceinline] = ACTIONS(1468), - [anon_sym_thread_local] = ACTIONS(1468), - [anon_sym___thread] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_constexpr] = ACTIONS(1468), - [anon_sym_volatile] = ACTIONS(1468), - [anon_sym_restrict] = ACTIONS(1468), - [anon_sym___restrict__] = ACTIONS(1468), - [anon_sym__Atomic] = ACTIONS(1468), - [anon_sym__Noreturn] = ACTIONS(1468), - [anon_sym_noreturn] = ACTIONS(1468), - [anon_sym_alignas] = ACTIONS(1468), - [anon_sym__Alignas] = ACTIONS(1468), - [sym_primitive_type] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_case] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_goto] = ACTIONS(1468), - [anon_sym___try] = ACTIONS(1468), - [anon_sym___leave] = ACTIONS(1468), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_sizeof] = ACTIONS(1468), - [anon_sym___alignof__] = ACTIONS(1468), - [anon_sym___alignof] = ACTIONS(1468), - [anon_sym__alignof] = ACTIONS(1468), - [anon_sym_alignof] = ACTIONS(1468), - [anon_sym__Alignof] = ACTIONS(1468), - [anon_sym_offsetof] = ACTIONS(1468), - [anon_sym__Generic] = ACTIONS(1468), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym___asm__] = ACTIONS(1468), - [sym_number_literal] = ACTIONS(1470), - [anon_sym_L_SQUOTE] = ACTIONS(1470), - [anon_sym_u_SQUOTE] = ACTIONS(1470), - [anon_sym_U_SQUOTE] = ACTIONS(1470), - [anon_sym_u8_SQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_L_DQUOTE] = ACTIONS(1470), - [anon_sym_u_DQUOTE] = ACTIONS(1470), - [anon_sym_U_DQUOTE] = ACTIONS(1470), - [anon_sym_u8_DQUOTE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [anon_sym_NULL] = ACTIONS(1468), - [anon_sym_nullptr] = ACTIONS(1468), + [sym_identifier] = ACTIONS(1474), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1474), + [aux_sym_preproc_def_token1] = ACTIONS(1474), + [aux_sym_preproc_if_token1] = ACTIONS(1474), + [aux_sym_preproc_if_token2] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1474), + [aux_sym_preproc_else_token1] = ACTIONS(1474), + [aux_sym_preproc_elif_token1] = ACTIONS(1474), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1474), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1474), + [sym_preproc_directive] = ACTIONS(1474), + [anon_sym_LPAREN2] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym___extension__] = ACTIONS(1474), + [anon_sym_typedef] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym___attribute__] = ACTIONS(1474), + [anon_sym___scanf] = ACTIONS(1474), + [anon_sym___printf] = ACTIONS(1474), + [anon_sym___read_mostly] = ACTIONS(1474), + [anon_sym___must_hold] = ACTIONS(1474), + [anon_sym___ro_after_init] = ACTIONS(1474), + [anon_sym___noreturn] = ACTIONS(1474), + [anon_sym___cold] = ACTIONS(1474), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1476), + [anon_sym___declspec] = ACTIONS(1474), + [anon_sym___init] = ACTIONS(1474), + [anon_sym___exit] = ACTIONS(1474), + [anon_sym___cdecl] = ACTIONS(1474), + [anon_sym___clrcall] = ACTIONS(1474), + [anon_sym___stdcall] = ACTIONS(1474), + [anon_sym___fastcall] = ACTIONS(1474), + [anon_sym___thiscall] = ACTIONS(1474), + [anon_sym___vectorcall] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_signed] = ACTIONS(1474), + [anon_sym_unsigned] = ACTIONS(1474), + [anon_sym_long] = ACTIONS(1474), + [anon_sym_short] = ACTIONS(1474), + [anon_sym_static] = ACTIONS(1474), + [anon_sym_auto] = ACTIONS(1474), + [anon_sym_register] = ACTIONS(1474), + [anon_sym_inline] = ACTIONS(1474), + [anon_sym___inline] = ACTIONS(1474), + [anon_sym___inline__] = ACTIONS(1474), + [anon_sym___forceinline] = ACTIONS(1474), + [anon_sym_thread_local] = ACTIONS(1474), + [anon_sym___thread] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_constexpr] = ACTIONS(1474), + [anon_sym_volatile] = ACTIONS(1474), + [anon_sym_restrict] = ACTIONS(1474), + [anon_sym___restrict__] = ACTIONS(1474), + [anon_sym__Atomic] = ACTIONS(1474), + [anon_sym__Noreturn] = ACTIONS(1474), + [anon_sym_noreturn] = ACTIONS(1474), + [anon_sym_alignas] = ACTIONS(1474), + [anon_sym__Alignas] = ACTIONS(1474), + [sym_primitive_type] = ACTIONS(1474), + [anon_sym_enum] = ACTIONS(1474), + [anon_sym_struct] = ACTIONS(1474), + [anon_sym_union] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_switch] = ACTIONS(1474), + [anon_sym_case] = ACTIONS(1474), + [anon_sym_default] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_do] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_goto] = ACTIONS(1474), + [anon_sym___try] = ACTIONS(1474), + [anon_sym___leave] = ACTIONS(1474), + [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_PLUS_PLUS] = ACTIONS(1476), + [anon_sym_sizeof] = ACTIONS(1474), + [anon_sym___alignof__] = ACTIONS(1474), + [anon_sym___alignof] = ACTIONS(1474), + [anon_sym__alignof] = ACTIONS(1474), + [anon_sym_alignof] = ACTIONS(1474), + [anon_sym__Alignof] = ACTIONS(1474), + [anon_sym_offsetof] = ACTIONS(1474), + [anon_sym__Generic] = ACTIONS(1474), + [anon_sym_asm] = ACTIONS(1474), + [anon_sym___asm__] = ACTIONS(1474), + [sym_number_literal] = ACTIONS(1476), + [anon_sym_L_SQUOTE] = ACTIONS(1476), + [anon_sym_u_SQUOTE] = ACTIONS(1476), + [anon_sym_U_SQUOTE] = ACTIONS(1476), + [anon_sym_u8_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_L_DQUOTE] = ACTIONS(1476), + [anon_sym_u_DQUOTE] = ACTIONS(1476), + [anon_sym_U_DQUOTE] = ACTIONS(1476), + [anon_sym_u8_DQUOTE] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [sym_true] = ACTIONS(1474), + [sym_false] = ACTIONS(1474), + [anon_sym_NULL] = ACTIONS(1474), + [anon_sym_nullptr] = ACTIONS(1474), [sym_comment] = ACTIONS(5), }, [158] = { - [sym_identifier] = ACTIONS(1472), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1472), - [aux_sym_preproc_def_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token2] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), - [aux_sym_preproc_else_token1] = ACTIONS(1472), - [aux_sym_preproc_elif_token1] = ACTIONS(1472), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1472), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1472), - [sym_preproc_directive] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym___extension__] = ACTIONS(1472), - [anon_sym_typedef] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym___attribute__] = ACTIONS(1472), - [anon_sym___scanf] = ACTIONS(1472), - [anon_sym___printf] = ACTIONS(1472), - [anon_sym___read_mostly] = ACTIONS(1472), - [anon_sym___must_hold] = ACTIONS(1472), - [anon_sym___ro_after_init] = ACTIONS(1472), - [anon_sym___noreturn] = ACTIONS(1472), - [anon_sym___cold] = ACTIONS(1472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1472), - [anon_sym___init] = ACTIONS(1472), - [anon_sym___exit] = ACTIONS(1472), - [anon_sym___cdecl] = ACTIONS(1472), - [anon_sym___clrcall] = ACTIONS(1472), - [anon_sym___stdcall] = ACTIONS(1472), - [anon_sym___fastcall] = ACTIONS(1472), - [anon_sym___thiscall] = ACTIONS(1472), - [anon_sym___vectorcall] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_signed] = ACTIONS(1472), - [anon_sym_unsigned] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_auto] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_inline] = ACTIONS(1472), - [anon_sym___inline] = ACTIONS(1472), - [anon_sym___inline__] = ACTIONS(1472), - [anon_sym___forceinline] = ACTIONS(1472), - [anon_sym_thread_local] = ACTIONS(1472), - [anon_sym___thread] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_constexpr] = ACTIONS(1472), - [anon_sym_volatile] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1472), - [anon_sym___restrict__] = ACTIONS(1472), - [anon_sym__Atomic] = ACTIONS(1472), - [anon_sym__Noreturn] = ACTIONS(1472), - [anon_sym_noreturn] = ACTIONS(1472), - [anon_sym_alignas] = ACTIONS(1472), - [anon_sym__Alignas] = ACTIONS(1472), - [sym_primitive_type] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_goto] = ACTIONS(1472), - [anon_sym___try] = ACTIONS(1472), - [anon_sym___leave] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_sizeof] = ACTIONS(1472), - [anon_sym___alignof__] = ACTIONS(1472), - [anon_sym___alignof] = ACTIONS(1472), - [anon_sym__alignof] = ACTIONS(1472), - [anon_sym_alignof] = ACTIONS(1472), - [anon_sym__Alignof] = ACTIONS(1472), - [anon_sym_offsetof] = ACTIONS(1472), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym___asm__] = ACTIONS(1472), - [sym_number_literal] = ACTIONS(1474), - [anon_sym_L_SQUOTE] = ACTIONS(1474), - [anon_sym_u_SQUOTE] = ACTIONS(1474), - [anon_sym_U_SQUOTE] = ACTIONS(1474), - [anon_sym_u8_SQUOTE] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_L_DQUOTE] = ACTIONS(1474), - [anon_sym_u_DQUOTE] = ACTIONS(1474), - [anon_sym_U_DQUOTE] = ACTIONS(1474), - [anon_sym_u8_DQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [anon_sym_NULL] = ACTIONS(1472), - [anon_sym_nullptr] = ACTIONS(1472), + [sym_identifier] = ACTIONS(1478), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1478), + [aux_sym_preproc_def_token1] = ACTIONS(1478), + [aux_sym_preproc_if_token1] = ACTIONS(1478), + [aux_sym_preproc_if_token2] = ACTIONS(1478), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1478), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1478), + [aux_sym_preproc_else_token1] = ACTIONS(1478), + [aux_sym_preproc_elif_token1] = ACTIONS(1478), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1478), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1478), + [sym_preproc_directive] = ACTIONS(1478), + [anon_sym_LPAREN2] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_TILDE] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym___extension__] = ACTIONS(1478), + [anon_sym_typedef] = ACTIONS(1478), + [anon_sym_extern] = ACTIONS(1478), + [anon_sym___attribute__] = ACTIONS(1478), + [anon_sym___scanf] = ACTIONS(1478), + [anon_sym___printf] = ACTIONS(1478), + [anon_sym___read_mostly] = ACTIONS(1478), + [anon_sym___must_hold] = ACTIONS(1478), + [anon_sym___ro_after_init] = ACTIONS(1478), + [anon_sym___noreturn] = ACTIONS(1478), + [anon_sym___cold] = ACTIONS(1478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1480), + [anon_sym___declspec] = ACTIONS(1478), + [anon_sym___init] = ACTIONS(1478), + [anon_sym___exit] = ACTIONS(1478), + [anon_sym___cdecl] = ACTIONS(1478), + [anon_sym___clrcall] = ACTIONS(1478), + [anon_sym___stdcall] = ACTIONS(1478), + [anon_sym___fastcall] = ACTIONS(1478), + [anon_sym___thiscall] = ACTIONS(1478), + [anon_sym___vectorcall] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_signed] = ACTIONS(1478), + [anon_sym_unsigned] = ACTIONS(1478), + [anon_sym_long] = ACTIONS(1478), + [anon_sym_short] = ACTIONS(1478), + [anon_sym_static] = ACTIONS(1478), + [anon_sym_auto] = ACTIONS(1478), + [anon_sym_register] = ACTIONS(1478), + [anon_sym_inline] = ACTIONS(1478), + [anon_sym___inline] = ACTIONS(1478), + [anon_sym___inline__] = ACTIONS(1478), + [anon_sym___forceinline] = ACTIONS(1478), + [anon_sym_thread_local] = ACTIONS(1478), + [anon_sym___thread] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1478), + [anon_sym_constexpr] = ACTIONS(1478), + [anon_sym_volatile] = ACTIONS(1478), + [anon_sym_restrict] = ACTIONS(1478), + [anon_sym___restrict__] = ACTIONS(1478), + [anon_sym__Atomic] = ACTIONS(1478), + [anon_sym__Noreturn] = ACTIONS(1478), + [anon_sym_noreturn] = ACTIONS(1478), + [anon_sym_alignas] = ACTIONS(1478), + [anon_sym__Alignas] = ACTIONS(1478), + [sym_primitive_type] = ACTIONS(1478), + [anon_sym_enum] = ACTIONS(1478), + [anon_sym_struct] = ACTIONS(1478), + [anon_sym_union] = ACTIONS(1478), + [anon_sym_if] = ACTIONS(1478), + [anon_sym_switch] = ACTIONS(1478), + [anon_sym_case] = ACTIONS(1478), + [anon_sym_default] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1478), + [anon_sym_do] = ACTIONS(1478), + [anon_sym_for] = ACTIONS(1478), + [anon_sym_return] = ACTIONS(1478), + [anon_sym_break] = ACTIONS(1478), + [anon_sym_continue] = ACTIONS(1478), + [anon_sym_goto] = ACTIONS(1478), + [anon_sym___try] = ACTIONS(1478), + [anon_sym___leave] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1480), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_sizeof] = ACTIONS(1478), + [anon_sym___alignof__] = ACTIONS(1478), + [anon_sym___alignof] = ACTIONS(1478), + [anon_sym__alignof] = ACTIONS(1478), + [anon_sym_alignof] = ACTIONS(1478), + [anon_sym__Alignof] = ACTIONS(1478), + [anon_sym_offsetof] = ACTIONS(1478), + [anon_sym__Generic] = ACTIONS(1478), + [anon_sym_asm] = ACTIONS(1478), + [anon_sym___asm__] = ACTIONS(1478), + [sym_number_literal] = ACTIONS(1480), + [anon_sym_L_SQUOTE] = ACTIONS(1480), + [anon_sym_u_SQUOTE] = ACTIONS(1480), + [anon_sym_U_SQUOTE] = ACTIONS(1480), + [anon_sym_u8_SQUOTE] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_L_DQUOTE] = ACTIONS(1480), + [anon_sym_u_DQUOTE] = ACTIONS(1480), + [anon_sym_U_DQUOTE] = ACTIONS(1480), + [anon_sym_u8_DQUOTE] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [sym_true] = ACTIONS(1478), + [sym_false] = ACTIONS(1478), + [anon_sym_NULL] = ACTIONS(1478), + [anon_sym_nullptr] = ACTIONS(1478), [sym_comment] = ACTIONS(5), }, [159] = { - [sym_identifier] = ACTIONS(1476), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1476), - [aux_sym_preproc_def_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token2] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), - [aux_sym_preproc_else_token1] = ACTIONS(1476), - [aux_sym_preproc_elif_token1] = ACTIONS(1476), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1476), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1476), - [sym_preproc_directive] = ACTIONS(1476), - [anon_sym_LPAREN2] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym___extension__] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym___attribute__] = ACTIONS(1476), - [anon_sym___scanf] = ACTIONS(1476), - [anon_sym___printf] = ACTIONS(1476), - [anon_sym___read_mostly] = ACTIONS(1476), - [anon_sym___must_hold] = ACTIONS(1476), - [anon_sym___ro_after_init] = ACTIONS(1476), - [anon_sym___noreturn] = ACTIONS(1476), - [anon_sym___cold] = ACTIONS(1476), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), - [anon_sym___declspec] = ACTIONS(1476), - [anon_sym___init] = ACTIONS(1476), - [anon_sym___exit] = ACTIONS(1476), - [anon_sym___cdecl] = ACTIONS(1476), - [anon_sym___clrcall] = ACTIONS(1476), - [anon_sym___stdcall] = ACTIONS(1476), - [anon_sym___fastcall] = ACTIONS(1476), - [anon_sym___thiscall] = ACTIONS(1476), - [anon_sym___vectorcall] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_signed] = ACTIONS(1476), - [anon_sym_unsigned] = ACTIONS(1476), - [anon_sym_long] = ACTIONS(1476), - [anon_sym_short] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_auto] = ACTIONS(1476), - [anon_sym_register] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym___inline] = ACTIONS(1476), - [anon_sym___inline__] = ACTIONS(1476), - [anon_sym___forceinline] = ACTIONS(1476), - [anon_sym_thread_local] = ACTIONS(1476), - [anon_sym___thread] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1476), - [anon_sym_volatile] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1476), - [anon_sym___restrict__] = ACTIONS(1476), - [anon_sym__Atomic] = ACTIONS(1476), - [anon_sym__Noreturn] = ACTIONS(1476), - [anon_sym_noreturn] = ACTIONS(1476), - [anon_sym_alignas] = ACTIONS(1476), - [anon_sym__Alignas] = ACTIONS(1476), - [sym_primitive_type] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_union] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_case] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_goto] = ACTIONS(1476), - [anon_sym___try] = ACTIONS(1476), - [anon_sym___leave] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_sizeof] = ACTIONS(1476), - [anon_sym___alignof__] = ACTIONS(1476), - [anon_sym___alignof] = ACTIONS(1476), - [anon_sym__alignof] = ACTIONS(1476), - [anon_sym_alignof] = ACTIONS(1476), - [anon_sym__Alignof] = ACTIONS(1476), - [anon_sym_offsetof] = ACTIONS(1476), - [anon_sym__Generic] = ACTIONS(1476), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym___asm__] = ACTIONS(1476), - [sym_number_literal] = ACTIONS(1478), - [anon_sym_L_SQUOTE] = ACTIONS(1478), - [anon_sym_u_SQUOTE] = ACTIONS(1478), - [anon_sym_U_SQUOTE] = ACTIONS(1478), - [anon_sym_u8_SQUOTE] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_L_DQUOTE] = ACTIONS(1478), - [anon_sym_u_DQUOTE] = ACTIONS(1478), - [anon_sym_U_DQUOTE] = ACTIONS(1478), - [anon_sym_u8_DQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [anon_sym_NULL] = ACTIONS(1476), - [anon_sym_nullptr] = ACTIONS(1476), + [sym_identifier] = ACTIONS(1482), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1482), + [aux_sym_preproc_def_token1] = ACTIONS(1482), + [aux_sym_preproc_if_token1] = ACTIONS(1482), + [aux_sym_preproc_if_token2] = ACTIONS(1482), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1482), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1482), + [aux_sym_preproc_else_token1] = ACTIONS(1482), + [aux_sym_preproc_elif_token1] = ACTIONS(1482), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1482), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1482), + [sym_preproc_directive] = ACTIONS(1482), + [anon_sym_LPAREN2] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_TILDE] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym___extension__] = ACTIONS(1482), + [anon_sym_typedef] = ACTIONS(1482), + [anon_sym_extern] = ACTIONS(1482), + [anon_sym___attribute__] = ACTIONS(1482), + [anon_sym___scanf] = ACTIONS(1482), + [anon_sym___printf] = ACTIONS(1482), + [anon_sym___read_mostly] = ACTIONS(1482), + [anon_sym___must_hold] = ACTIONS(1482), + [anon_sym___ro_after_init] = ACTIONS(1482), + [anon_sym___noreturn] = ACTIONS(1482), + [anon_sym___cold] = ACTIONS(1482), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1484), + [anon_sym___declspec] = ACTIONS(1482), + [anon_sym___init] = ACTIONS(1482), + [anon_sym___exit] = ACTIONS(1482), + [anon_sym___cdecl] = ACTIONS(1482), + [anon_sym___clrcall] = ACTIONS(1482), + [anon_sym___stdcall] = ACTIONS(1482), + [anon_sym___fastcall] = ACTIONS(1482), + [anon_sym___thiscall] = ACTIONS(1482), + [anon_sym___vectorcall] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_signed] = ACTIONS(1482), + [anon_sym_unsigned] = ACTIONS(1482), + [anon_sym_long] = ACTIONS(1482), + [anon_sym_short] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1482), + [anon_sym_auto] = ACTIONS(1482), + [anon_sym_register] = ACTIONS(1482), + [anon_sym_inline] = ACTIONS(1482), + [anon_sym___inline] = ACTIONS(1482), + [anon_sym___inline__] = ACTIONS(1482), + [anon_sym___forceinline] = ACTIONS(1482), + [anon_sym_thread_local] = ACTIONS(1482), + [anon_sym___thread] = ACTIONS(1482), + [anon_sym_const] = ACTIONS(1482), + [anon_sym_constexpr] = ACTIONS(1482), + [anon_sym_volatile] = ACTIONS(1482), + [anon_sym_restrict] = ACTIONS(1482), + [anon_sym___restrict__] = ACTIONS(1482), + [anon_sym__Atomic] = ACTIONS(1482), + [anon_sym__Noreturn] = ACTIONS(1482), + [anon_sym_noreturn] = ACTIONS(1482), + [anon_sym_alignas] = ACTIONS(1482), + [anon_sym__Alignas] = ACTIONS(1482), + [sym_primitive_type] = ACTIONS(1482), + [anon_sym_enum] = ACTIONS(1482), + [anon_sym_struct] = ACTIONS(1482), + [anon_sym_union] = ACTIONS(1482), + [anon_sym_if] = ACTIONS(1482), + [anon_sym_switch] = ACTIONS(1482), + [anon_sym_case] = ACTIONS(1482), + [anon_sym_default] = ACTIONS(1482), + [anon_sym_while] = ACTIONS(1482), + [anon_sym_do] = ACTIONS(1482), + [anon_sym_for] = ACTIONS(1482), + [anon_sym_return] = ACTIONS(1482), + [anon_sym_break] = ACTIONS(1482), + [anon_sym_continue] = ACTIONS(1482), + [anon_sym_goto] = ACTIONS(1482), + [anon_sym___try] = ACTIONS(1482), + [anon_sym___leave] = ACTIONS(1482), + [anon_sym_DASH_DASH] = ACTIONS(1484), + [anon_sym_PLUS_PLUS] = ACTIONS(1484), + [anon_sym_sizeof] = ACTIONS(1482), + [anon_sym___alignof__] = ACTIONS(1482), + [anon_sym___alignof] = ACTIONS(1482), + [anon_sym__alignof] = ACTIONS(1482), + [anon_sym_alignof] = ACTIONS(1482), + [anon_sym__Alignof] = ACTIONS(1482), + [anon_sym_offsetof] = ACTIONS(1482), + [anon_sym__Generic] = ACTIONS(1482), + [anon_sym_asm] = ACTIONS(1482), + [anon_sym___asm__] = ACTIONS(1482), + [sym_number_literal] = ACTIONS(1484), + [anon_sym_L_SQUOTE] = ACTIONS(1484), + [anon_sym_u_SQUOTE] = ACTIONS(1484), + [anon_sym_U_SQUOTE] = ACTIONS(1484), + [anon_sym_u8_SQUOTE] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_L_DQUOTE] = ACTIONS(1484), + [anon_sym_u_DQUOTE] = ACTIONS(1484), + [anon_sym_U_DQUOTE] = ACTIONS(1484), + [anon_sym_u8_DQUOTE] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [sym_true] = ACTIONS(1482), + [sym_false] = ACTIONS(1482), + [anon_sym_NULL] = ACTIONS(1482), + [anon_sym_nullptr] = ACTIONS(1482), [sym_comment] = ACTIONS(5), }, [160] = { - [sym_identifier] = ACTIONS(1480), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1480), - [aux_sym_preproc_def_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token2] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), - [aux_sym_preproc_else_token1] = ACTIONS(1480), - [aux_sym_preproc_elif_token1] = ACTIONS(1480), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1480), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1480), - [sym_preproc_directive] = ACTIONS(1480), - [anon_sym_LPAREN2] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym___extension__] = ACTIONS(1480), - [anon_sym_typedef] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1480), - [anon_sym___attribute__] = ACTIONS(1480), - [anon_sym___scanf] = ACTIONS(1480), - [anon_sym___printf] = ACTIONS(1480), - [anon_sym___read_mostly] = ACTIONS(1480), - [anon_sym___must_hold] = ACTIONS(1480), - [anon_sym___ro_after_init] = ACTIONS(1480), - [anon_sym___noreturn] = ACTIONS(1480), - [anon_sym___cold] = ACTIONS(1480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), - [anon_sym___declspec] = ACTIONS(1480), - [anon_sym___init] = ACTIONS(1480), - [anon_sym___exit] = ACTIONS(1480), - [anon_sym___cdecl] = ACTIONS(1480), - [anon_sym___clrcall] = ACTIONS(1480), - [anon_sym___stdcall] = ACTIONS(1480), - [anon_sym___fastcall] = ACTIONS(1480), - [anon_sym___thiscall] = ACTIONS(1480), - [anon_sym___vectorcall] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_signed] = ACTIONS(1480), - [anon_sym_unsigned] = ACTIONS(1480), - [anon_sym_long] = ACTIONS(1480), - [anon_sym_short] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_auto] = ACTIONS(1480), - [anon_sym_register] = ACTIONS(1480), - [anon_sym_inline] = ACTIONS(1480), - [anon_sym___inline] = ACTIONS(1480), - [anon_sym___inline__] = ACTIONS(1480), - [anon_sym___forceinline] = ACTIONS(1480), - [anon_sym_thread_local] = ACTIONS(1480), - [anon_sym___thread] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_constexpr] = ACTIONS(1480), - [anon_sym_volatile] = ACTIONS(1480), - [anon_sym_restrict] = ACTIONS(1480), - [anon_sym___restrict__] = ACTIONS(1480), - [anon_sym__Atomic] = ACTIONS(1480), - [anon_sym__Noreturn] = ACTIONS(1480), - [anon_sym_noreturn] = ACTIONS(1480), - [anon_sym_alignas] = ACTIONS(1480), - [anon_sym__Alignas] = ACTIONS(1480), - [sym_primitive_type] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_struct] = ACTIONS(1480), - [anon_sym_union] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_do] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_goto] = ACTIONS(1480), - [anon_sym___try] = ACTIONS(1480), - [anon_sym___leave] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1480), - [anon_sym___alignof__] = ACTIONS(1480), - [anon_sym___alignof] = ACTIONS(1480), - [anon_sym__alignof] = ACTIONS(1480), - [anon_sym_alignof] = ACTIONS(1480), - [anon_sym__Alignof] = ACTIONS(1480), - [anon_sym_offsetof] = ACTIONS(1480), - [anon_sym__Generic] = ACTIONS(1480), - [anon_sym_asm] = ACTIONS(1480), - [anon_sym___asm__] = ACTIONS(1480), - [sym_number_literal] = ACTIONS(1482), - [anon_sym_L_SQUOTE] = ACTIONS(1482), - [anon_sym_u_SQUOTE] = ACTIONS(1482), - [anon_sym_U_SQUOTE] = ACTIONS(1482), - [anon_sym_u8_SQUOTE] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_L_DQUOTE] = ACTIONS(1482), - [anon_sym_u_DQUOTE] = ACTIONS(1482), - [anon_sym_U_DQUOTE] = ACTIONS(1482), - [anon_sym_u8_DQUOTE] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym_true] = ACTIONS(1480), - [sym_false] = ACTIONS(1480), - [anon_sym_NULL] = ACTIONS(1480), - [anon_sym_nullptr] = ACTIONS(1480), + [sym_identifier] = ACTIONS(1486), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1486), + [aux_sym_preproc_def_token1] = ACTIONS(1486), + [aux_sym_preproc_if_token1] = ACTIONS(1486), + [aux_sym_preproc_if_token2] = ACTIONS(1486), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1486), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1486), + [aux_sym_preproc_else_token1] = ACTIONS(1486), + [aux_sym_preproc_elif_token1] = ACTIONS(1486), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1486), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1486), + [sym_preproc_directive] = ACTIONS(1486), + [anon_sym_LPAREN2] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym___extension__] = ACTIONS(1486), + [anon_sym_typedef] = ACTIONS(1486), + [anon_sym_extern] = ACTIONS(1486), + [anon_sym___attribute__] = ACTIONS(1486), + [anon_sym___scanf] = ACTIONS(1486), + [anon_sym___printf] = ACTIONS(1486), + [anon_sym___read_mostly] = ACTIONS(1486), + [anon_sym___must_hold] = ACTIONS(1486), + [anon_sym___ro_after_init] = ACTIONS(1486), + [anon_sym___noreturn] = ACTIONS(1486), + [anon_sym___cold] = ACTIONS(1486), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1488), + [anon_sym___declspec] = ACTIONS(1486), + [anon_sym___init] = ACTIONS(1486), + [anon_sym___exit] = ACTIONS(1486), + [anon_sym___cdecl] = ACTIONS(1486), + [anon_sym___clrcall] = ACTIONS(1486), + [anon_sym___stdcall] = ACTIONS(1486), + [anon_sym___fastcall] = ACTIONS(1486), + [anon_sym___thiscall] = ACTIONS(1486), + [anon_sym___vectorcall] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_signed] = ACTIONS(1486), + [anon_sym_unsigned] = ACTIONS(1486), + [anon_sym_long] = ACTIONS(1486), + [anon_sym_short] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_auto] = ACTIONS(1486), + [anon_sym_register] = ACTIONS(1486), + [anon_sym_inline] = ACTIONS(1486), + [anon_sym___inline] = ACTIONS(1486), + [anon_sym___inline__] = ACTIONS(1486), + [anon_sym___forceinline] = ACTIONS(1486), + [anon_sym_thread_local] = ACTIONS(1486), + [anon_sym___thread] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_constexpr] = ACTIONS(1486), + [anon_sym_volatile] = ACTIONS(1486), + [anon_sym_restrict] = ACTIONS(1486), + [anon_sym___restrict__] = ACTIONS(1486), + [anon_sym__Atomic] = ACTIONS(1486), + [anon_sym__Noreturn] = ACTIONS(1486), + [anon_sym_noreturn] = ACTIONS(1486), + [anon_sym_alignas] = ACTIONS(1486), + [anon_sym__Alignas] = ACTIONS(1486), + [sym_primitive_type] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [anon_sym_struct] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(1486), + [anon_sym_if] = ACTIONS(1486), + [anon_sym_switch] = ACTIONS(1486), + [anon_sym_case] = ACTIONS(1486), + [anon_sym_default] = ACTIONS(1486), + [anon_sym_while] = ACTIONS(1486), + [anon_sym_do] = ACTIONS(1486), + [anon_sym_for] = ACTIONS(1486), + [anon_sym_return] = ACTIONS(1486), + [anon_sym_break] = ACTIONS(1486), + [anon_sym_continue] = ACTIONS(1486), + [anon_sym_goto] = ACTIONS(1486), + [anon_sym___try] = ACTIONS(1486), + [anon_sym___leave] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_sizeof] = ACTIONS(1486), + [anon_sym___alignof__] = ACTIONS(1486), + [anon_sym___alignof] = ACTIONS(1486), + [anon_sym__alignof] = ACTIONS(1486), + [anon_sym_alignof] = ACTIONS(1486), + [anon_sym__Alignof] = ACTIONS(1486), + [anon_sym_offsetof] = ACTIONS(1486), + [anon_sym__Generic] = ACTIONS(1486), + [anon_sym_asm] = ACTIONS(1486), + [anon_sym___asm__] = ACTIONS(1486), + [sym_number_literal] = ACTIONS(1488), + [anon_sym_L_SQUOTE] = ACTIONS(1488), + [anon_sym_u_SQUOTE] = ACTIONS(1488), + [anon_sym_U_SQUOTE] = ACTIONS(1488), + [anon_sym_u8_SQUOTE] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_L_DQUOTE] = ACTIONS(1488), + [anon_sym_u_DQUOTE] = ACTIONS(1488), + [anon_sym_U_DQUOTE] = ACTIONS(1488), + [anon_sym_u8_DQUOTE] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [sym_true] = ACTIONS(1486), + [sym_false] = ACTIONS(1486), + [anon_sym_NULL] = ACTIONS(1486), + [anon_sym_nullptr] = ACTIONS(1486), [sym_comment] = ACTIONS(5), }, [161] = { - [sym_identifier] = ACTIONS(1484), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1484), - [aux_sym_preproc_def_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token2] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), - [aux_sym_preproc_else_token1] = ACTIONS(1484), - [aux_sym_preproc_elif_token1] = ACTIONS(1484), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1484), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1484), - [sym_preproc_directive] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym___extension__] = ACTIONS(1484), - [anon_sym_typedef] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym___attribute__] = ACTIONS(1484), - [anon_sym___scanf] = ACTIONS(1484), - [anon_sym___printf] = ACTIONS(1484), - [anon_sym___read_mostly] = ACTIONS(1484), - [anon_sym___must_hold] = ACTIONS(1484), - [anon_sym___ro_after_init] = ACTIONS(1484), - [anon_sym___noreturn] = ACTIONS(1484), - [anon_sym___cold] = ACTIONS(1484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym___declspec] = ACTIONS(1484), - [anon_sym___init] = ACTIONS(1484), - [anon_sym___exit] = ACTIONS(1484), - [anon_sym___cdecl] = ACTIONS(1484), - [anon_sym___clrcall] = ACTIONS(1484), - [anon_sym___stdcall] = ACTIONS(1484), - [anon_sym___fastcall] = ACTIONS(1484), - [anon_sym___thiscall] = ACTIONS(1484), - [anon_sym___vectorcall] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_signed] = ACTIONS(1484), - [anon_sym_unsigned] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_auto] = ACTIONS(1484), - [anon_sym_register] = ACTIONS(1484), - [anon_sym_inline] = ACTIONS(1484), - [anon_sym___inline] = ACTIONS(1484), - [anon_sym___inline__] = ACTIONS(1484), - [anon_sym___forceinline] = ACTIONS(1484), - [anon_sym_thread_local] = ACTIONS(1484), - [anon_sym___thread] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_constexpr] = ACTIONS(1484), - [anon_sym_volatile] = ACTIONS(1484), - [anon_sym_restrict] = ACTIONS(1484), - [anon_sym___restrict__] = ACTIONS(1484), - [anon_sym__Atomic] = ACTIONS(1484), - [anon_sym__Noreturn] = ACTIONS(1484), - [anon_sym_noreturn] = ACTIONS(1484), - [anon_sym_alignas] = ACTIONS(1484), - [anon_sym__Alignas] = ACTIONS(1484), - [sym_primitive_type] = ACTIONS(1484), - [anon_sym_enum] = ACTIONS(1484), - [anon_sym_struct] = ACTIONS(1484), - [anon_sym_union] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_goto] = ACTIONS(1484), - [anon_sym___try] = ACTIONS(1484), - [anon_sym___leave] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1484), - [anon_sym___alignof__] = ACTIONS(1484), - [anon_sym___alignof] = ACTIONS(1484), - [anon_sym__alignof] = ACTIONS(1484), - [anon_sym_alignof] = ACTIONS(1484), - [anon_sym__Alignof] = ACTIONS(1484), - [anon_sym_offsetof] = ACTIONS(1484), - [anon_sym__Generic] = ACTIONS(1484), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym___asm__] = ACTIONS(1484), - [sym_number_literal] = ACTIONS(1486), - [anon_sym_L_SQUOTE] = ACTIONS(1486), - [anon_sym_u_SQUOTE] = ACTIONS(1486), - [anon_sym_U_SQUOTE] = ACTIONS(1486), - [anon_sym_u8_SQUOTE] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_L_DQUOTE] = ACTIONS(1486), - [anon_sym_u_DQUOTE] = ACTIONS(1486), - [anon_sym_U_DQUOTE] = ACTIONS(1486), - [anon_sym_u8_DQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym_true] = ACTIONS(1484), - [sym_false] = ACTIONS(1484), - [anon_sym_NULL] = ACTIONS(1484), - [anon_sym_nullptr] = ACTIONS(1484), + [sym_identifier] = ACTIONS(1490), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1490), + [aux_sym_preproc_def_token1] = ACTIONS(1490), + [aux_sym_preproc_if_token1] = ACTIONS(1490), + [aux_sym_preproc_if_token2] = ACTIONS(1490), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1490), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1490), + [aux_sym_preproc_else_token1] = ACTIONS(1490), + [aux_sym_preproc_elif_token1] = ACTIONS(1490), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1490), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1490), + [sym_preproc_directive] = ACTIONS(1490), + [anon_sym_LPAREN2] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym___extension__] = ACTIONS(1490), + [anon_sym_typedef] = ACTIONS(1490), + [anon_sym_extern] = ACTIONS(1490), + [anon_sym___attribute__] = ACTIONS(1490), + [anon_sym___scanf] = ACTIONS(1490), + [anon_sym___printf] = ACTIONS(1490), + [anon_sym___read_mostly] = ACTIONS(1490), + [anon_sym___must_hold] = ACTIONS(1490), + [anon_sym___ro_after_init] = ACTIONS(1490), + [anon_sym___noreturn] = ACTIONS(1490), + [anon_sym___cold] = ACTIONS(1490), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1492), + [anon_sym___declspec] = ACTIONS(1490), + [anon_sym___init] = ACTIONS(1490), + [anon_sym___exit] = ACTIONS(1490), + [anon_sym___cdecl] = ACTIONS(1490), + [anon_sym___clrcall] = ACTIONS(1490), + [anon_sym___stdcall] = ACTIONS(1490), + [anon_sym___fastcall] = ACTIONS(1490), + [anon_sym___thiscall] = ACTIONS(1490), + [anon_sym___vectorcall] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_signed] = ACTIONS(1490), + [anon_sym_unsigned] = ACTIONS(1490), + [anon_sym_long] = ACTIONS(1490), + [anon_sym_short] = ACTIONS(1490), + [anon_sym_static] = ACTIONS(1490), + [anon_sym_auto] = ACTIONS(1490), + [anon_sym_register] = ACTIONS(1490), + [anon_sym_inline] = ACTIONS(1490), + [anon_sym___inline] = ACTIONS(1490), + [anon_sym___inline__] = ACTIONS(1490), + [anon_sym___forceinline] = ACTIONS(1490), + [anon_sym_thread_local] = ACTIONS(1490), + [anon_sym___thread] = ACTIONS(1490), + [anon_sym_const] = ACTIONS(1490), + [anon_sym_constexpr] = ACTIONS(1490), + [anon_sym_volatile] = ACTIONS(1490), + [anon_sym_restrict] = ACTIONS(1490), + [anon_sym___restrict__] = ACTIONS(1490), + [anon_sym__Atomic] = ACTIONS(1490), + [anon_sym__Noreturn] = ACTIONS(1490), + [anon_sym_noreturn] = ACTIONS(1490), + [anon_sym_alignas] = ACTIONS(1490), + [anon_sym__Alignas] = ACTIONS(1490), + [sym_primitive_type] = ACTIONS(1490), + [anon_sym_enum] = ACTIONS(1490), + [anon_sym_struct] = ACTIONS(1490), + [anon_sym_union] = ACTIONS(1490), + [anon_sym_if] = ACTIONS(1490), + [anon_sym_switch] = ACTIONS(1490), + [anon_sym_case] = ACTIONS(1490), + [anon_sym_default] = ACTIONS(1490), + [anon_sym_while] = ACTIONS(1490), + [anon_sym_do] = ACTIONS(1490), + [anon_sym_for] = ACTIONS(1490), + [anon_sym_return] = ACTIONS(1490), + [anon_sym_break] = ACTIONS(1490), + [anon_sym_continue] = ACTIONS(1490), + [anon_sym_goto] = ACTIONS(1490), + [anon_sym___try] = ACTIONS(1490), + [anon_sym___leave] = ACTIONS(1490), + [anon_sym_DASH_DASH] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1492), + [anon_sym_sizeof] = ACTIONS(1490), + [anon_sym___alignof__] = ACTIONS(1490), + [anon_sym___alignof] = ACTIONS(1490), + [anon_sym__alignof] = ACTIONS(1490), + [anon_sym_alignof] = ACTIONS(1490), + [anon_sym__Alignof] = ACTIONS(1490), + [anon_sym_offsetof] = ACTIONS(1490), + [anon_sym__Generic] = ACTIONS(1490), + [anon_sym_asm] = ACTIONS(1490), + [anon_sym___asm__] = ACTIONS(1490), + [sym_number_literal] = ACTIONS(1492), + [anon_sym_L_SQUOTE] = ACTIONS(1492), + [anon_sym_u_SQUOTE] = ACTIONS(1492), + [anon_sym_U_SQUOTE] = ACTIONS(1492), + [anon_sym_u8_SQUOTE] = ACTIONS(1492), + [anon_sym_SQUOTE] = ACTIONS(1492), + [anon_sym_L_DQUOTE] = ACTIONS(1492), + [anon_sym_u_DQUOTE] = ACTIONS(1492), + [anon_sym_U_DQUOTE] = ACTIONS(1492), + [anon_sym_u8_DQUOTE] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [sym_true] = ACTIONS(1490), + [sym_false] = ACTIONS(1490), + [anon_sym_NULL] = ACTIONS(1490), + [anon_sym_nullptr] = ACTIONS(1490), [sym_comment] = ACTIONS(5), }, [162] = { - [sym_else_clause] = STATE(176), - [ts_builtin_sym_end] = ACTIONS(1214), - [sym_identifier] = ACTIONS(1212), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1212), - [aux_sym_preproc_def_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token1] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), - [sym_preproc_directive] = ACTIONS(1212), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym___extension__] = ACTIONS(1212), - [anon_sym_typedef] = ACTIONS(1212), - [anon_sym_extern] = ACTIONS(1212), - [anon_sym___attribute__] = ACTIONS(1212), - [anon_sym___scanf] = ACTIONS(1212), - [anon_sym___printf] = ACTIONS(1212), - [anon_sym___read_mostly] = ACTIONS(1212), - [anon_sym___must_hold] = ACTIONS(1212), - [anon_sym___ro_after_init] = ACTIONS(1212), - [anon_sym___noreturn] = ACTIONS(1212), - [anon_sym___cold] = ACTIONS(1212), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), - [anon_sym___declspec] = ACTIONS(1212), - [anon_sym___init] = ACTIONS(1212), - [anon_sym___exit] = ACTIONS(1212), - [anon_sym___cdecl] = ACTIONS(1212), - [anon_sym___clrcall] = ACTIONS(1212), - [anon_sym___stdcall] = ACTIONS(1212), - [anon_sym___fastcall] = ACTIONS(1212), - [anon_sym___thiscall] = ACTIONS(1212), - [anon_sym___vectorcall] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_signed] = ACTIONS(1212), - [anon_sym_unsigned] = ACTIONS(1212), - [anon_sym_long] = ACTIONS(1212), - [anon_sym_short] = ACTIONS(1212), - [anon_sym_static] = ACTIONS(1212), - [anon_sym_auto] = ACTIONS(1212), - [anon_sym_register] = ACTIONS(1212), - [anon_sym_inline] = ACTIONS(1212), - [anon_sym___inline] = ACTIONS(1212), - [anon_sym___inline__] = ACTIONS(1212), - [anon_sym___forceinline] = ACTIONS(1212), - [anon_sym_thread_local] = ACTIONS(1212), - [anon_sym___thread] = ACTIONS(1212), - [anon_sym_const] = ACTIONS(1212), - [anon_sym_constexpr] = ACTIONS(1212), - [anon_sym_volatile] = ACTIONS(1212), - [anon_sym_restrict] = ACTIONS(1212), - [anon_sym___restrict__] = ACTIONS(1212), - [anon_sym__Atomic] = ACTIONS(1212), - [anon_sym__Noreturn] = ACTIONS(1212), - [anon_sym_noreturn] = ACTIONS(1212), - [anon_sym_alignas] = ACTIONS(1212), - [anon_sym__Alignas] = ACTIONS(1212), - [sym_primitive_type] = ACTIONS(1212), - [anon_sym_enum] = ACTIONS(1212), - [anon_sym_struct] = ACTIONS(1212), - [anon_sym_union] = ACTIONS(1212), - [anon_sym_if] = ACTIONS(1212), - [anon_sym_else] = ACTIONS(1488), - [anon_sym_switch] = ACTIONS(1212), - [anon_sym_case] = ACTIONS(1212), - [anon_sym_default] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(1212), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_return] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(1212), - [anon_sym_continue] = ACTIONS(1212), - [anon_sym_goto] = ACTIONS(1212), - [anon_sym___try] = ACTIONS(1212), - [anon_sym___leave] = ACTIONS(1212), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1212), - [anon_sym___alignof__] = ACTIONS(1212), - [anon_sym___alignof] = ACTIONS(1212), - [anon_sym__alignof] = ACTIONS(1212), - [anon_sym_alignof] = ACTIONS(1212), - [anon_sym__Alignof] = ACTIONS(1212), - [anon_sym_offsetof] = ACTIONS(1212), - [anon_sym__Generic] = ACTIONS(1212), - [anon_sym_asm] = ACTIONS(1212), - [anon_sym___asm__] = ACTIONS(1212), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_L_SQUOTE] = ACTIONS(1214), - [anon_sym_u_SQUOTE] = ACTIONS(1214), - [anon_sym_U_SQUOTE] = ACTIONS(1214), - [anon_sym_u8_SQUOTE] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_L_DQUOTE] = ACTIONS(1214), - [anon_sym_u_DQUOTE] = ACTIONS(1214), - [anon_sym_U_DQUOTE] = ACTIONS(1214), - [anon_sym_u8_DQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1212), - [sym_false] = ACTIONS(1212), - [anon_sym_NULL] = ACTIONS(1212), - [anon_sym_nullptr] = ACTIONS(1212), + [sym_identifier] = ACTIONS(1494), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1494), + [aux_sym_preproc_def_token1] = ACTIONS(1494), + [aux_sym_preproc_if_token1] = ACTIONS(1494), + [aux_sym_preproc_if_token2] = ACTIONS(1494), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1494), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1494), + [aux_sym_preproc_else_token1] = ACTIONS(1494), + [aux_sym_preproc_elif_token1] = ACTIONS(1494), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1494), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1494), + [sym_preproc_directive] = ACTIONS(1494), + [anon_sym_LPAREN2] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_TILDE] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_STAR] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym___extension__] = ACTIONS(1494), + [anon_sym_typedef] = ACTIONS(1494), + [anon_sym_extern] = ACTIONS(1494), + [anon_sym___attribute__] = ACTIONS(1494), + [anon_sym___scanf] = ACTIONS(1494), + [anon_sym___printf] = ACTIONS(1494), + [anon_sym___read_mostly] = ACTIONS(1494), + [anon_sym___must_hold] = ACTIONS(1494), + [anon_sym___ro_after_init] = ACTIONS(1494), + [anon_sym___noreturn] = ACTIONS(1494), + [anon_sym___cold] = ACTIONS(1494), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1496), + [anon_sym___declspec] = ACTIONS(1494), + [anon_sym___init] = ACTIONS(1494), + [anon_sym___exit] = ACTIONS(1494), + [anon_sym___cdecl] = ACTIONS(1494), + [anon_sym___clrcall] = ACTIONS(1494), + [anon_sym___stdcall] = ACTIONS(1494), + [anon_sym___fastcall] = ACTIONS(1494), + [anon_sym___thiscall] = ACTIONS(1494), + [anon_sym___vectorcall] = ACTIONS(1494), + [anon_sym_LBRACE] = ACTIONS(1496), + [anon_sym_signed] = ACTIONS(1494), + [anon_sym_unsigned] = ACTIONS(1494), + [anon_sym_long] = ACTIONS(1494), + [anon_sym_short] = ACTIONS(1494), + [anon_sym_static] = ACTIONS(1494), + [anon_sym_auto] = ACTIONS(1494), + [anon_sym_register] = ACTIONS(1494), + [anon_sym_inline] = ACTIONS(1494), + [anon_sym___inline] = ACTIONS(1494), + [anon_sym___inline__] = ACTIONS(1494), + [anon_sym___forceinline] = ACTIONS(1494), + [anon_sym_thread_local] = ACTIONS(1494), + [anon_sym___thread] = ACTIONS(1494), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_constexpr] = ACTIONS(1494), + [anon_sym_volatile] = ACTIONS(1494), + [anon_sym_restrict] = ACTIONS(1494), + [anon_sym___restrict__] = ACTIONS(1494), + [anon_sym__Atomic] = ACTIONS(1494), + [anon_sym__Noreturn] = ACTIONS(1494), + [anon_sym_noreturn] = ACTIONS(1494), + [anon_sym_alignas] = ACTIONS(1494), + [anon_sym__Alignas] = ACTIONS(1494), + [sym_primitive_type] = ACTIONS(1494), + [anon_sym_enum] = ACTIONS(1494), + [anon_sym_struct] = ACTIONS(1494), + [anon_sym_union] = ACTIONS(1494), + [anon_sym_if] = ACTIONS(1494), + [anon_sym_switch] = ACTIONS(1494), + [anon_sym_case] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(1494), + [anon_sym_while] = ACTIONS(1494), + [anon_sym_do] = ACTIONS(1494), + [anon_sym_for] = ACTIONS(1494), + [anon_sym_return] = ACTIONS(1494), + [anon_sym_break] = ACTIONS(1494), + [anon_sym_continue] = ACTIONS(1494), + [anon_sym_goto] = ACTIONS(1494), + [anon_sym___try] = ACTIONS(1494), + [anon_sym___leave] = ACTIONS(1494), + [anon_sym_DASH_DASH] = ACTIONS(1496), + [anon_sym_PLUS_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1494), + [anon_sym___alignof__] = ACTIONS(1494), + [anon_sym___alignof] = ACTIONS(1494), + [anon_sym__alignof] = ACTIONS(1494), + [anon_sym_alignof] = ACTIONS(1494), + [anon_sym__Alignof] = ACTIONS(1494), + [anon_sym_offsetof] = ACTIONS(1494), + [anon_sym__Generic] = ACTIONS(1494), + [anon_sym_asm] = ACTIONS(1494), + [anon_sym___asm__] = ACTIONS(1494), + [sym_number_literal] = ACTIONS(1496), + [anon_sym_L_SQUOTE] = ACTIONS(1496), + [anon_sym_u_SQUOTE] = ACTIONS(1496), + [anon_sym_U_SQUOTE] = ACTIONS(1496), + [anon_sym_u8_SQUOTE] = ACTIONS(1496), + [anon_sym_SQUOTE] = ACTIONS(1496), + [anon_sym_L_DQUOTE] = ACTIONS(1496), + [anon_sym_u_DQUOTE] = ACTIONS(1496), + [anon_sym_U_DQUOTE] = ACTIONS(1496), + [anon_sym_u8_DQUOTE] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [sym_true] = ACTIONS(1494), + [sym_false] = ACTIONS(1494), + [anon_sym_NULL] = ACTIONS(1494), + [anon_sym_nullptr] = ACTIONS(1494), [sym_comment] = ACTIONS(5), }, [163] = { - [sym_else_clause] = STATE(239), - [sym_identifier] = ACTIONS(1212), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1212), - [aux_sym_preproc_def_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token1] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), - [sym_preproc_directive] = ACTIONS(1212), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym___extension__] = ACTIONS(1212), - [anon_sym_typedef] = ACTIONS(1212), - [anon_sym_extern] = ACTIONS(1212), - [anon_sym___attribute__] = ACTIONS(1212), - [anon_sym___scanf] = ACTIONS(1212), - [anon_sym___printf] = ACTIONS(1212), - [anon_sym___read_mostly] = ACTIONS(1212), - [anon_sym___must_hold] = ACTIONS(1212), - [anon_sym___ro_after_init] = ACTIONS(1212), - [anon_sym___noreturn] = ACTIONS(1212), - [anon_sym___cold] = ACTIONS(1212), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), - [anon_sym___declspec] = ACTIONS(1212), - [anon_sym___init] = ACTIONS(1212), - [anon_sym___exit] = ACTIONS(1212), - [anon_sym___cdecl] = ACTIONS(1212), - [anon_sym___clrcall] = ACTIONS(1212), - [anon_sym___stdcall] = ACTIONS(1212), - [anon_sym___fastcall] = ACTIONS(1212), - [anon_sym___thiscall] = ACTIONS(1212), - [anon_sym___vectorcall] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_RBRACE] = ACTIONS(1214), - [anon_sym_signed] = ACTIONS(1212), - [anon_sym_unsigned] = ACTIONS(1212), - [anon_sym_long] = ACTIONS(1212), - [anon_sym_short] = ACTIONS(1212), - [anon_sym_static] = ACTIONS(1212), - [anon_sym_auto] = ACTIONS(1212), - [anon_sym_register] = ACTIONS(1212), - [anon_sym_inline] = ACTIONS(1212), - [anon_sym___inline] = ACTIONS(1212), - [anon_sym___inline__] = ACTIONS(1212), - [anon_sym___forceinline] = ACTIONS(1212), - [anon_sym_thread_local] = ACTIONS(1212), - [anon_sym___thread] = ACTIONS(1212), - [anon_sym_const] = ACTIONS(1212), - [anon_sym_constexpr] = ACTIONS(1212), - [anon_sym_volatile] = ACTIONS(1212), - [anon_sym_restrict] = ACTIONS(1212), - [anon_sym___restrict__] = ACTIONS(1212), - [anon_sym__Atomic] = ACTIONS(1212), - [anon_sym__Noreturn] = ACTIONS(1212), - [anon_sym_noreturn] = ACTIONS(1212), - [anon_sym_alignas] = ACTIONS(1212), - [anon_sym__Alignas] = ACTIONS(1212), - [sym_primitive_type] = ACTIONS(1212), - [anon_sym_enum] = ACTIONS(1212), - [anon_sym_struct] = ACTIONS(1212), - [anon_sym_union] = ACTIONS(1212), - [anon_sym_if] = ACTIONS(1212), - [anon_sym_else] = ACTIONS(1490), - [anon_sym_switch] = ACTIONS(1212), - [anon_sym_case] = ACTIONS(1212), - [anon_sym_default] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(1212), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_return] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(1212), - [anon_sym_continue] = ACTIONS(1212), - [anon_sym_goto] = ACTIONS(1212), - [anon_sym___try] = ACTIONS(1212), - [anon_sym___leave] = ACTIONS(1212), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1212), - [anon_sym___alignof__] = ACTIONS(1212), - [anon_sym___alignof] = ACTIONS(1212), - [anon_sym__alignof] = ACTIONS(1212), - [anon_sym_alignof] = ACTIONS(1212), - [anon_sym__Alignof] = ACTIONS(1212), - [anon_sym_offsetof] = ACTIONS(1212), - [anon_sym__Generic] = ACTIONS(1212), - [anon_sym_asm] = ACTIONS(1212), - [anon_sym___asm__] = ACTIONS(1212), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_L_SQUOTE] = ACTIONS(1214), - [anon_sym_u_SQUOTE] = ACTIONS(1214), - [anon_sym_U_SQUOTE] = ACTIONS(1214), - [anon_sym_u8_SQUOTE] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_L_DQUOTE] = ACTIONS(1214), - [anon_sym_u_DQUOTE] = ACTIONS(1214), - [anon_sym_U_DQUOTE] = ACTIONS(1214), - [anon_sym_u8_DQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1212), - [sym_false] = ACTIONS(1212), - [anon_sym_NULL] = ACTIONS(1212), - [anon_sym_nullptr] = ACTIONS(1212), + [sym_identifier] = ACTIONS(1498), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1498), + [aux_sym_preproc_def_token1] = ACTIONS(1498), + [aux_sym_preproc_if_token1] = ACTIONS(1498), + [aux_sym_preproc_if_token2] = ACTIONS(1498), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1498), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1498), + [aux_sym_preproc_else_token1] = ACTIONS(1498), + [aux_sym_preproc_elif_token1] = ACTIONS(1498), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1498), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1498), + [sym_preproc_directive] = ACTIONS(1498), + [anon_sym_LPAREN2] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_TILDE] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym___extension__] = ACTIONS(1498), + [anon_sym_typedef] = ACTIONS(1498), + [anon_sym_extern] = ACTIONS(1498), + [anon_sym___attribute__] = ACTIONS(1498), + [anon_sym___scanf] = ACTIONS(1498), + [anon_sym___printf] = ACTIONS(1498), + [anon_sym___read_mostly] = ACTIONS(1498), + [anon_sym___must_hold] = ACTIONS(1498), + [anon_sym___ro_after_init] = ACTIONS(1498), + [anon_sym___noreturn] = ACTIONS(1498), + [anon_sym___cold] = ACTIONS(1498), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1500), + [anon_sym___declspec] = ACTIONS(1498), + [anon_sym___init] = ACTIONS(1498), + [anon_sym___exit] = ACTIONS(1498), + [anon_sym___cdecl] = ACTIONS(1498), + [anon_sym___clrcall] = ACTIONS(1498), + [anon_sym___stdcall] = ACTIONS(1498), + [anon_sym___fastcall] = ACTIONS(1498), + [anon_sym___thiscall] = ACTIONS(1498), + [anon_sym___vectorcall] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1500), + [anon_sym_signed] = ACTIONS(1498), + [anon_sym_unsigned] = ACTIONS(1498), + [anon_sym_long] = ACTIONS(1498), + [anon_sym_short] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_auto] = ACTIONS(1498), + [anon_sym_register] = ACTIONS(1498), + [anon_sym_inline] = ACTIONS(1498), + [anon_sym___inline] = ACTIONS(1498), + [anon_sym___inline__] = ACTIONS(1498), + [anon_sym___forceinline] = ACTIONS(1498), + [anon_sym_thread_local] = ACTIONS(1498), + [anon_sym___thread] = ACTIONS(1498), + [anon_sym_const] = ACTIONS(1498), + [anon_sym_constexpr] = ACTIONS(1498), + [anon_sym_volatile] = ACTIONS(1498), + [anon_sym_restrict] = ACTIONS(1498), + [anon_sym___restrict__] = ACTIONS(1498), + [anon_sym__Atomic] = ACTIONS(1498), + [anon_sym__Noreturn] = ACTIONS(1498), + [anon_sym_noreturn] = ACTIONS(1498), + [anon_sym_alignas] = ACTIONS(1498), + [anon_sym__Alignas] = ACTIONS(1498), + [sym_primitive_type] = ACTIONS(1498), + [anon_sym_enum] = ACTIONS(1498), + [anon_sym_struct] = ACTIONS(1498), + [anon_sym_union] = ACTIONS(1498), + [anon_sym_if] = ACTIONS(1498), + [anon_sym_switch] = ACTIONS(1498), + [anon_sym_case] = ACTIONS(1498), + [anon_sym_default] = ACTIONS(1498), + [anon_sym_while] = ACTIONS(1498), + [anon_sym_do] = ACTIONS(1498), + [anon_sym_for] = ACTIONS(1498), + [anon_sym_return] = ACTIONS(1498), + [anon_sym_break] = ACTIONS(1498), + [anon_sym_continue] = ACTIONS(1498), + [anon_sym_goto] = ACTIONS(1498), + [anon_sym___try] = ACTIONS(1498), + [anon_sym___leave] = ACTIONS(1498), + [anon_sym_DASH_DASH] = ACTIONS(1500), + [anon_sym_PLUS_PLUS] = ACTIONS(1500), + [anon_sym_sizeof] = ACTIONS(1498), + [anon_sym___alignof__] = ACTIONS(1498), + [anon_sym___alignof] = ACTIONS(1498), + [anon_sym__alignof] = ACTIONS(1498), + [anon_sym_alignof] = ACTIONS(1498), + [anon_sym__Alignof] = ACTIONS(1498), + [anon_sym_offsetof] = ACTIONS(1498), + [anon_sym__Generic] = ACTIONS(1498), + [anon_sym_asm] = ACTIONS(1498), + [anon_sym___asm__] = ACTIONS(1498), + [sym_number_literal] = ACTIONS(1500), + [anon_sym_L_SQUOTE] = ACTIONS(1500), + [anon_sym_u_SQUOTE] = ACTIONS(1500), + [anon_sym_U_SQUOTE] = ACTIONS(1500), + [anon_sym_u8_SQUOTE] = ACTIONS(1500), + [anon_sym_SQUOTE] = ACTIONS(1500), + [anon_sym_L_DQUOTE] = ACTIONS(1500), + [anon_sym_u_DQUOTE] = ACTIONS(1500), + [anon_sym_U_DQUOTE] = ACTIONS(1500), + [anon_sym_u8_DQUOTE] = ACTIONS(1500), + [anon_sym_DQUOTE] = ACTIONS(1500), + [sym_true] = ACTIONS(1498), + [sym_false] = ACTIONS(1498), + [anon_sym_NULL] = ACTIONS(1498), + [anon_sym_nullptr] = ACTIONS(1498), [sym_comment] = ACTIONS(5), }, [164] = { - [sym_else_clause] = STATE(230), - [sym_identifier] = ACTIONS(1212), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1212), - [aux_sym_preproc_def_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token2] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), - [sym_preproc_directive] = ACTIONS(1212), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym___extension__] = ACTIONS(1212), - [anon_sym_typedef] = ACTIONS(1212), - [anon_sym_extern] = ACTIONS(1212), - [anon_sym___attribute__] = ACTIONS(1212), - [anon_sym___scanf] = ACTIONS(1212), - [anon_sym___printf] = ACTIONS(1212), - [anon_sym___read_mostly] = ACTIONS(1212), - [anon_sym___must_hold] = ACTIONS(1212), - [anon_sym___ro_after_init] = ACTIONS(1212), - [anon_sym___noreturn] = ACTIONS(1212), - [anon_sym___cold] = ACTIONS(1212), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), - [anon_sym___declspec] = ACTIONS(1212), - [anon_sym___init] = ACTIONS(1212), - [anon_sym___exit] = ACTIONS(1212), - [anon_sym___cdecl] = ACTIONS(1212), - [anon_sym___clrcall] = ACTIONS(1212), - [anon_sym___stdcall] = ACTIONS(1212), - [anon_sym___fastcall] = ACTIONS(1212), - [anon_sym___thiscall] = ACTIONS(1212), - [anon_sym___vectorcall] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_signed] = ACTIONS(1212), - [anon_sym_unsigned] = ACTIONS(1212), - [anon_sym_long] = ACTIONS(1212), - [anon_sym_short] = ACTIONS(1212), - [anon_sym_static] = ACTIONS(1212), - [anon_sym_auto] = ACTIONS(1212), - [anon_sym_register] = ACTIONS(1212), - [anon_sym_inline] = ACTIONS(1212), - [anon_sym___inline] = ACTIONS(1212), - [anon_sym___inline__] = ACTIONS(1212), - [anon_sym___forceinline] = ACTIONS(1212), - [anon_sym_thread_local] = ACTIONS(1212), - [anon_sym___thread] = ACTIONS(1212), - [anon_sym_const] = ACTIONS(1212), - [anon_sym_constexpr] = ACTIONS(1212), - [anon_sym_volatile] = ACTIONS(1212), - [anon_sym_restrict] = ACTIONS(1212), - [anon_sym___restrict__] = ACTIONS(1212), - [anon_sym__Atomic] = ACTIONS(1212), - [anon_sym__Noreturn] = ACTIONS(1212), - [anon_sym_noreturn] = ACTIONS(1212), - [anon_sym_alignas] = ACTIONS(1212), - [anon_sym__Alignas] = ACTIONS(1212), - [sym_primitive_type] = ACTIONS(1212), - [anon_sym_enum] = ACTIONS(1212), - [anon_sym_struct] = ACTIONS(1212), - [anon_sym_union] = ACTIONS(1212), - [anon_sym_if] = ACTIONS(1212), - [anon_sym_else] = ACTIONS(1492), - [anon_sym_switch] = ACTIONS(1212), - [anon_sym_case] = ACTIONS(1212), - [anon_sym_default] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(1212), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_return] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(1212), - [anon_sym_continue] = ACTIONS(1212), - [anon_sym_goto] = ACTIONS(1212), - [anon_sym___try] = ACTIONS(1212), - [anon_sym___leave] = ACTIONS(1212), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1212), - [anon_sym___alignof__] = ACTIONS(1212), - [anon_sym___alignof] = ACTIONS(1212), - [anon_sym__alignof] = ACTIONS(1212), - [anon_sym_alignof] = ACTIONS(1212), - [anon_sym__Alignof] = ACTIONS(1212), - [anon_sym_offsetof] = ACTIONS(1212), - [anon_sym__Generic] = ACTIONS(1212), - [anon_sym_asm] = ACTIONS(1212), - [anon_sym___asm__] = ACTIONS(1212), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_L_SQUOTE] = ACTIONS(1214), - [anon_sym_u_SQUOTE] = ACTIONS(1214), - [anon_sym_U_SQUOTE] = ACTIONS(1214), - [anon_sym_u8_SQUOTE] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_L_DQUOTE] = ACTIONS(1214), - [anon_sym_u_DQUOTE] = ACTIONS(1214), - [anon_sym_U_DQUOTE] = ACTIONS(1214), - [anon_sym_u8_DQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1212), - [sym_false] = ACTIONS(1212), - [anon_sym_NULL] = ACTIONS(1212), - [anon_sym_nullptr] = ACTIONS(1212), + [sym_identifier] = ACTIONS(1502), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1502), + [aux_sym_preproc_def_token1] = ACTIONS(1502), + [aux_sym_preproc_if_token1] = ACTIONS(1502), + [aux_sym_preproc_if_token2] = ACTIONS(1502), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1502), + [aux_sym_preproc_else_token1] = ACTIONS(1502), + [aux_sym_preproc_elif_token1] = ACTIONS(1502), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1502), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1502), + [sym_preproc_directive] = ACTIONS(1502), + [anon_sym_LPAREN2] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_TILDE] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_PLUS] = ACTIONS(1502), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym___extension__] = ACTIONS(1502), + [anon_sym_typedef] = ACTIONS(1502), + [anon_sym_extern] = ACTIONS(1502), + [anon_sym___attribute__] = ACTIONS(1502), + [anon_sym___scanf] = ACTIONS(1502), + [anon_sym___printf] = ACTIONS(1502), + [anon_sym___read_mostly] = ACTIONS(1502), + [anon_sym___must_hold] = ACTIONS(1502), + [anon_sym___ro_after_init] = ACTIONS(1502), + [anon_sym___noreturn] = ACTIONS(1502), + [anon_sym___cold] = ACTIONS(1502), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1505), + [anon_sym___declspec] = ACTIONS(1502), + [anon_sym___init] = ACTIONS(1502), + [anon_sym___exit] = ACTIONS(1502), + [anon_sym___cdecl] = ACTIONS(1502), + [anon_sym___clrcall] = ACTIONS(1502), + [anon_sym___stdcall] = ACTIONS(1502), + [anon_sym___fastcall] = ACTIONS(1502), + [anon_sym___thiscall] = ACTIONS(1502), + [anon_sym___vectorcall] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_signed] = ACTIONS(1502), + [anon_sym_unsigned] = ACTIONS(1502), + [anon_sym_long] = ACTIONS(1502), + [anon_sym_short] = ACTIONS(1502), + [anon_sym_static] = ACTIONS(1502), + [anon_sym_auto] = ACTIONS(1502), + [anon_sym_register] = ACTIONS(1502), + [anon_sym_inline] = ACTIONS(1502), + [anon_sym___inline] = ACTIONS(1502), + [anon_sym___inline__] = ACTIONS(1502), + [anon_sym___forceinline] = ACTIONS(1502), + [anon_sym_thread_local] = ACTIONS(1502), + [anon_sym___thread] = ACTIONS(1502), + [anon_sym_const] = ACTIONS(1502), + [anon_sym_constexpr] = ACTIONS(1502), + [anon_sym_volatile] = ACTIONS(1502), + [anon_sym_restrict] = ACTIONS(1502), + [anon_sym___restrict__] = ACTIONS(1502), + [anon_sym__Atomic] = ACTIONS(1502), + [anon_sym__Noreturn] = ACTIONS(1502), + [anon_sym_noreturn] = ACTIONS(1502), + [anon_sym_alignas] = ACTIONS(1502), + [anon_sym__Alignas] = ACTIONS(1502), + [sym_primitive_type] = ACTIONS(1502), + [anon_sym_enum] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1502), + [anon_sym_union] = ACTIONS(1502), + [anon_sym_if] = ACTIONS(1502), + [anon_sym_switch] = ACTIONS(1502), + [anon_sym_case] = ACTIONS(1502), + [anon_sym_default] = ACTIONS(1502), + [anon_sym_while] = ACTIONS(1502), + [anon_sym_do] = ACTIONS(1502), + [anon_sym_for] = ACTIONS(1502), + [anon_sym_return] = ACTIONS(1502), + [anon_sym_break] = ACTIONS(1502), + [anon_sym_continue] = ACTIONS(1502), + [anon_sym_goto] = ACTIONS(1502), + [anon_sym___try] = ACTIONS(1502), + [anon_sym___leave] = ACTIONS(1502), + [anon_sym_DASH_DASH] = ACTIONS(1505), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_sizeof] = ACTIONS(1502), + [anon_sym___alignof__] = ACTIONS(1502), + [anon_sym___alignof] = ACTIONS(1502), + [anon_sym__alignof] = ACTIONS(1502), + [anon_sym_alignof] = ACTIONS(1502), + [anon_sym__Alignof] = ACTIONS(1502), + [anon_sym_offsetof] = ACTIONS(1502), + [anon_sym__Generic] = ACTIONS(1502), + [anon_sym_asm] = ACTIONS(1502), + [anon_sym___asm__] = ACTIONS(1502), + [sym_number_literal] = ACTIONS(1505), + [anon_sym_L_SQUOTE] = ACTIONS(1505), + [anon_sym_u_SQUOTE] = ACTIONS(1505), + [anon_sym_U_SQUOTE] = ACTIONS(1505), + [anon_sym_u8_SQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1505), + [anon_sym_L_DQUOTE] = ACTIONS(1505), + [anon_sym_u_DQUOTE] = ACTIONS(1505), + [anon_sym_U_DQUOTE] = ACTIONS(1505), + [anon_sym_u8_DQUOTE] = ACTIONS(1505), + [anon_sym_DQUOTE] = ACTIONS(1505), + [sym_true] = ACTIONS(1502), + [sym_false] = ACTIONS(1502), + [anon_sym_NULL] = ACTIONS(1502), + [anon_sym_nullptr] = ACTIONS(1502), [sym_comment] = ACTIONS(5), }, [165] = { - [ts_builtin_sym_end] = ACTIONS(1240), - [sym_identifier] = ACTIONS(1238), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1238), - [aux_sym_preproc_def_token1] = ACTIONS(1238), - [aux_sym_preproc_if_token1] = ACTIONS(1238), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1238), - [sym_preproc_directive] = ACTIONS(1238), - [anon_sym_LPAREN2] = ACTIONS(1240), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym___extension__] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1238), - [anon_sym_extern] = ACTIONS(1238), - [anon_sym___attribute__] = ACTIONS(1238), - [anon_sym___scanf] = ACTIONS(1238), - [anon_sym___printf] = ACTIONS(1238), - [anon_sym___read_mostly] = ACTIONS(1238), - [anon_sym___must_hold] = ACTIONS(1238), - [anon_sym___ro_after_init] = ACTIONS(1238), - [anon_sym___noreturn] = ACTIONS(1238), - [anon_sym___cold] = ACTIONS(1238), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1240), - [anon_sym___declspec] = ACTIONS(1238), - [anon_sym___init] = ACTIONS(1238), - [anon_sym___exit] = ACTIONS(1238), - [anon_sym___cdecl] = ACTIONS(1238), - [anon_sym___clrcall] = ACTIONS(1238), - [anon_sym___stdcall] = ACTIONS(1238), - [anon_sym___fastcall] = ACTIONS(1238), - [anon_sym___thiscall] = ACTIONS(1238), - [anon_sym___vectorcall] = ACTIONS(1238), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_signed] = ACTIONS(1238), - [anon_sym_unsigned] = ACTIONS(1238), - [anon_sym_long] = ACTIONS(1238), - [anon_sym_short] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_auto] = ACTIONS(1238), - [anon_sym_register] = ACTIONS(1238), - [anon_sym_inline] = ACTIONS(1238), - [anon_sym___inline] = ACTIONS(1238), - [anon_sym___inline__] = ACTIONS(1238), - [anon_sym___forceinline] = ACTIONS(1238), - [anon_sym_thread_local] = ACTIONS(1238), - [anon_sym___thread] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_constexpr] = ACTIONS(1238), - [anon_sym_volatile] = ACTIONS(1238), - [anon_sym_restrict] = ACTIONS(1238), - [anon_sym___restrict__] = ACTIONS(1238), - [anon_sym__Atomic] = ACTIONS(1238), - [anon_sym__Noreturn] = ACTIONS(1238), - [anon_sym_noreturn] = ACTIONS(1238), - [anon_sym_alignas] = ACTIONS(1238), - [anon_sym__Alignas] = ACTIONS(1238), - [sym_primitive_type] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1238), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_else] = ACTIONS(1238), - [anon_sym_switch] = ACTIONS(1238), - [anon_sym_case] = ACTIONS(1238), - [anon_sym_default] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_do] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_goto] = ACTIONS(1238), - [anon_sym___try] = ACTIONS(1238), - [anon_sym___leave] = ACTIONS(1238), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [anon_sym_sizeof] = ACTIONS(1238), - [anon_sym___alignof__] = ACTIONS(1238), - [anon_sym___alignof] = ACTIONS(1238), - [anon_sym__alignof] = ACTIONS(1238), - [anon_sym_alignof] = ACTIONS(1238), - [anon_sym__Alignof] = ACTIONS(1238), - [anon_sym_offsetof] = ACTIONS(1238), - [anon_sym__Generic] = ACTIONS(1238), - [anon_sym_asm] = ACTIONS(1238), - [anon_sym___asm__] = ACTIONS(1238), - [sym_number_literal] = ACTIONS(1240), - [anon_sym_L_SQUOTE] = ACTIONS(1240), - [anon_sym_u_SQUOTE] = ACTIONS(1240), - [anon_sym_U_SQUOTE] = ACTIONS(1240), - [anon_sym_u8_SQUOTE] = ACTIONS(1240), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_L_DQUOTE] = ACTIONS(1240), - [anon_sym_u_DQUOTE] = ACTIONS(1240), - [anon_sym_U_DQUOTE] = ACTIONS(1240), - [anon_sym_u8_DQUOTE] = ACTIONS(1240), - [anon_sym_DQUOTE] = ACTIONS(1240), - [sym_true] = ACTIONS(1238), - [sym_false] = ACTIONS(1238), - [anon_sym_NULL] = ACTIONS(1238), - [anon_sym_nullptr] = ACTIONS(1238), + [sym_identifier] = ACTIONS(1508), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1508), + [aux_sym_preproc_def_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token2] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1508), + [aux_sym_preproc_else_token1] = ACTIONS(1508), + [aux_sym_preproc_elif_token1] = ACTIONS(1508), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1508), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1508), + [sym_preproc_directive] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_TILDE] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym___extension__] = ACTIONS(1508), + [anon_sym_typedef] = ACTIONS(1508), + [anon_sym_extern] = ACTIONS(1508), + [anon_sym___attribute__] = ACTIONS(1508), + [anon_sym___scanf] = ACTIONS(1508), + [anon_sym___printf] = ACTIONS(1508), + [anon_sym___read_mostly] = ACTIONS(1508), + [anon_sym___must_hold] = ACTIONS(1508), + [anon_sym___ro_after_init] = ACTIONS(1508), + [anon_sym___noreturn] = ACTIONS(1508), + [anon_sym___cold] = ACTIONS(1508), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1510), + [anon_sym___declspec] = ACTIONS(1508), + [anon_sym___init] = ACTIONS(1508), + [anon_sym___exit] = ACTIONS(1508), + [anon_sym___cdecl] = ACTIONS(1508), + [anon_sym___clrcall] = ACTIONS(1508), + [anon_sym___stdcall] = ACTIONS(1508), + [anon_sym___fastcall] = ACTIONS(1508), + [anon_sym___thiscall] = ACTIONS(1508), + [anon_sym___vectorcall] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_signed] = ACTIONS(1508), + [anon_sym_unsigned] = ACTIONS(1508), + [anon_sym_long] = ACTIONS(1508), + [anon_sym_short] = ACTIONS(1508), + [anon_sym_static] = ACTIONS(1508), + [anon_sym_auto] = ACTIONS(1508), + [anon_sym_register] = ACTIONS(1508), + [anon_sym_inline] = ACTIONS(1508), + [anon_sym___inline] = ACTIONS(1508), + [anon_sym___inline__] = ACTIONS(1508), + [anon_sym___forceinline] = ACTIONS(1508), + [anon_sym_thread_local] = ACTIONS(1508), + [anon_sym___thread] = ACTIONS(1508), + [anon_sym_const] = ACTIONS(1508), + [anon_sym_constexpr] = ACTIONS(1508), + [anon_sym_volatile] = ACTIONS(1508), + [anon_sym_restrict] = ACTIONS(1508), + [anon_sym___restrict__] = ACTIONS(1508), + [anon_sym__Atomic] = ACTIONS(1508), + [anon_sym__Noreturn] = ACTIONS(1508), + [anon_sym_noreturn] = ACTIONS(1508), + [anon_sym_alignas] = ACTIONS(1508), + [anon_sym__Alignas] = ACTIONS(1508), + [sym_primitive_type] = ACTIONS(1508), + [anon_sym_enum] = ACTIONS(1508), + [anon_sym_struct] = ACTIONS(1508), + [anon_sym_union] = ACTIONS(1508), + [anon_sym_if] = ACTIONS(1508), + [anon_sym_switch] = ACTIONS(1508), + [anon_sym_case] = ACTIONS(1508), + [anon_sym_default] = ACTIONS(1508), + [anon_sym_while] = ACTIONS(1508), + [anon_sym_do] = ACTIONS(1508), + [anon_sym_for] = ACTIONS(1508), + [anon_sym_return] = ACTIONS(1508), + [anon_sym_break] = ACTIONS(1508), + [anon_sym_continue] = ACTIONS(1508), + [anon_sym_goto] = ACTIONS(1508), + [anon_sym___try] = ACTIONS(1508), + [anon_sym___leave] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1510), + [anon_sym_PLUS_PLUS] = ACTIONS(1510), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym___alignof__] = ACTIONS(1508), + [anon_sym___alignof] = ACTIONS(1508), + [anon_sym__alignof] = ACTIONS(1508), + [anon_sym_alignof] = ACTIONS(1508), + [anon_sym__Alignof] = ACTIONS(1508), + [anon_sym_offsetof] = ACTIONS(1508), + [anon_sym__Generic] = ACTIONS(1508), + [anon_sym_asm] = ACTIONS(1508), + [anon_sym___asm__] = ACTIONS(1508), + [sym_number_literal] = ACTIONS(1510), + [anon_sym_L_SQUOTE] = ACTIONS(1510), + [anon_sym_u_SQUOTE] = ACTIONS(1510), + [anon_sym_U_SQUOTE] = ACTIONS(1510), + [anon_sym_u8_SQUOTE] = ACTIONS(1510), + [anon_sym_SQUOTE] = ACTIONS(1510), + [anon_sym_L_DQUOTE] = ACTIONS(1510), + [anon_sym_u_DQUOTE] = ACTIONS(1510), + [anon_sym_U_DQUOTE] = ACTIONS(1510), + [anon_sym_u8_DQUOTE] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [sym_true] = ACTIONS(1508), + [sym_false] = ACTIONS(1508), + [anon_sym_NULL] = ACTIONS(1508), + [anon_sym_nullptr] = ACTIONS(1508), [sym_comment] = ACTIONS(5), }, [166] = { - [sym_identifier] = ACTIONS(1346), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1346), - [aux_sym_preproc_def_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), - [sym_preproc_directive] = ACTIONS(1346), - [anon_sym_LPAREN2] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_TILDE] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym___extension__] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym___attribute__] = ACTIONS(1346), - [anon_sym___scanf] = ACTIONS(1346), - [anon_sym___printf] = ACTIONS(1346), - [anon_sym___read_mostly] = ACTIONS(1346), - [anon_sym___must_hold] = ACTIONS(1346), - [anon_sym___ro_after_init] = ACTIONS(1346), - [anon_sym___noreturn] = ACTIONS(1346), - [anon_sym___cold] = ACTIONS(1346), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), - [anon_sym___declspec] = ACTIONS(1346), - [anon_sym___init] = ACTIONS(1346), - [anon_sym___exit] = ACTIONS(1346), - [anon_sym___cdecl] = ACTIONS(1346), - [anon_sym___clrcall] = ACTIONS(1346), - [anon_sym___stdcall] = ACTIONS(1346), - [anon_sym___fastcall] = ACTIONS(1346), - [anon_sym___thiscall] = ACTIONS(1346), - [anon_sym___vectorcall] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_RBRACE] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1346), - [anon_sym_unsigned] = ACTIONS(1346), - [anon_sym_long] = ACTIONS(1346), - [anon_sym_short] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_auto] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_inline] = ACTIONS(1346), - [anon_sym___inline] = ACTIONS(1346), - [anon_sym___inline__] = ACTIONS(1346), - [anon_sym___forceinline] = ACTIONS(1346), - [anon_sym_thread_local] = ACTIONS(1346), - [anon_sym___thread] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_constexpr] = ACTIONS(1346), - [anon_sym_volatile] = ACTIONS(1346), - [anon_sym_restrict] = ACTIONS(1346), - [anon_sym___restrict__] = ACTIONS(1346), - [anon_sym__Atomic] = ACTIONS(1346), - [anon_sym__Noreturn] = ACTIONS(1346), - [anon_sym_noreturn] = ACTIONS(1346), - [anon_sym_alignas] = ACTIONS(1346), - [anon_sym__Alignas] = ACTIONS(1346), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_case] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_goto] = ACTIONS(1346), - [anon_sym___try] = ACTIONS(1346), - [anon_sym___leave] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_sizeof] = ACTIONS(1346), - [anon_sym___alignof__] = ACTIONS(1346), - [anon_sym___alignof] = ACTIONS(1346), - [anon_sym__alignof] = ACTIONS(1346), - [anon_sym_alignof] = ACTIONS(1346), - [anon_sym__Alignof] = ACTIONS(1346), - [anon_sym_offsetof] = ACTIONS(1346), - [anon_sym__Generic] = ACTIONS(1346), - [anon_sym_asm] = ACTIONS(1346), - [anon_sym___asm__] = ACTIONS(1346), - [sym_number_literal] = ACTIONS(1348), - [anon_sym_L_SQUOTE] = ACTIONS(1348), - [anon_sym_u_SQUOTE] = ACTIONS(1348), - [anon_sym_U_SQUOTE] = ACTIONS(1348), - [anon_sym_u8_SQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_L_DQUOTE] = ACTIONS(1348), - [anon_sym_u_DQUOTE] = ACTIONS(1348), - [anon_sym_U_DQUOTE] = ACTIONS(1348), - [anon_sym_u8_DQUOTE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [anon_sym_NULL] = ACTIONS(1346), - [anon_sym_nullptr] = ACTIONS(1346), + [sym_identifier] = ACTIONS(1512), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1512), + [aux_sym_preproc_def_token1] = ACTIONS(1512), + [aux_sym_preproc_if_token1] = ACTIONS(1512), + [aux_sym_preproc_if_token2] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1512), + [aux_sym_preproc_else_token1] = ACTIONS(1512), + [aux_sym_preproc_elif_token1] = ACTIONS(1512), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1512), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1512), + [sym_preproc_directive] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1514), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym___extension__] = ACTIONS(1512), + [anon_sym_typedef] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym___attribute__] = ACTIONS(1512), + [anon_sym___scanf] = ACTIONS(1512), + [anon_sym___printf] = ACTIONS(1512), + [anon_sym___read_mostly] = ACTIONS(1512), + [anon_sym___must_hold] = ACTIONS(1512), + [anon_sym___ro_after_init] = ACTIONS(1512), + [anon_sym___noreturn] = ACTIONS(1512), + [anon_sym___cold] = ACTIONS(1512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1514), + [anon_sym___declspec] = ACTIONS(1512), + [anon_sym___init] = ACTIONS(1512), + [anon_sym___exit] = ACTIONS(1512), + [anon_sym___cdecl] = ACTIONS(1512), + [anon_sym___clrcall] = ACTIONS(1512), + [anon_sym___stdcall] = ACTIONS(1512), + [anon_sym___fastcall] = ACTIONS(1512), + [anon_sym___thiscall] = ACTIONS(1512), + [anon_sym___vectorcall] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_signed] = ACTIONS(1512), + [anon_sym_unsigned] = ACTIONS(1512), + [anon_sym_long] = ACTIONS(1512), + [anon_sym_short] = ACTIONS(1512), + [anon_sym_static] = ACTIONS(1512), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_register] = ACTIONS(1512), + [anon_sym_inline] = ACTIONS(1512), + [anon_sym___inline] = ACTIONS(1512), + [anon_sym___inline__] = ACTIONS(1512), + [anon_sym___forceinline] = ACTIONS(1512), + [anon_sym_thread_local] = ACTIONS(1512), + [anon_sym___thread] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [anon_sym_constexpr] = ACTIONS(1512), + [anon_sym_volatile] = ACTIONS(1512), + [anon_sym_restrict] = ACTIONS(1512), + [anon_sym___restrict__] = ACTIONS(1512), + [anon_sym__Atomic] = ACTIONS(1512), + [anon_sym__Noreturn] = ACTIONS(1512), + [anon_sym_noreturn] = ACTIONS(1512), + [anon_sym_alignas] = ACTIONS(1512), + [anon_sym__Alignas] = ACTIONS(1512), + [sym_primitive_type] = ACTIONS(1512), + [anon_sym_enum] = ACTIONS(1512), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_switch] = ACTIONS(1512), + [anon_sym_case] = ACTIONS(1512), + [anon_sym_default] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_do] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_goto] = ACTIONS(1512), + [anon_sym___try] = ACTIONS(1512), + [anon_sym___leave] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1512), + [anon_sym___alignof__] = ACTIONS(1512), + [anon_sym___alignof] = ACTIONS(1512), + [anon_sym__alignof] = ACTIONS(1512), + [anon_sym_alignof] = ACTIONS(1512), + [anon_sym__Alignof] = ACTIONS(1512), + [anon_sym_offsetof] = ACTIONS(1512), + [anon_sym__Generic] = ACTIONS(1512), + [anon_sym_asm] = ACTIONS(1512), + [anon_sym___asm__] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(1514), + [anon_sym_L_SQUOTE] = ACTIONS(1514), + [anon_sym_u_SQUOTE] = ACTIONS(1514), + [anon_sym_U_SQUOTE] = ACTIONS(1514), + [anon_sym_u8_SQUOTE] = ACTIONS(1514), + [anon_sym_SQUOTE] = ACTIONS(1514), + [anon_sym_L_DQUOTE] = ACTIONS(1514), + [anon_sym_u_DQUOTE] = ACTIONS(1514), + [anon_sym_U_DQUOTE] = ACTIONS(1514), + [anon_sym_u8_DQUOTE] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym_true] = ACTIONS(1512), + [sym_false] = ACTIONS(1512), + [anon_sym_NULL] = ACTIONS(1512), + [anon_sym_nullptr] = ACTIONS(1512), [sym_comment] = ACTIONS(5), }, [167] = { - [sym_identifier] = ACTIONS(1262), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1262), - [aux_sym_preproc_def_token1] = ACTIONS(1262), - [aux_sym_preproc_if_token1] = ACTIONS(1262), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1262), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1262), - [sym_preproc_directive] = ACTIONS(1262), - [anon_sym_LPAREN2] = ACTIONS(1264), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_PLUS] = ACTIONS(1262), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_SEMI] = ACTIONS(1264), - [anon_sym___extension__] = ACTIONS(1262), - [anon_sym_typedef] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(1262), - [anon_sym___attribute__] = ACTIONS(1262), - [anon_sym___scanf] = ACTIONS(1262), - [anon_sym___printf] = ACTIONS(1262), - [anon_sym___read_mostly] = ACTIONS(1262), - [anon_sym___must_hold] = ACTIONS(1262), - [anon_sym___ro_after_init] = ACTIONS(1262), - [anon_sym___noreturn] = ACTIONS(1262), - [anon_sym___cold] = ACTIONS(1262), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym___declspec] = ACTIONS(1262), - [anon_sym___init] = ACTIONS(1262), - [anon_sym___exit] = ACTIONS(1262), - [anon_sym___cdecl] = ACTIONS(1262), - [anon_sym___clrcall] = ACTIONS(1262), - [anon_sym___stdcall] = ACTIONS(1262), - [anon_sym___fastcall] = ACTIONS(1262), - [anon_sym___thiscall] = ACTIONS(1262), - [anon_sym___vectorcall] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(1264), - [anon_sym_RBRACE] = ACTIONS(1264), - [anon_sym_signed] = ACTIONS(1262), - [anon_sym_unsigned] = ACTIONS(1262), - [anon_sym_long] = ACTIONS(1262), - [anon_sym_short] = ACTIONS(1262), - [anon_sym_static] = ACTIONS(1262), - [anon_sym_auto] = ACTIONS(1262), - [anon_sym_register] = ACTIONS(1262), - [anon_sym_inline] = ACTIONS(1262), - [anon_sym___inline] = ACTIONS(1262), - [anon_sym___inline__] = ACTIONS(1262), - [anon_sym___forceinline] = ACTIONS(1262), - [anon_sym_thread_local] = ACTIONS(1262), - [anon_sym___thread] = ACTIONS(1262), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_constexpr] = ACTIONS(1262), - [anon_sym_volatile] = ACTIONS(1262), - [anon_sym_restrict] = ACTIONS(1262), - [anon_sym___restrict__] = ACTIONS(1262), - [anon_sym__Atomic] = ACTIONS(1262), - [anon_sym__Noreturn] = ACTIONS(1262), - [anon_sym_noreturn] = ACTIONS(1262), - [anon_sym_alignas] = ACTIONS(1262), - [anon_sym__Alignas] = ACTIONS(1262), - [sym_primitive_type] = ACTIONS(1262), - [anon_sym_enum] = ACTIONS(1262), - [anon_sym_struct] = ACTIONS(1262), - [anon_sym_union] = ACTIONS(1262), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(1262), - [anon_sym_switch] = ACTIONS(1262), - [anon_sym_case] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1262), - [anon_sym_while] = ACTIONS(1262), - [anon_sym_do] = ACTIONS(1262), - [anon_sym_for] = ACTIONS(1262), - [anon_sym_return] = ACTIONS(1262), - [anon_sym_break] = ACTIONS(1262), - [anon_sym_continue] = ACTIONS(1262), - [anon_sym_goto] = ACTIONS(1262), - [anon_sym___try] = ACTIONS(1262), - [anon_sym___leave] = ACTIONS(1262), - [anon_sym_DASH_DASH] = ACTIONS(1264), - [anon_sym_PLUS_PLUS] = ACTIONS(1264), - [anon_sym_sizeof] = ACTIONS(1262), - [anon_sym___alignof__] = ACTIONS(1262), - [anon_sym___alignof] = ACTIONS(1262), - [anon_sym__alignof] = ACTIONS(1262), - [anon_sym_alignof] = ACTIONS(1262), - [anon_sym__Alignof] = ACTIONS(1262), - [anon_sym_offsetof] = ACTIONS(1262), - [anon_sym__Generic] = ACTIONS(1262), - [anon_sym_asm] = ACTIONS(1262), - [anon_sym___asm__] = ACTIONS(1262), - [sym_number_literal] = ACTIONS(1264), - [anon_sym_L_SQUOTE] = ACTIONS(1264), - [anon_sym_u_SQUOTE] = ACTIONS(1264), - [anon_sym_U_SQUOTE] = ACTIONS(1264), - [anon_sym_u8_SQUOTE] = ACTIONS(1264), - [anon_sym_SQUOTE] = ACTIONS(1264), - [anon_sym_L_DQUOTE] = ACTIONS(1264), - [anon_sym_u_DQUOTE] = ACTIONS(1264), - [anon_sym_U_DQUOTE] = ACTIONS(1264), - [anon_sym_u8_DQUOTE] = ACTIONS(1264), - [anon_sym_DQUOTE] = ACTIONS(1264), - [sym_true] = ACTIONS(1262), - [sym_false] = ACTIONS(1262), - [anon_sym_NULL] = ACTIONS(1262), - [anon_sym_nullptr] = ACTIONS(1262), + [sym_else_clause] = STATE(245), + [sym_identifier] = ACTIONS(1240), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1240), + [aux_sym_preproc_def_token1] = ACTIONS(1240), + [aux_sym_preproc_if_token1] = ACTIONS(1240), + [aux_sym_preproc_if_token2] = ACTIONS(1240), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1240), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1240), + [sym_preproc_directive] = ACTIONS(1240), + [anon_sym_LPAREN2] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_TILDE] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1240), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym___extension__] = ACTIONS(1240), + [anon_sym_typedef] = ACTIONS(1240), + [anon_sym_extern] = ACTIONS(1240), + [anon_sym___attribute__] = ACTIONS(1240), + [anon_sym___scanf] = ACTIONS(1240), + [anon_sym___printf] = ACTIONS(1240), + [anon_sym___read_mostly] = ACTIONS(1240), + [anon_sym___must_hold] = ACTIONS(1240), + [anon_sym___ro_after_init] = ACTIONS(1240), + [anon_sym___noreturn] = ACTIONS(1240), + [anon_sym___cold] = ACTIONS(1240), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1242), + [anon_sym___declspec] = ACTIONS(1240), + [anon_sym___init] = ACTIONS(1240), + [anon_sym___exit] = ACTIONS(1240), + [anon_sym___cdecl] = ACTIONS(1240), + [anon_sym___clrcall] = ACTIONS(1240), + [anon_sym___stdcall] = ACTIONS(1240), + [anon_sym___fastcall] = ACTIONS(1240), + [anon_sym___thiscall] = ACTIONS(1240), + [anon_sym___vectorcall] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1242), + [anon_sym_signed] = ACTIONS(1240), + [anon_sym_unsigned] = ACTIONS(1240), + [anon_sym_long] = ACTIONS(1240), + [anon_sym_short] = ACTIONS(1240), + [anon_sym_static] = ACTIONS(1240), + [anon_sym_auto] = ACTIONS(1240), + [anon_sym_register] = ACTIONS(1240), + [anon_sym_inline] = ACTIONS(1240), + [anon_sym___inline] = ACTIONS(1240), + [anon_sym___inline__] = ACTIONS(1240), + [anon_sym___forceinline] = ACTIONS(1240), + [anon_sym_thread_local] = ACTIONS(1240), + [anon_sym___thread] = ACTIONS(1240), + [anon_sym_const] = ACTIONS(1240), + [anon_sym_constexpr] = ACTIONS(1240), + [anon_sym_volatile] = ACTIONS(1240), + [anon_sym_restrict] = ACTIONS(1240), + [anon_sym___restrict__] = ACTIONS(1240), + [anon_sym__Atomic] = ACTIONS(1240), + [anon_sym__Noreturn] = ACTIONS(1240), + [anon_sym_noreturn] = ACTIONS(1240), + [anon_sym_alignas] = ACTIONS(1240), + [anon_sym__Alignas] = ACTIONS(1240), + [sym_primitive_type] = ACTIONS(1240), + [anon_sym_enum] = ACTIONS(1240), + [anon_sym_struct] = ACTIONS(1240), + [anon_sym_union] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(1240), + [anon_sym_else] = ACTIONS(1516), + [anon_sym_switch] = ACTIONS(1240), + [anon_sym_case] = ACTIONS(1240), + [anon_sym_default] = ACTIONS(1240), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_do] = ACTIONS(1240), + [anon_sym_for] = ACTIONS(1240), + [anon_sym_return] = ACTIONS(1240), + [anon_sym_break] = ACTIONS(1240), + [anon_sym_continue] = ACTIONS(1240), + [anon_sym_goto] = ACTIONS(1240), + [anon_sym___try] = ACTIONS(1240), + [anon_sym___leave] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1242), + [anon_sym_PLUS_PLUS] = ACTIONS(1242), + [anon_sym_sizeof] = ACTIONS(1240), + [anon_sym___alignof__] = ACTIONS(1240), + [anon_sym___alignof] = ACTIONS(1240), + [anon_sym__alignof] = ACTIONS(1240), + [anon_sym_alignof] = ACTIONS(1240), + [anon_sym__Alignof] = ACTIONS(1240), + [anon_sym_offsetof] = ACTIONS(1240), + [anon_sym__Generic] = ACTIONS(1240), + [anon_sym_asm] = ACTIONS(1240), + [anon_sym___asm__] = ACTIONS(1240), + [sym_number_literal] = ACTIONS(1242), + [anon_sym_L_SQUOTE] = ACTIONS(1242), + [anon_sym_u_SQUOTE] = ACTIONS(1242), + [anon_sym_U_SQUOTE] = ACTIONS(1242), + [anon_sym_u8_SQUOTE] = ACTIONS(1242), + [anon_sym_SQUOTE] = ACTIONS(1242), + [anon_sym_L_DQUOTE] = ACTIONS(1242), + [anon_sym_u_DQUOTE] = ACTIONS(1242), + [anon_sym_U_DQUOTE] = ACTIONS(1242), + [anon_sym_u8_DQUOTE] = ACTIONS(1242), + [anon_sym_DQUOTE] = ACTIONS(1242), + [sym_true] = ACTIONS(1240), + [sym_false] = ACTIONS(1240), + [anon_sym_NULL] = ACTIONS(1240), + [anon_sym_nullptr] = ACTIONS(1240), [sym_comment] = ACTIONS(5), }, [168] = { - [ts_builtin_sym_end] = ACTIONS(1236), - [sym_identifier] = ACTIONS(1234), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1234), - [aux_sym_preproc_def_token1] = ACTIONS(1234), - [aux_sym_preproc_if_token1] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), - [sym_preproc_directive] = ACTIONS(1234), - [anon_sym_LPAREN2] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym___extension__] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym___attribute__] = ACTIONS(1234), - [anon_sym___scanf] = ACTIONS(1234), - [anon_sym___printf] = ACTIONS(1234), - [anon_sym___read_mostly] = ACTIONS(1234), - [anon_sym___must_hold] = ACTIONS(1234), - [anon_sym___ro_after_init] = ACTIONS(1234), - [anon_sym___noreturn] = ACTIONS(1234), - [anon_sym___cold] = ACTIONS(1234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), - [anon_sym___declspec] = ACTIONS(1234), - [anon_sym___init] = ACTIONS(1234), - [anon_sym___exit] = ACTIONS(1234), - [anon_sym___cdecl] = ACTIONS(1234), - [anon_sym___clrcall] = ACTIONS(1234), - [anon_sym___stdcall] = ACTIONS(1234), - [anon_sym___fastcall] = ACTIONS(1234), - [anon_sym___thiscall] = ACTIONS(1234), - [anon_sym___vectorcall] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_signed] = ACTIONS(1234), - [anon_sym_unsigned] = ACTIONS(1234), - [anon_sym_long] = ACTIONS(1234), - [anon_sym_short] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_auto] = ACTIONS(1234), - [anon_sym_register] = ACTIONS(1234), - [anon_sym_inline] = ACTIONS(1234), - [anon_sym___inline] = ACTIONS(1234), - [anon_sym___inline__] = ACTIONS(1234), - [anon_sym___forceinline] = ACTIONS(1234), - [anon_sym_thread_local] = ACTIONS(1234), - [anon_sym___thread] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_constexpr] = ACTIONS(1234), - [anon_sym_volatile] = ACTIONS(1234), - [anon_sym_restrict] = ACTIONS(1234), - [anon_sym___restrict__] = ACTIONS(1234), - [anon_sym__Atomic] = ACTIONS(1234), - [anon_sym__Noreturn] = ACTIONS(1234), - [anon_sym_noreturn] = ACTIONS(1234), - [anon_sym_alignas] = ACTIONS(1234), - [anon_sym__Alignas] = ACTIONS(1234), - [sym_primitive_type] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [anon_sym_switch] = ACTIONS(1234), - [anon_sym_case] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_goto] = ACTIONS(1234), - [anon_sym___try] = ACTIONS(1234), - [anon_sym___leave] = ACTIONS(1234), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_sizeof] = ACTIONS(1234), - [anon_sym___alignof__] = ACTIONS(1234), - [anon_sym___alignof] = ACTIONS(1234), - [anon_sym__alignof] = ACTIONS(1234), - [anon_sym_alignof] = ACTIONS(1234), - [anon_sym__Alignof] = ACTIONS(1234), - [anon_sym_offsetof] = ACTIONS(1234), - [anon_sym__Generic] = ACTIONS(1234), - [anon_sym_asm] = ACTIONS(1234), - [anon_sym___asm__] = ACTIONS(1234), - [sym_number_literal] = ACTIONS(1236), - [anon_sym_L_SQUOTE] = ACTIONS(1236), - [anon_sym_u_SQUOTE] = ACTIONS(1236), - [anon_sym_U_SQUOTE] = ACTIONS(1236), - [anon_sym_u8_SQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_L_DQUOTE] = ACTIONS(1236), - [anon_sym_u_DQUOTE] = ACTIONS(1236), - [anon_sym_U_DQUOTE] = ACTIONS(1236), - [anon_sym_u8_DQUOTE] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1236), - [sym_true] = ACTIONS(1234), - [sym_false] = ACTIONS(1234), - [anon_sym_NULL] = ACTIONS(1234), - [anon_sym_nullptr] = ACTIONS(1234), + [sym_else_clause] = STATE(293), + [sym_identifier] = ACTIONS(1240), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1240), + [aux_sym_preproc_def_token1] = ACTIONS(1240), + [aux_sym_preproc_if_token1] = ACTIONS(1240), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1240), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1240), + [sym_preproc_directive] = ACTIONS(1240), + [anon_sym_LPAREN2] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_TILDE] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1240), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym___extension__] = ACTIONS(1240), + [anon_sym_typedef] = ACTIONS(1240), + [anon_sym_extern] = ACTIONS(1240), + [anon_sym___attribute__] = ACTIONS(1240), + [anon_sym___scanf] = ACTIONS(1240), + [anon_sym___printf] = ACTIONS(1240), + [anon_sym___read_mostly] = ACTIONS(1240), + [anon_sym___must_hold] = ACTIONS(1240), + [anon_sym___ro_after_init] = ACTIONS(1240), + [anon_sym___noreturn] = ACTIONS(1240), + [anon_sym___cold] = ACTIONS(1240), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1242), + [anon_sym___declspec] = ACTIONS(1240), + [anon_sym___init] = ACTIONS(1240), + [anon_sym___exit] = ACTIONS(1240), + [anon_sym___cdecl] = ACTIONS(1240), + [anon_sym___clrcall] = ACTIONS(1240), + [anon_sym___stdcall] = ACTIONS(1240), + [anon_sym___fastcall] = ACTIONS(1240), + [anon_sym___thiscall] = ACTIONS(1240), + [anon_sym___vectorcall] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1242), + [anon_sym_RBRACE] = ACTIONS(1242), + [anon_sym_signed] = ACTIONS(1240), + [anon_sym_unsigned] = ACTIONS(1240), + [anon_sym_long] = ACTIONS(1240), + [anon_sym_short] = ACTIONS(1240), + [anon_sym_static] = ACTIONS(1240), + [anon_sym_auto] = ACTIONS(1240), + [anon_sym_register] = ACTIONS(1240), + [anon_sym_inline] = ACTIONS(1240), + [anon_sym___inline] = ACTIONS(1240), + [anon_sym___inline__] = ACTIONS(1240), + [anon_sym___forceinline] = ACTIONS(1240), + [anon_sym_thread_local] = ACTIONS(1240), + [anon_sym___thread] = ACTIONS(1240), + [anon_sym_const] = ACTIONS(1240), + [anon_sym_constexpr] = ACTIONS(1240), + [anon_sym_volatile] = ACTIONS(1240), + [anon_sym_restrict] = ACTIONS(1240), + [anon_sym___restrict__] = ACTIONS(1240), + [anon_sym__Atomic] = ACTIONS(1240), + [anon_sym__Noreturn] = ACTIONS(1240), + [anon_sym_noreturn] = ACTIONS(1240), + [anon_sym_alignas] = ACTIONS(1240), + [anon_sym__Alignas] = ACTIONS(1240), + [sym_primitive_type] = ACTIONS(1240), + [anon_sym_enum] = ACTIONS(1240), + [anon_sym_struct] = ACTIONS(1240), + [anon_sym_union] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(1240), + [anon_sym_else] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1240), + [anon_sym_case] = ACTIONS(1240), + [anon_sym_default] = ACTIONS(1240), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_do] = ACTIONS(1240), + [anon_sym_for] = ACTIONS(1240), + [anon_sym_return] = ACTIONS(1240), + [anon_sym_break] = ACTIONS(1240), + [anon_sym_continue] = ACTIONS(1240), + [anon_sym_goto] = ACTIONS(1240), + [anon_sym___try] = ACTIONS(1240), + [anon_sym___leave] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1242), + [anon_sym_PLUS_PLUS] = ACTIONS(1242), + [anon_sym_sizeof] = ACTIONS(1240), + [anon_sym___alignof__] = ACTIONS(1240), + [anon_sym___alignof] = ACTIONS(1240), + [anon_sym__alignof] = ACTIONS(1240), + [anon_sym_alignof] = ACTIONS(1240), + [anon_sym__Alignof] = ACTIONS(1240), + [anon_sym_offsetof] = ACTIONS(1240), + [anon_sym__Generic] = ACTIONS(1240), + [anon_sym_asm] = ACTIONS(1240), + [anon_sym___asm__] = ACTIONS(1240), + [sym_number_literal] = ACTIONS(1242), + [anon_sym_L_SQUOTE] = ACTIONS(1242), + [anon_sym_u_SQUOTE] = ACTIONS(1242), + [anon_sym_U_SQUOTE] = ACTIONS(1242), + [anon_sym_u8_SQUOTE] = ACTIONS(1242), + [anon_sym_SQUOTE] = ACTIONS(1242), + [anon_sym_L_DQUOTE] = ACTIONS(1242), + [anon_sym_u_DQUOTE] = ACTIONS(1242), + [anon_sym_U_DQUOTE] = ACTIONS(1242), + [anon_sym_u8_DQUOTE] = ACTIONS(1242), + [anon_sym_DQUOTE] = ACTIONS(1242), + [sym_true] = ACTIONS(1240), + [sym_false] = ACTIONS(1240), + [anon_sym_NULL] = ACTIONS(1240), + [anon_sym_nullptr] = ACTIONS(1240), [sym_comment] = ACTIONS(5), }, [169] = { - [ts_builtin_sym_end] = ACTIONS(1236), - [sym_identifier] = ACTIONS(1234), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1234), - [aux_sym_preproc_def_token1] = ACTIONS(1234), - [aux_sym_preproc_if_token1] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), - [sym_preproc_directive] = ACTIONS(1234), - [anon_sym_LPAREN2] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym___extension__] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym___attribute__] = ACTIONS(1234), - [anon_sym___scanf] = ACTIONS(1234), - [anon_sym___printf] = ACTIONS(1234), - [anon_sym___read_mostly] = ACTIONS(1234), - [anon_sym___must_hold] = ACTIONS(1234), - [anon_sym___ro_after_init] = ACTIONS(1234), - [anon_sym___noreturn] = ACTIONS(1234), - [anon_sym___cold] = ACTIONS(1234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), - [anon_sym___declspec] = ACTIONS(1234), - [anon_sym___init] = ACTIONS(1234), - [anon_sym___exit] = ACTIONS(1234), - [anon_sym___cdecl] = ACTIONS(1234), - [anon_sym___clrcall] = ACTIONS(1234), - [anon_sym___stdcall] = ACTIONS(1234), - [anon_sym___fastcall] = ACTIONS(1234), - [anon_sym___thiscall] = ACTIONS(1234), - [anon_sym___vectorcall] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_signed] = ACTIONS(1234), - [anon_sym_unsigned] = ACTIONS(1234), - [anon_sym_long] = ACTIONS(1234), - [anon_sym_short] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_auto] = ACTIONS(1234), - [anon_sym_register] = ACTIONS(1234), - [anon_sym_inline] = ACTIONS(1234), - [anon_sym___inline] = ACTIONS(1234), - [anon_sym___inline__] = ACTIONS(1234), - [anon_sym___forceinline] = ACTIONS(1234), - [anon_sym_thread_local] = ACTIONS(1234), - [anon_sym___thread] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_constexpr] = ACTIONS(1234), - [anon_sym_volatile] = ACTIONS(1234), - [anon_sym_restrict] = ACTIONS(1234), - [anon_sym___restrict__] = ACTIONS(1234), - [anon_sym__Atomic] = ACTIONS(1234), - [anon_sym__Noreturn] = ACTIONS(1234), - [anon_sym_noreturn] = ACTIONS(1234), - [anon_sym_alignas] = ACTIONS(1234), - [anon_sym__Alignas] = ACTIONS(1234), - [sym_primitive_type] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [anon_sym_switch] = ACTIONS(1234), - [anon_sym_case] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_goto] = ACTIONS(1234), - [anon_sym___try] = ACTIONS(1234), - [anon_sym___leave] = ACTIONS(1234), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_sizeof] = ACTIONS(1234), - [anon_sym___alignof__] = ACTIONS(1234), - [anon_sym___alignof] = ACTIONS(1234), - [anon_sym__alignof] = ACTIONS(1234), - [anon_sym_alignof] = ACTIONS(1234), - [anon_sym__Alignof] = ACTIONS(1234), - [anon_sym_offsetof] = ACTIONS(1234), - [anon_sym__Generic] = ACTIONS(1234), - [anon_sym_asm] = ACTIONS(1234), - [anon_sym___asm__] = ACTIONS(1234), - [sym_number_literal] = ACTIONS(1236), - [anon_sym_L_SQUOTE] = ACTIONS(1236), - [anon_sym_u_SQUOTE] = ACTIONS(1236), - [anon_sym_U_SQUOTE] = ACTIONS(1236), - [anon_sym_u8_SQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_L_DQUOTE] = ACTIONS(1236), - [anon_sym_u_DQUOTE] = ACTIONS(1236), - [anon_sym_U_DQUOTE] = ACTIONS(1236), - [anon_sym_u8_DQUOTE] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1236), - [sym_true] = ACTIONS(1234), - [sym_false] = ACTIONS(1234), - [anon_sym_NULL] = ACTIONS(1234), - [anon_sym_nullptr] = ACTIONS(1234), + [sym_else_clause] = STATE(176), + [ts_builtin_sym_end] = ACTIONS(1242), + [sym_identifier] = ACTIONS(1240), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1240), + [aux_sym_preproc_def_token1] = ACTIONS(1240), + [aux_sym_preproc_if_token1] = ACTIONS(1240), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1240), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1240), + [sym_preproc_directive] = ACTIONS(1240), + [anon_sym_LPAREN2] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_TILDE] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1240), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym___extension__] = ACTIONS(1240), + [anon_sym_typedef] = ACTIONS(1240), + [anon_sym_extern] = ACTIONS(1240), + [anon_sym___attribute__] = ACTIONS(1240), + [anon_sym___scanf] = ACTIONS(1240), + [anon_sym___printf] = ACTIONS(1240), + [anon_sym___read_mostly] = ACTIONS(1240), + [anon_sym___must_hold] = ACTIONS(1240), + [anon_sym___ro_after_init] = ACTIONS(1240), + [anon_sym___noreturn] = ACTIONS(1240), + [anon_sym___cold] = ACTIONS(1240), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1242), + [anon_sym___declspec] = ACTIONS(1240), + [anon_sym___init] = ACTIONS(1240), + [anon_sym___exit] = ACTIONS(1240), + [anon_sym___cdecl] = ACTIONS(1240), + [anon_sym___clrcall] = ACTIONS(1240), + [anon_sym___stdcall] = ACTIONS(1240), + [anon_sym___fastcall] = ACTIONS(1240), + [anon_sym___thiscall] = ACTIONS(1240), + [anon_sym___vectorcall] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1242), + [anon_sym_signed] = ACTIONS(1240), + [anon_sym_unsigned] = ACTIONS(1240), + [anon_sym_long] = ACTIONS(1240), + [anon_sym_short] = ACTIONS(1240), + [anon_sym_static] = ACTIONS(1240), + [anon_sym_auto] = ACTIONS(1240), + [anon_sym_register] = ACTIONS(1240), + [anon_sym_inline] = ACTIONS(1240), + [anon_sym___inline] = ACTIONS(1240), + [anon_sym___inline__] = ACTIONS(1240), + [anon_sym___forceinline] = ACTIONS(1240), + [anon_sym_thread_local] = ACTIONS(1240), + [anon_sym___thread] = ACTIONS(1240), + [anon_sym_const] = ACTIONS(1240), + [anon_sym_constexpr] = ACTIONS(1240), + [anon_sym_volatile] = ACTIONS(1240), + [anon_sym_restrict] = ACTIONS(1240), + [anon_sym___restrict__] = ACTIONS(1240), + [anon_sym__Atomic] = ACTIONS(1240), + [anon_sym__Noreturn] = ACTIONS(1240), + [anon_sym_noreturn] = ACTIONS(1240), + [anon_sym_alignas] = ACTIONS(1240), + [anon_sym__Alignas] = ACTIONS(1240), + [sym_primitive_type] = ACTIONS(1240), + [anon_sym_enum] = ACTIONS(1240), + [anon_sym_struct] = ACTIONS(1240), + [anon_sym_union] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(1240), + [anon_sym_else] = ACTIONS(1520), + [anon_sym_switch] = ACTIONS(1240), + [anon_sym_case] = ACTIONS(1240), + [anon_sym_default] = ACTIONS(1240), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_do] = ACTIONS(1240), + [anon_sym_for] = ACTIONS(1240), + [anon_sym_return] = ACTIONS(1240), + [anon_sym_break] = ACTIONS(1240), + [anon_sym_continue] = ACTIONS(1240), + [anon_sym_goto] = ACTIONS(1240), + [anon_sym___try] = ACTIONS(1240), + [anon_sym___leave] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1242), + [anon_sym_PLUS_PLUS] = ACTIONS(1242), + [anon_sym_sizeof] = ACTIONS(1240), + [anon_sym___alignof__] = ACTIONS(1240), + [anon_sym___alignof] = ACTIONS(1240), + [anon_sym__alignof] = ACTIONS(1240), + [anon_sym_alignof] = ACTIONS(1240), + [anon_sym__Alignof] = ACTIONS(1240), + [anon_sym_offsetof] = ACTIONS(1240), + [anon_sym__Generic] = ACTIONS(1240), + [anon_sym_asm] = ACTIONS(1240), + [anon_sym___asm__] = ACTIONS(1240), + [sym_number_literal] = ACTIONS(1242), + [anon_sym_L_SQUOTE] = ACTIONS(1242), + [anon_sym_u_SQUOTE] = ACTIONS(1242), + [anon_sym_U_SQUOTE] = ACTIONS(1242), + [anon_sym_u8_SQUOTE] = ACTIONS(1242), + [anon_sym_SQUOTE] = ACTIONS(1242), + [anon_sym_L_DQUOTE] = ACTIONS(1242), + [anon_sym_u_DQUOTE] = ACTIONS(1242), + [anon_sym_U_DQUOTE] = ACTIONS(1242), + [anon_sym_u8_DQUOTE] = ACTIONS(1242), + [anon_sym_DQUOTE] = ACTIONS(1242), + [sym_true] = ACTIONS(1240), + [sym_false] = ACTIONS(1240), + [anon_sym_NULL] = ACTIONS(1240), + [anon_sym_nullptr] = ACTIONS(1240), [sym_comment] = ACTIONS(5), }, [170] = { - [sym_identifier] = ACTIONS(1330), + [sym_identifier] = ACTIONS(1258), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1330), - [aux_sym_preproc_def_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token2] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), - [sym_preproc_directive] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym___extension__] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym___attribute__] = ACTIONS(1330), - [anon_sym___scanf] = ACTIONS(1330), - [anon_sym___printf] = ACTIONS(1330), - [anon_sym___read_mostly] = ACTIONS(1330), - [anon_sym___must_hold] = ACTIONS(1330), - [anon_sym___ro_after_init] = ACTIONS(1330), - [anon_sym___noreturn] = ACTIONS(1330), - [anon_sym___cold] = ACTIONS(1330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), - [anon_sym___declspec] = ACTIONS(1330), - [anon_sym___init] = ACTIONS(1330), - [anon_sym___exit] = ACTIONS(1330), - [anon_sym___cdecl] = ACTIONS(1330), - [anon_sym___clrcall] = ACTIONS(1330), - [anon_sym___stdcall] = ACTIONS(1330), - [anon_sym___fastcall] = ACTIONS(1330), - [anon_sym___thiscall] = ACTIONS(1330), - [anon_sym___vectorcall] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1330), - [anon_sym_unsigned] = ACTIONS(1330), - [anon_sym_long] = ACTIONS(1330), - [anon_sym_short] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_auto] = ACTIONS(1330), - [anon_sym_register] = ACTIONS(1330), - [anon_sym_inline] = ACTIONS(1330), - [anon_sym___inline] = ACTIONS(1330), - [anon_sym___inline__] = ACTIONS(1330), - [anon_sym___forceinline] = ACTIONS(1330), - [anon_sym_thread_local] = ACTIONS(1330), - [anon_sym___thread] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_constexpr] = ACTIONS(1330), - [anon_sym_volatile] = ACTIONS(1330), - [anon_sym_restrict] = ACTIONS(1330), - [anon_sym___restrict__] = ACTIONS(1330), - [anon_sym__Atomic] = ACTIONS(1330), - [anon_sym__Noreturn] = ACTIONS(1330), - [anon_sym_noreturn] = ACTIONS(1330), - [anon_sym_alignas] = ACTIONS(1330), - [anon_sym__Alignas] = ACTIONS(1330), - [sym_primitive_type] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_do] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_goto] = ACTIONS(1330), - [anon_sym___try] = ACTIONS(1330), - [anon_sym___leave] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_sizeof] = ACTIONS(1330), - [anon_sym___alignof__] = ACTIONS(1330), - [anon_sym___alignof] = ACTIONS(1330), - [anon_sym__alignof] = ACTIONS(1330), - [anon_sym_alignof] = ACTIONS(1330), - [anon_sym__Alignof] = ACTIONS(1330), - [anon_sym_offsetof] = ACTIONS(1330), - [anon_sym__Generic] = ACTIONS(1330), - [anon_sym_asm] = ACTIONS(1330), - [anon_sym___asm__] = ACTIONS(1330), - [sym_number_literal] = ACTIONS(1332), - [anon_sym_L_SQUOTE] = ACTIONS(1332), - [anon_sym_u_SQUOTE] = ACTIONS(1332), - [anon_sym_U_SQUOTE] = ACTIONS(1332), - [anon_sym_u8_SQUOTE] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_L_DQUOTE] = ACTIONS(1332), - [anon_sym_u_DQUOTE] = ACTIONS(1332), - [anon_sym_U_DQUOTE] = ACTIONS(1332), - [anon_sym_u8_DQUOTE] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_true] = ACTIONS(1330), - [sym_false] = ACTIONS(1330), - [anon_sym_NULL] = ACTIONS(1330), - [anon_sym_nullptr] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1258), + [aux_sym_preproc_def_token1] = ACTIONS(1258), + [aux_sym_preproc_if_token1] = ACTIONS(1258), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1258), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1258), + [sym_preproc_directive] = ACTIONS(1258), + [anon_sym_LPAREN2] = ACTIONS(1260), + [anon_sym_BANG] = ACTIONS(1260), + [anon_sym_TILDE] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1260), + [anon_sym_AMP] = ACTIONS(1260), + [anon_sym_SEMI] = ACTIONS(1260), + [anon_sym___extension__] = ACTIONS(1258), + [anon_sym_typedef] = ACTIONS(1258), + [anon_sym_extern] = ACTIONS(1258), + [anon_sym___attribute__] = ACTIONS(1258), + [anon_sym___scanf] = ACTIONS(1258), + [anon_sym___printf] = ACTIONS(1258), + [anon_sym___read_mostly] = ACTIONS(1258), + [anon_sym___must_hold] = ACTIONS(1258), + [anon_sym___ro_after_init] = ACTIONS(1258), + [anon_sym___noreturn] = ACTIONS(1258), + [anon_sym___cold] = ACTIONS(1258), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1260), + [anon_sym___declspec] = ACTIONS(1258), + [anon_sym___init] = ACTIONS(1258), + [anon_sym___exit] = ACTIONS(1258), + [anon_sym___cdecl] = ACTIONS(1258), + [anon_sym___clrcall] = ACTIONS(1258), + [anon_sym___stdcall] = ACTIONS(1258), + [anon_sym___fastcall] = ACTIONS(1258), + [anon_sym___thiscall] = ACTIONS(1258), + [anon_sym___vectorcall] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1260), + [anon_sym_RBRACE] = ACTIONS(1260), + [anon_sym_signed] = ACTIONS(1258), + [anon_sym_unsigned] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_static] = ACTIONS(1258), + [anon_sym_auto] = ACTIONS(1258), + [anon_sym_register] = ACTIONS(1258), + [anon_sym_inline] = ACTIONS(1258), + [anon_sym___inline] = ACTIONS(1258), + [anon_sym___inline__] = ACTIONS(1258), + [anon_sym___forceinline] = ACTIONS(1258), + [anon_sym_thread_local] = ACTIONS(1258), + [anon_sym___thread] = ACTIONS(1258), + [anon_sym_const] = ACTIONS(1258), + [anon_sym_constexpr] = ACTIONS(1258), + [anon_sym_volatile] = ACTIONS(1258), + [anon_sym_restrict] = ACTIONS(1258), + [anon_sym___restrict__] = ACTIONS(1258), + [anon_sym__Atomic] = ACTIONS(1258), + [anon_sym__Noreturn] = ACTIONS(1258), + [anon_sym_noreturn] = ACTIONS(1258), + [anon_sym_alignas] = ACTIONS(1258), + [anon_sym__Alignas] = ACTIONS(1258), + [sym_primitive_type] = ACTIONS(1258), + [anon_sym_enum] = ACTIONS(1258), + [anon_sym_struct] = ACTIONS(1258), + [anon_sym_union] = ACTIONS(1258), + [anon_sym_if] = ACTIONS(1258), + [anon_sym_else] = ACTIONS(1258), + [anon_sym_switch] = ACTIONS(1258), + [anon_sym_case] = ACTIONS(1258), + [anon_sym_default] = ACTIONS(1258), + [anon_sym_while] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1258), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_break] = ACTIONS(1258), + [anon_sym_continue] = ACTIONS(1258), + [anon_sym_goto] = ACTIONS(1258), + [anon_sym___try] = ACTIONS(1258), + [anon_sym___leave] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1260), + [anon_sym_sizeof] = ACTIONS(1258), + [anon_sym___alignof__] = ACTIONS(1258), + [anon_sym___alignof] = ACTIONS(1258), + [anon_sym__alignof] = ACTIONS(1258), + [anon_sym_alignof] = ACTIONS(1258), + [anon_sym__Alignof] = ACTIONS(1258), + [anon_sym_offsetof] = ACTIONS(1258), + [anon_sym__Generic] = ACTIONS(1258), + [anon_sym_asm] = ACTIONS(1258), + [anon_sym___asm__] = ACTIONS(1258), + [sym_number_literal] = ACTIONS(1260), + [anon_sym_L_SQUOTE] = ACTIONS(1260), + [anon_sym_u_SQUOTE] = ACTIONS(1260), + [anon_sym_U_SQUOTE] = ACTIONS(1260), + [anon_sym_u8_SQUOTE] = ACTIONS(1260), + [anon_sym_SQUOTE] = ACTIONS(1260), + [anon_sym_L_DQUOTE] = ACTIONS(1260), + [anon_sym_u_DQUOTE] = ACTIONS(1260), + [anon_sym_U_DQUOTE] = ACTIONS(1260), + [anon_sym_u8_DQUOTE] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(1260), + [sym_true] = ACTIONS(1258), + [sym_false] = ACTIONS(1258), + [anon_sym_NULL] = ACTIONS(1258), + [anon_sym_nullptr] = ACTIONS(1258), [sym_comment] = ACTIONS(5), }, [171] = { - [sym_identifier] = ACTIONS(1318), + [ts_builtin_sym_end] = ACTIONS(1336), + [sym_identifier] = ACTIONS(1334), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token2] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1318), - [anon_sym___scanf] = ACTIONS(1318), - [anon_sym___printf] = ACTIONS(1318), - [anon_sym___read_mostly] = ACTIONS(1318), - [anon_sym___must_hold] = ACTIONS(1318), - [anon_sym___ro_after_init] = ACTIONS(1318), - [anon_sym___noreturn] = ACTIONS(1318), - [anon_sym___cold] = ACTIONS(1318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), - [anon_sym___declspec] = ACTIONS(1318), - [anon_sym___init] = ACTIONS(1318), - [anon_sym___exit] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1318), - [anon_sym_unsigned] = ACTIONS(1318), - [anon_sym_long] = ACTIONS(1318), - [anon_sym_short] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_auto] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1318), - [anon_sym_inline] = ACTIONS(1318), - [anon_sym___inline] = ACTIONS(1318), - [anon_sym___inline__] = ACTIONS(1318), - [anon_sym___forceinline] = ACTIONS(1318), - [anon_sym_thread_local] = ACTIONS(1318), - [anon_sym___thread] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_constexpr] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1318), - [anon_sym_restrict] = ACTIONS(1318), - [anon_sym___restrict__] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1318), - [anon_sym__Noreturn] = ACTIONS(1318), - [anon_sym_noreturn] = ACTIONS(1318), - [anon_sym_alignas] = ACTIONS(1318), - [anon_sym__Alignas] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1318), - [anon_sym___try] = ACTIONS(1318), - [anon_sym___leave] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1318), - [anon_sym___alignof__] = ACTIONS(1318), - [anon_sym___alignof] = ACTIONS(1318), - [anon_sym__alignof] = ACTIONS(1318), - [anon_sym_alignof] = ACTIONS(1318), - [anon_sym__Alignof] = ACTIONS(1318), - [anon_sym_offsetof] = ACTIONS(1318), - [anon_sym__Generic] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1318), - [anon_sym___asm__] = ACTIONS(1318), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_L_SQUOTE] = ACTIONS(1320), - [anon_sym_u_SQUOTE] = ACTIONS(1320), - [anon_sym_U_SQUOTE] = ACTIONS(1320), - [anon_sym_u8_SQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_L_DQUOTE] = ACTIONS(1320), - [anon_sym_u_DQUOTE] = ACTIONS(1320), - [anon_sym_U_DQUOTE] = ACTIONS(1320), - [anon_sym_u8_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [anon_sym_NULL] = ACTIONS(1318), - [anon_sym_nullptr] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym___scanf] = ACTIONS(1334), + [anon_sym___printf] = ACTIONS(1334), + [anon_sym___read_mostly] = ACTIONS(1334), + [anon_sym___must_hold] = ACTIONS(1334), + [anon_sym___ro_after_init] = ACTIONS(1334), + [anon_sym___noreturn] = ACTIONS(1334), + [anon_sym___cold] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___init] = ACTIONS(1334), + [anon_sym___exit] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [anon_sym_alignas] = ACTIONS(1334), + [anon_sym__Alignas] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_L_SQUOTE] = ACTIONS(1336), + [anon_sym_u_SQUOTE] = ACTIONS(1336), + [anon_sym_U_SQUOTE] = ACTIONS(1336), + [anon_sym_u8_SQUOTE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_L_DQUOTE] = ACTIONS(1336), + [anon_sym_u_DQUOTE] = ACTIONS(1336), + [anon_sym_U_DQUOTE] = ACTIONS(1336), + [anon_sym_u8_DQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(5), }, [172] = { - [ts_builtin_sym_end] = ACTIONS(1236), - [sym_identifier] = ACTIONS(1234), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1234), - [aux_sym_preproc_def_token1] = ACTIONS(1234), - [aux_sym_preproc_if_token1] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), - [sym_preproc_directive] = ACTIONS(1234), - [anon_sym_LPAREN2] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym___extension__] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym___attribute__] = ACTIONS(1234), - [anon_sym___scanf] = ACTIONS(1234), - [anon_sym___printf] = ACTIONS(1234), - [anon_sym___read_mostly] = ACTIONS(1234), - [anon_sym___must_hold] = ACTIONS(1234), - [anon_sym___ro_after_init] = ACTIONS(1234), - [anon_sym___noreturn] = ACTIONS(1234), - [anon_sym___cold] = ACTIONS(1234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), - [anon_sym___declspec] = ACTIONS(1234), - [anon_sym___init] = ACTIONS(1234), - [anon_sym___exit] = ACTIONS(1234), - [anon_sym___cdecl] = ACTIONS(1234), - [anon_sym___clrcall] = ACTIONS(1234), - [anon_sym___stdcall] = ACTIONS(1234), - [anon_sym___fastcall] = ACTIONS(1234), - [anon_sym___thiscall] = ACTIONS(1234), - [anon_sym___vectorcall] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_signed] = ACTIONS(1234), - [anon_sym_unsigned] = ACTIONS(1234), - [anon_sym_long] = ACTIONS(1234), - [anon_sym_short] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_auto] = ACTIONS(1234), - [anon_sym_register] = ACTIONS(1234), - [anon_sym_inline] = ACTIONS(1234), - [anon_sym___inline] = ACTIONS(1234), - [anon_sym___inline__] = ACTIONS(1234), - [anon_sym___forceinline] = ACTIONS(1234), - [anon_sym_thread_local] = ACTIONS(1234), - [anon_sym___thread] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_constexpr] = ACTIONS(1234), - [anon_sym_volatile] = ACTIONS(1234), - [anon_sym_restrict] = ACTIONS(1234), - [anon_sym___restrict__] = ACTIONS(1234), - [anon_sym__Atomic] = ACTIONS(1234), - [anon_sym__Noreturn] = ACTIONS(1234), - [anon_sym_noreturn] = ACTIONS(1234), - [anon_sym_alignas] = ACTIONS(1234), - [anon_sym__Alignas] = ACTIONS(1234), - [sym_primitive_type] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [anon_sym_switch] = ACTIONS(1234), - [anon_sym_case] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_goto] = ACTIONS(1234), - [anon_sym___try] = ACTIONS(1234), - [anon_sym___leave] = ACTIONS(1234), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_sizeof] = ACTIONS(1234), - [anon_sym___alignof__] = ACTIONS(1234), - [anon_sym___alignof] = ACTIONS(1234), - [anon_sym__alignof] = ACTIONS(1234), - [anon_sym_alignof] = ACTIONS(1234), - [anon_sym__Alignof] = ACTIONS(1234), - [anon_sym_offsetof] = ACTIONS(1234), - [anon_sym__Generic] = ACTIONS(1234), - [anon_sym_asm] = ACTIONS(1234), - [anon_sym___asm__] = ACTIONS(1234), - [sym_number_literal] = ACTIONS(1236), - [anon_sym_L_SQUOTE] = ACTIONS(1236), - [anon_sym_u_SQUOTE] = ACTIONS(1236), - [anon_sym_U_SQUOTE] = ACTIONS(1236), - [anon_sym_u8_SQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_L_DQUOTE] = ACTIONS(1236), - [anon_sym_u_DQUOTE] = ACTIONS(1236), - [anon_sym_U_DQUOTE] = ACTIONS(1236), - [anon_sym_u8_DQUOTE] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1236), - [sym_true] = ACTIONS(1234), - [sym_false] = ACTIONS(1234), - [anon_sym_NULL] = ACTIONS(1234), - [anon_sym_nullptr] = ACTIONS(1234), + [ts_builtin_sym_end] = ACTIONS(1296), + [sym_identifier] = ACTIONS(1294), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1294), + [aux_sym_preproc_def_token1] = ACTIONS(1294), + [aux_sym_preproc_if_token1] = ACTIONS(1294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), + [sym_preproc_directive] = ACTIONS(1294), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(1296), + [anon_sym_TILDE] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_PLUS] = ACTIONS(1294), + [anon_sym_STAR] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym___extension__] = ACTIONS(1294), + [anon_sym_typedef] = ACTIONS(1294), + [anon_sym_extern] = ACTIONS(1294), + [anon_sym___attribute__] = ACTIONS(1294), + [anon_sym___scanf] = ACTIONS(1294), + [anon_sym___printf] = ACTIONS(1294), + [anon_sym___read_mostly] = ACTIONS(1294), + [anon_sym___must_hold] = ACTIONS(1294), + [anon_sym___ro_after_init] = ACTIONS(1294), + [anon_sym___noreturn] = ACTIONS(1294), + [anon_sym___cold] = ACTIONS(1294), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1296), + [anon_sym___declspec] = ACTIONS(1294), + [anon_sym___init] = ACTIONS(1294), + [anon_sym___exit] = ACTIONS(1294), + [anon_sym___cdecl] = ACTIONS(1294), + [anon_sym___clrcall] = ACTIONS(1294), + [anon_sym___stdcall] = ACTIONS(1294), + [anon_sym___fastcall] = ACTIONS(1294), + [anon_sym___thiscall] = ACTIONS(1294), + [anon_sym___vectorcall] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_signed] = ACTIONS(1294), + [anon_sym_unsigned] = ACTIONS(1294), + [anon_sym_long] = ACTIONS(1294), + [anon_sym_short] = ACTIONS(1294), + [anon_sym_static] = ACTIONS(1294), + [anon_sym_auto] = ACTIONS(1294), + [anon_sym_register] = ACTIONS(1294), + [anon_sym_inline] = ACTIONS(1294), + [anon_sym___inline] = ACTIONS(1294), + [anon_sym___inline__] = ACTIONS(1294), + [anon_sym___forceinline] = ACTIONS(1294), + [anon_sym_thread_local] = ACTIONS(1294), + [anon_sym___thread] = ACTIONS(1294), + [anon_sym_const] = ACTIONS(1294), + [anon_sym_constexpr] = ACTIONS(1294), + [anon_sym_volatile] = ACTIONS(1294), + [anon_sym_restrict] = ACTIONS(1294), + [anon_sym___restrict__] = ACTIONS(1294), + [anon_sym__Atomic] = ACTIONS(1294), + [anon_sym__Noreturn] = ACTIONS(1294), + [anon_sym_noreturn] = ACTIONS(1294), + [anon_sym_alignas] = ACTIONS(1294), + [anon_sym__Alignas] = ACTIONS(1294), + [sym_primitive_type] = ACTIONS(1294), + [anon_sym_enum] = ACTIONS(1294), + [anon_sym_struct] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1294), + [anon_sym_if] = ACTIONS(1294), + [anon_sym_else] = ACTIONS(1294), + [anon_sym_switch] = ACTIONS(1294), + [anon_sym_case] = ACTIONS(1294), + [anon_sym_default] = ACTIONS(1294), + [anon_sym_while] = ACTIONS(1294), + [anon_sym_do] = ACTIONS(1294), + [anon_sym_for] = ACTIONS(1294), + [anon_sym_return] = ACTIONS(1294), + [anon_sym_break] = ACTIONS(1294), + [anon_sym_continue] = ACTIONS(1294), + [anon_sym_goto] = ACTIONS(1294), + [anon_sym___try] = ACTIONS(1294), + [anon_sym___leave] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [anon_sym_sizeof] = ACTIONS(1294), + [anon_sym___alignof__] = ACTIONS(1294), + [anon_sym___alignof] = ACTIONS(1294), + [anon_sym__alignof] = ACTIONS(1294), + [anon_sym_alignof] = ACTIONS(1294), + [anon_sym__Alignof] = ACTIONS(1294), + [anon_sym_offsetof] = ACTIONS(1294), + [anon_sym__Generic] = ACTIONS(1294), + [anon_sym_asm] = ACTIONS(1294), + [anon_sym___asm__] = ACTIONS(1294), + [sym_number_literal] = ACTIONS(1296), + [anon_sym_L_SQUOTE] = ACTIONS(1296), + [anon_sym_u_SQUOTE] = ACTIONS(1296), + [anon_sym_U_SQUOTE] = ACTIONS(1296), + [anon_sym_u8_SQUOTE] = ACTIONS(1296), + [anon_sym_SQUOTE] = ACTIONS(1296), + [anon_sym_L_DQUOTE] = ACTIONS(1296), + [anon_sym_u_DQUOTE] = ACTIONS(1296), + [anon_sym_U_DQUOTE] = ACTIONS(1296), + [anon_sym_u8_DQUOTE] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [sym_true] = ACTIONS(1294), + [sym_false] = ACTIONS(1294), + [anon_sym_NULL] = ACTIONS(1294), + [anon_sym_nullptr] = ACTIONS(1294), [sym_comment] = ACTIONS(5), }, [173] = { - [ts_builtin_sym_end] = ACTIONS(1252), + [sym_identifier] = ACTIONS(1282), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1282), + [aux_sym_preproc_def_token1] = ACTIONS(1282), + [aux_sym_preproc_if_token1] = ACTIONS(1282), + [aux_sym_preproc_if_token2] = ACTIONS(1282), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1282), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1282), + [sym_preproc_directive] = ACTIONS(1282), + [anon_sym_LPAREN2] = ACTIONS(1284), + [anon_sym_BANG] = ACTIONS(1284), + [anon_sym_TILDE] = ACTIONS(1284), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_PLUS] = ACTIONS(1282), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1284), + [anon_sym___extension__] = ACTIONS(1282), + [anon_sym_typedef] = ACTIONS(1282), + [anon_sym_extern] = ACTIONS(1282), + [anon_sym___attribute__] = ACTIONS(1282), + [anon_sym___scanf] = ACTIONS(1282), + [anon_sym___printf] = ACTIONS(1282), + [anon_sym___read_mostly] = ACTIONS(1282), + [anon_sym___must_hold] = ACTIONS(1282), + [anon_sym___ro_after_init] = ACTIONS(1282), + [anon_sym___noreturn] = ACTIONS(1282), + [anon_sym___cold] = ACTIONS(1282), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1284), + [anon_sym___declspec] = ACTIONS(1282), + [anon_sym___init] = ACTIONS(1282), + [anon_sym___exit] = ACTIONS(1282), + [anon_sym___cdecl] = ACTIONS(1282), + [anon_sym___clrcall] = ACTIONS(1282), + [anon_sym___stdcall] = ACTIONS(1282), + [anon_sym___fastcall] = ACTIONS(1282), + [anon_sym___thiscall] = ACTIONS(1282), + [anon_sym___vectorcall] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_signed] = ACTIONS(1282), + [anon_sym_unsigned] = ACTIONS(1282), + [anon_sym_long] = ACTIONS(1282), + [anon_sym_short] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1282), + [anon_sym_auto] = ACTIONS(1282), + [anon_sym_register] = ACTIONS(1282), + [anon_sym_inline] = ACTIONS(1282), + [anon_sym___inline] = ACTIONS(1282), + [anon_sym___inline__] = ACTIONS(1282), + [anon_sym___forceinline] = ACTIONS(1282), + [anon_sym_thread_local] = ACTIONS(1282), + [anon_sym___thread] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(1282), + [anon_sym_constexpr] = ACTIONS(1282), + [anon_sym_volatile] = ACTIONS(1282), + [anon_sym_restrict] = ACTIONS(1282), + [anon_sym___restrict__] = ACTIONS(1282), + [anon_sym__Atomic] = ACTIONS(1282), + [anon_sym__Noreturn] = ACTIONS(1282), + [anon_sym_noreturn] = ACTIONS(1282), + [anon_sym_alignas] = ACTIONS(1282), + [anon_sym__Alignas] = ACTIONS(1282), + [sym_primitive_type] = ACTIONS(1282), + [anon_sym_enum] = ACTIONS(1282), + [anon_sym_struct] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_if] = ACTIONS(1282), + [anon_sym_else] = ACTIONS(1282), + [anon_sym_switch] = ACTIONS(1282), + [anon_sym_case] = ACTIONS(1282), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_while] = ACTIONS(1282), + [anon_sym_do] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(1282), + [anon_sym_break] = ACTIONS(1282), + [anon_sym_continue] = ACTIONS(1282), + [anon_sym_goto] = ACTIONS(1282), + [anon_sym___try] = ACTIONS(1282), + [anon_sym___leave] = ACTIONS(1282), + [anon_sym_DASH_DASH] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1284), + [anon_sym_sizeof] = ACTIONS(1282), + [anon_sym___alignof__] = ACTIONS(1282), + [anon_sym___alignof] = ACTIONS(1282), + [anon_sym__alignof] = ACTIONS(1282), + [anon_sym_alignof] = ACTIONS(1282), + [anon_sym__Alignof] = ACTIONS(1282), + [anon_sym_offsetof] = ACTIONS(1282), + [anon_sym__Generic] = ACTIONS(1282), + [anon_sym_asm] = ACTIONS(1282), + [anon_sym___asm__] = ACTIONS(1282), + [sym_number_literal] = ACTIONS(1284), + [anon_sym_L_SQUOTE] = ACTIONS(1284), + [anon_sym_u_SQUOTE] = ACTIONS(1284), + [anon_sym_U_SQUOTE] = ACTIONS(1284), + [anon_sym_u8_SQUOTE] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(1284), + [anon_sym_L_DQUOTE] = ACTIONS(1284), + [anon_sym_u_DQUOTE] = ACTIONS(1284), + [anon_sym_U_DQUOTE] = ACTIONS(1284), + [anon_sym_u8_DQUOTE] = ACTIONS(1284), + [anon_sym_DQUOTE] = ACTIONS(1284), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(1282), + [anon_sym_nullptr] = ACTIONS(1282), + [sym_comment] = ACTIONS(5), + }, + [174] = { + [sym_identifier] = ACTIONS(1342), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym___scanf] = ACTIONS(1342), + [anon_sym___printf] = ACTIONS(1342), + [anon_sym___read_mostly] = ACTIONS(1342), + [anon_sym___must_hold] = ACTIONS(1342), + [anon_sym___ro_after_init] = ACTIONS(1342), + [anon_sym___noreturn] = ACTIONS(1342), + [anon_sym___cold] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym___init] = ACTIONS(1342), + [anon_sym___exit] = ACTIONS(1342), + [anon_sym___cdecl] = ACTIONS(1342), + [anon_sym___clrcall] = ACTIONS(1342), + [anon_sym___stdcall] = ACTIONS(1342), + [anon_sym___fastcall] = ACTIONS(1342), + [anon_sym___thiscall] = ACTIONS(1342), + [anon_sym___vectorcall] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [anon_sym_alignas] = ACTIONS(1342), + [anon_sym__Alignas] = ACTIONS(1342), + [sym_primitive_type] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym___try] = ACTIONS(1342), + [anon_sym___leave] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), + [sym_comment] = ACTIONS(5), + }, + [175] = { [sym_identifier] = ACTIONS(1250), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1250), [aux_sym_preproc_def_token1] = ACTIONS(1250), [aux_sym_preproc_if_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token2] = ACTIONS(1250), [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), [sym_preproc_directive] = ACTIONS(1250), @@ -41439,32 +41776,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1250), [sym_comment] = ACTIONS(5), }, - [174] = { - [ts_builtin_sym_end] = ACTIONS(1252), - [sym_identifier] = ACTIONS(1250), + [176] = { + [ts_builtin_sym_end] = ACTIONS(1372), + [sym_identifier] = ACTIONS(1370), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1250), - [aux_sym_preproc_def_token1] = ACTIONS(1250), - [aux_sym_preproc_if_token1] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), - [sym_preproc_directive] = ACTIONS(1250), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(1252), - [anon_sym_TILDE] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym___extension__] = ACTIONS(1250), - [anon_sym_typedef] = ACTIONS(1250), - [anon_sym_extern] = ACTIONS(1250), - [anon_sym___attribute__] = ACTIONS(1250), - [anon_sym___scanf] = ACTIONS(1250), - [anon_sym___printf] = ACTIONS(1250), - [anon_sym___read_mostly] = ACTIONS(1250), - [anon_sym___must_hold] = ACTIONS(1250), + [aux_sym_preproc_include_token1] = ACTIONS(1370), + [aux_sym_preproc_def_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), + [sym_preproc_directive] = ACTIONS(1370), + [anon_sym_LPAREN2] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym___extension__] = ACTIONS(1370), + [anon_sym_typedef] = ACTIONS(1370), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym___attribute__] = ACTIONS(1370), + [anon_sym___scanf] = ACTIONS(1370), + [anon_sym___printf] = ACTIONS(1370), + [anon_sym___read_mostly] = ACTIONS(1370), + [anon_sym___must_hold] = ACTIONS(1370), + [anon_sym___ro_after_init] = ACTIONS(1370), + [anon_sym___noreturn] = ACTIONS(1370), + [anon_sym___cold] = ACTIONS(1370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), + [anon_sym___declspec] = ACTIONS(1370), + [anon_sym___init] = ACTIONS(1370), + [anon_sym___exit] = ACTIONS(1370), + [anon_sym___cdecl] = ACTIONS(1370), + [anon_sym___clrcall] = ACTIONS(1370), + [anon_sym___stdcall] = ACTIONS(1370), + [anon_sym___fastcall] = ACTIONS(1370), + [anon_sym___thiscall] = ACTIONS(1370), + [anon_sym___vectorcall] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_signed] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), + [anon_sym___inline] = ACTIONS(1370), + [anon_sym___inline__] = ACTIONS(1370), + [anon_sym___forceinline] = ACTIONS(1370), + [anon_sym_thread_local] = ACTIONS(1370), + [anon_sym___thread] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_constexpr] = ACTIONS(1370), + [anon_sym_volatile] = ACTIONS(1370), + [anon_sym_restrict] = ACTIONS(1370), + [anon_sym___restrict__] = ACTIONS(1370), + [anon_sym__Atomic] = ACTIONS(1370), + [anon_sym__Noreturn] = ACTIONS(1370), + [anon_sym_noreturn] = ACTIONS(1370), + [anon_sym_alignas] = ACTIONS(1370), + [anon_sym__Alignas] = ACTIONS(1370), + [sym_primitive_type] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_else] = ACTIONS(1370), + [anon_sym_switch] = ACTIONS(1370), + [anon_sym_case] = ACTIONS(1370), + [anon_sym_default] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_goto] = ACTIONS(1370), + [anon_sym___try] = ACTIONS(1370), + [anon_sym___leave] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_sizeof] = ACTIONS(1370), + [anon_sym___alignof__] = ACTIONS(1370), + [anon_sym___alignof] = ACTIONS(1370), + [anon_sym__alignof] = ACTIONS(1370), + [anon_sym_alignof] = ACTIONS(1370), + [anon_sym__Alignof] = ACTIONS(1370), + [anon_sym_offsetof] = ACTIONS(1370), + [anon_sym__Generic] = ACTIONS(1370), + [anon_sym_asm] = ACTIONS(1370), + [anon_sym___asm__] = ACTIONS(1370), + [sym_number_literal] = ACTIONS(1372), + [anon_sym_L_SQUOTE] = ACTIONS(1372), + [anon_sym_u_SQUOTE] = ACTIONS(1372), + [anon_sym_U_SQUOTE] = ACTIONS(1372), + [anon_sym_u8_SQUOTE] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_L_DQUOTE] = ACTIONS(1372), + [anon_sym_u_DQUOTE] = ACTIONS(1372), + [anon_sym_U_DQUOTE] = ACTIONS(1372), + [anon_sym_u8_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [sym_true] = ACTIONS(1370), + [sym_false] = ACTIONS(1370), + [anon_sym_NULL] = ACTIONS(1370), + [anon_sym_nullptr] = ACTIONS(1370), + [sym_comment] = ACTIONS(5), + }, + [177] = { + [sym_identifier] = ACTIONS(1250), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1250), + [aux_sym_preproc_def_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token2] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), + [sym_preproc_directive] = ACTIONS(1250), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym___extension__] = ACTIONS(1250), + [anon_sym_typedef] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1250), + [anon_sym___attribute__] = ACTIONS(1250), + [anon_sym___scanf] = ACTIONS(1250), + [anon_sym___printf] = ACTIONS(1250), + [anon_sym___read_mostly] = ACTIONS(1250), + [anon_sym___must_hold] = ACTIONS(1250), [anon_sym___ro_after_init] = ACTIONS(1250), [anon_sym___noreturn] = ACTIONS(1250), [anon_sym___cold] = ACTIONS(1250), @@ -41549,2099 +41996,1109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1250), [sym_comment] = ACTIONS(5), }, - [175] = { - [ts_builtin_sym_end] = ACTIONS(1280), - [sym_identifier] = ACTIONS(1278), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1278), - [aux_sym_preproc_def_token1] = ACTIONS(1278), - [aux_sym_preproc_if_token1] = ACTIONS(1278), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1278), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1278), - [sym_preproc_directive] = ACTIONS(1278), - [anon_sym_LPAREN2] = ACTIONS(1280), - [anon_sym_BANG] = ACTIONS(1280), - [anon_sym_TILDE] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1280), - [anon_sym___extension__] = ACTIONS(1278), - [anon_sym_typedef] = ACTIONS(1278), - [anon_sym_extern] = ACTIONS(1278), - [anon_sym___attribute__] = ACTIONS(1278), - [anon_sym___scanf] = ACTIONS(1278), - [anon_sym___printf] = ACTIONS(1278), - [anon_sym___read_mostly] = ACTIONS(1278), - [anon_sym___must_hold] = ACTIONS(1278), - [anon_sym___ro_after_init] = ACTIONS(1278), - [anon_sym___noreturn] = ACTIONS(1278), - [anon_sym___cold] = ACTIONS(1278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1280), - [anon_sym___declspec] = ACTIONS(1278), - [anon_sym___init] = ACTIONS(1278), - [anon_sym___exit] = ACTIONS(1278), - [anon_sym___cdecl] = ACTIONS(1278), - [anon_sym___clrcall] = ACTIONS(1278), - [anon_sym___stdcall] = ACTIONS(1278), - [anon_sym___fastcall] = ACTIONS(1278), - [anon_sym___thiscall] = ACTIONS(1278), - [anon_sym___vectorcall] = ACTIONS(1278), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_signed] = ACTIONS(1278), - [anon_sym_unsigned] = ACTIONS(1278), - [anon_sym_long] = ACTIONS(1278), - [anon_sym_short] = ACTIONS(1278), - [anon_sym_static] = ACTIONS(1278), - [anon_sym_auto] = ACTIONS(1278), - [anon_sym_register] = ACTIONS(1278), - [anon_sym_inline] = ACTIONS(1278), - [anon_sym___inline] = ACTIONS(1278), - [anon_sym___inline__] = ACTIONS(1278), - [anon_sym___forceinline] = ACTIONS(1278), - [anon_sym_thread_local] = ACTIONS(1278), - [anon_sym___thread] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_constexpr] = ACTIONS(1278), - [anon_sym_volatile] = ACTIONS(1278), - [anon_sym_restrict] = ACTIONS(1278), - [anon_sym___restrict__] = ACTIONS(1278), - [anon_sym__Atomic] = ACTIONS(1278), - [anon_sym__Noreturn] = ACTIONS(1278), - [anon_sym_noreturn] = ACTIONS(1278), - [anon_sym_alignas] = ACTIONS(1278), - [anon_sym__Alignas] = ACTIONS(1278), - [sym_primitive_type] = ACTIONS(1278), - [anon_sym_enum] = ACTIONS(1278), - [anon_sym_struct] = ACTIONS(1278), - [anon_sym_union] = ACTIONS(1278), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_else] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(1278), - [anon_sym_case] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1278), - [anon_sym_while] = ACTIONS(1278), - [anon_sym_do] = ACTIONS(1278), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(1278), - [anon_sym_break] = ACTIONS(1278), - [anon_sym_continue] = ACTIONS(1278), - [anon_sym_goto] = ACTIONS(1278), - [anon_sym___try] = ACTIONS(1278), - [anon_sym___leave] = ACTIONS(1278), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_sizeof] = ACTIONS(1278), - [anon_sym___alignof__] = ACTIONS(1278), - [anon_sym___alignof] = ACTIONS(1278), - [anon_sym__alignof] = ACTIONS(1278), - [anon_sym_alignof] = ACTIONS(1278), - [anon_sym__Alignof] = ACTIONS(1278), - [anon_sym_offsetof] = ACTIONS(1278), - [anon_sym__Generic] = ACTIONS(1278), - [anon_sym_asm] = ACTIONS(1278), - [anon_sym___asm__] = ACTIONS(1278), - [sym_number_literal] = ACTIONS(1280), - [anon_sym_L_SQUOTE] = ACTIONS(1280), - [anon_sym_u_SQUOTE] = ACTIONS(1280), - [anon_sym_U_SQUOTE] = ACTIONS(1280), - [anon_sym_u8_SQUOTE] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1280), - [anon_sym_L_DQUOTE] = ACTIONS(1280), - [anon_sym_u_DQUOTE] = ACTIONS(1280), - [anon_sym_U_DQUOTE] = ACTIONS(1280), - [anon_sym_u8_DQUOTE] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym_true] = ACTIONS(1278), - [sym_false] = ACTIONS(1278), - [anon_sym_NULL] = ACTIONS(1278), - [anon_sym_nullptr] = ACTIONS(1278), - [sym_comment] = ACTIONS(5), - }, - [176] = { - [ts_builtin_sym_end] = ACTIONS(1224), - [sym_identifier] = ACTIONS(1222), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1222), - [aux_sym_preproc_def_token1] = ACTIONS(1222), - [aux_sym_preproc_if_token1] = ACTIONS(1222), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1222), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1222), - [sym_preproc_directive] = ACTIONS(1222), - [anon_sym_LPAREN2] = ACTIONS(1224), - [anon_sym_BANG] = ACTIONS(1224), - [anon_sym_TILDE] = ACTIONS(1224), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_STAR] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym___extension__] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(1222), - [anon_sym___attribute__] = ACTIONS(1222), - [anon_sym___scanf] = ACTIONS(1222), - [anon_sym___printf] = ACTIONS(1222), - [anon_sym___read_mostly] = ACTIONS(1222), - [anon_sym___must_hold] = ACTIONS(1222), - [anon_sym___ro_after_init] = ACTIONS(1222), - [anon_sym___noreturn] = ACTIONS(1222), - [anon_sym___cold] = ACTIONS(1222), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1224), - [anon_sym___declspec] = ACTIONS(1222), - [anon_sym___init] = ACTIONS(1222), - [anon_sym___exit] = ACTIONS(1222), - [anon_sym___cdecl] = ACTIONS(1222), - [anon_sym___clrcall] = ACTIONS(1222), - [anon_sym___stdcall] = ACTIONS(1222), - [anon_sym___fastcall] = ACTIONS(1222), - [anon_sym___thiscall] = ACTIONS(1222), - [anon_sym___vectorcall] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_signed] = ACTIONS(1222), - [anon_sym_unsigned] = ACTIONS(1222), - [anon_sym_long] = ACTIONS(1222), - [anon_sym_short] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1222), - [anon_sym_auto] = ACTIONS(1222), - [anon_sym_register] = ACTIONS(1222), - [anon_sym_inline] = ACTIONS(1222), - [anon_sym___inline] = ACTIONS(1222), - [anon_sym___inline__] = ACTIONS(1222), - [anon_sym___forceinline] = ACTIONS(1222), - [anon_sym_thread_local] = ACTIONS(1222), - [anon_sym___thread] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_constexpr] = ACTIONS(1222), - [anon_sym_volatile] = ACTIONS(1222), - [anon_sym_restrict] = ACTIONS(1222), - [anon_sym___restrict__] = ACTIONS(1222), - [anon_sym__Atomic] = ACTIONS(1222), - [anon_sym__Noreturn] = ACTIONS(1222), - [anon_sym_noreturn] = ACTIONS(1222), - [anon_sym_alignas] = ACTIONS(1222), - [anon_sym__Alignas] = ACTIONS(1222), - [sym_primitive_type] = ACTIONS(1222), - [anon_sym_enum] = ACTIONS(1222), - [anon_sym_struct] = ACTIONS(1222), - [anon_sym_union] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_else] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(1222), - [anon_sym_case] = ACTIONS(1222), - [anon_sym_default] = ACTIONS(1222), - [anon_sym_while] = ACTIONS(1222), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_break] = ACTIONS(1222), - [anon_sym_continue] = ACTIONS(1222), - [anon_sym_goto] = ACTIONS(1222), - [anon_sym___try] = ACTIONS(1222), - [anon_sym___leave] = ACTIONS(1222), - [anon_sym_DASH_DASH] = ACTIONS(1224), - [anon_sym_PLUS_PLUS] = ACTIONS(1224), - [anon_sym_sizeof] = ACTIONS(1222), - [anon_sym___alignof__] = ACTIONS(1222), - [anon_sym___alignof] = ACTIONS(1222), - [anon_sym__alignof] = ACTIONS(1222), - [anon_sym_alignof] = ACTIONS(1222), - [anon_sym__Alignof] = ACTIONS(1222), - [anon_sym_offsetof] = ACTIONS(1222), - [anon_sym__Generic] = ACTIONS(1222), - [anon_sym_asm] = ACTIONS(1222), - [anon_sym___asm__] = ACTIONS(1222), - [sym_number_literal] = ACTIONS(1224), - [anon_sym_L_SQUOTE] = ACTIONS(1224), - [anon_sym_u_SQUOTE] = ACTIONS(1224), - [anon_sym_U_SQUOTE] = ACTIONS(1224), - [anon_sym_u8_SQUOTE] = ACTIONS(1224), - [anon_sym_SQUOTE] = ACTIONS(1224), - [anon_sym_L_DQUOTE] = ACTIONS(1224), - [anon_sym_u_DQUOTE] = ACTIONS(1224), - [anon_sym_U_DQUOTE] = ACTIONS(1224), - [anon_sym_u8_DQUOTE] = ACTIONS(1224), - [anon_sym_DQUOTE] = ACTIONS(1224), - [sym_true] = ACTIONS(1222), - [sym_false] = ACTIONS(1222), - [anon_sym_NULL] = ACTIONS(1222), - [anon_sym_nullptr] = ACTIONS(1222), - [sym_comment] = ACTIONS(5), - }, - [177] = { - [sym_identifier] = ACTIONS(1238), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1238), - [aux_sym_preproc_def_token1] = ACTIONS(1238), - [aux_sym_preproc_if_token1] = ACTIONS(1238), - [aux_sym_preproc_if_token2] = ACTIONS(1238), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1238), - [sym_preproc_directive] = ACTIONS(1238), - [anon_sym_LPAREN2] = ACTIONS(1240), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym___extension__] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1238), - [anon_sym_extern] = ACTIONS(1238), - [anon_sym___attribute__] = ACTIONS(1238), - [anon_sym___scanf] = ACTIONS(1238), - [anon_sym___printf] = ACTIONS(1238), - [anon_sym___read_mostly] = ACTIONS(1238), - [anon_sym___must_hold] = ACTIONS(1238), - [anon_sym___ro_after_init] = ACTIONS(1238), - [anon_sym___noreturn] = ACTIONS(1238), - [anon_sym___cold] = ACTIONS(1238), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1240), - [anon_sym___declspec] = ACTIONS(1238), - [anon_sym___init] = ACTIONS(1238), - [anon_sym___exit] = ACTIONS(1238), - [anon_sym___cdecl] = ACTIONS(1238), - [anon_sym___clrcall] = ACTIONS(1238), - [anon_sym___stdcall] = ACTIONS(1238), - [anon_sym___fastcall] = ACTIONS(1238), - [anon_sym___thiscall] = ACTIONS(1238), - [anon_sym___vectorcall] = ACTIONS(1238), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_signed] = ACTIONS(1238), - [anon_sym_unsigned] = ACTIONS(1238), - [anon_sym_long] = ACTIONS(1238), - [anon_sym_short] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_auto] = ACTIONS(1238), - [anon_sym_register] = ACTIONS(1238), - [anon_sym_inline] = ACTIONS(1238), - [anon_sym___inline] = ACTIONS(1238), - [anon_sym___inline__] = ACTIONS(1238), - [anon_sym___forceinline] = ACTIONS(1238), - [anon_sym_thread_local] = ACTIONS(1238), - [anon_sym___thread] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_constexpr] = ACTIONS(1238), - [anon_sym_volatile] = ACTIONS(1238), - [anon_sym_restrict] = ACTIONS(1238), - [anon_sym___restrict__] = ACTIONS(1238), - [anon_sym__Atomic] = ACTIONS(1238), - [anon_sym__Noreturn] = ACTIONS(1238), - [anon_sym_noreturn] = ACTIONS(1238), - [anon_sym_alignas] = ACTIONS(1238), - [anon_sym__Alignas] = ACTIONS(1238), - [sym_primitive_type] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1238), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_else] = ACTIONS(1238), - [anon_sym_switch] = ACTIONS(1238), - [anon_sym_case] = ACTIONS(1238), - [anon_sym_default] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_do] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_goto] = ACTIONS(1238), - [anon_sym___try] = ACTIONS(1238), - [anon_sym___leave] = ACTIONS(1238), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [anon_sym_sizeof] = ACTIONS(1238), - [anon_sym___alignof__] = ACTIONS(1238), - [anon_sym___alignof] = ACTIONS(1238), - [anon_sym__alignof] = ACTIONS(1238), - [anon_sym_alignof] = ACTIONS(1238), - [anon_sym__Alignof] = ACTIONS(1238), - [anon_sym_offsetof] = ACTIONS(1238), - [anon_sym__Generic] = ACTIONS(1238), - [anon_sym_asm] = ACTIONS(1238), - [anon_sym___asm__] = ACTIONS(1238), - [sym_number_literal] = ACTIONS(1240), - [anon_sym_L_SQUOTE] = ACTIONS(1240), - [anon_sym_u_SQUOTE] = ACTIONS(1240), - [anon_sym_U_SQUOTE] = ACTIONS(1240), - [anon_sym_u8_SQUOTE] = ACTIONS(1240), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_L_DQUOTE] = ACTIONS(1240), - [anon_sym_u_DQUOTE] = ACTIONS(1240), - [anon_sym_U_DQUOTE] = ACTIONS(1240), - [anon_sym_u8_DQUOTE] = ACTIONS(1240), - [anon_sym_DQUOTE] = ACTIONS(1240), - [sym_true] = ACTIONS(1238), - [sym_false] = ACTIONS(1238), - [anon_sym_NULL] = ACTIONS(1238), - [anon_sym_nullptr] = ACTIONS(1238), - [sym_comment] = ACTIONS(5), - }, [178] = { - [ts_builtin_sym_end] = ACTIONS(1284), - [sym_identifier] = ACTIONS(1282), + [sym_identifier] = ACTIONS(1334), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1282), - [aux_sym_preproc_def_token1] = ACTIONS(1282), - [aux_sym_preproc_if_token1] = ACTIONS(1282), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1282), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1282), - [sym_preproc_directive] = ACTIONS(1282), - [anon_sym_LPAREN2] = ACTIONS(1284), - [anon_sym_BANG] = ACTIONS(1284), - [anon_sym_TILDE] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_AMP] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym___extension__] = ACTIONS(1282), - [anon_sym_typedef] = ACTIONS(1282), - [anon_sym_extern] = ACTIONS(1282), - [anon_sym___attribute__] = ACTIONS(1282), - [anon_sym___scanf] = ACTIONS(1282), - [anon_sym___printf] = ACTIONS(1282), - [anon_sym___read_mostly] = ACTIONS(1282), - [anon_sym___must_hold] = ACTIONS(1282), - [anon_sym___ro_after_init] = ACTIONS(1282), - [anon_sym___noreturn] = ACTIONS(1282), - [anon_sym___cold] = ACTIONS(1282), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1284), - [anon_sym___declspec] = ACTIONS(1282), - [anon_sym___init] = ACTIONS(1282), - [anon_sym___exit] = ACTIONS(1282), - [anon_sym___cdecl] = ACTIONS(1282), - [anon_sym___clrcall] = ACTIONS(1282), - [anon_sym___stdcall] = ACTIONS(1282), - [anon_sym___fastcall] = ACTIONS(1282), - [anon_sym___thiscall] = ACTIONS(1282), - [anon_sym___vectorcall] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1284), - [anon_sym_signed] = ACTIONS(1282), - [anon_sym_unsigned] = ACTIONS(1282), - [anon_sym_long] = ACTIONS(1282), - [anon_sym_short] = ACTIONS(1282), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_auto] = ACTIONS(1282), - [anon_sym_register] = ACTIONS(1282), - [anon_sym_inline] = ACTIONS(1282), - [anon_sym___inline] = ACTIONS(1282), - [anon_sym___inline__] = ACTIONS(1282), - [anon_sym___forceinline] = ACTIONS(1282), - [anon_sym_thread_local] = ACTIONS(1282), - [anon_sym___thread] = ACTIONS(1282), - [anon_sym_const] = ACTIONS(1282), - [anon_sym_constexpr] = ACTIONS(1282), - [anon_sym_volatile] = ACTIONS(1282), - [anon_sym_restrict] = ACTIONS(1282), - [anon_sym___restrict__] = ACTIONS(1282), - [anon_sym__Atomic] = ACTIONS(1282), - [anon_sym__Noreturn] = ACTIONS(1282), - [anon_sym_noreturn] = ACTIONS(1282), - [anon_sym_alignas] = ACTIONS(1282), - [anon_sym__Alignas] = ACTIONS(1282), - [sym_primitive_type] = ACTIONS(1282), - [anon_sym_enum] = ACTIONS(1282), - [anon_sym_struct] = ACTIONS(1282), - [anon_sym_union] = ACTIONS(1282), - [anon_sym_if] = ACTIONS(1282), - [anon_sym_else] = ACTIONS(1282), - [anon_sym_switch] = ACTIONS(1282), - [anon_sym_case] = ACTIONS(1282), - [anon_sym_default] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1282), - [anon_sym_do] = ACTIONS(1282), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(1282), - [anon_sym_break] = ACTIONS(1282), - [anon_sym_continue] = ACTIONS(1282), - [anon_sym_goto] = ACTIONS(1282), - [anon_sym___try] = ACTIONS(1282), - [anon_sym___leave] = ACTIONS(1282), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_sizeof] = ACTIONS(1282), - [anon_sym___alignof__] = ACTIONS(1282), - [anon_sym___alignof] = ACTIONS(1282), - [anon_sym__alignof] = ACTIONS(1282), - [anon_sym_alignof] = ACTIONS(1282), - [anon_sym__Alignof] = ACTIONS(1282), - [anon_sym_offsetof] = ACTIONS(1282), - [anon_sym__Generic] = ACTIONS(1282), - [anon_sym_asm] = ACTIONS(1282), - [anon_sym___asm__] = ACTIONS(1282), - [sym_number_literal] = ACTIONS(1284), - [anon_sym_L_SQUOTE] = ACTIONS(1284), - [anon_sym_u_SQUOTE] = ACTIONS(1284), - [anon_sym_U_SQUOTE] = ACTIONS(1284), - [anon_sym_u8_SQUOTE] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1284), - [anon_sym_L_DQUOTE] = ACTIONS(1284), - [anon_sym_u_DQUOTE] = ACTIONS(1284), - [anon_sym_U_DQUOTE] = ACTIONS(1284), - [anon_sym_u8_DQUOTE] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1284), - [sym_true] = ACTIONS(1282), - [sym_false] = ACTIONS(1282), - [anon_sym_NULL] = ACTIONS(1282), - [anon_sym_nullptr] = ACTIONS(1282), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token2] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym___scanf] = ACTIONS(1334), + [anon_sym___printf] = ACTIONS(1334), + [anon_sym___read_mostly] = ACTIONS(1334), + [anon_sym___must_hold] = ACTIONS(1334), + [anon_sym___ro_after_init] = ACTIONS(1334), + [anon_sym___noreturn] = ACTIONS(1334), + [anon_sym___cold] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___init] = ACTIONS(1334), + [anon_sym___exit] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [anon_sym_alignas] = ACTIONS(1334), + [anon_sym__Alignas] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_L_SQUOTE] = ACTIONS(1336), + [anon_sym_u_SQUOTE] = ACTIONS(1336), + [anon_sym_U_SQUOTE] = ACTIONS(1336), + [anon_sym_u8_SQUOTE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_L_DQUOTE] = ACTIONS(1336), + [anon_sym_u_DQUOTE] = ACTIONS(1336), + [anon_sym_U_DQUOTE] = ACTIONS(1336), + [anon_sym_u8_DQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(5), }, [179] = { - [sym_identifier] = ACTIONS(1270), + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1270), - [aux_sym_preproc_def_token1] = ACTIONS(1270), - [aux_sym_preproc_if_token1] = ACTIONS(1270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1270), - [sym_preproc_directive] = ACTIONS(1270), - [anon_sym_LPAREN2] = ACTIONS(1272), - [anon_sym_BANG] = ACTIONS(1272), - [anon_sym_TILDE] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_AMP] = ACTIONS(1272), - [anon_sym_SEMI] = ACTIONS(1272), - [anon_sym___extension__] = ACTIONS(1270), - [anon_sym_typedef] = ACTIONS(1270), - [anon_sym_extern] = ACTIONS(1270), - [anon_sym___attribute__] = ACTIONS(1270), - [anon_sym___scanf] = ACTIONS(1270), - [anon_sym___printf] = ACTIONS(1270), - [anon_sym___read_mostly] = ACTIONS(1270), - [anon_sym___must_hold] = ACTIONS(1270), - [anon_sym___ro_after_init] = ACTIONS(1270), - [anon_sym___noreturn] = ACTIONS(1270), - [anon_sym___cold] = ACTIONS(1270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1272), - [anon_sym___declspec] = ACTIONS(1270), - [anon_sym___init] = ACTIONS(1270), - [anon_sym___exit] = ACTIONS(1270), - [anon_sym___cdecl] = ACTIONS(1270), - [anon_sym___clrcall] = ACTIONS(1270), - [anon_sym___stdcall] = ACTIONS(1270), - [anon_sym___fastcall] = ACTIONS(1270), - [anon_sym___thiscall] = ACTIONS(1270), - [anon_sym___vectorcall] = ACTIONS(1270), - [anon_sym_LBRACE] = ACTIONS(1272), - [anon_sym_RBRACE] = ACTIONS(1272), - [anon_sym_signed] = ACTIONS(1270), - [anon_sym_unsigned] = ACTIONS(1270), - [anon_sym_long] = ACTIONS(1270), - [anon_sym_short] = ACTIONS(1270), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_auto] = ACTIONS(1270), - [anon_sym_register] = ACTIONS(1270), - [anon_sym_inline] = ACTIONS(1270), - [anon_sym___inline] = ACTIONS(1270), - [anon_sym___inline__] = ACTIONS(1270), - [anon_sym___forceinline] = ACTIONS(1270), - [anon_sym_thread_local] = ACTIONS(1270), - [anon_sym___thread] = ACTIONS(1270), - [anon_sym_const] = ACTIONS(1270), - [anon_sym_constexpr] = ACTIONS(1270), - [anon_sym_volatile] = ACTIONS(1270), - [anon_sym_restrict] = ACTIONS(1270), - [anon_sym___restrict__] = ACTIONS(1270), - [anon_sym__Atomic] = ACTIONS(1270), - [anon_sym__Noreturn] = ACTIONS(1270), - [anon_sym_noreturn] = ACTIONS(1270), - [anon_sym_alignas] = ACTIONS(1270), - [anon_sym__Alignas] = ACTIONS(1270), - [sym_primitive_type] = ACTIONS(1270), - [anon_sym_enum] = ACTIONS(1270), - [anon_sym_struct] = ACTIONS(1270), - [anon_sym_union] = ACTIONS(1270), - [anon_sym_if] = ACTIONS(1270), - [anon_sym_else] = ACTIONS(1270), - [anon_sym_switch] = ACTIONS(1270), - [anon_sym_case] = ACTIONS(1270), - [anon_sym_default] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(1270), - [anon_sym_do] = ACTIONS(1270), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_return] = ACTIONS(1270), - [anon_sym_break] = ACTIONS(1270), - [anon_sym_continue] = ACTIONS(1270), - [anon_sym_goto] = ACTIONS(1270), - [anon_sym___try] = ACTIONS(1270), - [anon_sym___leave] = ACTIONS(1270), - [anon_sym_DASH_DASH] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1272), - [anon_sym_sizeof] = ACTIONS(1270), - [anon_sym___alignof__] = ACTIONS(1270), - [anon_sym___alignof] = ACTIONS(1270), - [anon_sym__alignof] = ACTIONS(1270), - [anon_sym_alignof] = ACTIONS(1270), - [anon_sym__Alignof] = ACTIONS(1270), - [anon_sym_offsetof] = ACTIONS(1270), - [anon_sym__Generic] = ACTIONS(1270), - [anon_sym_asm] = ACTIONS(1270), - [anon_sym___asm__] = ACTIONS(1270), - [sym_number_literal] = ACTIONS(1272), - [anon_sym_L_SQUOTE] = ACTIONS(1272), - [anon_sym_u_SQUOTE] = ACTIONS(1272), - [anon_sym_U_SQUOTE] = ACTIONS(1272), - [anon_sym_u8_SQUOTE] = ACTIONS(1272), - [anon_sym_SQUOTE] = ACTIONS(1272), - [anon_sym_L_DQUOTE] = ACTIONS(1272), - [anon_sym_u_DQUOTE] = ACTIONS(1272), - [anon_sym_U_DQUOTE] = ACTIONS(1272), - [anon_sym_u8_DQUOTE] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1272), - [sym_true] = ACTIONS(1270), - [sym_false] = ACTIONS(1270), - [anon_sym_NULL] = ACTIONS(1270), - [anon_sym_nullptr] = ACTIONS(1270), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym___scanf] = ACTIONS(1306), + [anon_sym___printf] = ACTIONS(1306), + [anon_sym___read_mostly] = ACTIONS(1306), + [anon_sym___must_hold] = ACTIONS(1306), + [anon_sym___ro_after_init] = ACTIONS(1306), + [anon_sym___noreturn] = ACTIONS(1306), + [anon_sym___cold] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___init] = ACTIONS(1306), + [anon_sym___exit] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [anon_sym_alignas] = ACTIONS(1306), + [anon_sym__Alignas] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(5), }, [180] = { - [sym_identifier] = ACTIONS(1258), + [sym_identifier] = ACTIONS(1250), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1258), - [aux_sym_preproc_def_token1] = ACTIONS(1258), - [aux_sym_preproc_if_token1] = ACTIONS(1258), - [aux_sym_preproc_if_token2] = ACTIONS(1258), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1258), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1258), - [sym_preproc_directive] = ACTIONS(1258), - [anon_sym_LPAREN2] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1260), - [anon_sym_TILDE] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_SEMI] = ACTIONS(1260), - [anon_sym___extension__] = ACTIONS(1258), - [anon_sym_typedef] = ACTIONS(1258), - [anon_sym_extern] = ACTIONS(1258), - [anon_sym___attribute__] = ACTIONS(1258), - [anon_sym___scanf] = ACTIONS(1258), - [anon_sym___printf] = ACTIONS(1258), - [anon_sym___read_mostly] = ACTIONS(1258), - [anon_sym___must_hold] = ACTIONS(1258), - [anon_sym___ro_after_init] = ACTIONS(1258), - [anon_sym___noreturn] = ACTIONS(1258), - [anon_sym___cold] = ACTIONS(1258), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1260), - [anon_sym___declspec] = ACTIONS(1258), - [anon_sym___init] = ACTIONS(1258), - [anon_sym___exit] = ACTIONS(1258), - [anon_sym___cdecl] = ACTIONS(1258), - [anon_sym___clrcall] = ACTIONS(1258), - [anon_sym___stdcall] = ACTIONS(1258), - [anon_sym___fastcall] = ACTIONS(1258), - [anon_sym___thiscall] = ACTIONS(1258), - [anon_sym___vectorcall] = ACTIONS(1258), - [anon_sym_LBRACE] = ACTIONS(1260), - [anon_sym_signed] = ACTIONS(1258), - [anon_sym_unsigned] = ACTIONS(1258), - [anon_sym_long] = ACTIONS(1258), - [anon_sym_short] = ACTIONS(1258), - [anon_sym_static] = ACTIONS(1258), - [anon_sym_auto] = ACTIONS(1258), - [anon_sym_register] = ACTIONS(1258), - [anon_sym_inline] = ACTIONS(1258), - [anon_sym___inline] = ACTIONS(1258), - [anon_sym___inline__] = ACTIONS(1258), - [anon_sym___forceinline] = ACTIONS(1258), - [anon_sym_thread_local] = ACTIONS(1258), - [anon_sym___thread] = ACTIONS(1258), - [anon_sym_const] = ACTIONS(1258), - [anon_sym_constexpr] = ACTIONS(1258), - [anon_sym_volatile] = ACTIONS(1258), - [anon_sym_restrict] = ACTIONS(1258), - [anon_sym___restrict__] = ACTIONS(1258), - [anon_sym__Atomic] = ACTIONS(1258), - [anon_sym__Noreturn] = ACTIONS(1258), - [anon_sym_noreturn] = ACTIONS(1258), - [anon_sym_alignas] = ACTIONS(1258), - [anon_sym__Alignas] = ACTIONS(1258), - [sym_primitive_type] = ACTIONS(1258), - [anon_sym_enum] = ACTIONS(1258), - [anon_sym_struct] = ACTIONS(1258), - [anon_sym_union] = ACTIONS(1258), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_else] = ACTIONS(1258), - [anon_sym_switch] = ACTIONS(1258), - [anon_sym_case] = ACTIONS(1258), - [anon_sym_default] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1258), - [anon_sym_do] = ACTIONS(1258), - [anon_sym_for] = ACTIONS(1258), - [anon_sym_return] = ACTIONS(1258), - [anon_sym_break] = ACTIONS(1258), - [anon_sym_continue] = ACTIONS(1258), - [anon_sym_goto] = ACTIONS(1258), - [anon_sym___try] = ACTIONS(1258), - [anon_sym___leave] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1260), - [anon_sym_PLUS_PLUS] = ACTIONS(1260), - [anon_sym_sizeof] = ACTIONS(1258), - [anon_sym___alignof__] = ACTIONS(1258), - [anon_sym___alignof] = ACTIONS(1258), - [anon_sym__alignof] = ACTIONS(1258), - [anon_sym_alignof] = ACTIONS(1258), - [anon_sym__Alignof] = ACTIONS(1258), - [anon_sym_offsetof] = ACTIONS(1258), - [anon_sym__Generic] = ACTIONS(1258), - [anon_sym_asm] = ACTIONS(1258), - [anon_sym___asm__] = ACTIONS(1258), - [sym_number_literal] = ACTIONS(1260), - [anon_sym_L_SQUOTE] = ACTIONS(1260), - [anon_sym_u_SQUOTE] = ACTIONS(1260), - [anon_sym_U_SQUOTE] = ACTIONS(1260), - [anon_sym_u8_SQUOTE] = ACTIONS(1260), - [anon_sym_SQUOTE] = ACTIONS(1260), - [anon_sym_L_DQUOTE] = ACTIONS(1260), - [anon_sym_u_DQUOTE] = ACTIONS(1260), - [anon_sym_U_DQUOTE] = ACTIONS(1260), - [anon_sym_u8_DQUOTE] = ACTIONS(1260), - [anon_sym_DQUOTE] = ACTIONS(1260), - [sym_true] = ACTIONS(1258), - [sym_false] = ACTIONS(1258), - [anon_sym_NULL] = ACTIONS(1258), - [anon_sym_nullptr] = ACTIONS(1258), + [aux_sym_preproc_include_token1] = ACTIONS(1250), + [aux_sym_preproc_def_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token2] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), + [sym_preproc_directive] = ACTIONS(1250), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym___extension__] = ACTIONS(1250), + [anon_sym_typedef] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1250), + [anon_sym___attribute__] = ACTIONS(1250), + [anon_sym___scanf] = ACTIONS(1250), + [anon_sym___printf] = ACTIONS(1250), + [anon_sym___read_mostly] = ACTIONS(1250), + [anon_sym___must_hold] = ACTIONS(1250), + [anon_sym___ro_after_init] = ACTIONS(1250), + [anon_sym___noreturn] = ACTIONS(1250), + [anon_sym___cold] = ACTIONS(1250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), + [anon_sym___declspec] = ACTIONS(1250), + [anon_sym___init] = ACTIONS(1250), + [anon_sym___exit] = ACTIONS(1250), + [anon_sym___cdecl] = ACTIONS(1250), + [anon_sym___clrcall] = ACTIONS(1250), + [anon_sym___stdcall] = ACTIONS(1250), + [anon_sym___fastcall] = ACTIONS(1250), + [anon_sym___thiscall] = ACTIONS(1250), + [anon_sym___vectorcall] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_signed] = ACTIONS(1250), + [anon_sym_unsigned] = ACTIONS(1250), + [anon_sym_long] = ACTIONS(1250), + [anon_sym_short] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_auto] = ACTIONS(1250), + [anon_sym_register] = ACTIONS(1250), + [anon_sym_inline] = ACTIONS(1250), + [anon_sym___inline] = ACTIONS(1250), + [anon_sym___inline__] = ACTIONS(1250), + [anon_sym___forceinline] = ACTIONS(1250), + [anon_sym_thread_local] = ACTIONS(1250), + [anon_sym___thread] = ACTIONS(1250), + [anon_sym_const] = ACTIONS(1250), + [anon_sym_constexpr] = ACTIONS(1250), + [anon_sym_volatile] = ACTIONS(1250), + [anon_sym_restrict] = ACTIONS(1250), + [anon_sym___restrict__] = ACTIONS(1250), + [anon_sym__Atomic] = ACTIONS(1250), + [anon_sym__Noreturn] = ACTIONS(1250), + [anon_sym_noreturn] = ACTIONS(1250), + [anon_sym_alignas] = ACTIONS(1250), + [anon_sym__Alignas] = ACTIONS(1250), + [sym_primitive_type] = ACTIONS(1250), + [anon_sym_enum] = ACTIONS(1250), + [anon_sym_struct] = ACTIONS(1250), + [anon_sym_union] = ACTIONS(1250), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_else] = ACTIONS(1250), + [anon_sym_switch] = ACTIONS(1250), + [anon_sym_case] = ACTIONS(1250), + [anon_sym_default] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [anon_sym_do] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_goto] = ACTIONS(1250), + [anon_sym___try] = ACTIONS(1250), + [anon_sym___leave] = ACTIONS(1250), + [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_sizeof] = ACTIONS(1250), + [anon_sym___alignof__] = ACTIONS(1250), + [anon_sym___alignof] = ACTIONS(1250), + [anon_sym__alignof] = ACTIONS(1250), + [anon_sym_alignof] = ACTIONS(1250), + [anon_sym__Alignof] = ACTIONS(1250), + [anon_sym_offsetof] = ACTIONS(1250), + [anon_sym__Generic] = ACTIONS(1250), + [anon_sym_asm] = ACTIONS(1250), + [anon_sym___asm__] = ACTIONS(1250), + [sym_number_literal] = ACTIONS(1252), + [anon_sym_L_SQUOTE] = ACTIONS(1252), + [anon_sym_u_SQUOTE] = ACTIONS(1252), + [anon_sym_U_SQUOTE] = ACTIONS(1252), + [anon_sym_u8_SQUOTE] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1252), + [anon_sym_L_DQUOTE] = ACTIONS(1252), + [anon_sym_u_DQUOTE] = ACTIONS(1252), + [anon_sym_U_DQUOTE] = ACTIONS(1252), + [anon_sym_u8_DQUOTE] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_true] = ACTIONS(1250), + [sym_false] = ACTIONS(1250), + [anon_sym_NULL] = ACTIONS(1250), + [anon_sym_nullptr] = ACTIONS(1250), [sym_comment] = ACTIONS(5), }, [181] = { - [sym_identifier] = ACTIONS(1262), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1262), - [aux_sym_preproc_def_token1] = ACTIONS(1262), - [aux_sym_preproc_if_token1] = ACTIONS(1262), - [aux_sym_preproc_if_token2] = ACTIONS(1262), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1262), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1262), - [sym_preproc_directive] = ACTIONS(1262), - [anon_sym_LPAREN2] = ACTIONS(1264), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_PLUS] = ACTIONS(1262), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_SEMI] = ACTIONS(1264), - [anon_sym___extension__] = ACTIONS(1262), - [anon_sym_typedef] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(1262), - [anon_sym___attribute__] = ACTIONS(1262), - [anon_sym___scanf] = ACTIONS(1262), - [anon_sym___printf] = ACTIONS(1262), - [anon_sym___read_mostly] = ACTIONS(1262), - [anon_sym___must_hold] = ACTIONS(1262), - [anon_sym___ro_after_init] = ACTIONS(1262), - [anon_sym___noreturn] = ACTIONS(1262), - [anon_sym___cold] = ACTIONS(1262), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym___declspec] = ACTIONS(1262), - [anon_sym___init] = ACTIONS(1262), - [anon_sym___exit] = ACTIONS(1262), - [anon_sym___cdecl] = ACTIONS(1262), - [anon_sym___clrcall] = ACTIONS(1262), - [anon_sym___stdcall] = ACTIONS(1262), - [anon_sym___fastcall] = ACTIONS(1262), - [anon_sym___thiscall] = ACTIONS(1262), - [anon_sym___vectorcall] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(1264), - [anon_sym_signed] = ACTIONS(1262), - [anon_sym_unsigned] = ACTIONS(1262), - [anon_sym_long] = ACTIONS(1262), - [anon_sym_short] = ACTIONS(1262), - [anon_sym_static] = ACTIONS(1262), - [anon_sym_auto] = ACTIONS(1262), - [anon_sym_register] = ACTIONS(1262), - [anon_sym_inline] = ACTIONS(1262), - [anon_sym___inline] = ACTIONS(1262), - [anon_sym___inline__] = ACTIONS(1262), - [anon_sym___forceinline] = ACTIONS(1262), - [anon_sym_thread_local] = ACTIONS(1262), - [anon_sym___thread] = ACTIONS(1262), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_constexpr] = ACTIONS(1262), - [anon_sym_volatile] = ACTIONS(1262), - [anon_sym_restrict] = ACTIONS(1262), - [anon_sym___restrict__] = ACTIONS(1262), - [anon_sym__Atomic] = ACTIONS(1262), - [anon_sym__Noreturn] = ACTIONS(1262), - [anon_sym_noreturn] = ACTIONS(1262), - [anon_sym_alignas] = ACTIONS(1262), - [anon_sym__Alignas] = ACTIONS(1262), - [sym_primitive_type] = ACTIONS(1262), - [anon_sym_enum] = ACTIONS(1262), - [anon_sym_struct] = ACTIONS(1262), - [anon_sym_union] = ACTIONS(1262), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(1262), - [anon_sym_switch] = ACTIONS(1262), - [anon_sym_case] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1262), - [anon_sym_while] = ACTIONS(1262), - [anon_sym_do] = ACTIONS(1262), - [anon_sym_for] = ACTIONS(1262), - [anon_sym_return] = ACTIONS(1262), - [anon_sym_break] = ACTIONS(1262), - [anon_sym_continue] = ACTIONS(1262), - [anon_sym_goto] = ACTIONS(1262), - [anon_sym___try] = ACTIONS(1262), - [anon_sym___leave] = ACTIONS(1262), - [anon_sym_DASH_DASH] = ACTIONS(1264), - [anon_sym_PLUS_PLUS] = ACTIONS(1264), - [anon_sym_sizeof] = ACTIONS(1262), - [anon_sym___alignof__] = ACTIONS(1262), - [anon_sym___alignof] = ACTIONS(1262), - [anon_sym__alignof] = ACTIONS(1262), - [anon_sym_alignof] = ACTIONS(1262), - [anon_sym__Alignof] = ACTIONS(1262), - [anon_sym_offsetof] = ACTIONS(1262), - [anon_sym__Generic] = ACTIONS(1262), - [anon_sym_asm] = ACTIONS(1262), - [anon_sym___asm__] = ACTIONS(1262), - [sym_number_literal] = ACTIONS(1264), - [anon_sym_L_SQUOTE] = ACTIONS(1264), - [anon_sym_u_SQUOTE] = ACTIONS(1264), - [anon_sym_U_SQUOTE] = ACTIONS(1264), - [anon_sym_u8_SQUOTE] = ACTIONS(1264), - [anon_sym_SQUOTE] = ACTIONS(1264), - [anon_sym_L_DQUOTE] = ACTIONS(1264), - [anon_sym_u_DQUOTE] = ACTIONS(1264), - [anon_sym_U_DQUOTE] = ACTIONS(1264), - [anon_sym_u8_DQUOTE] = ACTIONS(1264), - [anon_sym_DQUOTE] = ACTIONS(1264), - [sym_true] = ACTIONS(1262), - [sym_false] = ACTIONS(1262), - [anon_sym_NULL] = ACTIONS(1262), - [anon_sym_nullptr] = ACTIONS(1262), - [sym_comment] = ACTIONS(5), - }, - [182] = { - [sym_identifier] = ACTIONS(1270), + [ts_builtin_sym_end] = ACTIONS(1316), + [sym_identifier] = ACTIONS(1314), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1270), - [aux_sym_preproc_def_token1] = ACTIONS(1270), - [aux_sym_preproc_if_token1] = ACTIONS(1270), - [aux_sym_preproc_if_token2] = ACTIONS(1270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1270), - [sym_preproc_directive] = ACTIONS(1270), - [anon_sym_LPAREN2] = ACTIONS(1272), - [anon_sym_BANG] = ACTIONS(1272), - [anon_sym_TILDE] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_AMP] = ACTIONS(1272), - [anon_sym_SEMI] = ACTIONS(1272), - [anon_sym___extension__] = ACTIONS(1270), - [anon_sym_typedef] = ACTIONS(1270), - [anon_sym_extern] = ACTIONS(1270), - [anon_sym___attribute__] = ACTIONS(1270), - [anon_sym___scanf] = ACTIONS(1270), - [anon_sym___printf] = ACTIONS(1270), - [anon_sym___read_mostly] = ACTIONS(1270), - [anon_sym___must_hold] = ACTIONS(1270), - [anon_sym___ro_after_init] = ACTIONS(1270), - [anon_sym___noreturn] = ACTIONS(1270), - [anon_sym___cold] = ACTIONS(1270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1272), - [anon_sym___declspec] = ACTIONS(1270), - [anon_sym___init] = ACTIONS(1270), - [anon_sym___exit] = ACTIONS(1270), - [anon_sym___cdecl] = ACTIONS(1270), - [anon_sym___clrcall] = ACTIONS(1270), - [anon_sym___stdcall] = ACTIONS(1270), - [anon_sym___fastcall] = ACTIONS(1270), - [anon_sym___thiscall] = ACTIONS(1270), - [anon_sym___vectorcall] = ACTIONS(1270), - [anon_sym_LBRACE] = ACTIONS(1272), - [anon_sym_signed] = ACTIONS(1270), - [anon_sym_unsigned] = ACTIONS(1270), - [anon_sym_long] = ACTIONS(1270), - [anon_sym_short] = ACTIONS(1270), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_auto] = ACTIONS(1270), - [anon_sym_register] = ACTIONS(1270), - [anon_sym_inline] = ACTIONS(1270), - [anon_sym___inline] = ACTIONS(1270), - [anon_sym___inline__] = ACTIONS(1270), - [anon_sym___forceinline] = ACTIONS(1270), - [anon_sym_thread_local] = ACTIONS(1270), - [anon_sym___thread] = ACTIONS(1270), - [anon_sym_const] = ACTIONS(1270), - [anon_sym_constexpr] = ACTIONS(1270), - [anon_sym_volatile] = ACTIONS(1270), - [anon_sym_restrict] = ACTIONS(1270), - [anon_sym___restrict__] = ACTIONS(1270), - [anon_sym__Atomic] = ACTIONS(1270), - [anon_sym__Noreturn] = ACTIONS(1270), - [anon_sym_noreturn] = ACTIONS(1270), - [anon_sym_alignas] = ACTIONS(1270), - [anon_sym__Alignas] = ACTIONS(1270), - [sym_primitive_type] = ACTIONS(1270), - [anon_sym_enum] = ACTIONS(1270), - [anon_sym_struct] = ACTIONS(1270), - [anon_sym_union] = ACTIONS(1270), - [anon_sym_if] = ACTIONS(1270), - [anon_sym_else] = ACTIONS(1270), - [anon_sym_switch] = ACTIONS(1270), - [anon_sym_case] = ACTIONS(1270), - [anon_sym_default] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(1270), - [anon_sym_do] = ACTIONS(1270), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_return] = ACTIONS(1270), - [anon_sym_break] = ACTIONS(1270), - [anon_sym_continue] = ACTIONS(1270), - [anon_sym_goto] = ACTIONS(1270), - [anon_sym___try] = ACTIONS(1270), - [anon_sym___leave] = ACTIONS(1270), - [anon_sym_DASH_DASH] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1272), - [anon_sym_sizeof] = ACTIONS(1270), - [anon_sym___alignof__] = ACTIONS(1270), - [anon_sym___alignof] = ACTIONS(1270), - [anon_sym__alignof] = ACTIONS(1270), - [anon_sym_alignof] = ACTIONS(1270), - [anon_sym__Alignof] = ACTIONS(1270), - [anon_sym_offsetof] = ACTIONS(1270), - [anon_sym__Generic] = ACTIONS(1270), - [anon_sym_asm] = ACTIONS(1270), - [anon_sym___asm__] = ACTIONS(1270), - [sym_number_literal] = ACTIONS(1272), - [anon_sym_L_SQUOTE] = ACTIONS(1272), - [anon_sym_u_SQUOTE] = ACTIONS(1272), - [anon_sym_U_SQUOTE] = ACTIONS(1272), - [anon_sym_u8_SQUOTE] = ACTIONS(1272), - [anon_sym_SQUOTE] = ACTIONS(1272), - [anon_sym_L_DQUOTE] = ACTIONS(1272), - [anon_sym_u_DQUOTE] = ACTIONS(1272), - [anon_sym_U_DQUOTE] = ACTIONS(1272), - [anon_sym_u8_DQUOTE] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1272), - [sym_true] = ACTIONS(1270), - [sym_false] = ACTIONS(1270), - [anon_sym_NULL] = ACTIONS(1270), - [anon_sym_nullptr] = ACTIONS(1270), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym___scanf] = ACTIONS(1314), + [anon_sym___printf] = ACTIONS(1314), + [anon_sym___read_mostly] = ACTIONS(1314), + [anon_sym___must_hold] = ACTIONS(1314), + [anon_sym___ro_after_init] = ACTIONS(1314), + [anon_sym___noreturn] = ACTIONS(1314), + [anon_sym___cold] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___init] = ACTIONS(1314), + [anon_sym___exit] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [anon_sym_alignas] = ACTIONS(1314), + [anon_sym__Alignas] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), + [sym_comment] = ACTIONS(5), + }, + [182] = { + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym___scanf] = ACTIONS(1306), + [anon_sym___printf] = ACTIONS(1306), + [anon_sym___read_mostly] = ACTIONS(1306), + [anon_sym___must_hold] = ACTIONS(1306), + [anon_sym___ro_after_init] = ACTIONS(1306), + [anon_sym___noreturn] = ACTIONS(1306), + [anon_sym___cold] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___init] = ACTIONS(1306), + [anon_sym___exit] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [anon_sym_alignas] = ACTIONS(1306), + [anon_sym__Alignas] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(5), }, [183] = { - [sym_identifier] = ACTIONS(1278), + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1278), - [aux_sym_preproc_def_token1] = ACTIONS(1278), - [aux_sym_preproc_if_token1] = ACTIONS(1278), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1278), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1278), - [sym_preproc_directive] = ACTIONS(1278), - [anon_sym_LPAREN2] = ACTIONS(1280), - [anon_sym_BANG] = ACTIONS(1280), - [anon_sym_TILDE] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1280), - [anon_sym___extension__] = ACTIONS(1278), - [anon_sym_typedef] = ACTIONS(1278), - [anon_sym_extern] = ACTIONS(1278), - [anon_sym___attribute__] = ACTIONS(1278), - [anon_sym___scanf] = ACTIONS(1278), - [anon_sym___printf] = ACTIONS(1278), - [anon_sym___read_mostly] = ACTIONS(1278), - [anon_sym___must_hold] = ACTIONS(1278), - [anon_sym___ro_after_init] = ACTIONS(1278), - [anon_sym___noreturn] = ACTIONS(1278), - [anon_sym___cold] = ACTIONS(1278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1280), - [anon_sym___declspec] = ACTIONS(1278), - [anon_sym___init] = ACTIONS(1278), - [anon_sym___exit] = ACTIONS(1278), - [anon_sym___cdecl] = ACTIONS(1278), - [anon_sym___clrcall] = ACTIONS(1278), - [anon_sym___stdcall] = ACTIONS(1278), - [anon_sym___fastcall] = ACTIONS(1278), - [anon_sym___thiscall] = ACTIONS(1278), - [anon_sym___vectorcall] = ACTIONS(1278), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_RBRACE] = ACTIONS(1280), - [anon_sym_signed] = ACTIONS(1278), - [anon_sym_unsigned] = ACTIONS(1278), - [anon_sym_long] = ACTIONS(1278), - [anon_sym_short] = ACTIONS(1278), - [anon_sym_static] = ACTIONS(1278), - [anon_sym_auto] = ACTIONS(1278), - [anon_sym_register] = ACTIONS(1278), - [anon_sym_inline] = ACTIONS(1278), - [anon_sym___inline] = ACTIONS(1278), - [anon_sym___inline__] = ACTIONS(1278), - [anon_sym___forceinline] = ACTIONS(1278), - [anon_sym_thread_local] = ACTIONS(1278), - [anon_sym___thread] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_constexpr] = ACTIONS(1278), - [anon_sym_volatile] = ACTIONS(1278), - [anon_sym_restrict] = ACTIONS(1278), - [anon_sym___restrict__] = ACTIONS(1278), - [anon_sym__Atomic] = ACTIONS(1278), - [anon_sym__Noreturn] = ACTIONS(1278), - [anon_sym_noreturn] = ACTIONS(1278), - [anon_sym_alignas] = ACTIONS(1278), - [anon_sym__Alignas] = ACTIONS(1278), - [sym_primitive_type] = ACTIONS(1278), - [anon_sym_enum] = ACTIONS(1278), - [anon_sym_struct] = ACTIONS(1278), - [anon_sym_union] = ACTIONS(1278), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_else] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(1278), - [anon_sym_case] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1278), - [anon_sym_while] = ACTIONS(1278), - [anon_sym_do] = ACTIONS(1278), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(1278), - [anon_sym_break] = ACTIONS(1278), - [anon_sym_continue] = ACTIONS(1278), - [anon_sym_goto] = ACTIONS(1278), - [anon_sym___try] = ACTIONS(1278), - [anon_sym___leave] = ACTIONS(1278), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_sizeof] = ACTIONS(1278), - [anon_sym___alignof__] = ACTIONS(1278), - [anon_sym___alignof] = ACTIONS(1278), - [anon_sym__alignof] = ACTIONS(1278), - [anon_sym_alignof] = ACTIONS(1278), - [anon_sym__Alignof] = ACTIONS(1278), - [anon_sym_offsetof] = ACTIONS(1278), - [anon_sym__Generic] = ACTIONS(1278), - [anon_sym_asm] = ACTIONS(1278), - [anon_sym___asm__] = ACTIONS(1278), - [sym_number_literal] = ACTIONS(1280), - [anon_sym_L_SQUOTE] = ACTIONS(1280), - [anon_sym_u_SQUOTE] = ACTIONS(1280), - [anon_sym_U_SQUOTE] = ACTIONS(1280), - [anon_sym_u8_SQUOTE] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1280), - [anon_sym_L_DQUOTE] = ACTIONS(1280), - [anon_sym_u_DQUOTE] = ACTIONS(1280), - [anon_sym_U_DQUOTE] = ACTIONS(1280), - [anon_sym_u8_DQUOTE] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym_true] = ACTIONS(1278), - [sym_false] = ACTIONS(1278), - [anon_sym_NULL] = ACTIONS(1278), - [anon_sym_nullptr] = ACTIONS(1278), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym___scanf] = ACTIONS(1306), + [anon_sym___printf] = ACTIONS(1306), + [anon_sym___read_mostly] = ACTIONS(1306), + [anon_sym___must_hold] = ACTIONS(1306), + [anon_sym___ro_after_init] = ACTIONS(1306), + [anon_sym___noreturn] = ACTIONS(1306), + [anon_sym___cold] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___init] = ACTIONS(1306), + [anon_sym___exit] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [anon_sym_alignas] = ACTIONS(1306), + [anon_sym__Alignas] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(5), }, [184] = { - [sym_identifier] = ACTIONS(1282), + [sym_identifier] = ACTIONS(1294), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1282), - [aux_sym_preproc_def_token1] = ACTIONS(1282), - [aux_sym_preproc_if_token1] = ACTIONS(1282), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1282), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1282), - [sym_preproc_directive] = ACTIONS(1282), - [anon_sym_LPAREN2] = ACTIONS(1284), - [anon_sym_BANG] = ACTIONS(1284), - [anon_sym_TILDE] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_AMP] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym___extension__] = ACTIONS(1282), - [anon_sym_typedef] = ACTIONS(1282), - [anon_sym_extern] = ACTIONS(1282), - [anon_sym___attribute__] = ACTIONS(1282), - [anon_sym___scanf] = ACTIONS(1282), - [anon_sym___printf] = ACTIONS(1282), - [anon_sym___read_mostly] = ACTIONS(1282), - [anon_sym___must_hold] = ACTIONS(1282), - [anon_sym___ro_after_init] = ACTIONS(1282), - [anon_sym___noreturn] = ACTIONS(1282), - [anon_sym___cold] = ACTIONS(1282), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1284), - [anon_sym___declspec] = ACTIONS(1282), - [anon_sym___init] = ACTIONS(1282), - [anon_sym___exit] = ACTIONS(1282), - [anon_sym___cdecl] = ACTIONS(1282), - [anon_sym___clrcall] = ACTIONS(1282), - [anon_sym___stdcall] = ACTIONS(1282), - [anon_sym___fastcall] = ACTIONS(1282), - [anon_sym___thiscall] = ACTIONS(1282), - [anon_sym___vectorcall] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1284), - [anon_sym_RBRACE] = ACTIONS(1284), - [anon_sym_signed] = ACTIONS(1282), - [anon_sym_unsigned] = ACTIONS(1282), - [anon_sym_long] = ACTIONS(1282), - [anon_sym_short] = ACTIONS(1282), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_auto] = ACTIONS(1282), - [anon_sym_register] = ACTIONS(1282), - [anon_sym_inline] = ACTIONS(1282), - [anon_sym___inline] = ACTIONS(1282), - [anon_sym___inline__] = ACTIONS(1282), - [anon_sym___forceinline] = ACTIONS(1282), - [anon_sym_thread_local] = ACTIONS(1282), - [anon_sym___thread] = ACTIONS(1282), - [anon_sym_const] = ACTIONS(1282), - [anon_sym_constexpr] = ACTIONS(1282), - [anon_sym_volatile] = ACTIONS(1282), - [anon_sym_restrict] = ACTIONS(1282), - [anon_sym___restrict__] = ACTIONS(1282), - [anon_sym__Atomic] = ACTIONS(1282), - [anon_sym__Noreturn] = ACTIONS(1282), - [anon_sym_noreturn] = ACTIONS(1282), - [anon_sym_alignas] = ACTIONS(1282), - [anon_sym__Alignas] = ACTIONS(1282), - [sym_primitive_type] = ACTIONS(1282), - [anon_sym_enum] = ACTIONS(1282), - [anon_sym_struct] = ACTIONS(1282), - [anon_sym_union] = ACTIONS(1282), - [anon_sym_if] = ACTIONS(1282), - [anon_sym_else] = ACTIONS(1282), - [anon_sym_switch] = ACTIONS(1282), - [anon_sym_case] = ACTIONS(1282), - [anon_sym_default] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1282), - [anon_sym_do] = ACTIONS(1282), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(1282), - [anon_sym_break] = ACTIONS(1282), - [anon_sym_continue] = ACTIONS(1282), - [anon_sym_goto] = ACTIONS(1282), - [anon_sym___try] = ACTIONS(1282), - [anon_sym___leave] = ACTIONS(1282), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_sizeof] = ACTIONS(1282), - [anon_sym___alignof__] = ACTIONS(1282), - [anon_sym___alignof] = ACTIONS(1282), - [anon_sym__alignof] = ACTIONS(1282), - [anon_sym_alignof] = ACTIONS(1282), - [anon_sym__Alignof] = ACTIONS(1282), - [anon_sym_offsetof] = ACTIONS(1282), - [anon_sym__Generic] = ACTIONS(1282), - [anon_sym_asm] = ACTIONS(1282), - [anon_sym___asm__] = ACTIONS(1282), - [sym_number_literal] = ACTIONS(1284), - [anon_sym_L_SQUOTE] = ACTIONS(1284), - [anon_sym_u_SQUOTE] = ACTIONS(1284), - [anon_sym_U_SQUOTE] = ACTIONS(1284), - [anon_sym_u8_SQUOTE] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1284), - [anon_sym_L_DQUOTE] = ACTIONS(1284), - [anon_sym_u_DQUOTE] = ACTIONS(1284), - [anon_sym_U_DQUOTE] = ACTIONS(1284), - [anon_sym_u8_DQUOTE] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1284), - [sym_true] = ACTIONS(1282), - [sym_false] = ACTIONS(1282), - [anon_sym_NULL] = ACTIONS(1282), - [anon_sym_nullptr] = ACTIONS(1282), + [aux_sym_preproc_include_token1] = ACTIONS(1294), + [aux_sym_preproc_def_token1] = ACTIONS(1294), + [aux_sym_preproc_if_token1] = ACTIONS(1294), + [aux_sym_preproc_if_token2] = ACTIONS(1294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), + [sym_preproc_directive] = ACTIONS(1294), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(1296), + [anon_sym_TILDE] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_PLUS] = ACTIONS(1294), + [anon_sym_STAR] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym___extension__] = ACTIONS(1294), + [anon_sym_typedef] = ACTIONS(1294), + [anon_sym_extern] = ACTIONS(1294), + [anon_sym___attribute__] = ACTIONS(1294), + [anon_sym___scanf] = ACTIONS(1294), + [anon_sym___printf] = ACTIONS(1294), + [anon_sym___read_mostly] = ACTIONS(1294), + [anon_sym___must_hold] = ACTIONS(1294), + [anon_sym___ro_after_init] = ACTIONS(1294), + [anon_sym___noreturn] = ACTIONS(1294), + [anon_sym___cold] = ACTIONS(1294), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1296), + [anon_sym___declspec] = ACTIONS(1294), + [anon_sym___init] = ACTIONS(1294), + [anon_sym___exit] = ACTIONS(1294), + [anon_sym___cdecl] = ACTIONS(1294), + [anon_sym___clrcall] = ACTIONS(1294), + [anon_sym___stdcall] = ACTIONS(1294), + [anon_sym___fastcall] = ACTIONS(1294), + [anon_sym___thiscall] = ACTIONS(1294), + [anon_sym___vectorcall] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_signed] = ACTIONS(1294), + [anon_sym_unsigned] = ACTIONS(1294), + [anon_sym_long] = ACTIONS(1294), + [anon_sym_short] = ACTIONS(1294), + [anon_sym_static] = ACTIONS(1294), + [anon_sym_auto] = ACTIONS(1294), + [anon_sym_register] = ACTIONS(1294), + [anon_sym_inline] = ACTIONS(1294), + [anon_sym___inline] = ACTIONS(1294), + [anon_sym___inline__] = ACTIONS(1294), + [anon_sym___forceinline] = ACTIONS(1294), + [anon_sym_thread_local] = ACTIONS(1294), + [anon_sym___thread] = ACTIONS(1294), + [anon_sym_const] = ACTIONS(1294), + [anon_sym_constexpr] = ACTIONS(1294), + [anon_sym_volatile] = ACTIONS(1294), + [anon_sym_restrict] = ACTIONS(1294), + [anon_sym___restrict__] = ACTIONS(1294), + [anon_sym__Atomic] = ACTIONS(1294), + [anon_sym__Noreturn] = ACTIONS(1294), + [anon_sym_noreturn] = ACTIONS(1294), + [anon_sym_alignas] = ACTIONS(1294), + [anon_sym__Alignas] = ACTIONS(1294), + [sym_primitive_type] = ACTIONS(1294), + [anon_sym_enum] = ACTIONS(1294), + [anon_sym_struct] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1294), + [anon_sym_if] = ACTIONS(1294), + [anon_sym_else] = ACTIONS(1294), + [anon_sym_switch] = ACTIONS(1294), + [anon_sym_case] = ACTIONS(1294), + [anon_sym_default] = ACTIONS(1294), + [anon_sym_while] = ACTIONS(1294), + [anon_sym_do] = ACTIONS(1294), + [anon_sym_for] = ACTIONS(1294), + [anon_sym_return] = ACTIONS(1294), + [anon_sym_break] = ACTIONS(1294), + [anon_sym_continue] = ACTIONS(1294), + [anon_sym_goto] = ACTIONS(1294), + [anon_sym___try] = ACTIONS(1294), + [anon_sym___leave] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [anon_sym_sizeof] = ACTIONS(1294), + [anon_sym___alignof__] = ACTIONS(1294), + [anon_sym___alignof] = ACTIONS(1294), + [anon_sym__alignof] = ACTIONS(1294), + [anon_sym_alignof] = ACTIONS(1294), + [anon_sym__Alignof] = ACTIONS(1294), + [anon_sym_offsetof] = ACTIONS(1294), + [anon_sym__Generic] = ACTIONS(1294), + [anon_sym_asm] = ACTIONS(1294), + [anon_sym___asm__] = ACTIONS(1294), + [sym_number_literal] = ACTIONS(1296), + [anon_sym_L_SQUOTE] = ACTIONS(1296), + [anon_sym_u_SQUOTE] = ACTIONS(1296), + [anon_sym_U_SQUOTE] = ACTIONS(1296), + [anon_sym_u8_SQUOTE] = ACTIONS(1296), + [anon_sym_SQUOTE] = ACTIONS(1296), + [anon_sym_L_DQUOTE] = ACTIONS(1296), + [anon_sym_u_DQUOTE] = ACTIONS(1296), + [anon_sym_U_DQUOTE] = ACTIONS(1296), + [anon_sym_u8_DQUOTE] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [sym_true] = ACTIONS(1294), + [sym_false] = ACTIONS(1294), + [anon_sym_NULL] = ACTIONS(1294), + [anon_sym_nullptr] = ACTIONS(1294), [sym_comment] = ACTIONS(5), }, [185] = { - [sym_identifier] = ACTIONS(1286), + [ts_builtin_sym_end] = ACTIONS(1320), + [sym_identifier] = ACTIONS(1318), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1286), - [aux_sym_preproc_def_token1] = ACTIONS(1286), - [aux_sym_preproc_if_token1] = ACTIONS(1286), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1286), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1286), - [sym_preproc_directive] = ACTIONS(1286), - [anon_sym_LPAREN2] = ACTIONS(1288), - [anon_sym_BANG] = ACTIONS(1288), - [anon_sym_TILDE] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym___extension__] = ACTIONS(1286), - [anon_sym_typedef] = ACTIONS(1286), - [anon_sym_extern] = ACTIONS(1286), - [anon_sym___attribute__] = ACTIONS(1286), - [anon_sym___scanf] = ACTIONS(1286), - [anon_sym___printf] = ACTIONS(1286), - [anon_sym___read_mostly] = ACTIONS(1286), - [anon_sym___must_hold] = ACTIONS(1286), - [anon_sym___ro_after_init] = ACTIONS(1286), - [anon_sym___noreturn] = ACTIONS(1286), - [anon_sym___cold] = ACTIONS(1286), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1288), - [anon_sym___declspec] = ACTIONS(1286), - [anon_sym___init] = ACTIONS(1286), - [anon_sym___exit] = ACTIONS(1286), - [anon_sym___cdecl] = ACTIONS(1286), - [anon_sym___clrcall] = ACTIONS(1286), - [anon_sym___stdcall] = ACTIONS(1286), - [anon_sym___fastcall] = ACTIONS(1286), - [anon_sym___thiscall] = ACTIONS(1286), - [anon_sym___vectorcall] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_RBRACE] = ACTIONS(1288), - [anon_sym_signed] = ACTIONS(1286), - [anon_sym_unsigned] = ACTIONS(1286), - [anon_sym_long] = ACTIONS(1286), - [anon_sym_short] = ACTIONS(1286), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_auto] = ACTIONS(1286), - [anon_sym_register] = ACTIONS(1286), - [anon_sym_inline] = ACTIONS(1286), - [anon_sym___inline] = ACTIONS(1286), - [anon_sym___inline__] = ACTIONS(1286), - [anon_sym___forceinline] = ACTIONS(1286), - [anon_sym_thread_local] = ACTIONS(1286), - [anon_sym___thread] = ACTIONS(1286), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_constexpr] = ACTIONS(1286), - [anon_sym_volatile] = ACTIONS(1286), - [anon_sym_restrict] = ACTIONS(1286), - [anon_sym___restrict__] = ACTIONS(1286), - [anon_sym__Atomic] = ACTIONS(1286), - [anon_sym__Noreturn] = ACTIONS(1286), - [anon_sym_noreturn] = ACTIONS(1286), - [anon_sym_alignas] = ACTIONS(1286), - [anon_sym__Alignas] = ACTIONS(1286), - [sym_primitive_type] = ACTIONS(1286), - [anon_sym_enum] = ACTIONS(1286), - [anon_sym_struct] = ACTIONS(1286), - [anon_sym_union] = ACTIONS(1286), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_else] = ACTIONS(1286), - [anon_sym_switch] = ACTIONS(1286), - [anon_sym_case] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1286), - [anon_sym_while] = ACTIONS(1286), - [anon_sym_do] = ACTIONS(1286), - [anon_sym_for] = ACTIONS(1286), - [anon_sym_return] = ACTIONS(1286), - [anon_sym_break] = ACTIONS(1286), - [anon_sym_continue] = ACTIONS(1286), - [anon_sym_goto] = ACTIONS(1286), - [anon_sym___try] = ACTIONS(1286), - [anon_sym___leave] = ACTIONS(1286), - [anon_sym_DASH_DASH] = ACTIONS(1288), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_sizeof] = ACTIONS(1286), - [anon_sym___alignof__] = ACTIONS(1286), - [anon_sym___alignof] = ACTIONS(1286), - [anon_sym__alignof] = ACTIONS(1286), - [anon_sym_alignof] = ACTIONS(1286), - [anon_sym__Alignof] = ACTIONS(1286), - [anon_sym_offsetof] = ACTIONS(1286), - [anon_sym__Generic] = ACTIONS(1286), - [anon_sym_asm] = ACTIONS(1286), - [anon_sym___asm__] = ACTIONS(1286), - [sym_number_literal] = ACTIONS(1288), - [anon_sym_L_SQUOTE] = ACTIONS(1288), - [anon_sym_u_SQUOTE] = ACTIONS(1288), - [anon_sym_U_SQUOTE] = ACTIONS(1288), - [anon_sym_u8_SQUOTE] = ACTIONS(1288), - [anon_sym_SQUOTE] = ACTIONS(1288), - [anon_sym_L_DQUOTE] = ACTIONS(1288), - [anon_sym_u_DQUOTE] = ACTIONS(1288), - [anon_sym_U_DQUOTE] = ACTIONS(1288), - [anon_sym_u8_DQUOTE] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym_true] = ACTIONS(1286), - [sym_false] = ACTIONS(1286), - [anon_sym_NULL] = ACTIONS(1286), - [anon_sym_nullptr] = ACTIONS(1286), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym___scanf] = ACTIONS(1318), + [anon_sym___printf] = ACTIONS(1318), + [anon_sym___read_mostly] = ACTIONS(1318), + [anon_sym___must_hold] = ACTIONS(1318), + [anon_sym___ro_after_init] = ACTIONS(1318), + [anon_sym___noreturn] = ACTIONS(1318), + [anon_sym___cold] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___init] = ACTIONS(1318), + [anon_sym___exit] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [anon_sym_alignas] = ACTIONS(1318), + [anon_sym__Alignas] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(5), }, [186] = { - [sym_identifier] = ACTIONS(1278), + [ts_builtin_sym_end] = ACTIONS(1276), + [sym_identifier] = ACTIONS(1274), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1278), - [aux_sym_preproc_def_token1] = ACTIONS(1278), - [aux_sym_preproc_if_token1] = ACTIONS(1278), - [aux_sym_preproc_if_token2] = ACTIONS(1278), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1278), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1278), - [sym_preproc_directive] = ACTIONS(1278), - [anon_sym_LPAREN2] = ACTIONS(1280), - [anon_sym_BANG] = ACTIONS(1280), - [anon_sym_TILDE] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1280), - [anon_sym___extension__] = ACTIONS(1278), - [anon_sym_typedef] = ACTIONS(1278), - [anon_sym_extern] = ACTIONS(1278), - [anon_sym___attribute__] = ACTIONS(1278), - [anon_sym___scanf] = ACTIONS(1278), - [anon_sym___printf] = ACTIONS(1278), - [anon_sym___read_mostly] = ACTIONS(1278), - [anon_sym___must_hold] = ACTIONS(1278), - [anon_sym___ro_after_init] = ACTIONS(1278), - [anon_sym___noreturn] = ACTIONS(1278), - [anon_sym___cold] = ACTIONS(1278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1280), - [anon_sym___declspec] = ACTIONS(1278), - [anon_sym___init] = ACTIONS(1278), - [anon_sym___exit] = ACTIONS(1278), - [anon_sym___cdecl] = ACTIONS(1278), - [anon_sym___clrcall] = ACTIONS(1278), - [anon_sym___stdcall] = ACTIONS(1278), - [anon_sym___fastcall] = ACTIONS(1278), - [anon_sym___thiscall] = ACTIONS(1278), - [anon_sym___vectorcall] = ACTIONS(1278), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_signed] = ACTIONS(1278), - [anon_sym_unsigned] = ACTIONS(1278), - [anon_sym_long] = ACTIONS(1278), - [anon_sym_short] = ACTIONS(1278), - [anon_sym_static] = ACTIONS(1278), - [anon_sym_auto] = ACTIONS(1278), - [anon_sym_register] = ACTIONS(1278), - [anon_sym_inline] = ACTIONS(1278), - [anon_sym___inline] = ACTIONS(1278), - [anon_sym___inline__] = ACTIONS(1278), - [anon_sym___forceinline] = ACTIONS(1278), - [anon_sym_thread_local] = ACTIONS(1278), - [anon_sym___thread] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_constexpr] = ACTIONS(1278), - [anon_sym_volatile] = ACTIONS(1278), - [anon_sym_restrict] = ACTIONS(1278), - [anon_sym___restrict__] = ACTIONS(1278), - [anon_sym__Atomic] = ACTIONS(1278), - [anon_sym__Noreturn] = ACTIONS(1278), - [anon_sym_noreturn] = ACTIONS(1278), - [anon_sym_alignas] = ACTIONS(1278), - [anon_sym__Alignas] = ACTIONS(1278), - [sym_primitive_type] = ACTIONS(1278), - [anon_sym_enum] = ACTIONS(1278), - [anon_sym_struct] = ACTIONS(1278), - [anon_sym_union] = ACTIONS(1278), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_else] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(1278), - [anon_sym_case] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1278), - [anon_sym_while] = ACTIONS(1278), - [anon_sym_do] = ACTIONS(1278), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(1278), - [anon_sym_break] = ACTIONS(1278), - [anon_sym_continue] = ACTIONS(1278), - [anon_sym_goto] = ACTIONS(1278), - [anon_sym___try] = ACTIONS(1278), - [anon_sym___leave] = ACTIONS(1278), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_sizeof] = ACTIONS(1278), - [anon_sym___alignof__] = ACTIONS(1278), - [anon_sym___alignof] = ACTIONS(1278), - [anon_sym__alignof] = ACTIONS(1278), - [anon_sym_alignof] = ACTIONS(1278), - [anon_sym__Alignof] = ACTIONS(1278), - [anon_sym_offsetof] = ACTIONS(1278), - [anon_sym__Generic] = ACTIONS(1278), - [anon_sym_asm] = ACTIONS(1278), - [anon_sym___asm__] = ACTIONS(1278), - [sym_number_literal] = ACTIONS(1280), - [anon_sym_L_SQUOTE] = ACTIONS(1280), - [anon_sym_u_SQUOTE] = ACTIONS(1280), - [anon_sym_U_SQUOTE] = ACTIONS(1280), - [anon_sym_u8_SQUOTE] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1280), - [anon_sym_L_DQUOTE] = ACTIONS(1280), - [anon_sym_u_DQUOTE] = ACTIONS(1280), - [anon_sym_U_DQUOTE] = ACTIONS(1280), - [anon_sym_u8_DQUOTE] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym_true] = ACTIONS(1278), - [sym_false] = ACTIONS(1278), - [anon_sym_NULL] = ACTIONS(1278), - [anon_sym_nullptr] = ACTIONS(1278), + [aux_sym_preproc_include_token1] = ACTIONS(1274), + [aux_sym_preproc_def_token1] = ACTIONS(1274), + [aux_sym_preproc_if_token1] = ACTIONS(1274), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), + [sym_preproc_directive] = ACTIONS(1274), + [anon_sym_LPAREN2] = ACTIONS(1276), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_PLUS] = ACTIONS(1274), + [anon_sym_STAR] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1276), + [anon_sym_SEMI] = ACTIONS(1276), + [anon_sym___extension__] = ACTIONS(1274), + [anon_sym_typedef] = ACTIONS(1274), + [anon_sym_extern] = ACTIONS(1274), + [anon_sym___attribute__] = ACTIONS(1274), + [anon_sym___scanf] = ACTIONS(1274), + [anon_sym___printf] = ACTIONS(1274), + [anon_sym___read_mostly] = ACTIONS(1274), + [anon_sym___must_hold] = ACTIONS(1274), + [anon_sym___ro_after_init] = ACTIONS(1274), + [anon_sym___noreturn] = ACTIONS(1274), + [anon_sym___cold] = ACTIONS(1274), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1276), + [anon_sym___declspec] = ACTIONS(1274), + [anon_sym___init] = ACTIONS(1274), + [anon_sym___exit] = ACTIONS(1274), + [anon_sym___cdecl] = ACTIONS(1274), + [anon_sym___clrcall] = ACTIONS(1274), + [anon_sym___stdcall] = ACTIONS(1274), + [anon_sym___fastcall] = ACTIONS(1274), + [anon_sym___thiscall] = ACTIONS(1274), + [anon_sym___vectorcall] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_signed] = ACTIONS(1274), + [anon_sym_unsigned] = ACTIONS(1274), + [anon_sym_long] = ACTIONS(1274), + [anon_sym_short] = ACTIONS(1274), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_auto] = ACTIONS(1274), + [anon_sym_register] = ACTIONS(1274), + [anon_sym_inline] = ACTIONS(1274), + [anon_sym___inline] = ACTIONS(1274), + [anon_sym___inline__] = ACTIONS(1274), + [anon_sym___forceinline] = ACTIONS(1274), + [anon_sym_thread_local] = ACTIONS(1274), + [anon_sym___thread] = ACTIONS(1274), + [anon_sym_const] = ACTIONS(1274), + [anon_sym_constexpr] = ACTIONS(1274), + [anon_sym_volatile] = ACTIONS(1274), + [anon_sym_restrict] = ACTIONS(1274), + [anon_sym___restrict__] = ACTIONS(1274), + [anon_sym__Atomic] = ACTIONS(1274), + [anon_sym__Noreturn] = ACTIONS(1274), + [anon_sym_noreturn] = ACTIONS(1274), + [anon_sym_alignas] = ACTIONS(1274), + [anon_sym__Alignas] = ACTIONS(1274), + [sym_primitive_type] = ACTIONS(1274), + [anon_sym_enum] = ACTIONS(1274), + [anon_sym_struct] = ACTIONS(1274), + [anon_sym_union] = ACTIONS(1274), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_else] = ACTIONS(1274), + [anon_sym_switch] = ACTIONS(1274), + [anon_sym_case] = ACTIONS(1274), + [anon_sym_default] = ACTIONS(1274), + [anon_sym_while] = ACTIONS(1274), + [anon_sym_do] = ACTIONS(1274), + [anon_sym_for] = ACTIONS(1274), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_break] = ACTIONS(1274), + [anon_sym_continue] = ACTIONS(1274), + [anon_sym_goto] = ACTIONS(1274), + [anon_sym___try] = ACTIONS(1274), + [anon_sym___leave] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1276), + [anon_sym_PLUS_PLUS] = ACTIONS(1276), + [anon_sym_sizeof] = ACTIONS(1274), + [anon_sym___alignof__] = ACTIONS(1274), + [anon_sym___alignof] = ACTIONS(1274), + [anon_sym__alignof] = ACTIONS(1274), + [anon_sym_alignof] = ACTIONS(1274), + [anon_sym__Alignof] = ACTIONS(1274), + [anon_sym_offsetof] = ACTIONS(1274), + [anon_sym__Generic] = ACTIONS(1274), + [anon_sym_asm] = ACTIONS(1274), + [anon_sym___asm__] = ACTIONS(1274), + [sym_number_literal] = ACTIONS(1276), + [anon_sym_L_SQUOTE] = ACTIONS(1276), + [anon_sym_u_SQUOTE] = ACTIONS(1276), + [anon_sym_U_SQUOTE] = ACTIONS(1276), + [anon_sym_u8_SQUOTE] = ACTIONS(1276), + [anon_sym_SQUOTE] = ACTIONS(1276), + [anon_sym_L_DQUOTE] = ACTIONS(1276), + [anon_sym_u_DQUOTE] = ACTIONS(1276), + [anon_sym_U_DQUOTE] = ACTIONS(1276), + [anon_sym_u8_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE] = ACTIONS(1276), + [sym_true] = ACTIONS(1274), + [sym_false] = ACTIONS(1274), + [anon_sym_NULL] = ACTIONS(1274), + [anon_sym_nullptr] = ACTIONS(1274), [sym_comment] = ACTIONS(5), }, [187] = { - [sym_identifier] = ACTIONS(1282), + [ts_builtin_sym_end] = ACTIONS(1272), + [sym_identifier] = ACTIONS(1270), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1282), - [aux_sym_preproc_def_token1] = ACTIONS(1282), - [aux_sym_preproc_if_token1] = ACTIONS(1282), - [aux_sym_preproc_if_token2] = ACTIONS(1282), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1282), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1282), - [sym_preproc_directive] = ACTIONS(1282), - [anon_sym_LPAREN2] = ACTIONS(1284), - [anon_sym_BANG] = ACTIONS(1284), - [anon_sym_TILDE] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_AMP] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym___extension__] = ACTIONS(1282), - [anon_sym_typedef] = ACTIONS(1282), - [anon_sym_extern] = ACTIONS(1282), - [anon_sym___attribute__] = ACTIONS(1282), - [anon_sym___scanf] = ACTIONS(1282), - [anon_sym___printf] = ACTIONS(1282), - [anon_sym___read_mostly] = ACTIONS(1282), - [anon_sym___must_hold] = ACTIONS(1282), - [anon_sym___ro_after_init] = ACTIONS(1282), - [anon_sym___noreturn] = ACTIONS(1282), - [anon_sym___cold] = ACTIONS(1282), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1284), - [anon_sym___declspec] = ACTIONS(1282), - [anon_sym___init] = ACTIONS(1282), - [anon_sym___exit] = ACTIONS(1282), - [anon_sym___cdecl] = ACTIONS(1282), - [anon_sym___clrcall] = ACTIONS(1282), - [anon_sym___stdcall] = ACTIONS(1282), - [anon_sym___fastcall] = ACTIONS(1282), - [anon_sym___thiscall] = ACTIONS(1282), - [anon_sym___vectorcall] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1284), - [anon_sym_signed] = ACTIONS(1282), - [anon_sym_unsigned] = ACTIONS(1282), - [anon_sym_long] = ACTIONS(1282), - [anon_sym_short] = ACTIONS(1282), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_auto] = ACTIONS(1282), - [anon_sym_register] = ACTIONS(1282), - [anon_sym_inline] = ACTIONS(1282), - [anon_sym___inline] = ACTIONS(1282), - [anon_sym___inline__] = ACTIONS(1282), - [anon_sym___forceinline] = ACTIONS(1282), - [anon_sym_thread_local] = ACTIONS(1282), - [anon_sym___thread] = ACTIONS(1282), - [anon_sym_const] = ACTIONS(1282), - [anon_sym_constexpr] = ACTIONS(1282), - [anon_sym_volatile] = ACTIONS(1282), - [anon_sym_restrict] = ACTIONS(1282), - [anon_sym___restrict__] = ACTIONS(1282), - [anon_sym__Atomic] = ACTIONS(1282), - [anon_sym__Noreturn] = ACTIONS(1282), - [anon_sym_noreturn] = ACTIONS(1282), - [anon_sym_alignas] = ACTIONS(1282), - [anon_sym__Alignas] = ACTIONS(1282), - [sym_primitive_type] = ACTIONS(1282), - [anon_sym_enum] = ACTIONS(1282), - [anon_sym_struct] = ACTIONS(1282), - [anon_sym_union] = ACTIONS(1282), - [anon_sym_if] = ACTIONS(1282), - [anon_sym_else] = ACTIONS(1282), - [anon_sym_switch] = ACTIONS(1282), - [anon_sym_case] = ACTIONS(1282), - [anon_sym_default] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1282), - [anon_sym_do] = ACTIONS(1282), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(1282), - [anon_sym_break] = ACTIONS(1282), - [anon_sym_continue] = ACTIONS(1282), - [anon_sym_goto] = ACTIONS(1282), - [anon_sym___try] = ACTIONS(1282), - [anon_sym___leave] = ACTIONS(1282), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_sizeof] = ACTIONS(1282), - [anon_sym___alignof__] = ACTIONS(1282), - [anon_sym___alignof] = ACTIONS(1282), - [anon_sym__alignof] = ACTIONS(1282), - [anon_sym_alignof] = ACTIONS(1282), - [anon_sym__Alignof] = ACTIONS(1282), - [anon_sym_offsetof] = ACTIONS(1282), - [anon_sym__Generic] = ACTIONS(1282), - [anon_sym_asm] = ACTIONS(1282), - [anon_sym___asm__] = ACTIONS(1282), - [sym_number_literal] = ACTIONS(1284), - [anon_sym_L_SQUOTE] = ACTIONS(1284), - [anon_sym_u_SQUOTE] = ACTIONS(1284), - [anon_sym_U_SQUOTE] = ACTIONS(1284), - [anon_sym_u8_SQUOTE] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1284), - [anon_sym_L_DQUOTE] = ACTIONS(1284), - [anon_sym_u_DQUOTE] = ACTIONS(1284), - [anon_sym_U_DQUOTE] = ACTIONS(1284), - [anon_sym_u8_DQUOTE] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1284), - [sym_true] = ACTIONS(1282), - [sym_false] = ACTIONS(1282), - [anon_sym_NULL] = ACTIONS(1282), - [anon_sym_nullptr] = ACTIONS(1282), + [aux_sym_preproc_include_token1] = ACTIONS(1270), + [aux_sym_preproc_def_token1] = ACTIONS(1270), + [aux_sym_preproc_if_token1] = ACTIONS(1270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1270), + [sym_preproc_directive] = ACTIONS(1270), + [anon_sym_LPAREN2] = ACTIONS(1272), + [anon_sym_BANG] = ACTIONS(1272), + [anon_sym_TILDE] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_PLUS] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(1272), + [anon_sym_AMP] = ACTIONS(1272), + [anon_sym_SEMI] = ACTIONS(1272), + [anon_sym___extension__] = ACTIONS(1270), + [anon_sym_typedef] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1270), + [anon_sym___attribute__] = ACTIONS(1270), + [anon_sym___scanf] = ACTIONS(1270), + [anon_sym___printf] = ACTIONS(1270), + [anon_sym___read_mostly] = ACTIONS(1270), + [anon_sym___must_hold] = ACTIONS(1270), + [anon_sym___ro_after_init] = ACTIONS(1270), + [anon_sym___noreturn] = ACTIONS(1270), + [anon_sym___cold] = ACTIONS(1270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1272), + [anon_sym___declspec] = ACTIONS(1270), + [anon_sym___init] = ACTIONS(1270), + [anon_sym___exit] = ACTIONS(1270), + [anon_sym___cdecl] = ACTIONS(1270), + [anon_sym___clrcall] = ACTIONS(1270), + [anon_sym___stdcall] = ACTIONS(1270), + [anon_sym___fastcall] = ACTIONS(1270), + [anon_sym___thiscall] = ACTIONS(1270), + [anon_sym___vectorcall] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_signed] = ACTIONS(1270), + [anon_sym_unsigned] = ACTIONS(1270), + [anon_sym_long] = ACTIONS(1270), + [anon_sym_short] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_auto] = ACTIONS(1270), + [anon_sym_register] = ACTIONS(1270), + [anon_sym_inline] = ACTIONS(1270), + [anon_sym___inline] = ACTIONS(1270), + [anon_sym___inline__] = ACTIONS(1270), + [anon_sym___forceinline] = ACTIONS(1270), + [anon_sym_thread_local] = ACTIONS(1270), + [anon_sym___thread] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_constexpr] = ACTIONS(1270), + [anon_sym_volatile] = ACTIONS(1270), + [anon_sym_restrict] = ACTIONS(1270), + [anon_sym___restrict__] = ACTIONS(1270), + [anon_sym__Atomic] = ACTIONS(1270), + [anon_sym__Noreturn] = ACTIONS(1270), + [anon_sym_noreturn] = ACTIONS(1270), + [anon_sym_alignas] = ACTIONS(1270), + [anon_sym__Alignas] = ACTIONS(1270), + [sym_primitive_type] = ACTIONS(1270), + [anon_sym_enum] = ACTIONS(1270), + [anon_sym_struct] = ACTIONS(1270), + [anon_sym_union] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_else] = ACTIONS(1270), + [anon_sym_switch] = ACTIONS(1270), + [anon_sym_case] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_do] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_goto] = ACTIONS(1270), + [anon_sym___try] = ACTIONS(1270), + [anon_sym___leave] = ACTIONS(1270), + [anon_sym_DASH_DASH] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1272), + [anon_sym_sizeof] = ACTIONS(1270), + [anon_sym___alignof__] = ACTIONS(1270), + [anon_sym___alignof] = ACTIONS(1270), + [anon_sym__alignof] = ACTIONS(1270), + [anon_sym_alignof] = ACTIONS(1270), + [anon_sym__Alignof] = ACTIONS(1270), + [anon_sym_offsetof] = ACTIONS(1270), + [anon_sym__Generic] = ACTIONS(1270), + [anon_sym_asm] = ACTIONS(1270), + [anon_sym___asm__] = ACTIONS(1270), + [sym_number_literal] = ACTIONS(1272), + [anon_sym_L_SQUOTE] = ACTIONS(1272), + [anon_sym_u_SQUOTE] = ACTIONS(1272), + [anon_sym_U_SQUOTE] = ACTIONS(1272), + [anon_sym_u8_SQUOTE] = ACTIONS(1272), + [anon_sym_SQUOTE] = ACTIONS(1272), + [anon_sym_L_DQUOTE] = ACTIONS(1272), + [anon_sym_u_DQUOTE] = ACTIONS(1272), + [anon_sym_U_DQUOTE] = ACTIONS(1272), + [anon_sym_u8_DQUOTE] = ACTIONS(1272), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym_true] = ACTIONS(1270), + [sym_false] = ACTIONS(1270), + [anon_sym_NULL] = ACTIONS(1270), + [anon_sym_nullptr] = ACTIONS(1270), [sym_comment] = ACTIONS(5), }, [188] = { - [sym_identifier] = ACTIONS(1286), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1286), - [aux_sym_preproc_def_token1] = ACTIONS(1286), - [aux_sym_preproc_if_token1] = ACTIONS(1286), - [aux_sym_preproc_if_token2] = ACTIONS(1286), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1286), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1286), - [sym_preproc_directive] = ACTIONS(1286), - [anon_sym_LPAREN2] = ACTIONS(1288), - [anon_sym_BANG] = ACTIONS(1288), - [anon_sym_TILDE] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym___extension__] = ACTIONS(1286), - [anon_sym_typedef] = ACTIONS(1286), - [anon_sym_extern] = ACTIONS(1286), - [anon_sym___attribute__] = ACTIONS(1286), - [anon_sym___scanf] = ACTIONS(1286), - [anon_sym___printf] = ACTIONS(1286), - [anon_sym___read_mostly] = ACTIONS(1286), - [anon_sym___must_hold] = ACTIONS(1286), - [anon_sym___ro_after_init] = ACTIONS(1286), - [anon_sym___noreturn] = ACTIONS(1286), - [anon_sym___cold] = ACTIONS(1286), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1288), - [anon_sym___declspec] = ACTIONS(1286), - [anon_sym___init] = ACTIONS(1286), - [anon_sym___exit] = ACTIONS(1286), - [anon_sym___cdecl] = ACTIONS(1286), - [anon_sym___clrcall] = ACTIONS(1286), - [anon_sym___stdcall] = ACTIONS(1286), - [anon_sym___fastcall] = ACTIONS(1286), - [anon_sym___thiscall] = ACTIONS(1286), - [anon_sym___vectorcall] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_signed] = ACTIONS(1286), - [anon_sym_unsigned] = ACTIONS(1286), - [anon_sym_long] = ACTIONS(1286), - [anon_sym_short] = ACTIONS(1286), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_auto] = ACTIONS(1286), - [anon_sym_register] = ACTIONS(1286), - [anon_sym_inline] = ACTIONS(1286), - [anon_sym___inline] = ACTIONS(1286), - [anon_sym___inline__] = ACTIONS(1286), - [anon_sym___forceinline] = ACTIONS(1286), - [anon_sym_thread_local] = ACTIONS(1286), - [anon_sym___thread] = ACTIONS(1286), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_constexpr] = ACTIONS(1286), - [anon_sym_volatile] = ACTIONS(1286), - [anon_sym_restrict] = ACTIONS(1286), - [anon_sym___restrict__] = ACTIONS(1286), - [anon_sym__Atomic] = ACTIONS(1286), - [anon_sym__Noreturn] = ACTIONS(1286), - [anon_sym_noreturn] = ACTIONS(1286), - [anon_sym_alignas] = ACTIONS(1286), - [anon_sym__Alignas] = ACTIONS(1286), - [sym_primitive_type] = ACTIONS(1286), - [anon_sym_enum] = ACTIONS(1286), - [anon_sym_struct] = ACTIONS(1286), - [anon_sym_union] = ACTIONS(1286), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_else] = ACTIONS(1286), - [anon_sym_switch] = ACTIONS(1286), - [anon_sym_case] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1286), - [anon_sym_while] = ACTIONS(1286), - [anon_sym_do] = ACTIONS(1286), - [anon_sym_for] = ACTIONS(1286), - [anon_sym_return] = ACTIONS(1286), - [anon_sym_break] = ACTIONS(1286), - [anon_sym_continue] = ACTIONS(1286), - [anon_sym_goto] = ACTIONS(1286), - [anon_sym___try] = ACTIONS(1286), - [anon_sym___leave] = ACTIONS(1286), - [anon_sym_DASH_DASH] = ACTIONS(1288), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_sizeof] = ACTIONS(1286), - [anon_sym___alignof__] = ACTIONS(1286), - [anon_sym___alignof] = ACTIONS(1286), - [anon_sym__alignof] = ACTIONS(1286), - [anon_sym_alignof] = ACTIONS(1286), - [anon_sym__Alignof] = ACTIONS(1286), - [anon_sym_offsetof] = ACTIONS(1286), - [anon_sym__Generic] = ACTIONS(1286), - [anon_sym_asm] = ACTIONS(1286), - [anon_sym___asm__] = ACTIONS(1286), - [sym_number_literal] = ACTIONS(1288), - [anon_sym_L_SQUOTE] = ACTIONS(1288), - [anon_sym_u_SQUOTE] = ACTIONS(1288), - [anon_sym_U_SQUOTE] = ACTIONS(1288), - [anon_sym_u8_SQUOTE] = ACTIONS(1288), - [anon_sym_SQUOTE] = ACTIONS(1288), - [anon_sym_L_DQUOTE] = ACTIONS(1288), - [anon_sym_u_DQUOTE] = ACTIONS(1288), - [anon_sym_U_DQUOTE] = ACTIONS(1288), - [anon_sym_u8_DQUOTE] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym_true] = ACTIONS(1286), - [sym_false] = ACTIONS(1286), - [anon_sym_NULL] = ACTIONS(1286), - [anon_sym_nullptr] = ACTIONS(1286), - [sym_comment] = ACTIONS(5), - }, - [189] = { - [ts_builtin_sym_end] = ACTIONS(1264), - [sym_identifier] = ACTIONS(1262), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1262), - [aux_sym_preproc_def_token1] = ACTIONS(1262), - [aux_sym_preproc_if_token1] = ACTIONS(1262), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1262), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1262), - [sym_preproc_directive] = ACTIONS(1262), - [anon_sym_LPAREN2] = ACTIONS(1264), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_PLUS] = ACTIONS(1262), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_SEMI] = ACTIONS(1264), - [anon_sym___extension__] = ACTIONS(1262), - [anon_sym_typedef] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(1262), - [anon_sym___attribute__] = ACTIONS(1262), - [anon_sym___scanf] = ACTIONS(1262), - [anon_sym___printf] = ACTIONS(1262), - [anon_sym___read_mostly] = ACTIONS(1262), - [anon_sym___must_hold] = ACTIONS(1262), - [anon_sym___ro_after_init] = ACTIONS(1262), - [anon_sym___noreturn] = ACTIONS(1262), - [anon_sym___cold] = ACTIONS(1262), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym___declspec] = ACTIONS(1262), - [anon_sym___init] = ACTIONS(1262), - [anon_sym___exit] = ACTIONS(1262), - [anon_sym___cdecl] = ACTIONS(1262), - [anon_sym___clrcall] = ACTIONS(1262), - [anon_sym___stdcall] = ACTIONS(1262), - [anon_sym___fastcall] = ACTIONS(1262), - [anon_sym___thiscall] = ACTIONS(1262), - [anon_sym___vectorcall] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(1264), - [anon_sym_signed] = ACTIONS(1262), - [anon_sym_unsigned] = ACTIONS(1262), - [anon_sym_long] = ACTIONS(1262), - [anon_sym_short] = ACTIONS(1262), - [anon_sym_static] = ACTIONS(1262), - [anon_sym_auto] = ACTIONS(1262), - [anon_sym_register] = ACTIONS(1262), - [anon_sym_inline] = ACTIONS(1262), - [anon_sym___inline] = ACTIONS(1262), - [anon_sym___inline__] = ACTIONS(1262), - [anon_sym___forceinline] = ACTIONS(1262), - [anon_sym_thread_local] = ACTIONS(1262), - [anon_sym___thread] = ACTIONS(1262), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_constexpr] = ACTIONS(1262), - [anon_sym_volatile] = ACTIONS(1262), - [anon_sym_restrict] = ACTIONS(1262), - [anon_sym___restrict__] = ACTIONS(1262), - [anon_sym__Atomic] = ACTIONS(1262), - [anon_sym__Noreturn] = ACTIONS(1262), - [anon_sym_noreturn] = ACTIONS(1262), - [anon_sym_alignas] = ACTIONS(1262), - [anon_sym__Alignas] = ACTIONS(1262), - [sym_primitive_type] = ACTIONS(1262), - [anon_sym_enum] = ACTIONS(1262), - [anon_sym_struct] = ACTIONS(1262), - [anon_sym_union] = ACTIONS(1262), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(1262), - [anon_sym_switch] = ACTIONS(1262), - [anon_sym_case] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1262), - [anon_sym_while] = ACTIONS(1262), - [anon_sym_do] = ACTIONS(1262), - [anon_sym_for] = ACTIONS(1262), - [anon_sym_return] = ACTIONS(1262), - [anon_sym_break] = ACTIONS(1262), - [anon_sym_continue] = ACTIONS(1262), - [anon_sym_goto] = ACTIONS(1262), - [anon_sym___try] = ACTIONS(1262), - [anon_sym___leave] = ACTIONS(1262), - [anon_sym_DASH_DASH] = ACTIONS(1264), - [anon_sym_PLUS_PLUS] = ACTIONS(1264), - [anon_sym_sizeof] = ACTIONS(1262), - [anon_sym___alignof__] = ACTIONS(1262), - [anon_sym___alignof] = ACTIONS(1262), - [anon_sym__alignof] = ACTIONS(1262), - [anon_sym_alignof] = ACTIONS(1262), - [anon_sym__Alignof] = ACTIONS(1262), - [anon_sym_offsetof] = ACTIONS(1262), - [anon_sym__Generic] = ACTIONS(1262), - [anon_sym_asm] = ACTIONS(1262), - [anon_sym___asm__] = ACTIONS(1262), - [sym_number_literal] = ACTIONS(1264), - [anon_sym_L_SQUOTE] = ACTIONS(1264), - [anon_sym_u_SQUOTE] = ACTIONS(1264), - [anon_sym_U_SQUOTE] = ACTIONS(1264), - [anon_sym_u8_SQUOTE] = ACTIONS(1264), - [anon_sym_SQUOTE] = ACTIONS(1264), - [anon_sym_L_DQUOTE] = ACTIONS(1264), - [anon_sym_u_DQUOTE] = ACTIONS(1264), - [anon_sym_U_DQUOTE] = ACTIONS(1264), - [anon_sym_u8_DQUOTE] = ACTIONS(1264), - [anon_sym_DQUOTE] = ACTIONS(1264), - [sym_true] = ACTIONS(1262), - [sym_false] = ACTIONS(1262), - [anon_sym_NULL] = ACTIONS(1262), - [anon_sym_nullptr] = ACTIONS(1262), - [sym_comment] = ACTIONS(5), - }, - [190] = { - [ts_builtin_sym_end] = ACTIONS(1332), - [sym_identifier] = ACTIONS(1330), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1330), - [aux_sym_preproc_def_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), - [sym_preproc_directive] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym___extension__] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym___attribute__] = ACTIONS(1330), - [anon_sym___scanf] = ACTIONS(1330), - [anon_sym___printf] = ACTIONS(1330), - [anon_sym___read_mostly] = ACTIONS(1330), - [anon_sym___must_hold] = ACTIONS(1330), - [anon_sym___ro_after_init] = ACTIONS(1330), - [anon_sym___noreturn] = ACTIONS(1330), - [anon_sym___cold] = ACTIONS(1330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), - [anon_sym___declspec] = ACTIONS(1330), - [anon_sym___init] = ACTIONS(1330), - [anon_sym___exit] = ACTIONS(1330), - [anon_sym___cdecl] = ACTIONS(1330), - [anon_sym___clrcall] = ACTIONS(1330), - [anon_sym___stdcall] = ACTIONS(1330), - [anon_sym___fastcall] = ACTIONS(1330), - [anon_sym___thiscall] = ACTIONS(1330), - [anon_sym___vectorcall] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1330), - [anon_sym_unsigned] = ACTIONS(1330), - [anon_sym_long] = ACTIONS(1330), - [anon_sym_short] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_auto] = ACTIONS(1330), - [anon_sym_register] = ACTIONS(1330), - [anon_sym_inline] = ACTIONS(1330), - [anon_sym___inline] = ACTIONS(1330), - [anon_sym___inline__] = ACTIONS(1330), - [anon_sym___forceinline] = ACTIONS(1330), - [anon_sym_thread_local] = ACTIONS(1330), - [anon_sym___thread] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_constexpr] = ACTIONS(1330), - [anon_sym_volatile] = ACTIONS(1330), - [anon_sym_restrict] = ACTIONS(1330), - [anon_sym___restrict__] = ACTIONS(1330), - [anon_sym__Atomic] = ACTIONS(1330), - [anon_sym__Noreturn] = ACTIONS(1330), - [anon_sym_noreturn] = ACTIONS(1330), - [anon_sym_alignas] = ACTIONS(1330), - [anon_sym__Alignas] = ACTIONS(1330), - [sym_primitive_type] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_do] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_goto] = ACTIONS(1330), - [anon_sym___try] = ACTIONS(1330), - [anon_sym___leave] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_sizeof] = ACTIONS(1330), - [anon_sym___alignof__] = ACTIONS(1330), - [anon_sym___alignof] = ACTIONS(1330), - [anon_sym__alignof] = ACTIONS(1330), - [anon_sym_alignof] = ACTIONS(1330), - [anon_sym__Alignof] = ACTIONS(1330), - [anon_sym_offsetof] = ACTIONS(1330), - [anon_sym__Generic] = ACTIONS(1330), - [anon_sym_asm] = ACTIONS(1330), - [anon_sym___asm__] = ACTIONS(1330), - [sym_number_literal] = ACTIONS(1332), - [anon_sym_L_SQUOTE] = ACTIONS(1332), - [anon_sym_u_SQUOTE] = ACTIONS(1332), - [anon_sym_U_SQUOTE] = ACTIONS(1332), - [anon_sym_u8_SQUOTE] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_L_DQUOTE] = ACTIONS(1332), - [anon_sym_u_DQUOTE] = ACTIONS(1332), - [anon_sym_U_DQUOTE] = ACTIONS(1332), - [anon_sym_u8_DQUOTE] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_true] = ACTIONS(1330), - [sym_false] = ACTIONS(1330), - [anon_sym_NULL] = ACTIONS(1330), - [anon_sym_nullptr] = ACTIONS(1330), - [sym_comment] = ACTIONS(5), - }, - [191] = { - [sym_identifier] = ACTIONS(1290), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1290), - [aux_sym_preproc_def_token1] = ACTIONS(1290), - [aux_sym_preproc_if_token1] = ACTIONS(1290), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1290), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1290), - [sym_preproc_directive] = ACTIONS(1290), - [anon_sym_LPAREN2] = ACTIONS(1292), - [anon_sym_BANG] = ACTIONS(1292), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1290), - [anon_sym_STAR] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym___extension__] = ACTIONS(1290), - [anon_sym_typedef] = ACTIONS(1290), - [anon_sym_extern] = ACTIONS(1290), - [anon_sym___attribute__] = ACTIONS(1290), - [anon_sym___scanf] = ACTIONS(1290), - [anon_sym___printf] = ACTIONS(1290), - [anon_sym___read_mostly] = ACTIONS(1290), - [anon_sym___must_hold] = ACTIONS(1290), - [anon_sym___ro_after_init] = ACTIONS(1290), - [anon_sym___noreturn] = ACTIONS(1290), - [anon_sym___cold] = ACTIONS(1290), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1292), - [anon_sym___declspec] = ACTIONS(1290), - [anon_sym___init] = ACTIONS(1290), - [anon_sym___exit] = ACTIONS(1290), - [anon_sym___cdecl] = ACTIONS(1290), - [anon_sym___clrcall] = ACTIONS(1290), - [anon_sym___stdcall] = ACTIONS(1290), - [anon_sym___fastcall] = ACTIONS(1290), - [anon_sym___thiscall] = ACTIONS(1290), - [anon_sym___vectorcall] = ACTIONS(1290), - [anon_sym_LBRACE] = ACTIONS(1292), - [anon_sym_RBRACE] = ACTIONS(1292), - [anon_sym_signed] = ACTIONS(1290), - [anon_sym_unsigned] = ACTIONS(1290), - [anon_sym_long] = ACTIONS(1290), - [anon_sym_short] = ACTIONS(1290), - [anon_sym_static] = ACTIONS(1290), - [anon_sym_auto] = ACTIONS(1290), - [anon_sym_register] = ACTIONS(1290), - [anon_sym_inline] = ACTIONS(1290), - [anon_sym___inline] = ACTIONS(1290), - [anon_sym___inline__] = ACTIONS(1290), - [anon_sym___forceinline] = ACTIONS(1290), - [anon_sym_thread_local] = ACTIONS(1290), - [anon_sym___thread] = ACTIONS(1290), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_constexpr] = ACTIONS(1290), - [anon_sym_volatile] = ACTIONS(1290), - [anon_sym_restrict] = ACTIONS(1290), - [anon_sym___restrict__] = ACTIONS(1290), - [anon_sym__Atomic] = ACTIONS(1290), - [anon_sym__Noreturn] = ACTIONS(1290), - [anon_sym_noreturn] = ACTIONS(1290), - [anon_sym_alignas] = ACTIONS(1290), - [anon_sym__Alignas] = ACTIONS(1290), - [sym_primitive_type] = ACTIONS(1290), - [anon_sym_enum] = ACTIONS(1290), - [anon_sym_struct] = ACTIONS(1290), - [anon_sym_union] = ACTIONS(1290), - [anon_sym_if] = ACTIONS(1290), - [anon_sym_else] = ACTIONS(1290), - [anon_sym_switch] = ACTIONS(1290), - [anon_sym_case] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1290), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_do] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_return] = ACTIONS(1290), - [anon_sym_break] = ACTIONS(1290), - [anon_sym_continue] = ACTIONS(1290), - [anon_sym_goto] = ACTIONS(1290), - [anon_sym___try] = ACTIONS(1290), - [anon_sym___leave] = ACTIONS(1290), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_sizeof] = ACTIONS(1290), - [anon_sym___alignof__] = ACTIONS(1290), - [anon_sym___alignof] = ACTIONS(1290), - [anon_sym__alignof] = ACTIONS(1290), - [anon_sym_alignof] = ACTIONS(1290), - [anon_sym__Alignof] = ACTIONS(1290), - [anon_sym_offsetof] = ACTIONS(1290), - [anon_sym__Generic] = ACTIONS(1290), - [anon_sym_asm] = ACTIONS(1290), - [anon_sym___asm__] = ACTIONS(1290), - [sym_number_literal] = ACTIONS(1292), - [anon_sym_L_SQUOTE] = ACTIONS(1292), - [anon_sym_u_SQUOTE] = ACTIONS(1292), - [anon_sym_U_SQUOTE] = ACTIONS(1292), - [anon_sym_u8_SQUOTE] = ACTIONS(1292), - [anon_sym_SQUOTE] = ACTIONS(1292), - [anon_sym_L_DQUOTE] = ACTIONS(1292), - [anon_sym_u_DQUOTE] = ACTIONS(1292), - [anon_sym_U_DQUOTE] = ACTIONS(1292), - [anon_sym_u8_DQUOTE] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1292), - [sym_true] = ACTIONS(1290), - [sym_false] = ACTIONS(1290), - [anon_sym_NULL] = ACTIONS(1290), - [anon_sym_nullptr] = ACTIONS(1290), - [sym_comment] = ACTIONS(5), - }, - [192] = { - [sym_identifier] = ACTIONS(1258), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1258), - [aux_sym_preproc_def_token1] = ACTIONS(1258), - [aux_sym_preproc_if_token1] = ACTIONS(1258), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1258), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1258), - [sym_preproc_directive] = ACTIONS(1258), - [anon_sym_LPAREN2] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1260), - [anon_sym_TILDE] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_SEMI] = ACTIONS(1260), - [anon_sym___extension__] = ACTIONS(1258), - [anon_sym_typedef] = ACTIONS(1258), - [anon_sym_extern] = ACTIONS(1258), - [anon_sym___attribute__] = ACTIONS(1258), - [anon_sym___scanf] = ACTIONS(1258), - [anon_sym___printf] = ACTIONS(1258), - [anon_sym___read_mostly] = ACTIONS(1258), - [anon_sym___must_hold] = ACTIONS(1258), - [anon_sym___ro_after_init] = ACTIONS(1258), - [anon_sym___noreturn] = ACTIONS(1258), - [anon_sym___cold] = ACTIONS(1258), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1260), - [anon_sym___declspec] = ACTIONS(1258), - [anon_sym___init] = ACTIONS(1258), - [anon_sym___exit] = ACTIONS(1258), - [anon_sym___cdecl] = ACTIONS(1258), - [anon_sym___clrcall] = ACTIONS(1258), - [anon_sym___stdcall] = ACTIONS(1258), - [anon_sym___fastcall] = ACTIONS(1258), - [anon_sym___thiscall] = ACTIONS(1258), - [anon_sym___vectorcall] = ACTIONS(1258), - [anon_sym_LBRACE] = ACTIONS(1260), - [anon_sym_RBRACE] = ACTIONS(1260), - [anon_sym_signed] = ACTIONS(1258), - [anon_sym_unsigned] = ACTIONS(1258), - [anon_sym_long] = ACTIONS(1258), - [anon_sym_short] = ACTIONS(1258), - [anon_sym_static] = ACTIONS(1258), - [anon_sym_auto] = ACTIONS(1258), - [anon_sym_register] = ACTIONS(1258), - [anon_sym_inline] = ACTIONS(1258), - [anon_sym___inline] = ACTIONS(1258), - [anon_sym___inline__] = ACTIONS(1258), - [anon_sym___forceinline] = ACTIONS(1258), - [anon_sym_thread_local] = ACTIONS(1258), - [anon_sym___thread] = ACTIONS(1258), - [anon_sym_const] = ACTIONS(1258), - [anon_sym_constexpr] = ACTIONS(1258), - [anon_sym_volatile] = ACTIONS(1258), - [anon_sym_restrict] = ACTIONS(1258), - [anon_sym___restrict__] = ACTIONS(1258), - [anon_sym__Atomic] = ACTIONS(1258), - [anon_sym__Noreturn] = ACTIONS(1258), - [anon_sym_noreturn] = ACTIONS(1258), - [anon_sym_alignas] = ACTIONS(1258), - [anon_sym__Alignas] = ACTIONS(1258), - [sym_primitive_type] = ACTIONS(1258), - [anon_sym_enum] = ACTIONS(1258), - [anon_sym_struct] = ACTIONS(1258), - [anon_sym_union] = ACTIONS(1258), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_else] = ACTIONS(1258), - [anon_sym_switch] = ACTIONS(1258), - [anon_sym_case] = ACTIONS(1258), - [anon_sym_default] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1258), - [anon_sym_do] = ACTIONS(1258), - [anon_sym_for] = ACTIONS(1258), - [anon_sym_return] = ACTIONS(1258), - [anon_sym_break] = ACTIONS(1258), - [anon_sym_continue] = ACTIONS(1258), - [anon_sym_goto] = ACTIONS(1258), - [anon_sym___try] = ACTIONS(1258), - [anon_sym___leave] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1260), - [anon_sym_PLUS_PLUS] = ACTIONS(1260), - [anon_sym_sizeof] = ACTIONS(1258), - [anon_sym___alignof__] = ACTIONS(1258), - [anon_sym___alignof] = ACTIONS(1258), - [anon_sym__alignof] = ACTIONS(1258), - [anon_sym_alignof] = ACTIONS(1258), - [anon_sym__Alignof] = ACTIONS(1258), - [anon_sym_offsetof] = ACTIONS(1258), - [anon_sym__Generic] = ACTIONS(1258), - [anon_sym_asm] = ACTIONS(1258), - [anon_sym___asm__] = ACTIONS(1258), - [sym_number_literal] = ACTIONS(1260), - [anon_sym_L_SQUOTE] = ACTIONS(1260), - [anon_sym_u_SQUOTE] = ACTIONS(1260), - [anon_sym_U_SQUOTE] = ACTIONS(1260), - [anon_sym_u8_SQUOTE] = ACTIONS(1260), - [anon_sym_SQUOTE] = ACTIONS(1260), - [anon_sym_L_DQUOTE] = ACTIONS(1260), - [anon_sym_u_DQUOTE] = ACTIONS(1260), - [anon_sym_U_DQUOTE] = ACTIONS(1260), - [anon_sym_u8_DQUOTE] = ACTIONS(1260), - [anon_sym_DQUOTE] = ACTIONS(1260), - [sym_true] = ACTIONS(1258), - [sym_false] = ACTIONS(1258), - [anon_sym_NULL] = ACTIONS(1258), - [anon_sym_nullptr] = ACTIONS(1258), - [sym_comment] = ACTIONS(5), - }, - [193] = { - [sym_identifier] = ACTIONS(1218), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1218), - [aux_sym_preproc_def_token1] = ACTIONS(1218), - [aux_sym_preproc_if_token1] = ACTIONS(1218), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1218), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1218), - [sym_preproc_directive] = ACTIONS(1218), - [anon_sym_LPAREN2] = ACTIONS(1220), - [anon_sym_BANG] = ACTIONS(1220), - [anon_sym_TILDE] = ACTIONS(1220), - [anon_sym_DASH] = ACTIONS(1218), - [anon_sym_PLUS] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1220), - [anon_sym_SEMI] = ACTIONS(1220), - [anon_sym___extension__] = ACTIONS(1218), - [anon_sym_typedef] = ACTIONS(1218), - [anon_sym_extern] = ACTIONS(1218), - [anon_sym___attribute__] = ACTIONS(1218), - [anon_sym___scanf] = ACTIONS(1218), - [anon_sym___printf] = ACTIONS(1218), - [anon_sym___read_mostly] = ACTIONS(1218), - [anon_sym___must_hold] = ACTIONS(1218), - [anon_sym___ro_after_init] = ACTIONS(1218), - [anon_sym___noreturn] = ACTIONS(1218), - [anon_sym___cold] = ACTIONS(1218), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1220), - [anon_sym___declspec] = ACTIONS(1218), - [anon_sym___init] = ACTIONS(1218), - [anon_sym___exit] = ACTIONS(1218), - [anon_sym___cdecl] = ACTIONS(1218), - [anon_sym___clrcall] = ACTIONS(1218), - [anon_sym___stdcall] = ACTIONS(1218), - [anon_sym___fastcall] = ACTIONS(1218), - [anon_sym___thiscall] = ACTIONS(1218), - [anon_sym___vectorcall] = ACTIONS(1218), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_RBRACE] = ACTIONS(1220), - [anon_sym_signed] = ACTIONS(1218), - [anon_sym_unsigned] = ACTIONS(1218), - [anon_sym_long] = ACTIONS(1218), - [anon_sym_short] = ACTIONS(1218), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_auto] = ACTIONS(1218), - [anon_sym_register] = ACTIONS(1218), - [anon_sym_inline] = ACTIONS(1218), - [anon_sym___inline] = ACTIONS(1218), - [anon_sym___inline__] = ACTIONS(1218), - [anon_sym___forceinline] = ACTIONS(1218), - [anon_sym_thread_local] = ACTIONS(1218), - [anon_sym___thread] = ACTIONS(1218), - [anon_sym_const] = ACTIONS(1218), - [anon_sym_constexpr] = ACTIONS(1218), - [anon_sym_volatile] = ACTIONS(1218), - [anon_sym_restrict] = ACTIONS(1218), - [anon_sym___restrict__] = ACTIONS(1218), - [anon_sym__Atomic] = ACTIONS(1218), - [anon_sym__Noreturn] = ACTIONS(1218), - [anon_sym_noreturn] = ACTIONS(1218), - [anon_sym_alignas] = ACTIONS(1218), - [anon_sym__Alignas] = ACTIONS(1218), - [sym_primitive_type] = ACTIONS(1218), - [anon_sym_enum] = ACTIONS(1218), - [anon_sym_struct] = ACTIONS(1218), - [anon_sym_union] = ACTIONS(1218), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_else] = ACTIONS(1218), - [anon_sym_switch] = ACTIONS(1218), - [anon_sym_case] = ACTIONS(1218), - [anon_sym_default] = ACTIONS(1218), - [anon_sym_while] = ACTIONS(1218), - [anon_sym_do] = ACTIONS(1218), - [anon_sym_for] = ACTIONS(1218), - [anon_sym_return] = ACTIONS(1218), - [anon_sym_break] = ACTIONS(1218), - [anon_sym_continue] = ACTIONS(1218), - [anon_sym_goto] = ACTIONS(1218), - [anon_sym___try] = ACTIONS(1218), - [anon_sym___leave] = ACTIONS(1218), - [anon_sym_DASH_DASH] = ACTIONS(1220), - [anon_sym_PLUS_PLUS] = ACTIONS(1220), - [anon_sym_sizeof] = ACTIONS(1218), - [anon_sym___alignof__] = ACTIONS(1218), - [anon_sym___alignof] = ACTIONS(1218), - [anon_sym__alignof] = ACTIONS(1218), - [anon_sym_alignof] = ACTIONS(1218), - [anon_sym__Alignof] = ACTIONS(1218), - [anon_sym_offsetof] = ACTIONS(1218), - [anon_sym__Generic] = ACTIONS(1218), - [anon_sym_asm] = ACTIONS(1218), - [anon_sym___asm__] = ACTIONS(1218), - [sym_number_literal] = ACTIONS(1220), - [anon_sym_L_SQUOTE] = ACTIONS(1220), - [anon_sym_u_SQUOTE] = ACTIONS(1220), - [anon_sym_U_SQUOTE] = ACTIONS(1220), - [anon_sym_u8_SQUOTE] = ACTIONS(1220), - [anon_sym_SQUOTE] = ACTIONS(1220), - [anon_sym_L_DQUOTE] = ACTIONS(1220), - [anon_sym_u_DQUOTE] = ACTIONS(1220), - [anon_sym_U_DQUOTE] = ACTIONS(1220), - [anon_sym_u8_DQUOTE] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1220), - [sym_true] = ACTIONS(1218), - [sym_false] = ACTIONS(1218), - [anon_sym_NULL] = ACTIONS(1218), - [anon_sym_nullptr] = ACTIONS(1218), - [sym_comment] = ACTIONS(5), - }, - [194] = { - [ts_builtin_sym_end] = ACTIONS(1320), - [sym_identifier] = ACTIONS(1318), + [ts_builtin_sym_end] = ACTIONS(1320), + [sym_identifier] = ACTIONS(1318), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1318), [aux_sym_preproc_def_token1] = ACTIONS(1318), @@ -43749,2695 +43206,2365 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(5), }, - [195] = { - [sym_identifier] = ACTIONS(1350), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1350), - [aux_sym_preproc_def_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token1] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), - [sym_preproc_directive] = ACTIONS(1350), - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym___extension__] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym___attribute__] = ACTIONS(1350), - [anon_sym___scanf] = ACTIONS(1350), - [anon_sym___printf] = ACTIONS(1350), - [anon_sym___read_mostly] = ACTIONS(1350), - [anon_sym___must_hold] = ACTIONS(1350), - [anon_sym___ro_after_init] = ACTIONS(1350), - [anon_sym___noreturn] = ACTIONS(1350), - [anon_sym___cold] = ACTIONS(1350), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), - [anon_sym___declspec] = ACTIONS(1350), - [anon_sym___init] = ACTIONS(1350), - [anon_sym___exit] = ACTIONS(1350), - [anon_sym___cdecl] = ACTIONS(1350), - [anon_sym___clrcall] = ACTIONS(1350), - [anon_sym___stdcall] = ACTIONS(1350), - [anon_sym___fastcall] = ACTIONS(1350), - [anon_sym___thiscall] = ACTIONS(1350), - [anon_sym___vectorcall] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_signed] = ACTIONS(1350), - [anon_sym_unsigned] = ACTIONS(1350), - [anon_sym_long] = ACTIONS(1350), - [anon_sym_short] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_auto] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_inline] = ACTIONS(1350), - [anon_sym___inline] = ACTIONS(1350), - [anon_sym___inline__] = ACTIONS(1350), - [anon_sym___forceinline] = ACTIONS(1350), - [anon_sym_thread_local] = ACTIONS(1350), - [anon_sym___thread] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_constexpr] = ACTIONS(1350), - [anon_sym_volatile] = ACTIONS(1350), - [anon_sym_restrict] = ACTIONS(1350), - [anon_sym___restrict__] = ACTIONS(1350), - [anon_sym__Atomic] = ACTIONS(1350), - [anon_sym__Noreturn] = ACTIONS(1350), - [anon_sym_noreturn] = ACTIONS(1350), - [anon_sym_alignas] = ACTIONS(1350), - [anon_sym__Alignas] = ACTIONS(1350), - [sym_primitive_type] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_switch] = ACTIONS(1350), - [anon_sym_case] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_goto] = ACTIONS(1350), - [anon_sym___try] = ACTIONS(1350), - [anon_sym___leave] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_sizeof] = ACTIONS(1350), - [anon_sym___alignof__] = ACTIONS(1350), - [anon_sym___alignof] = ACTIONS(1350), - [anon_sym__alignof] = ACTIONS(1350), - [anon_sym_alignof] = ACTIONS(1350), - [anon_sym__Alignof] = ACTIONS(1350), - [anon_sym_offsetof] = ACTIONS(1350), - [anon_sym__Generic] = ACTIONS(1350), - [anon_sym_asm] = ACTIONS(1350), - [anon_sym___asm__] = ACTIONS(1350), - [sym_number_literal] = ACTIONS(1352), - [anon_sym_L_SQUOTE] = ACTIONS(1352), - [anon_sym_u_SQUOTE] = ACTIONS(1352), - [anon_sym_U_SQUOTE] = ACTIONS(1352), - [anon_sym_u8_SQUOTE] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_L_DQUOTE] = ACTIONS(1352), - [anon_sym_u_DQUOTE] = ACTIONS(1352), - [anon_sym_U_DQUOTE] = ACTIONS(1352), - [anon_sym_u8_DQUOTE] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_true] = ACTIONS(1350), - [sym_false] = ACTIONS(1350), - [anon_sym_NULL] = ACTIONS(1350), - [anon_sym_nullptr] = ACTIONS(1350), - [sym_comment] = ACTIONS(5), - }, - [196] = { - [ts_builtin_sym_end] = ACTIONS(1268), - [sym_identifier] = ACTIONS(1266), + [189] = { + [sym_identifier] = ACTIONS(1378), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1266), - [aux_sym_preproc_def_token1] = ACTIONS(1266), - [aux_sym_preproc_if_token1] = ACTIONS(1266), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1266), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1266), - [sym_preproc_directive] = ACTIONS(1266), - [anon_sym_LPAREN2] = ACTIONS(1268), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_TILDE] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1268), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym___extension__] = ACTIONS(1266), - [anon_sym_typedef] = ACTIONS(1266), - [anon_sym_extern] = ACTIONS(1266), - [anon_sym___attribute__] = ACTIONS(1266), - [anon_sym___scanf] = ACTIONS(1266), - [anon_sym___printf] = ACTIONS(1266), - [anon_sym___read_mostly] = ACTIONS(1266), - [anon_sym___must_hold] = ACTIONS(1266), - [anon_sym___ro_after_init] = ACTIONS(1266), - [anon_sym___noreturn] = ACTIONS(1266), - [anon_sym___cold] = ACTIONS(1266), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1268), - [anon_sym___declspec] = ACTIONS(1266), - [anon_sym___init] = ACTIONS(1266), - [anon_sym___exit] = ACTIONS(1266), - [anon_sym___cdecl] = ACTIONS(1266), - [anon_sym___clrcall] = ACTIONS(1266), - [anon_sym___stdcall] = ACTIONS(1266), - [anon_sym___fastcall] = ACTIONS(1266), - [anon_sym___thiscall] = ACTIONS(1266), - [anon_sym___vectorcall] = ACTIONS(1266), - [anon_sym_LBRACE] = ACTIONS(1268), - [anon_sym_signed] = ACTIONS(1266), - [anon_sym_unsigned] = ACTIONS(1266), - [anon_sym_long] = ACTIONS(1266), - [anon_sym_short] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(1266), - [anon_sym_auto] = ACTIONS(1266), - [anon_sym_register] = ACTIONS(1266), - [anon_sym_inline] = ACTIONS(1266), - [anon_sym___inline] = ACTIONS(1266), - [anon_sym___inline__] = ACTIONS(1266), - [anon_sym___forceinline] = ACTIONS(1266), - [anon_sym_thread_local] = ACTIONS(1266), - [anon_sym___thread] = ACTIONS(1266), - [anon_sym_const] = ACTIONS(1266), - [anon_sym_constexpr] = ACTIONS(1266), - [anon_sym_volatile] = ACTIONS(1266), - [anon_sym_restrict] = ACTIONS(1266), - [anon_sym___restrict__] = ACTIONS(1266), - [anon_sym__Atomic] = ACTIONS(1266), - [anon_sym__Noreturn] = ACTIONS(1266), - [anon_sym_noreturn] = ACTIONS(1266), - [anon_sym_alignas] = ACTIONS(1266), - [anon_sym__Alignas] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(1266), - [anon_sym_enum] = ACTIONS(1266), - [anon_sym_struct] = ACTIONS(1266), - [anon_sym_union] = ACTIONS(1266), - [anon_sym_if] = ACTIONS(1266), - [anon_sym_else] = ACTIONS(1266), - [anon_sym_switch] = ACTIONS(1266), - [anon_sym_case] = ACTIONS(1266), - [anon_sym_default] = ACTIONS(1266), - [anon_sym_while] = ACTIONS(1266), - [anon_sym_do] = ACTIONS(1266), - [anon_sym_for] = ACTIONS(1266), - [anon_sym_return] = ACTIONS(1266), - [anon_sym_break] = ACTIONS(1266), - [anon_sym_continue] = ACTIONS(1266), - [anon_sym_goto] = ACTIONS(1266), - [anon_sym___try] = ACTIONS(1266), - [anon_sym___leave] = ACTIONS(1266), - [anon_sym_DASH_DASH] = ACTIONS(1268), - [anon_sym_PLUS_PLUS] = ACTIONS(1268), - [anon_sym_sizeof] = ACTIONS(1266), - [anon_sym___alignof__] = ACTIONS(1266), - [anon_sym___alignof] = ACTIONS(1266), - [anon_sym__alignof] = ACTIONS(1266), - [anon_sym_alignof] = ACTIONS(1266), - [anon_sym__Alignof] = ACTIONS(1266), - [anon_sym_offsetof] = ACTIONS(1266), - [anon_sym__Generic] = ACTIONS(1266), - [anon_sym_asm] = ACTIONS(1266), - [anon_sym___asm__] = ACTIONS(1266), - [sym_number_literal] = ACTIONS(1268), - [anon_sym_L_SQUOTE] = ACTIONS(1268), - [anon_sym_u_SQUOTE] = ACTIONS(1268), - [anon_sym_U_SQUOTE] = ACTIONS(1268), - [anon_sym_u8_SQUOTE] = ACTIONS(1268), - [anon_sym_SQUOTE] = ACTIONS(1268), - [anon_sym_L_DQUOTE] = ACTIONS(1268), - [anon_sym_u_DQUOTE] = ACTIONS(1268), - [anon_sym_U_DQUOTE] = ACTIONS(1268), - [anon_sym_u8_DQUOTE] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1268), - [sym_true] = ACTIONS(1266), - [sym_false] = ACTIONS(1266), - [anon_sym_NULL] = ACTIONS(1266), - [anon_sym_nullptr] = ACTIONS(1266), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token2] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym___scanf] = ACTIONS(1378), + [anon_sym___printf] = ACTIONS(1378), + [anon_sym___read_mostly] = ACTIONS(1378), + [anon_sym___must_hold] = ACTIONS(1378), + [anon_sym___ro_after_init] = ACTIONS(1378), + [anon_sym___noreturn] = ACTIONS(1378), + [anon_sym___cold] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___init] = ACTIONS(1378), + [anon_sym___exit] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [anon_sym_alignas] = ACTIONS(1378), + [anon_sym__Alignas] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(5), }, - [197] = { - [sym_identifier] = ACTIONS(1290), + [190] = { + [ts_builtin_sym_end] = ACTIONS(1264), + [sym_identifier] = ACTIONS(1262), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1290), - [aux_sym_preproc_def_token1] = ACTIONS(1290), - [aux_sym_preproc_if_token1] = ACTIONS(1290), - [aux_sym_preproc_if_token2] = ACTIONS(1290), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1290), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1290), - [sym_preproc_directive] = ACTIONS(1290), - [anon_sym_LPAREN2] = ACTIONS(1292), - [anon_sym_BANG] = ACTIONS(1292), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1290), - [anon_sym_STAR] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym___extension__] = ACTIONS(1290), - [anon_sym_typedef] = ACTIONS(1290), - [anon_sym_extern] = ACTIONS(1290), - [anon_sym___attribute__] = ACTIONS(1290), - [anon_sym___scanf] = ACTIONS(1290), - [anon_sym___printf] = ACTIONS(1290), - [anon_sym___read_mostly] = ACTIONS(1290), - [anon_sym___must_hold] = ACTIONS(1290), - [anon_sym___ro_after_init] = ACTIONS(1290), - [anon_sym___noreturn] = ACTIONS(1290), - [anon_sym___cold] = ACTIONS(1290), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1292), - [anon_sym___declspec] = ACTIONS(1290), - [anon_sym___init] = ACTIONS(1290), - [anon_sym___exit] = ACTIONS(1290), - [anon_sym___cdecl] = ACTIONS(1290), - [anon_sym___clrcall] = ACTIONS(1290), - [anon_sym___stdcall] = ACTIONS(1290), - [anon_sym___fastcall] = ACTIONS(1290), - [anon_sym___thiscall] = ACTIONS(1290), - [anon_sym___vectorcall] = ACTIONS(1290), - [anon_sym_LBRACE] = ACTIONS(1292), - [anon_sym_signed] = ACTIONS(1290), - [anon_sym_unsigned] = ACTIONS(1290), - [anon_sym_long] = ACTIONS(1290), - [anon_sym_short] = ACTIONS(1290), - [anon_sym_static] = ACTIONS(1290), - [anon_sym_auto] = ACTIONS(1290), - [anon_sym_register] = ACTIONS(1290), - [anon_sym_inline] = ACTIONS(1290), - [anon_sym___inline] = ACTIONS(1290), - [anon_sym___inline__] = ACTIONS(1290), - [anon_sym___forceinline] = ACTIONS(1290), - [anon_sym_thread_local] = ACTIONS(1290), - [anon_sym___thread] = ACTIONS(1290), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_constexpr] = ACTIONS(1290), - [anon_sym_volatile] = ACTIONS(1290), - [anon_sym_restrict] = ACTIONS(1290), - [anon_sym___restrict__] = ACTIONS(1290), - [anon_sym__Atomic] = ACTIONS(1290), - [anon_sym__Noreturn] = ACTIONS(1290), - [anon_sym_noreturn] = ACTIONS(1290), - [anon_sym_alignas] = ACTIONS(1290), - [anon_sym__Alignas] = ACTIONS(1290), - [sym_primitive_type] = ACTIONS(1290), - [anon_sym_enum] = ACTIONS(1290), - [anon_sym_struct] = ACTIONS(1290), - [anon_sym_union] = ACTIONS(1290), - [anon_sym_if] = ACTIONS(1290), - [anon_sym_else] = ACTIONS(1290), - [anon_sym_switch] = ACTIONS(1290), - [anon_sym_case] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1290), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_do] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_return] = ACTIONS(1290), - [anon_sym_break] = ACTIONS(1290), - [anon_sym_continue] = ACTIONS(1290), - [anon_sym_goto] = ACTIONS(1290), - [anon_sym___try] = ACTIONS(1290), - [anon_sym___leave] = ACTIONS(1290), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_sizeof] = ACTIONS(1290), - [anon_sym___alignof__] = ACTIONS(1290), - [anon_sym___alignof] = ACTIONS(1290), - [anon_sym__alignof] = ACTIONS(1290), - [anon_sym_alignof] = ACTIONS(1290), - [anon_sym__Alignof] = ACTIONS(1290), - [anon_sym_offsetof] = ACTIONS(1290), - [anon_sym__Generic] = ACTIONS(1290), - [anon_sym_asm] = ACTIONS(1290), - [anon_sym___asm__] = ACTIONS(1290), - [sym_number_literal] = ACTIONS(1292), - [anon_sym_L_SQUOTE] = ACTIONS(1292), - [anon_sym_u_SQUOTE] = ACTIONS(1292), - [anon_sym_U_SQUOTE] = ACTIONS(1292), - [anon_sym_u8_SQUOTE] = ACTIONS(1292), - [anon_sym_SQUOTE] = ACTIONS(1292), - [anon_sym_L_DQUOTE] = ACTIONS(1292), - [anon_sym_u_DQUOTE] = ACTIONS(1292), - [anon_sym_U_DQUOTE] = ACTIONS(1292), - [anon_sym_u8_DQUOTE] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1292), - [sym_true] = ACTIONS(1290), - [sym_false] = ACTIONS(1290), - [anon_sym_NULL] = ACTIONS(1290), - [anon_sym_nullptr] = ACTIONS(1290), + [aux_sym_preproc_include_token1] = ACTIONS(1262), + [aux_sym_preproc_def_token1] = ACTIONS(1262), + [aux_sym_preproc_if_token1] = ACTIONS(1262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1262), + [sym_preproc_directive] = ACTIONS(1262), + [anon_sym_LPAREN2] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1264), + [anon_sym___extension__] = ACTIONS(1262), + [anon_sym_typedef] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(1262), + [anon_sym___attribute__] = ACTIONS(1262), + [anon_sym___scanf] = ACTIONS(1262), + [anon_sym___printf] = ACTIONS(1262), + [anon_sym___read_mostly] = ACTIONS(1262), + [anon_sym___must_hold] = ACTIONS(1262), + [anon_sym___ro_after_init] = ACTIONS(1262), + [anon_sym___noreturn] = ACTIONS(1262), + [anon_sym___cold] = ACTIONS(1262), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym___declspec] = ACTIONS(1262), + [anon_sym___init] = ACTIONS(1262), + [anon_sym___exit] = ACTIONS(1262), + [anon_sym___cdecl] = ACTIONS(1262), + [anon_sym___clrcall] = ACTIONS(1262), + [anon_sym___stdcall] = ACTIONS(1262), + [anon_sym___fastcall] = ACTIONS(1262), + [anon_sym___thiscall] = ACTIONS(1262), + [anon_sym___vectorcall] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_signed] = ACTIONS(1262), + [anon_sym_unsigned] = ACTIONS(1262), + [anon_sym_long] = ACTIONS(1262), + [anon_sym_short] = ACTIONS(1262), + [anon_sym_static] = ACTIONS(1262), + [anon_sym_auto] = ACTIONS(1262), + [anon_sym_register] = ACTIONS(1262), + [anon_sym_inline] = ACTIONS(1262), + [anon_sym___inline] = ACTIONS(1262), + [anon_sym___inline__] = ACTIONS(1262), + [anon_sym___forceinline] = ACTIONS(1262), + [anon_sym_thread_local] = ACTIONS(1262), + [anon_sym___thread] = ACTIONS(1262), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_constexpr] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_restrict] = ACTIONS(1262), + [anon_sym___restrict__] = ACTIONS(1262), + [anon_sym__Atomic] = ACTIONS(1262), + [anon_sym__Noreturn] = ACTIONS(1262), + [anon_sym_noreturn] = ACTIONS(1262), + [anon_sym_alignas] = ACTIONS(1262), + [anon_sym__Alignas] = ACTIONS(1262), + [sym_primitive_type] = ACTIONS(1262), + [anon_sym_enum] = ACTIONS(1262), + [anon_sym_struct] = ACTIONS(1262), + [anon_sym_union] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1262), + [anon_sym_else] = ACTIONS(1262), + [anon_sym_switch] = ACTIONS(1262), + [anon_sym_case] = ACTIONS(1262), + [anon_sym_default] = ACTIONS(1262), + [anon_sym_while] = ACTIONS(1262), + [anon_sym_do] = ACTIONS(1262), + [anon_sym_for] = ACTIONS(1262), + [anon_sym_return] = ACTIONS(1262), + [anon_sym_break] = ACTIONS(1262), + [anon_sym_continue] = ACTIONS(1262), + [anon_sym_goto] = ACTIONS(1262), + [anon_sym___try] = ACTIONS(1262), + [anon_sym___leave] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1264), + [anon_sym_PLUS_PLUS] = ACTIONS(1264), + [anon_sym_sizeof] = ACTIONS(1262), + [anon_sym___alignof__] = ACTIONS(1262), + [anon_sym___alignof] = ACTIONS(1262), + [anon_sym__alignof] = ACTIONS(1262), + [anon_sym_alignof] = ACTIONS(1262), + [anon_sym__Alignof] = ACTIONS(1262), + [anon_sym_offsetof] = ACTIONS(1262), + [anon_sym__Generic] = ACTIONS(1262), + [anon_sym_asm] = ACTIONS(1262), + [anon_sym___asm__] = ACTIONS(1262), + [sym_number_literal] = ACTIONS(1264), + [anon_sym_L_SQUOTE] = ACTIONS(1264), + [anon_sym_u_SQUOTE] = ACTIONS(1264), + [anon_sym_U_SQUOTE] = ACTIONS(1264), + [anon_sym_u8_SQUOTE] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_L_DQUOTE] = ACTIONS(1264), + [anon_sym_u_DQUOTE] = ACTIONS(1264), + [anon_sym_U_DQUOTE] = ACTIONS(1264), + [anon_sym_u8_DQUOTE] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1264), + [sym_true] = ACTIONS(1262), + [sym_false] = ACTIONS(1262), + [anon_sym_NULL] = ACTIONS(1262), + [anon_sym_nullptr] = ACTIONS(1262), [sym_comment] = ACTIONS(5), }, - [198] = { - [ts_builtin_sym_end] = ACTIONS(1256), - [sym_identifier] = ACTIONS(1254), + [191] = { + [sym_identifier] = ACTIONS(1378), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1254), - [aux_sym_preproc_def_token1] = ACTIONS(1254), - [aux_sym_preproc_if_token1] = ACTIONS(1254), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1254), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1254), - [sym_preproc_directive] = ACTIONS(1254), - [anon_sym_LPAREN2] = ACTIONS(1256), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_SEMI] = ACTIONS(1256), - [anon_sym___extension__] = ACTIONS(1254), - [anon_sym_typedef] = ACTIONS(1254), - [anon_sym_extern] = ACTIONS(1254), - [anon_sym___attribute__] = ACTIONS(1254), - [anon_sym___scanf] = ACTIONS(1254), - [anon_sym___printf] = ACTIONS(1254), - [anon_sym___read_mostly] = ACTIONS(1254), - [anon_sym___must_hold] = ACTIONS(1254), - [anon_sym___ro_after_init] = ACTIONS(1254), - [anon_sym___noreturn] = ACTIONS(1254), - [anon_sym___cold] = ACTIONS(1254), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1256), - [anon_sym___declspec] = ACTIONS(1254), - [anon_sym___init] = ACTIONS(1254), - [anon_sym___exit] = ACTIONS(1254), - [anon_sym___cdecl] = ACTIONS(1254), - [anon_sym___clrcall] = ACTIONS(1254), - [anon_sym___stdcall] = ACTIONS(1254), - [anon_sym___fastcall] = ACTIONS(1254), - [anon_sym___thiscall] = ACTIONS(1254), - [anon_sym___vectorcall] = ACTIONS(1254), - [anon_sym_LBRACE] = ACTIONS(1256), - [anon_sym_signed] = ACTIONS(1254), - [anon_sym_unsigned] = ACTIONS(1254), - [anon_sym_long] = ACTIONS(1254), - [anon_sym_short] = ACTIONS(1254), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_auto] = ACTIONS(1254), - [anon_sym_register] = ACTIONS(1254), - [anon_sym_inline] = ACTIONS(1254), - [anon_sym___inline] = ACTIONS(1254), - [anon_sym___inline__] = ACTIONS(1254), - [anon_sym___forceinline] = ACTIONS(1254), - [anon_sym_thread_local] = ACTIONS(1254), - [anon_sym___thread] = ACTIONS(1254), - [anon_sym_const] = ACTIONS(1254), - [anon_sym_constexpr] = ACTIONS(1254), - [anon_sym_volatile] = ACTIONS(1254), - [anon_sym_restrict] = ACTIONS(1254), - [anon_sym___restrict__] = ACTIONS(1254), - [anon_sym__Atomic] = ACTIONS(1254), - [anon_sym__Noreturn] = ACTIONS(1254), - [anon_sym_noreturn] = ACTIONS(1254), - [anon_sym_alignas] = ACTIONS(1254), - [anon_sym__Alignas] = ACTIONS(1254), - [sym_primitive_type] = ACTIONS(1254), - [anon_sym_enum] = ACTIONS(1254), - [anon_sym_struct] = ACTIONS(1254), - [anon_sym_union] = ACTIONS(1254), - [anon_sym_if] = ACTIONS(1254), - [anon_sym_else] = ACTIONS(1254), - [anon_sym_switch] = ACTIONS(1254), - [anon_sym_case] = ACTIONS(1254), - [anon_sym_default] = ACTIONS(1254), - [anon_sym_while] = ACTIONS(1254), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_for] = ACTIONS(1254), - [anon_sym_return] = ACTIONS(1254), - [anon_sym_break] = ACTIONS(1254), - [anon_sym_continue] = ACTIONS(1254), - [anon_sym_goto] = ACTIONS(1254), - [anon_sym___try] = ACTIONS(1254), - [anon_sym___leave] = ACTIONS(1254), - [anon_sym_DASH_DASH] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1256), - [anon_sym_sizeof] = ACTIONS(1254), - [anon_sym___alignof__] = ACTIONS(1254), - [anon_sym___alignof] = ACTIONS(1254), - [anon_sym__alignof] = ACTIONS(1254), - [anon_sym_alignof] = ACTIONS(1254), - [anon_sym__Alignof] = ACTIONS(1254), - [anon_sym_offsetof] = ACTIONS(1254), - [anon_sym__Generic] = ACTIONS(1254), - [anon_sym_asm] = ACTIONS(1254), - [anon_sym___asm__] = ACTIONS(1254), - [sym_number_literal] = ACTIONS(1256), - [anon_sym_L_SQUOTE] = ACTIONS(1256), - [anon_sym_u_SQUOTE] = ACTIONS(1256), - [anon_sym_U_SQUOTE] = ACTIONS(1256), - [anon_sym_u8_SQUOTE] = ACTIONS(1256), - [anon_sym_SQUOTE] = ACTIONS(1256), - [anon_sym_L_DQUOTE] = ACTIONS(1256), - [anon_sym_u_DQUOTE] = ACTIONS(1256), - [anon_sym_U_DQUOTE] = ACTIONS(1256), - [anon_sym_u8_DQUOTE] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(1256), - [sym_true] = ACTIONS(1254), - [sym_false] = ACTIONS(1254), - [anon_sym_NULL] = ACTIONS(1254), - [anon_sym_nullptr] = ACTIONS(1254), - [sym_comment] = ACTIONS(5), - }, - [199] = { - [sym_identifier] = ACTIONS(1230), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1230), - [aux_sym_preproc_def_token1] = ACTIONS(1230), - [aux_sym_preproc_if_token1] = ACTIONS(1230), - [aux_sym_preproc_if_token2] = ACTIONS(1230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1230), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1230), - [sym_preproc_directive] = ACTIONS(1230), - [anon_sym_LPAREN2] = ACTIONS(1232), - [anon_sym_BANG] = ACTIONS(1232), - [anon_sym_TILDE] = ACTIONS(1232), - [anon_sym_DASH] = ACTIONS(1230), - [anon_sym_PLUS] = ACTIONS(1230), - [anon_sym_STAR] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(1232), - [anon_sym_SEMI] = ACTIONS(1232), - [anon_sym___extension__] = ACTIONS(1230), - [anon_sym_typedef] = ACTIONS(1230), - [anon_sym_extern] = ACTIONS(1230), - [anon_sym___attribute__] = ACTIONS(1230), - [anon_sym___scanf] = ACTIONS(1230), - [anon_sym___printf] = ACTIONS(1230), - [anon_sym___read_mostly] = ACTIONS(1230), - [anon_sym___must_hold] = ACTIONS(1230), - [anon_sym___ro_after_init] = ACTIONS(1230), - [anon_sym___noreturn] = ACTIONS(1230), - [anon_sym___cold] = ACTIONS(1230), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1232), - [anon_sym___declspec] = ACTIONS(1230), - [anon_sym___init] = ACTIONS(1230), - [anon_sym___exit] = ACTIONS(1230), - [anon_sym___cdecl] = ACTIONS(1230), - [anon_sym___clrcall] = ACTIONS(1230), - [anon_sym___stdcall] = ACTIONS(1230), - [anon_sym___fastcall] = ACTIONS(1230), - [anon_sym___thiscall] = ACTIONS(1230), - [anon_sym___vectorcall] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_signed] = ACTIONS(1230), - [anon_sym_unsigned] = ACTIONS(1230), - [anon_sym_long] = ACTIONS(1230), - [anon_sym_short] = ACTIONS(1230), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_auto] = ACTIONS(1230), - [anon_sym_register] = ACTIONS(1230), - [anon_sym_inline] = ACTIONS(1230), - [anon_sym___inline] = ACTIONS(1230), - [anon_sym___inline__] = ACTIONS(1230), - [anon_sym___forceinline] = ACTIONS(1230), - [anon_sym_thread_local] = ACTIONS(1230), - [anon_sym___thread] = ACTIONS(1230), - [anon_sym_const] = ACTIONS(1230), - [anon_sym_constexpr] = ACTIONS(1230), - [anon_sym_volatile] = ACTIONS(1230), - [anon_sym_restrict] = ACTIONS(1230), - [anon_sym___restrict__] = ACTIONS(1230), - [anon_sym__Atomic] = ACTIONS(1230), - [anon_sym__Noreturn] = ACTIONS(1230), - [anon_sym_noreturn] = ACTIONS(1230), - [anon_sym_alignas] = ACTIONS(1230), - [anon_sym__Alignas] = ACTIONS(1230), - [sym_primitive_type] = ACTIONS(1230), - [anon_sym_enum] = ACTIONS(1230), - [anon_sym_struct] = ACTIONS(1230), - [anon_sym_union] = ACTIONS(1230), - [anon_sym_if] = ACTIONS(1230), - [anon_sym_else] = ACTIONS(1230), - [anon_sym_switch] = ACTIONS(1230), - [anon_sym_case] = ACTIONS(1230), - [anon_sym_default] = ACTIONS(1230), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_do] = ACTIONS(1230), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(1230), - [anon_sym_break] = ACTIONS(1230), - [anon_sym_continue] = ACTIONS(1230), - [anon_sym_goto] = ACTIONS(1230), - [anon_sym___try] = ACTIONS(1230), - [anon_sym___leave] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1232), - [anon_sym_PLUS_PLUS] = ACTIONS(1232), - [anon_sym_sizeof] = ACTIONS(1230), - [anon_sym___alignof__] = ACTIONS(1230), - [anon_sym___alignof] = ACTIONS(1230), - [anon_sym__alignof] = ACTIONS(1230), - [anon_sym_alignof] = ACTIONS(1230), - [anon_sym__Alignof] = ACTIONS(1230), - [anon_sym_offsetof] = ACTIONS(1230), - [anon_sym__Generic] = ACTIONS(1230), - [anon_sym_asm] = ACTIONS(1230), - [anon_sym___asm__] = ACTIONS(1230), - [sym_number_literal] = ACTIONS(1232), - [anon_sym_L_SQUOTE] = ACTIONS(1232), - [anon_sym_u_SQUOTE] = ACTIONS(1232), - [anon_sym_U_SQUOTE] = ACTIONS(1232), - [anon_sym_u8_SQUOTE] = ACTIONS(1232), - [anon_sym_SQUOTE] = ACTIONS(1232), - [anon_sym_L_DQUOTE] = ACTIONS(1232), - [anon_sym_u_DQUOTE] = ACTIONS(1232), - [anon_sym_U_DQUOTE] = ACTIONS(1232), - [anon_sym_u8_DQUOTE] = ACTIONS(1232), - [anon_sym_DQUOTE] = ACTIONS(1232), - [sym_true] = ACTIONS(1230), - [sym_false] = ACTIONS(1230), - [anon_sym_NULL] = ACTIONS(1230), - [anon_sym_nullptr] = ACTIONS(1230), - [sym_comment] = ACTIONS(5), - }, - [200] = { - [ts_builtin_sym_end] = ACTIONS(1348), - [sym_identifier] = ACTIONS(1346), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1346), - [aux_sym_preproc_def_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), - [sym_preproc_directive] = ACTIONS(1346), - [anon_sym_LPAREN2] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_TILDE] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym___extension__] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym___attribute__] = ACTIONS(1346), - [anon_sym___scanf] = ACTIONS(1346), - [anon_sym___printf] = ACTIONS(1346), - [anon_sym___read_mostly] = ACTIONS(1346), - [anon_sym___must_hold] = ACTIONS(1346), - [anon_sym___ro_after_init] = ACTIONS(1346), - [anon_sym___noreturn] = ACTIONS(1346), - [anon_sym___cold] = ACTIONS(1346), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), - [anon_sym___declspec] = ACTIONS(1346), - [anon_sym___init] = ACTIONS(1346), - [anon_sym___exit] = ACTIONS(1346), - [anon_sym___cdecl] = ACTIONS(1346), - [anon_sym___clrcall] = ACTIONS(1346), - [anon_sym___stdcall] = ACTIONS(1346), - [anon_sym___fastcall] = ACTIONS(1346), - [anon_sym___thiscall] = ACTIONS(1346), - [anon_sym___vectorcall] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1346), - [anon_sym_unsigned] = ACTIONS(1346), - [anon_sym_long] = ACTIONS(1346), - [anon_sym_short] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_auto] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_inline] = ACTIONS(1346), - [anon_sym___inline] = ACTIONS(1346), - [anon_sym___inline__] = ACTIONS(1346), - [anon_sym___forceinline] = ACTIONS(1346), - [anon_sym_thread_local] = ACTIONS(1346), - [anon_sym___thread] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_constexpr] = ACTIONS(1346), - [anon_sym_volatile] = ACTIONS(1346), - [anon_sym_restrict] = ACTIONS(1346), - [anon_sym___restrict__] = ACTIONS(1346), - [anon_sym__Atomic] = ACTIONS(1346), - [anon_sym__Noreturn] = ACTIONS(1346), - [anon_sym_noreturn] = ACTIONS(1346), - [anon_sym_alignas] = ACTIONS(1346), - [anon_sym__Alignas] = ACTIONS(1346), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_case] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_goto] = ACTIONS(1346), - [anon_sym___try] = ACTIONS(1346), - [anon_sym___leave] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_sizeof] = ACTIONS(1346), - [anon_sym___alignof__] = ACTIONS(1346), - [anon_sym___alignof] = ACTIONS(1346), - [anon_sym__alignof] = ACTIONS(1346), - [anon_sym_alignof] = ACTIONS(1346), - [anon_sym__Alignof] = ACTIONS(1346), - [anon_sym_offsetof] = ACTIONS(1346), - [anon_sym__Generic] = ACTIONS(1346), - [anon_sym_asm] = ACTIONS(1346), - [anon_sym___asm__] = ACTIONS(1346), - [sym_number_literal] = ACTIONS(1348), - [anon_sym_L_SQUOTE] = ACTIONS(1348), - [anon_sym_u_SQUOTE] = ACTIONS(1348), - [anon_sym_U_SQUOTE] = ACTIONS(1348), - [anon_sym_u8_SQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_L_DQUOTE] = ACTIONS(1348), - [anon_sym_u_DQUOTE] = ACTIONS(1348), - [anon_sym_U_DQUOTE] = ACTIONS(1348), - [anon_sym_u8_DQUOTE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [anon_sym_NULL] = ACTIONS(1346), - [anon_sym_nullptr] = ACTIONS(1346), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token2] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym___scanf] = ACTIONS(1378), + [anon_sym___printf] = ACTIONS(1378), + [anon_sym___read_mostly] = ACTIONS(1378), + [anon_sym___must_hold] = ACTIONS(1378), + [anon_sym___ro_after_init] = ACTIONS(1378), + [anon_sym___noreturn] = ACTIONS(1378), + [anon_sym___cold] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___init] = ACTIONS(1378), + [anon_sym___exit] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [anon_sym_alignas] = ACTIONS(1378), + [anon_sym__Alignas] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(5), }, - [201] = { - [sym_identifier] = ACTIONS(1306), + [192] = { + [ts_builtin_sym_end] = ACTIONS(1364), + [sym_identifier] = ACTIONS(1362), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym___scanf] = ACTIONS(1306), - [anon_sym___printf] = ACTIONS(1306), - [anon_sym___read_mostly] = ACTIONS(1306), - [anon_sym___must_hold] = ACTIONS(1306), - [anon_sym___ro_after_init] = ACTIONS(1306), - [anon_sym___noreturn] = ACTIONS(1306), - [anon_sym___cold] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___init] = ACTIONS(1306), - [anon_sym___exit] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [anon_sym_alignas] = ACTIONS(1306), - [anon_sym__Alignas] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), + [sym_preproc_directive] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym___extension__] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1362), + [anon_sym___scanf] = ACTIONS(1362), + [anon_sym___printf] = ACTIONS(1362), + [anon_sym___read_mostly] = ACTIONS(1362), + [anon_sym___must_hold] = ACTIONS(1362), + [anon_sym___ro_after_init] = ACTIONS(1362), + [anon_sym___noreturn] = ACTIONS(1362), + [anon_sym___cold] = ACTIONS(1362), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), + [anon_sym___declspec] = ACTIONS(1362), + [anon_sym___init] = ACTIONS(1362), + [anon_sym___exit] = ACTIONS(1362), + [anon_sym___cdecl] = ACTIONS(1362), + [anon_sym___clrcall] = ACTIONS(1362), + [anon_sym___stdcall] = ACTIONS(1362), + [anon_sym___fastcall] = ACTIONS(1362), + [anon_sym___thiscall] = ACTIONS(1362), + [anon_sym___vectorcall] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym___inline] = ACTIONS(1362), + [anon_sym___inline__] = ACTIONS(1362), + [anon_sym___forceinline] = ACTIONS(1362), + [anon_sym_thread_local] = ACTIONS(1362), + [anon_sym___thread] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_constexpr] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym___restrict__] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym__Noreturn] = ACTIONS(1362), + [anon_sym_noreturn] = ACTIONS(1362), + [anon_sym_alignas] = ACTIONS(1362), + [anon_sym__Alignas] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_else] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym___try] = ACTIONS(1362), + [anon_sym___leave] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1362), + [anon_sym___alignof__] = ACTIONS(1362), + [anon_sym___alignof] = ACTIONS(1362), + [anon_sym__alignof] = ACTIONS(1362), + [anon_sym_alignof] = ACTIONS(1362), + [anon_sym__Alignof] = ACTIONS(1362), + [anon_sym_offsetof] = ACTIONS(1362), + [anon_sym__Generic] = ACTIONS(1362), + [anon_sym_asm] = ACTIONS(1362), + [anon_sym___asm__] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1364), + [anon_sym_u_SQUOTE] = ACTIONS(1364), + [anon_sym_U_SQUOTE] = ACTIONS(1364), + [anon_sym_u8_SQUOTE] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_L_DQUOTE] = ACTIONS(1364), + [anon_sym_u_DQUOTE] = ACTIONS(1364), + [anon_sym_U_DQUOTE] = ACTIONS(1364), + [anon_sym_u8_DQUOTE] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [anon_sym_NULL] = ACTIONS(1362), + [anon_sym_nullptr] = ACTIONS(1362), [sym_comment] = ACTIONS(5), }, - [202] = { - [sym_identifier] = ACTIONS(1310), + [193] = { + [ts_builtin_sym_end] = ACTIONS(1368), + [sym_identifier] = ACTIONS(1366), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym___scanf] = ACTIONS(1310), - [anon_sym___printf] = ACTIONS(1310), - [anon_sym___read_mostly] = ACTIONS(1310), - [anon_sym___must_hold] = ACTIONS(1310), - [anon_sym___ro_after_init] = ACTIONS(1310), - [anon_sym___noreturn] = ACTIONS(1310), - [anon_sym___cold] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___init] = ACTIONS(1310), - [anon_sym___exit] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [anon_sym_alignas] = ACTIONS(1310), - [anon_sym__Alignas] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [aux_sym_preproc_include_token1] = ACTIONS(1366), + [aux_sym_preproc_def_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), + [sym_preproc_directive] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym___scanf] = ACTIONS(1366), + [anon_sym___printf] = ACTIONS(1366), + [anon_sym___read_mostly] = ACTIONS(1366), + [anon_sym___must_hold] = ACTIONS(1366), + [anon_sym___ro_after_init] = ACTIONS(1366), + [anon_sym___noreturn] = ACTIONS(1366), + [anon_sym___cold] = ACTIONS(1366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), + [anon_sym___declspec] = ACTIONS(1366), + [anon_sym___init] = ACTIONS(1366), + [anon_sym___exit] = ACTIONS(1366), + [anon_sym___cdecl] = ACTIONS(1366), + [anon_sym___clrcall] = ACTIONS(1366), + [anon_sym___stdcall] = ACTIONS(1366), + [anon_sym___fastcall] = ACTIONS(1366), + [anon_sym___thiscall] = ACTIONS(1366), + [anon_sym___vectorcall] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_signed] = ACTIONS(1366), + [anon_sym_unsigned] = ACTIONS(1366), + [anon_sym_long] = ACTIONS(1366), + [anon_sym_short] = ACTIONS(1366), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_auto] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1366), + [anon_sym_inline] = ACTIONS(1366), + [anon_sym___inline] = ACTIONS(1366), + [anon_sym___inline__] = ACTIONS(1366), + [anon_sym___forceinline] = ACTIONS(1366), + [anon_sym_thread_local] = ACTIONS(1366), + [anon_sym___thread] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_constexpr] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1366), + [anon_sym_restrict] = ACTIONS(1366), + [anon_sym___restrict__] = ACTIONS(1366), + [anon_sym__Atomic] = ACTIONS(1366), + [anon_sym__Noreturn] = ACTIONS(1366), + [anon_sym_noreturn] = ACTIONS(1366), + [anon_sym_alignas] = ACTIONS(1366), + [anon_sym__Alignas] = ACTIONS(1366), + [sym_primitive_type] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_else] = ACTIONS(1366), + [anon_sym_switch] = ACTIONS(1366), + [anon_sym_case] = ACTIONS(1366), + [anon_sym_default] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_goto] = ACTIONS(1366), + [anon_sym___try] = ACTIONS(1366), + [anon_sym___leave] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_sizeof] = ACTIONS(1366), + [anon_sym___alignof__] = ACTIONS(1366), + [anon_sym___alignof] = ACTIONS(1366), + [anon_sym__alignof] = ACTIONS(1366), + [anon_sym_alignof] = ACTIONS(1366), + [anon_sym__Alignof] = ACTIONS(1366), + [anon_sym_offsetof] = ACTIONS(1366), + [anon_sym__Generic] = ACTIONS(1366), + [anon_sym_asm] = ACTIONS(1366), + [anon_sym___asm__] = ACTIONS(1366), + [sym_number_literal] = ACTIONS(1368), + [anon_sym_L_SQUOTE] = ACTIONS(1368), + [anon_sym_u_SQUOTE] = ACTIONS(1368), + [anon_sym_U_SQUOTE] = ACTIONS(1368), + [anon_sym_u8_SQUOTE] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_L_DQUOTE] = ACTIONS(1368), + [anon_sym_u_DQUOTE] = ACTIONS(1368), + [anon_sym_U_DQUOTE] = ACTIONS(1368), + [anon_sym_u8_DQUOTE] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [anon_sym_NULL] = ACTIONS(1366), + [anon_sym_nullptr] = ACTIONS(1366), [sym_comment] = ACTIONS(5), }, - [203] = { - [sym_identifier] = ACTIONS(1298), + [194] = { + [sym_identifier] = ACTIONS(1358), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym___scanf] = ACTIONS(1298), - [anon_sym___printf] = ACTIONS(1298), - [anon_sym___read_mostly] = ACTIONS(1298), - [anon_sym___must_hold] = ACTIONS(1298), - [anon_sym___ro_after_init] = ACTIONS(1298), - [anon_sym___noreturn] = ACTIONS(1298), - [anon_sym___cold] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___init] = ACTIONS(1298), - [anon_sym___exit] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [anon_sym_alignas] = ACTIONS(1298), - [anon_sym__Alignas] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1358), + [aux_sym_preproc_def_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___extension__] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym___scanf] = ACTIONS(1358), + [anon_sym___printf] = ACTIONS(1358), + [anon_sym___read_mostly] = ACTIONS(1358), + [anon_sym___must_hold] = ACTIONS(1358), + [anon_sym___ro_after_init] = ACTIONS(1358), + [anon_sym___noreturn] = ACTIONS(1358), + [anon_sym___cold] = ACTIONS(1358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), + [anon_sym___declspec] = ACTIONS(1358), + [anon_sym___init] = ACTIONS(1358), + [anon_sym___exit] = ACTIONS(1358), + [anon_sym___cdecl] = ACTIONS(1358), + [anon_sym___clrcall] = ACTIONS(1358), + [anon_sym___stdcall] = ACTIONS(1358), + [anon_sym___fastcall] = ACTIONS(1358), + [anon_sym___thiscall] = ACTIONS(1358), + [anon_sym___vectorcall] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1358), + [anon_sym___inline__] = ACTIONS(1358), + [anon_sym___forceinline] = ACTIONS(1358), + [anon_sym_thread_local] = ACTIONS(1358), + [anon_sym___thread] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_constexpr] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym___restrict__] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym__Noreturn] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_alignas] = ACTIONS(1358), + [anon_sym__Alignas] = ACTIONS(1358), + [sym_primitive_type] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym___try] = ACTIONS(1358), + [anon_sym___leave] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1358), + [anon_sym___alignof__] = ACTIONS(1358), + [anon_sym___alignof] = ACTIONS(1358), + [anon_sym__alignof] = ACTIONS(1358), + [anon_sym_alignof] = ACTIONS(1358), + [anon_sym__Alignof] = ACTIONS(1358), + [anon_sym_offsetof] = ACTIONS(1358), + [anon_sym__Generic] = ACTIONS(1358), + [anon_sym_asm] = ACTIONS(1358), + [anon_sym___asm__] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1360), + [anon_sym_u_SQUOTE] = ACTIONS(1360), + [anon_sym_U_SQUOTE] = ACTIONS(1360), + [anon_sym_u8_SQUOTE] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_L_DQUOTE] = ACTIONS(1360), + [anon_sym_u_DQUOTE] = ACTIONS(1360), + [anon_sym_U_DQUOTE] = ACTIONS(1360), + [anon_sym_u8_DQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [anon_sym_NULL] = ACTIONS(1358), + [anon_sym_nullptr] = ACTIONS(1358), [sym_comment] = ACTIONS(5), }, - [204] = { - [ts_builtin_sym_end] = ACTIONS(1232), - [sym_identifier] = ACTIONS(1230), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1230), - [aux_sym_preproc_def_token1] = ACTIONS(1230), - [aux_sym_preproc_if_token1] = ACTIONS(1230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1230), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1230), - [sym_preproc_directive] = ACTIONS(1230), - [anon_sym_LPAREN2] = ACTIONS(1232), - [anon_sym_BANG] = ACTIONS(1232), - [anon_sym_TILDE] = ACTIONS(1232), - [anon_sym_DASH] = ACTIONS(1230), - [anon_sym_PLUS] = ACTIONS(1230), - [anon_sym_STAR] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(1232), - [anon_sym_SEMI] = ACTIONS(1232), - [anon_sym___extension__] = ACTIONS(1230), - [anon_sym_typedef] = ACTIONS(1230), - [anon_sym_extern] = ACTIONS(1230), - [anon_sym___attribute__] = ACTIONS(1230), - [anon_sym___scanf] = ACTIONS(1230), - [anon_sym___printf] = ACTIONS(1230), - [anon_sym___read_mostly] = ACTIONS(1230), - [anon_sym___must_hold] = ACTIONS(1230), - [anon_sym___ro_after_init] = ACTIONS(1230), - [anon_sym___noreturn] = ACTIONS(1230), - [anon_sym___cold] = ACTIONS(1230), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1232), - [anon_sym___declspec] = ACTIONS(1230), - [anon_sym___init] = ACTIONS(1230), - [anon_sym___exit] = ACTIONS(1230), - [anon_sym___cdecl] = ACTIONS(1230), - [anon_sym___clrcall] = ACTIONS(1230), - [anon_sym___stdcall] = ACTIONS(1230), - [anon_sym___fastcall] = ACTIONS(1230), - [anon_sym___thiscall] = ACTIONS(1230), - [anon_sym___vectorcall] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_signed] = ACTIONS(1230), - [anon_sym_unsigned] = ACTIONS(1230), - [anon_sym_long] = ACTIONS(1230), - [anon_sym_short] = ACTIONS(1230), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_auto] = ACTIONS(1230), - [anon_sym_register] = ACTIONS(1230), - [anon_sym_inline] = ACTIONS(1230), - [anon_sym___inline] = ACTIONS(1230), - [anon_sym___inline__] = ACTIONS(1230), - [anon_sym___forceinline] = ACTIONS(1230), - [anon_sym_thread_local] = ACTIONS(1230), - [anon_sym___thread] = ACTIONS(1230), - [anon_sym_const] = ACTIONS(1230), - [anon_sym_constexpr] = ACTIONS(1230), - [anon_sym_volatile] = ACTIONS(1230), - [anon_sym_restrict] = ACTIONS(1230), - [anon_sym___restrict__] = ACTIONS(1230), - [anon_sym__Atomic] = ACTIONS(1230), - [anon_sym__Noreturn] = ACTIONS(1230), - [anon_sym_noreturn] = ACTIONS(1230), - [anon_sym_alignas] = ACTIONS(1230), - [anon_sym__Alignas] = ACTIONS(1230), - [sym_primitive_type] = ACTIONS(1230), - [anon_sym_enum] = ACTIONS(1230), - [anon_sym_struct] = ACTIONS(1230), - [anon_sym_union] = ACTIONS(1230), - [anon_sym_if] = ACTIONS(1230), - [anon_sym_else] = ACTIONS(1230), - [anon_sym_switch] = ACTIONS(1230), - [anon_sym_case] = ACTIONS(1230), - [anon_sym_default] = ACTIONS(1230), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_do] = ACTIONS(1230), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(1230), - [anon_sym_break] = ACTIONS(1230), - [anon_sym_continue] = ACTIONS(1230), - [anon_sym_goto] = ACTIONS(1230), - [anon_sym___try] = ACTIONS(1230), - [anon_sym___leave] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1232), - [anon_sym_PLUS_PLUS] = ACTIONS(1232), - [anon_sym_sizeof] = ACTIONS(1230), - [anon_sym___alignof__] = ACTIONS(1230), - [anon_sym___alignof] = ACTIONS(1230), - [anon_sym__alignof] = ACTIONS(1230), - [anon_sym_alignof] = ACTIONS(1230), - [anon_sym__Alignof] = ACTIONS(1230), - [anon_sym_offsetof] = ACTIONS(1230), - [anon_sym__Generic] = ACTIONS(1230), - [anon_sym_asm] = ACTIONS(1230), - [anon_sym___asm__] = ACTIONS(1230), - [sym_number_literal] = ACTIONS(1232), - [anon_sym_L_SQUOTE] = ACTIONS(1232), - [anon_sym_u_SQUOTE] = ACTIONS(1232), - [anon_sym_U_SQUOTE] = ACTIONS(1232), - [anon_sym_u8_SQUOTE] = ACTIONS(1232), - [anon_sym_SQUOTE] = ACTIONS(1232), - [anon_sym_L_DQUOTE] = ACTIONS(1232), - [anon_sym_u_DQUOTE] = ACTIONS(1232), - [anon_sym_U_DQUOTE] = ACTIONS(1232), - [anon_sym_u8_DQUOTE] = ACTIONS(1232), - [anon_sym_DQUOTE] = ACTIONS(1232), - [sym_true] = ACTIONS(1230), - [sym_false] = ACTIONS(1230), - [anon_sym_NULL] = ACTIONS(1230), - [anon_sym_nullptr] = ACTIONS(1230), + [195] = { + [ts_builtin_sym_end] = ACTIONS(1280), + [sym_identifier] = ACTIONS(1278), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1278), + [aux_sym_preproc_def_token1] = ACTIONS(1278), + [aux_sym_preproc_if_token1] = ACTIONS(1278), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1278), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1278), + [sym_preproc_directive] = ACTIONS(1278), + [anon_sym_LPAREN2] = ACTIONS(1280), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1278), + [anon_sym_PLUS] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_AMP] = ACTIONS(1280), + [anon_sym_SEMI] = ACTIONS(1280), + [anon_sym___extension__] = ACTIONS(1278), + [anon_sym_typedef] = ACTIONS(1278), + [anon_sym_extern] = ACTIONS(1278), + [anon_sym___attribute__] = ACTIONS(1278), + [anon_sym___scanf] = ACTIONS(1278), + [anon_sym___printf] = ACTIONS(1278), + [anon_sym___read_mostly] = ACTIONS(1278), + [anon_sym___must_hold] = ACTIONS(1278), + [anon_sym___ro_after_init] = ACTIONS(1278), + [anon_sym___noreturn] = ACTIONS(1278), + [anon_sym___cold] = ACTIONS(1278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1280), + [anon_sym___declspec] = ACTIONS(1278), + [anon_sym___init] = ACTIONS(1278), + [anon_sym___exit] = ACTIONS(1278), + [anon_sym___cdecl] = ACTIONS(1278), + [anon_sym___clrcall] = ACTIONS(1278), + [anon_sym___stdcall] = ACTIONS(1278), + [anon_sym___fastcall] = ACTIONS(1278), + [anon_sym___thiscall] = ACTIONS(1278), + [anon_sym___vectorcall] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(1280), + [anon_sym_signed] = ACTIONS(1278), + [anon_sym_unsigned] = ACTIONS(1278), + [anon_sym_long] = ACTIONS(1278), + [anon_sym_short] = ACTIONS(1278), + [anon_sym_static] = ACTIONS(1278), + [anon_sym_auto] = ACTIONS(1278), + [anon_sym_register] = ACTIONS(1278), + [anon_sym_inline] = ACTIONS(1278), + [anon_sym___inline] = ACTIONS(1278), + [anon_sym___inline__] = ACTIONS(1278), + [anon_sym___forceinline] = ACTIONS(1278), + [anon_sym_thread_local] = ACTIONS(1278), + [anon_sym___thread] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1278), + [anon_sym_constexpr] = ACTIONS(1278), + [anon_sym_volatile] = ACTIONS(1278), + [anon_sym_restrict] = ACTIONS(1278), + [anon_sym___restrict__] = ACTIONS(1278), + [anon_sym__Atomic] = ACTIONS(1278), + [anon_sym__Noreturn] = ACTIONS(1278), + [anon_sym_noreturn] = ACTIONS(1278), + [anon_sym_alignas] = ACTIONS(1278), + [anon_sym__Alignas] = ACTIONS(1278), + [sym_primitive_type] = ACTIONS(1278), + [anon_sym_enum] = ACTIONS(1278), + [anon_sym_struct] = ACTIONS(1278), + [anon_sym_union] = ACTIONS(1278), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_else] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(1278), + [anon_sym_case] = ACTIONS(1278), + [anon_sym_default] = ACTIONS(1278), + [anon_sym_while] = ACTIONS(1278), + [anon_sym_do] = ACTIONS(1278), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_return] = ACTIONS(1278), + [anon_sym_break] = ACTIONS(1278), + [anon_sym_continue] = ACTIONS(1278), + [anon_sym_goto] = ACTIONS(1278), + [anon_sym___try] = ACTIONS(1278), + [anon_sym___leave] = ACTIONS(1278), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_sizeof] = ACTIONS(1278), + [anon_sym___alignof__] = ACTIONS(1278), + [anon_sym___alignof] = ACTIONS(1278), + [anon_sym__alignof] = ACTIONS(1278), + [anon_sym_alignof] = ACTIONS(1278), + [anon_sym__Alignof] = ACTIONS(1278), + [anon_sym_offsetof] = ACTIONS(1278), + [anon_sym__Generic] = ACTIONS(1278), + [anon_sym_asm] = ACTIONS(1278), + [anon_sym___asm__] = ACTIONS(1278), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(1280), + [anon_sym_u_SQUOTE] = ACTIONS(1280), + [anon_sym_U_SQUOTE] = ACTIONS(1280), + [anon_sym_u8_SQUOTE] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1280), + [anon_sym_L_DQUOTE] = ACTIONS(1280), + [anon_sym_u_DQUOTE] = ACTIONS(1280), + [anon_sym_U_DQUOTE] = ACTIONS(1280), + [anon_sym_u8_DQUOTE] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(1280), + [sym_true] = ACTIONS(1278), + [sym_false] = ACTIONS(1278), + [anon_sym_NULL] = ACTIONS(1278), + [anon_sym_nullptr] = ACTIONS(1278), [sym_comment] = ACTIONS(5), }, - [205] = { - [sym_identifier] = ACTIONS(1302), + [196] = { + [ts_builtin_sym_end] = ACTIONS(1356), + [sym_identifier] = ACTIONS(1354), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1302), - [aux_sym_preproc_def_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token2] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), - [sym_preproc_directive] = ACTIONS(1302), - [anon_sym_LPAREN2] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym___extension__] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym___attribute__] = ACTIONS(1302), - [anon_sym___scanf] = ACTIONS(1302), - [anon_sym___printf] = ACTIONS(1302), - [anon_sym___read_mostly] = ACTIONS(1302), - [anon_sym___must_hold] = ACTIONS(1302), - [anon_sym___ro_after_init] = ACTIONS(1302), - [anon_sym___noreturn] = ACTIONS(1302), - [anon_sym___cold] = ACTIONS(1302), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), - [anon_sym___declspec] = ACTIONS(1302), - [anon_sym___init] = ACTIONS(1302), - [anon_sym___exit] = ACTIONS(1302), - [anon_sym___cdecl] = ACTIONS(1302), - [anon_sym___clrcall] = ACTIONS(1302), - [anon_sym___stdcall] = ACTIONS(1302), - [anon_sym___fastcall] = ACTIONS(1302), - [anon_sym___thiscall] = ACTIONS(1302), - [anon_sym___vectorcall] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_signed] = ACTIONS(1302), - [anon_sym_unsigned] = ACTIONS(1302), - [anon_sym_long] = ACTIONS(1302), - [anon_sym_short] = ACTIONS(1302), - [anon_sym_static] = ACTIONS(1302), - [anon_sym_auto] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_inline] = ACTIONS(1302), - [anon_sym___inline] = ACTIONS(1302), - [anon_sym___inline__] = ACTIONS(1302), - [anon_sym___forceinline] = ACTIONS(1302), - [anon_sym_thread_local] = ACTIONS(1302), - [anon_sym___thread] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_constexpr] = ACTIONS(1302), - [anon_sym_volatile] = ACTIONS(1302), - [anon_sym_restrict] = ACTIONS(1302), - [anon_sym___restrict__] = ACTIONS(1302), - [anon_sym__Atomic] = ACTIONS(1302), - [anon_sym__Noreturn] = ACTIONS(1302), - [anon_sym_noreturn] = ACTIONS(1302), - [anon_sym_alignas] = ACTIONS(1302), - [anon_sym__Alignas] = ACTIONS(1302), - [sym_primitive_type] = ACTIONS(1302), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_union] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_else] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1302), - [anon_sym_default] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_goto] = ACTIONS(1302), - [anon_sym___try] = ACTIONS(1302), - [anon_sym___leave] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_sizeof] = ACTIONS(1302), - [anon_sym___alignof__] = ACTIONS(1302), - [anon_sym___alignof] = ACTIONS(1302), - [anon_sym__alignof] = ACTIONS(1302), - [anon_sym_alignof] = ACTIONS(1302), - [anon_sym__Alignof] = ACTIONS(1302), - [anon_sym_offsetof] = ACTIONS(1302), - [anon_sym__Generic] = ACTIONS(1302), - [anon_sym_asm] = ACTIONS(1302), - [anon_sym___asm__] = ACTIONS(1302), - [sym_number_literal] = ACTIONS(1304), - [anon_sym_L_SQUOTE] = ACTIONS(1304), - [anon_sym_u_SQUOTE] = ACTIONS(1304), - [anon_sym_U_SQUOTE] = ACTIONS(1304), - [anon_sym_u8_SQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_L_DQUOTE] = ACTIONS(1304), - [anon_sym_u_DQUOTE] = ACTIONS(1304), - [anon_sym_U_DQUOTE] = ACTIONS(1304), - [anon_sym_u8_DQUOTE] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym_true] = ACTIONS(1302), - [sym_false] = ACTIONS(1302), - [anon_sym_NULL] = ACTIONS(1302), - [anon_sym_nullptr] = ACTIONS(1302), - [sym_comment] = ACTIONS(5), - }, - [206] = { - [ts_builtin_sym_end] = ACTIONS(1292), - [sym_identifier] = ACTIONS(1290), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1290), - [aux_sym_preproc_def_token1] = ACTIONS(1290), - [aux_sym_preproc_if_token1] = ACTIONS(1290), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1290), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1290), - [sym_preproc_directive] = ACTIONS(1290), - [anon_sym_LPAREN2] = ACTIONS(1292), - [anon_sym_BANG] = ACTIONS(1292), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1290), - [anon_sym_STAR] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym___extension__] = ACTIONS(1290), - [anon_sym_typedef] = ACTIONS(1290), - [anon_sym_extern] = ACTIONS(1290), - [anon_sym___attribute__] = ACTIONS(1290), - [anon_sym___scanf] = ACTIONS(1290), - [anon_sym___printf] = ACTIONS(1290), - [anon_sym___read_mostly] = ACTIONS(1290), - [anon_sym___must_hold] = ACTIONS(1290), - [anon_sym___ro_after_init] = ACTIONS(1290), - [anon_sym___noreturn] = ACTIONS(1290), - [anon_sym___cold] = ACTIONS(1290), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1292), - [anon_sym___declspec] = ACTIONS(1290), - [anon_sym___init] = ACTIONS(1290), - [anon_sym___exit] = ACTIONS(1290), - [anon_sym___cdecl] = ACTIONS(1290), - [anon_sym___clrcall] = ACTIONS(1290), - [anon_sym___stdcall] = ACTIONS(1290), - [anon_sym___fastcall] = ACTIONS(1290), - [anon_sym___thiscall] = ACTIONS(1290), - [anon_sym___vectorcall] = ACTIONS(1290), - [anon_sym_LBRACE] = ACTIONS(1292), - [anon_sym_signed] = ACTIONS(1290), - [anon_sym_unsigned] = ACTIONS(1290), - [anon_sym_long] = ACTIONS(1290), - [anon_sym_short] = ACTIONS(1290), - [anon_sym_static] = ACTIONS(1290), - [anon_sym_auto] = ACTIONS(1290), - [anon_sym_register] = ACTIONS(1290), - [anon_sym_inline] = ACTIONS(1290), - [anon_sym___inline] = ACTIONS(1290), - [anon_sym___inline__] = ACTIONS(1290), - [anon_sym___forceinline] = ACTIONS(1290), - [anon_sym_thread_local] = ACTIONS(1290), - [anon_sym___thread] = ACTIONS(1290), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_constexpr] = ACTIONS(1290), - [anon_sym_volatile] = ACTIONS(1290), - [anon_sym_restrict] = ACTIONS(1290), - [anon_sym___restrict__] = ACTIONS(1290), - [anon_sym__Atomic] = ACTIONS(1290), - [anon_sym__Noreturn] = ACTIONS(1290), - [anon_sym_noreturn] = ACTIONS(1290), - [anon_sym_alignas] = ACTIONS(1290), - [anon_sym__Alignas] = ACTIONS(1290), - [sym_primitive_type] = ACTIONS(1290), - [anon_sym_enum] = ACTIONS(1290), - [anon_sym_struct] = ACTIONS(1290), - [anon_sym_union] = ACTIONS(1290), - [anon_sym_if] = ACTIONS(1290), - [anon_sym_else] = ACTIONS(1290), - [anon_sym_switch] = ACTIONS(1290), - [anon_sym_case] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1290), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_do] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_return] = ACTIONS(1290), - [anon_sym_break] = ACTIONS(1290), - [anon_sym_continue] = ACTIONS(1290), - [anon_sym_goto] = ACTIONS(1290), - [anon_sym___try] = ACTIONS(1290), - [anon_sym___leave] = ACTIONS(1290), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_sizeof] = ACTIONS(1290), - [anon_sym___alignof__] = ACTIONS(1290), - [anon_sym___alignof] = ACTIONS(1290), - [anon_sym__alignof] = ACTIONS(1290), - [anon_sym_alignof] = ACTIONS(1290), - [anon_sym__Alignof] = ACTIONS(1290), - [anon_sym_offsetof] = ACTIONS(1290), - [anon_sym__Generic] = ACTIONS(1290), - [anon_sym_asm] = ACTIONS(1290), - [anon_sym___asm__] = ACTIONS(1290), - [sym_number_literal] = ACTIONS(1292), - [anon_sym_L_SQUOTE] = ACTIONS(1292), - [anon_sym_u_SQUOTE] = ACTIONS(1292), - [anon_sym_U_SQUOTE] = ACTIONS(1292), - [anon_sym_u8_SQUOTE] = ACTIONS(1292), - [anon_sym_SQUOTE] = ACTIONS(1292), - [anon_sym_L_DQUOTE] = ACTIONS(1292), - [anon_sym_u_DQUOTE] = ACTIONS(1292), - [anon_sym_U_DQUOTE] = ACTIONS(1292), - [anon_sym_u8_DQUOTE] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1292), - [sym_true] = ACTIONS(1290), - [sym_false] = ACTIONS(1290), - [anon_sym_NULL] = ACTIONS(1290), - [anon_sym_nullptr] = ACTIONS(1290), + [aux_sym_preproc_include_token1] = ACTIONS(1354), + [aux_sym_preproc_def_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), + [sym_preproc_directive] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym___extension__] = ACTIONS(1354), + [anon_sym_typedef] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym___attribute__] = ACTIONS(1354), + [anon_sym___scanf] = ACTIONS(1354), + [anon_sym___printf] = ACTIONS(1354), + [anon_sym___read_mostly] = ACTIONS(1354), + [anon_sym___must_hold] = ACTIONS(1354), + [anon_sym___ro_after_init] = ACTIONS(1354), + [anon_sym___noreturn] = ACTIONS(1354), + [anon_sym___cold] = ACTIONS(1354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym___declspec] = ACTIONS(1354), + [anon_sym___init] = ACTIONS(1354), + [anon_sym___exit] = ACTIONS(1354), + [anon_sym___cdecl] = ACTIONS(1354), + [anon_sym___clrcall] = ACTIONS(1354), + [anon_sym___stdcall] = ACTIONS(1354), + [anon_sym___fastcall] = ACTIONS(1354), + [anon_sym___thiscall] = ACTIONS(1354), + [anon_sym___vectorcall] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_signed] = ACTIONS(1354), + [anon_sym_unsigned] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_auto] = ACTIONS(1354), + [anon_sym_register] = ACTIONS(1354), + [anon_sym_inline] = ACTIONS(1354), + [anon_sym___inline] = ACTIONS(1354), + [anon_sym___inline__] = ACTIONS(1354), + [anon_sym___forceinline] = ACTIONS(1354), + [anon_sym_thread_local] = ACTIONS(1354), + [anon_sym___thread] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_constexpr] = ACTIONS(1354), + [anon_sym_volatile] = ACTIONS(1354), + [anon_sym_restrict] = ACTIONS(1354), + [anon_sym___restrict__] = ACTIONS(1354), + [anon_sym__Atomic] = ACTIONS(1354), + [anon_sym__Noreturn] = ACTIONS(1354), + [anon_sym_noreturn] = ACTIONS(1354), + [anon_sym_alignas] = ACTIONS(1354), + [anon_sym__Alignas] = ACTIONS(1354), + [sym_primitive_type] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_else] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1354), + [anon_sym_case] = ACTIONS(1354), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_goto] = ACTIONS(1354), + [anon_sym___try] = ACTIONS(1354), + [anon_sym___leave] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_sizeof] = ACTIONS(1354), + [anon_sym___alignof__] = ACTIONS(1354), + [anon_sym___alignof] = ACTIONS(1354), + [anon_sym__alignof] = ACTIONS(1354), + [anon_sym_alignof] = ACTIONS(1354), + [anon_sym__Alignof] = ACTIONS(1354), + [anon_sym_offsetof] = ACTIONS(1354), + [anon_sym__Generic] = ACTIONS(1354), + [anon_sym_asm] = ACTIONS(1354), + [anon_sym___asm__] = ACTIONS(1354), + [sym_number_literal] = ACTIONS(1356), + [anon_sym_L_SQUOTE] = ACTIONS(1356), + [anon_sym_u_SQUOTE] = ACTIONS(1356), + [anon_sym_U_SQUOTE] = ACTIONS(1356), + [anon_sym_u8_SQUOTE] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_L_DQUOTE] = ACTIONS(1356), + [anon_sym_u_DQUOTE] = ACTIONS(1356), + [anon_sym_U_DQUOTE] = ACTIONS(1356), + [anon_sym_u8_DQUOTE] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym_true] = ACTIONS(1354), + [sym_false] = ACTIONS(1354), + [anon_sym_NULL] = ACTIONS(1354), + [anon_sym_nullptr] = ACTIONS(1354), [sym_comment] = ACTIONS(5), }, - [207] = { - [sym_identifier] = ACTIONS(1306), + [197] = { + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_identifier] = ACTIONS(1350), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym___scanf] = ACTIONS(1306), - [anon_sym___printf] = ACTIONS(1306), - [anon_sym___read_mostly] = ACTIONS(1306), - [anon_sym___must_hold] = ACTIONS(1306), - [anon_sym___ro_after_init] = ACTIONS(1306), - [anon_sym___noreturn] = ACTIONS(1306), - [anon_sym___cold] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___init] = ACTIONS(1306), - [anon_sym___exit] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [anon_sym_alignas] = ACTIONS(1306), - [anon_sym__Alignas] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym___scanf] = ACTIONS(1350), + [anon_sym___printf] = ACTIONS(1350), + [anon_sym___read_mostly] = ACTIONS(1350), + [anon_sym___must_hold] = ACTIONS(1350), + [anon_sym___ro_after_init] = ACTIONS(1350), + [anon_sym___noreturn] = ACTIONS(1350), + [anon_sym___cold] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___init] = ACTIONS(1350), + [anon_sym___exit] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [anon_sym_alignas] = ACTIONS(1350), + [anon_sym__Alignas] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(5), }, - [208] = { - [sym_identifier] = ACTIONS(1322), + [198] = { + [ts_builtin_sym_end] = ACTIONS(1360), + [sym_identifier] = ACTIONS(1358), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1322), - [aux_sym_preproc_def_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_LPAREN2] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym___extension__] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym___attribute__] = ACTIONS(1322), - [anon_sym___scanf] = ACTIONS(1322), - [anon_sym___printf] = ACTIONS(1322), - [anon_sym___read_mostly] = ACTIONS(1322), - [anon_sym___must_hold] = ACTIONS(1322), - [anon_sym___ro_after_init] = ACTIONS(1322), - [anon_sym___noreturn] = ACTIONS(1322), - [anon_sym___cold] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), - [anon_sym___declspec] = ACTIONS(1322), - [anon_sym___init] = ACTIONS(1322), - [anon_sym___exit] = ACTIONS(1322), - [anon_sym___cdecl] = ACTIONS(1322), - [anon_sym___clrcall] = ACTIONS(1322), - [anon_sym___stdcall] = ACTIONS(1322), - [anon_sym___fastcall] = ACTIONS(1322), - [anon_sym___thiscall] = ACTIONS(1322), - [anon_sym___vectorcall] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_RBRACE] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1322), - [anon_sym_unsigned] = ACTIONS(1322), - [anon_sym_long] = ACTIONS(1322), - [anon_sym_short] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_auto] = ACTIONS(1322), - [anon_sym_register] = ACTIONS(1322), - [anon_sym_inline] = ACTIONS(1322), - [anon_sym___inline] = ACTIONS(1322), - [anon_sym___inline__] = ACTIONS(1322), - [anon_sym___forceinline] = ACTIONS(1322), - [anon_sym_thread_local] = ACTIONS(1322), - [anon_sym___thread] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_constexpr] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(1322), - [anon_sym_restrict] = ACTIONS(1322), - [anon_sym___restrict__] = ACTIONS(1322), - [anon_sym__Atomic] = ACTIONS(1322), - [anon_sym__Noreturn] = ACTIONS(1322), - [anon_sym_noreturn] = ACTIONS(1322), - [anon_sym_alignas] = ACTIONS(1322), - [anon_sym__Alignas] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_goto] = ACTIONS(1322), - [anon_sym___try] = ACTIONS(1322), - [anon_sym___leave] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_sizeof] = ACTIONS(1322), - [anon_sym___alignof__] = ACTIONS(1322), - [anon_sym___alignof] = ACTIONS(1322), - [anon_sym__alignof] = ACTIONS(1322), - [anon_sym_alignof] = ACTIONS(1322), - [anon_sym__Alignof] = ACTIONS(1322), - [anon_sym_offsetof] = ACTIONS(1322), - [anon_sym__Generic] = ACTIONS(1322), - [anon_sym_asm] = ACTIONS(1322), - [anon_sym___asm__] = ACTIONS(1322), - [sym_number_literal] = ACTIONS(1324), - [anon_sym_L_SQUOTE] = ACTIONS(1324), - [anon_sym_u_SQUOTE] = ACTIONS(1324), - [anon_sym_U_SQUOTE] = ACTIONS(1324), - [anon_sym_u8_SQUOTE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_L_DQUOTE] = ACTIONS(1324), - [anon_sym_u_DQUOTE] = ACTIONS(1324), - [anon_sym_U_DQUOTE] = ACTIONS(1324), - [anon_sym_u8_DQUOTE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [anon_sym_NULL] = ACTIONS(1322), - [anon_sym_nullptr] = ACTIONS(1322), - [sym_comment] = ACTIONS(5), - }, - [209] = { - [sym_identifier] = ACTIONS(1326), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1326), - [aux_sym_preproc_def_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), - [sym_preproc_directive] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym___extension__] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym___attribute__] = ACTIONS(1326), - [anon_sym___scanf] = ACTIONS(1326), - [anon_sym___printf] = ACTIONS(1326), - [anon_sym___read_mostly] = ACTIONS(1326), - [anon_sym___must_hold] = ACTIONS(1326), - [anon_sym___ro_after_init] = ACTIONS(1326), - [anon_sym___noreturn] = ACTIONS(1326), - [anon_sym___cold] = ACTIONS(1326), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym___init] = ACTIONS(1326), - [anon_sym___exit] = ACTIONS(1326), - [anon_sym___cdecl] = ACTIONS(1326), - [anon_sym___clrcall] = ACTIONS(1326), - [anon_sym___stdcall] = ACTIONS(1326), - [anon_sym___fastcall] = ACTIONS(1326), - [anon_sym___thiscall] = ACTIONS(1326), - [anon_sym___vectorcall] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_RBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), - [anon_sym_short] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_auto] = ACTIONS(1326), - [anon_sym_register] = ACTIONS(1326), - [anon_sym_inline] = ACTIONS(1326), - [anon_sym___inline] = ACTIONS(1326), - [anon_sym___inline__] = ACTIONS(1326), - [anon_sym___forceinline] = ACTIONS(1326), - [anon_sym_thread_local] = ACTIONS(1326), - [anon_sym___thread] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_constexpr] = ACTIONS(1326), - [anon_sym_volatile] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(1326), - [anon_sym___restrict__] = ACTIONS(1326), - [anon_sym__Atomic] = ACTIONS(1326), - [anon_sym__Noreturn] = ACTIONS(1326), - [anon_sym_noreturn] = ACTIONS(1326), - [anon_sym_alignas] = ACTIONS(1326), - [anon_sym__Alignas] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_goto] = ACTIONS(1326), - [anon_sym___try] = ACTIONS(1326), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_sizeof] = ACTIONS(1326), - [anon_sym___alignof__] = ACTIONS(1326), - [anon_sym___alignof] = ACTIONS(1326), - [anon_sym__alignof] = ACTIONS(1326), - [anon_sym_alignof] = ACTIONS(1326), - [anon_sym__Alignof] = ACTIONS(1326), - [anon_sym_offsetof] = ACTIONS(1326), - [anon_sym__Generic] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1326), - [anon_sym___asm__] = ACTIONS(1326), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_L_SQUOTE] = ACTIONS(1328), - [anon_sym_u_SQUOTE] = ACTIONS(1328), - [anon_sym_U_SQUOTE] = ACTIONS(1328), - [anon_sym_u8_SQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_L_DQUOTE] = ACTIONS(1328), - [anon_sym_u_DQUOTE] = ACTIONS(1328), - [anon_sym_U_DQUOTE] = ACTIONS(1328), - [anon_sym_u8_DQUOTE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_true] = ACTIONS(1326), - [sym_false] = ACTIONS(1326), - [anon_sym_NULL] = ACTIONS(1326), - [anon_sym_nullptr] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1358), + [aux_sym_preproc_def_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___extension__] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym___scanf] = ACTIONS(1358), + [anon_sym___printf] = ACTIONS(1358), + [anon_sym___read_mostly] = ACTIONS(1358), + [anon_sym___must_hold] = ACTIONS(1358), + [anon_sym___ro_after_init] = ACTIONS(1358), + [anon_sym___noreturn] = ACTIONS(1358), + [anon_sym___cold] = ACTIONS(1358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), + [anon_sym___declspec] = ACTIONS(1358), + [anon_sym___init] = ACTIONS(1358), + [anon_sym___exit] = ACTIONS(1358), + [anon_sym___cdecl] = ACTIONS(1358), + [anon_sym___clrcall] = ACTIONS(1358), + [anon_sym___stdcall] = ACTIONS(1358), + [anon_sym___fastcall] = ACTIONS(1358), + [anon_sym___thiscall] = ACTIONS(1358), + [anon_sym___vectorcall] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1358), + [anon_sym___inline__] = ACTIONS(1358), + [anon_sym___forceinline] = ACTIONS(1358), + [anon_sym_thread_local] = ACTIONS(1358), + [anon_sym___thread] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_constexpr] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym___restrict__] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym__Noreturn] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_alignas] = ACTIONS(1358), + [anon_sym__Alignas] = ACTIONS(1358), + [sym_primitive_type] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym___try] = ACTIONS(1358), + [anon_sym___leave] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1358), + [anon_sym___alignof__] = ACTIONS(1358), + [anon_sym___alignof] = ACTIONS(1358), + [anon_sym__alignof] = ACTIONS(1358), + [anon_sym_alignof] = ACTIONS(1358), + [anon_sym__Alignof] = ACTIONS(1358), + [anon_sym_offsetof] = ACTIONS(1358), + [anon_sym__Generic] = ACTIONS(1358), + [anon_sym_asm] = ACTIONS(1358), + [anon_sym___asm__] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1360), + [anon_sym_u_SQUOTE] = ACTIONS(1360), + [anon_sym_U_SQUOTE] = ACTIONS(1360), + [anon_sym_u8_SQUOTE] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_L_DQUOTE] = ACTIONS(1360), + [anon_sym_u_DQUOTE] = ACTIONS(1360), + [anon_sym_U_DQUOTE] = ACTIONS(1360), + [anon_sym_u8_DQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [anon_sym_NULL] = ACTIONS(1358), + [anon_sym_nullptr] = ACTIONS(1358), [sym_comment] = ACTIONS(5), }, - [210] = { - [sym_identifier] = ACTIONS(1334), + [199] = { + [ts_builtin_sym_end] = ACTIONS(1348), + [sym_identifier] = ACTIONS(1346), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1334), - [aux_sym_preproc_def_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), - [sym_preproc_directive] = ACTIONS(1334), - [anon_sym_LPAREN2] = ACTIONS(1336), - [anon_sym_BANG] = ACTIONS(1336), - [anon_sym_TILDE] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym___extension__] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1334), - [anon_sym___attribute__] = ACTIONS(1334), - [anon_sym___scanf] = ACTIONS(1334), - [anon_sym___printf] = ACTIONS(1334), - [anon_sym___read_mostly] = ACTIONS(1334), - [anon_sym___must_hold] = ACTIONS(1334), - [anon_sym___ro_after_init] = ACTIONS(1334), - [anon_sym___noreturn] = ACTIONS(1334), - [anon_sym___cold] = ACTIONS(1334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), - [anon_sym___declspec] = ACTIONS(1334), - [anon_sym___init] = ACTIONS(1334), - [anon_sym___exit] = ACTIONS(1334), - [anon_sym___cdecl] = ACTIONS(1334), - [anon_sym___clrcall] = ACTIONS(1334), - [anon_sym___stdcall] = ACTIONS(1334), - [anon_sym___fastcall] = ACTIONS(1334), - [anon_sym___thiscall] = ACTIONS(1334), - [anon_sym___vectorcall] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_RBRACE] = ACTIONS(1336), - [anon_sym_signed] = ACTIONS(1334), - [anon_sym_unsigned] = ACTIONS(1334), - [anon_sym_long] = ACTIONS(1334), - [anon_sym_short] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1334), - [anon_sym_auto] = ACTIONS(1334), - [anon_sym_register] = ACTIONS(1334), - [anon_sym_inline] = ACTIONS(1334), - [anon_sym___inline] = ACTIONS(1334), - [anon_sym___inline__] = ACTIONS(1334), - [anon_sym___forceinline] = ACTIONS(1334), - [anon_sym_thread_local] = ACTIONS(1334), - [anon_sym___thread] = ACTIONS(1334), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_constexpr] = ACTIONS(1334), - [anon_sym_volatile] = ACTIONS(1334), - [anon_sym_restrict] = ACTIONS(1334), - [anon_sym___restrict__] = ACTIONS(1334), - [anon_sym__Atomic] = ACTIONS(1334), - [anon_sym__Noreturn] = ACTIONS(1334), - [anon_sym_noreturn] = ACTIONS(1334), - [anon_sym_alignas] = ACTIONS(1334), - [anon_sym__Alignas] = ACTIONS(1334), - [sym_primitive_type] = ACTIONS(1334), - [anon_sym_enum] = ACTIONS(1334), - [anon_sym_struct] = ACTIONS(1334), - [anon_sym_union] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_else] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_case] = ACTIONS(1334), - [anon_sym_default] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [anon_sym_do] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_goto] = ACTIONS(1334), - [anon_sym___try] = ACTIONS(1334), - [anon_sym___leave] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_sizeof] = ACTIONS(1334), - [anon_sym___alignof__] = ACTIONS(1334), - [anon_sym___alignof] = ACTIONS(1334), - [anon_sym__alignof] = ACTIONS(1334), - [anon_sym_alignof] = ACTIONS(1334), - [anon_sym__Alignof] = ACTIONS(1334), - [anon_sym_offsetof] = ACTIONS(1334), - [anon_sym__Generic] = ACTIONS(1334), - [anon_sym_asm] = ACTIONS(1334), - [anon_sym___asm__] = ACTIONS(1334), - [sym_number_literal] = ACTIONS(1336), - [anon_sym_L_SQUOTE] = ACTIONS(1336), - [anon_sym_u_SQUOTE] = ACTIONS(1336), - [anon_sym_U_SQUOTE] = ACTIONS(1336), - [anon_sym_u8_SQUOTE] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_L_DQUOTE] = ACTIONS(1336), - [anon_sym_u_DQUOTE] = ACTIONS(1336), - [anon_sym_U_DQUOTE] = ACTIONS(1336), - [anon_sym_u8_DQUOTE] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_true] = ACTIONS(1334), - [sym_false] = ACTIONS(1334), - [anon_sym_NULL] = ACTIONS(1334), - [anon_sym_nullptr] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1346), + [aux_sym_preproc_def_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym___scanf] = ACTIONS(1346), + [anon_sym___printf] = ACTIONS(1346), + [anon_sym___read_mostly] = ACTIONS(1346), + [anon_sym___must_hold] = ACTIONS(1346), + [anon_sym___ro_after_init] = ACTIONS(1346), + [anon_sym___noreturn] = ACTIONS(1346), + [anon_sym___cold] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym___init] = ACTIONS(1346), + [anon_sym___exit] = ACTIONS(1346), + [anon_sym___cdecl] = ACTIONS(1346), + [anon_sym___clrcall] = ACTIONS(1346), + [anon_sym___stdcall] = ACTIONS(1346), + [anon_sym___fastcall] = ACTIONS(1346), + [anon_sym___thiscall] = ACTIONS(1346), + [anon_sym___vectorcall] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [anon_sym_alignas] = ACTIONS(1346), + [anon_sym__Alignas] = ACTIONS(1346), + [sym_primitive_type] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_else] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym___try] = ACTIONS(1346), + [anon_sym___leave] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), [sym_comment] = ACTIONS(5), }, - [211] = { - [sym_identifier] = ACTIONS(1310), + [200] = { + [ts_builtin_sym_end] = ACTIONS(1376), + [sym_identifier] = ACTIONS(1374), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym___scanf] = ACTIONS(1310), - [anon_sym___printf] = ACTIONS(1310), - [anon_sym___read_mostly] = ACTIONS(1310), - [anon_sym___must_hold] = ACTIONS(1310), - [anon_sym___ro_after_init] = ACTIONS(1310), - [anon_sym___noreturn] = ACTIONS(1310), - [anon_sym___cold] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___init] = ACTIONS(1310), - [anon_sym___exit] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [anon_sym_alignas] = ACTIONS(1310), - [anon_sym__Alignas] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [aux_sym_preproc_include_token1] = ACTIONS(1374), + [aux_sym_preproc_def_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), + [sym_preproc_directive] = ACTIONS(1374), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym___extension__] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym___attribute__] = ACTIONS(1374), + [anon_sym___scanf] = ACTIONS(1374), + [anon_sym___printf] = ACTIONS(1374), + [anon_sym___read_mostly] = ACTIONS(1374), + [anon_sym___must_hold] = ACTIONS(1374), + [anon_sym___ro_after_init] = ACTIONS(1374), + [anon_sym___noreturn] = ACTIONS(1374), + [anon_sym___cold] = ACTIONS(1374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym___declspec] = ACTIONS(1374), + [anon_sym___init] = ACTIONS(1374), + [anon_sym___exit] = ACTIONS(1374), + [anon_sym___cdecl] = ACTIONS(1374), + [anon_sym___clrcall] = ACTIONS(1374), + [anon_sym___stdcall] = ACTIONS(1374), + [anon_sym___fastcall] = ACTIONS(1374), + [anon_sym___thiscall] = ACTIONS(1374), + [anon_sym___vectorcall] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_constexpr] = ACTIONS(1374), + [anon_sym_volatile] = ACTIONS(1374), + [anon_sym_restrict] = ACTIONS(1374), + [anon_sym___restrict__] = ACTIONS(1374), + [anon_sym__Atomic] = ACTIONS(1374), + [anon_sym__Noreturn] = ACTIONS(1374), + [anon_sym_noreturn] = ACTIONS(1374), + [anon_sym_alignas] = ACTIONS(1374), + [anon_sym__Alignas] = ACTIONS(1374), + [sym_primitive_type] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_switch] = ACTIONS(1374), + [anon_sym_case] = ACTIONS(1374), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_goto] = ACTIONS(1374), + [anon_sym___try] = ACTIONS(1374), + [anon_sym___leave] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = ACTIONS(1374), + [anon_sym_offsetof] = ACTIONS(1374), + [anon_sym__Generic] = ACTIONS(1374), + [anon_sym_asm] = ACTIONS(1374), + [anon_sym___asm__] = ACTIONS(1374), + [sym_number_literal] = ACTIONS(1376), + [anon_sym_L_SQUOTE] = ACTIONS(1376), + [anon_sym_u_SQUOTE] = ACTIONS(1376), + [anon_sym_U_SQUOTE] = ACTIONS(1376), + [anon_sym_u8_SQUOTE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_L_DQUOTE] = ACTIONS(1376), + [anon_sym_u_DQUOTE] = ACTIONS(1376), + [anon_sym_U_DQUOTE] = ACTIONS(1376), + [anon_sym_u8_DQUOTE] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [anon_sym_NULL] = ACTIONS(1374), + [anon_sym_nullptr] = ACTIONS(1374), [sym_comment] = ACTIONS(5), }, - [212] = { - [ts_builtin_sym_end] = ACTIONS(1344), - [sym_identifier] = ACTIONS(1342), + [201] = { + [sym_identifier] = ACTIONS(1362), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1342), - [aux_sym_preproc_def_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), - [sym_preproc_directive] = ACTIONS(1342), - [anon_sym_LPAREN2] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym___extension__] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym___attribute__] = ACTIONS(1342), - [anon_sym___scanf] = ACTIONS(1342), - [anon_sym___printf] = ACTIONS(1342), - [anon_sym___read_mostly] = ACTIONS(1342), - [anon_sym___must_hold] = ACTIONS(1342), - [anon_sym___ro_after_init] = ACTIONS(1342), - [anon_sym___noreturn] = ACTIONS(1342), - [anon_sym___cold] = ACTIONS(1342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), - [anon_sym___declspec] = ACTIONS(1342), - [anon_sym___init] = ACTIONS(1342), - [anon_sym___exit] = ACTIONS(1342), - [anon_sym___cdecl] = ACTIONS(1342), - [anon_sym___clrcall] = ACTIONS(1342), - [anon_sym___stdcall] = ACTIONS(1342), - [anon_sym___fastcall] = ACTIONS(1342), - [anon_sym___thiscall] = ACTIONS(1342), - [anon_sym___vectorcall] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_signed] = ACTIONS(1342), - [anon_sym_unsigned] = ACTIONS(1342), - [anon_sym_long] = ACTIONS(1342), - [anon_sym_short] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_auto] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_inline] = ACTIONS(1342), - [anon_sym___inline] = ACTIONS(1342), - [anon_sym___inline__] = ACTIONS(1342), - [anon_sym___forceinline] = ACTIONS(1342), - [anon_sym_thread_local] = ACTIONS(1342), - [anon_sym___thread] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_constexpr] = ACTIONS(1342), - [anon_sym_volatile] = ACTIONS(1342), - [anon_sym_restrict] = ACTIONS(1342), - [anon_sym___restrict__] = ACTIONS(1342), - [anon_sym__Atomic] = ACTIONS(1342), - [anon_sym__Noreturn] = ACTIONS(1342), - [anon_sym_noreturn] = ACTIONS(1342), - [anon_sym_alignas] = ACTIONS(1342), - [anon_sym__Alignas] = ACTIONS(1342), - [sym_primitive_type] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_goto] = ACTIONS(1342), - [anon_sym___try] = ACTIONS(1342), - [anon_sym___leave] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_sizeof] = ACTIONS(1342), - [anon_sym___alignof__] = ACTIONS(1342), - [anon_sym___alignof] = ACTIONS(1342), - [anon_sym__alignof] = ACTIONS(1342), - [anon_sym_alignof] = ACTIONS(1342), - [anon_sym__Alignof] = ACTIONS(1342), - [anon_sym_offsetof] = ACTIONS(1342), - [anon_sym__Generic] = ACTIONS(1342), - [anon_sym_asm] = ACTIONS(1342), - [anon_sym___asm__] = ACTIONS(1342), - [sym_number_literal] = ACTIONS(1344), - [anon_sym_L_SQUOTE] = ACTIONS(1344), - [anon_sym_u_SQUOTE] = ACTIONS(1344), - [anon_sym_U_SQUOTE] = ACTIONS(1344), - [anon_sym_u8_SQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_L_DQUOTE] = ACTIONS(1344), - [anon_sym_u_DQUOTE] = ACTIONS(1344), - [anon_sym_U_DQUOTE] = ACTIONS(1344), - [anon_sym_u8_DQUOTE] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [anon_sym_NULL] = ACTIONS(1342), - [anon_sym_nullptr] = ACTIONS(1342), + [aux_sym_preproc_include_token1] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token2] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), + [sym_preproc_directive] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym___extension__] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1362), + [anon_sym___scanf] = ACTIONS(1362), + [anon_sym___printf] = ACTIONS(1362), + [anon_sym___read_mostly] = ACTIONS(1362), + [anon_sym___must_hold] = ACTIONS(1362), + [anon_sym___ro_after_init] = ACTIONS(1362), + [anon_sym___noreturn] = ACTIONS(1362), + [anon_sym___cold] = ACTIONS(1362), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), + [anon_sym___declspec] = ACTIONS(1362), + [anon_sym___init] = ACTIONS(1362), + [anon_sym___exit] = ACTIONS(1362), + [anon_sym___cdecl] = ACTIONS(1362), + [anon_sym___clrcall] = ACTIONS(1362), + [anon_sym___stdcall] = ACTIONS(1362), + [anon_sym___fastcall] = ACTIONS(1362), + [anon_sym___thiscall] = ACTIONS(1362), + [anon_sym___vectorcall] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym___inline] = ACTIONS(1362), + [anon_sym___inline__] = ACTIONS(1362), + [anon_sym___forceinline] = ACTIONS(1362), + [anon_sym_thread_local] = ACTIONS(1362), + [anon_sym___thread] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_constexpr] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym___restrict__] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym__Noreturn] = ACTIONS(1362), + [anon_sym_noreturn] = ACTIONS(1362), + [anon_sym_alignas] = ACTIONS(1362), + [anon_sym__Alignas] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_else] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym___try] = ACTIONS(1362), + [anon_sym___leave] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1362), + [anon_sym___alignof__] = ACTIONS(1362), + [anon_sym___alignof] = ACTIONS(1362), + [anon_sym__alignof] = ACTIONS(1362), + [anon_sym_alignof] = ACTIONS(1362), + [anon_sym__Alignof] = ACTIONS(1362), + [anon_sym_offsetof] = ACTIONS(1362), + [anon_sym__Generic] = ACTIONS(1362), + [anon_sym_asm] = ACTIONS(1362), + [anon_sym___asm__] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1364), + [anon_sym_u_SQUOTE] = ACTIONS(1364), + [anon_sym_U_SQUOTE] = ACTIONS(1364), + [anon_sym_u8_SQUOTE] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_L_DQUOTE] = ACTIONS(1364), + [anon_sym_u_DQUOTE] = ACTIONS(1364), + [anon_sym_U_DQUOTE] = ACTIONS(1364), + [anon_sym_u8_DQUOTE] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [anon_sym_NULL] = ACTIONS(1362), + [anon_sym_nullptr] = ACTIONS(1362), [sym_comment] = ACTIONS(5), }, - [213] = { - [sym_identifier] = ACTIONS(1338), + [202] = { + [sym_identifier] = ACTIONS(1366), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym___extension__] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym___attribute__] = ACTIONS(1338), - [anon_sym___scanf] = ACTIONS(1338), - [anon_sym___printf] = ACTIONS(1338), - [anon_sym___read_mostly] = ACTIONS(1338), - [anon_sym___must_hold] = ACTIONS(1338), - [anon_sym___ro_after_init] = ACTIONS(1338), - [anon_sym___noreturn] = ACTIONS(1338), - [anon_sym___cold] = ACTIONS(1338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), - [anon_sym___declspec] = ACTIONS(1338), - [anon_sym___init] = ACTIONS(1338), - [anon_sym___exit] = ACTIONS(1338), - [anon_sym___cdecl] = ACTIONS(1338), - [anon_sym___clrcall] = ACTIONS(1338), - [anon_sym___stdcall] = ACTIONS(1338), - [anon_sym___fastcall] = ACTIONS(1338), - [anon_sym___thiscall] = ACTIONS(1338), - [anon_sym___vectorcall] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_long] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym___inline] = ACTIONS(1338), - [anon_sym___inline__] = ACTIONS(1338), - [anon_sym___forceinline] = ACTIONS(1338), - [anon_sym_thread_local] = ACTIONS(1338), - [anon_sym___thread] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_constexpr] = ACTIONS(1338), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym___restrict__] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [anon_sym__Noreturn] = ACTIONS(1338), - [anon_sym_noreturn] = ACTIONS(1338), - [anon_sym_alignas] = ACTIONS(1338), - [anon_sym__Alignas] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_case] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [anon_sym___try] = ACTIONS(1338), - [anon_sym___leave] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym___alignof__] = ACTIONS(1338), - [anon_sym___alignof] = ACTIONS(1338), - [anon_sym__alignof] = ACTIONS(1338), - [anon_sym_alignof] = ACTIONS(1338), - [anon_sym__Alignof] = ACTIONS(1338), - [anon_sym_offsetof] = ACTIONS(1338), - [anon_sym__Generic] = ACTIONS(1338), - [anon_sym_asm] = ACTIONS(1338), - [anon_sym___asm__] = ACTIONS(1338), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_L_SQUOTE] = ACTIONS(1340), - [anon_sym_u_SQUOTE] = ACTIONS(1340), - [anon_sym_U_SQUOTE] = ACTIONS(1340), - [anon_sym_u8_SQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_L_DQUOTE] = ACTIONS(1340), - [anon_sym_u_DQUOTE] = ACTIONS(1340), - [anon_sym_U_DQUOTE] = ACTIONS(1340), - [anon_sym_u8_DQUOTE] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_true] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_NULL] = ACTIONS(1338), - [anon_sym_nullptr] = ACTIONS(1338), - [sym_comment] = ACTIONS(5), - }, - [214] = { - [sym_identifier] = ACTIONS(1322), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1322), - [aux_sym_preproc_def_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token2] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_LPAREN2] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym___extension__] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym___attribute__] = ACTIONS(1322), - [anon_sym___scanf] = ACTIONS(1322), - [anon_sym___printf] = ACTIONS(1322), - [anon_sym___read_mostly] = ACTIONS(1322), - [anon_sym___must_hold] = ACTIONS(1322), - [anon_sym___ro_after_init] = ACTIONS(1322), - [anon_sym___noreturn] = ACTIONS(1322), - [anon_sym___cold] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), - [anon_sym___declspec] = ACTIONS(1322), - [anon_sym___init] = ACTIONS(1322), - [anon_sym___exit] = ACTIONS(1322), - [anon_sym___cdecl] = ACTIONS(1322), - [anon_sym___clrcall] = ACTIONS(1322), - [anon_sym___stdcall] = ACTIONS(1322), - [anon_sym___fastcall] = ACTIONS(1322), - [anon_sym___thiscall] = ACTIONS(1322), - [anon_sym___vectorcall] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1322), - [anon_sym_unsigned] = ACTIONS(1322), - [anon_sym_long] = ACTIONS(1322), - [anon_sym_short] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_auto] = ACTIONS(1322), - [anon_sym_register] = ACTIONS(1322), - [anon_sym_inline] = ACTIONS(1322), - [anon_sym___inline] = ACTIONS(1322), - [anon_sym___inline__] = ACTIONS(1322), - [anon_sym___forceinline] = ACTIONS(1322), - [anon_sym_thread_local] = ACTIONS(1322), - [anon_sym___thread] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_constexpr] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(1322), - [anon_sym_restrict] = ACTIONS(1322), - [anon_sym___restrict__] = ACTIONS(1322), - [anon_sym__Atomic] = ACTIONS(1322), - [anon_sym__Noreturn] = ACTIONS(1322), - [anon_sym_noreturn] = ACTIONS(1322), - [anon_sym_alignas] = ACTIONS(1322), - [anon_sym__Alignas] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_goto] = ACTIONS(1322), - [anon_sym___try] = ACTIONS(1322), - [anon_sym___leave] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_sizeof] = ACTIONS(1322), - [anon_sym___alignof__] = ACTIONS(1322), - [anon_sym___alignof] = ACTIONS(1322), - [anon_sym__alignof] = ACTIONS(1322), - [anon_sym_alignof] = ACTIONS(1322), - [anon_sym__Alignof] = ACTIONS(1322), - [anon_sym_offsetof] = ACTIONS(1322), - [anon_sym__Generic] = ACTIONS(1322), - [anon_sym_asm] = ACTIONS(1322), - [anon_sym___asm__] = ACTIONS(1322), - [sym_number_literal] = ACTIONS(1324), - [anon_sym_L_SQUOTE] = ACTIONS(1324), - [anon_sym_u_SQUOTE] = ACTIONS(1324), - [anon_sym_U_SQUOTE] = ACTIONS(1324), - [anon_sym_u8_SQUOTE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_L_DQUOTE] = ACTIONS(1324), - [anon_sym_u_DQUOTE] = ACTIONS(1324), - [anon_sym_U_DQUOTE] = ACTIONS(1324), - [anon_sym_u8_DQUOTE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [anon_sym_NULL] = ACTIONS(1322), - [anon_sym_nullptr] = ACTIONS(1322), + [aux_sym_preproc_include_token1] = ACTIONS(1366), + [aux_sym_preproc_def_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token2] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), + [sym_preproc_directive] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym___scanf] = ACTIONS(1366), + [anon_sym___printf] = ACTIONS(1366), + [anon_sym___read_mostly] = ACTIONS(1366), + [anon_sym___must_hold] = ACTIONS(1366), + [anon_sym___ro_after_init] = ACTIONS(1366), + [anon_sym___noreturn] = ACTIONS(1366), + [anon_sym___cold] = ACTIONS(1366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), + [anon_sym___declspec] = ACTIONS(1366), + [anon_sym___init] = ACTIONS(1366), + [anon_sym___exit] = ACTIONS(1366), + [anon_sym___cdecl] = ACTIONS(1366), + [anon_sym___clrcall] = ACTIONS(1366), + [anon_sym___stdcall] = ACTIONS(1366), + [anon_sym___fastcall] = ACTIONS(1366), + [anon_sym___thiscall] = ACTIONS(1366), + [anon_sym___vectorcall] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_signed] = ACTIONS(1366), + [anon_sym_unsigned] = ACTIONS(1366), + [anon_sym_long] = ACTIONS(1366), + [anon_sym_short] = ACTIONS(1366), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_auto] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1366), + [anon_sym_inline] = ACTIONS(1366), + [anon_sym___inline] = ACTIONS(1366), + [anon_sym___inline__] = ACTIONS(1366), + [anon_sym___forceinline] = ACTIONS(1366), + [anon_sym_thread_local] = ACTIONS(1366), + [anon_sym___thread] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_constexpr] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1366), + [anon_sym_restrict] = ACTIONS(1366), + [anon_sym___restrict__] = ACTIONS(1366), + [anon_sym__Atomic] = ACTIONS(1366), + [anon_sym__Noreturn] = ACTIONS(1366), + [anon_sym_noreturn] = ACTIONS(1366), + [anon_sym_alignas] = ACTIONS(1366), + [anon_sym__Alignas] = ACTIONS(1366), + [sym_primitive_type] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_else] = ACTIONS(1366), + [anon_sym_switch] = ACTIONS(1366), + [anon_sym_case] = ACTIONS(1366), + [anon_sym_default] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_goto] = ACTIONS(1366), + [anon_sym___try] = ACTIONS(1366), + [anon_sym___leave] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_sizeof] = ACTIONS(1366), + [anon_sym___alignof__] = ACTIONS(1366), + [anon_sym___alignof] = ACTIONS(1366), + [anon_sym__alignof] = ACTIONS(1366), + [anon_sym_alignof] = ACTIONS(1366), + [anon_sym__Alignof] = ACTIONS(1366), + [anon_sym_offsetof] = ACTIONS(1366), + [anon_sym__Generic] = ACTIONS(1366), + [anon_sym_asm] = ACTIONS(1366), + [anon_sym___asm__] = ACTIONS(1366), + [sym_number_literal] = ACTIONS(1368), + [anon_sym_L_SQUOTE] = ACTIONS(1368), + [anon_sym_u_SQUOTE] = ACTIONS(1368), + [anon_sym_U_SQUOTE] = ACTIONS(1368), + [anon_sym_u8_SQUOTE] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_L_DQUOTE] = ACTIONS(1368), + [anon_sym_u_DQUOTE] = ACTIONS(1368), + [anon_sym_U_DQUOTE] = ACTIONS(1368), + [anon_sym_u8_DQUOTE] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [anon_sym_NULL] = ACTIONS(1366), + [anon_sym_nullptr] = ACTIONS(1366), [sym_comment] = ACTIONS(5), }, - [215] = { - [sym_identifier] = ACTIONS(1326), + [203] = { + [ts_builtin_sym_end] = ACTIONS(1380), + [sym_identifier] = ACTIONS(1378), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1326), - [aux_sym_preproc_def_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token2] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), - [sym_preproc_directive] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym___extension__] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym___attribute__] = ACTIONS(1326), - [anon_sym___scanf] = ACTIONS(1326), - [anon_sym___printf] = ACTIONS(1326), - [anon_sym___read_mostly] = ACTIONS(1326), - [anon_sym___must_hold] = ACTIONS(1326), - [anon_sym___ro_after_init] = ACTIONS(1326), - [anon_sym___noreturn] = ACTIONS(1326), - [anon_sym___cold] = ACTIONS(1326), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym___init] = ACTIONS(1326), - [anon_sym___exit] = ACTIONS(1326), - [anon_sym___cdecl] = ACTIONS(1326), - [anon_sym___clrcall] = ACTIONS(1326), - [anon_sym___stdcall] = ACTIONS(1326), - [anon_sym___fastcall] = ACTIONS(1326), - [anon_sym___thiscall] = ACTIONS(1326), - [anon_sym___vectorcall] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), - [anon_sym_short] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_auto] = ACTIONS(1326), - [anon_sym_register] = ACTIONS(1326), - [anon_sym_inline] = ACTIONS(1326), - [anon_sym___inline] = ACTIONS(1326), - [anon_sym___inline__] = ACTIONS(1326), - [anon_sym___forceinline] = ACTIONS(1326), - [anon_sym_thread_local] = ACTIONS(1326), - [anon_sym___thread] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_constexpr] = ACTIONS(1326), - [anon_sym_volatile] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(1326), - [anon_sym___restrict__] = ACTIONS(1326), - [anon_sym__Atomic] = ACTIONS(1326), - [anon_sym__Noreturn] = ACTIONS(1326), - [anon_sym_noreturn] = ACTIONS(1326), - [anon_sym_alignas] = ACTIONS(1326), - [anon_sym__Alignas] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_goto] = ACTIONS(1326), - [anon_sym___try] = ACTIONS(1326), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_sizeof] = ACTIONS(1326), - [anon_sym___alignof__] = ACTIONS(1326), - [anon_sym___alignof] = ACTIONS(1326), - [anon_sym__alignof] = ACTIONS(1326), - [anon_sym_alignof] = ACTIONS(1326), - [anon_sym__Alignof] = ACTIONS(1326), - [anon_sym_offsetof] = ACTIONS(1326), - [anon_sym__Generic] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1326), - [anon_sym___asm__] = ACTIONS(1326), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_L_SQUOTE] = ACTIONS(1328), - [anon_sym_u_SQUOTE] = ACTIONS(1328), - [anon_sym_U_SQUOTE] = ACTIONS(1328), - [anon_sym_u8_SQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_L_DQUOTE] = ACTIONS(1328), - [anon_sym_u_DQUOTE] = ACTIONS(1328), - [anon_sym_U_DQUOTE] = ACTIONS(1328), - [anon_sym_u8_DQUOTE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_true] = ACTIONS(1326), - [sym_false] = ACTIONS(1326), - [anon_sym_NULL] = ACTIONS(1326), - [anon_sym_nullptr] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym___scanf] = ACTIONS(1378), + [anon_sym___printf] = ACTIONS(1378), + [anon_sym___read_mostly] = ACTIONS(1378), + [anon_sym___must_hold] = ACTIONS(1378), + [anon_sym___ro_after_init] = ACTIONS(1378), + [anon_sym___noreturn] = ACTIONS(1378), + [anon_sym___cold] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___init] = ACTIONS(1378), + [anon_sym___exit] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [anon_sym_alignas] = ACTIONS(1378), + [anon_sym__Alignas] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(5), }, - [216] = { - [sym_identifier] = ACTIONS(1334), + [204] = { + [ts_builtin_sym_end] = ACTIONS(1376), + [sym_identifier] = ACTIONS(1374), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1334), - [aux_sym_preproc_def_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), - [sym_preproc_directive] = ACTIONS(1334), - [anon_sym_LPAREN2] = ACTIONS(1336), - [anon_sym_BANG] = ACTIONS(1336), - [anon_sym_TILDE] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym___extension__] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1334), - [anon_sym___attribute__] = ACTIONS(1334), - [anon_sym___scanf] = ACTIONS(1334), - [anon_sym___printf] = ACTIONS(1334), - [anon_sym___read_mostly] = ACTIONS(1334), - [anon_sym___must_hold] = ACTIONS(1334), - [anon_sym___ro_after_init] = ACTIONS(1334), - [anon_sym___noreturn] = ACTIONS(1334), - [anon_sym___cold] = ACTIONS(1334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), - [anon_sym___declspec] = ACTIONS(1334), - [anon_sym___init] = ACTIONS(1334), - [anon_sym___exit] = ACTIONS(1334), - [anon_sym___cdecl] = ACTIONS(1334), - [anon_sym___clrcall] = ACTIONS(1334), - [anon_sym___stdcall] = ACTIONS(1334), - [anon_sym___fastcall] = ACTIONS(1334), - [anon_sym___thiscall] = ACTIONS(1334), - [anon_sym___vectorcall] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_signed] = ACTIONS(1334), - [anon_sym_unsigned] = ACTIONS(1334), - [anon_sym_long] = ACTIONS(1334), - [anon_sym_short] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1334), - [anon_sym_auto] = ACTIONS(1334), - [anon_sym_register] = ACTIONS(1334), - [anon_sym_inline] = ACTIONS(1334), - [anon_sym___inline] = ACTIONS(1334), - [anon_sym___inline__] = ACTIONS(1334), - [anon_sym___forceinline] = ACTIONS(1334), - [anon_sym_thread_local] = ACTIONS(1334), - [anon_sym___thread] = ACTIONS(1334), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_constexpr] = ACTIONS(1334), - [anon_sym_volatile] = ACTIONS(1334), - [anon_sym_restrict] = ACTIONS(1334), - [anon_sym___restrict__] = ACTIONS(1334), - [anon_sym__Atomic] = ACTIONS(1334), - [anon_sym__Noreturn] = ACTIONS(1334), - [anon_sym_noreturn] = ACTIONS(1334), - [anon_sym_alignas] = ACTIONS(1334), - [anon_sym__Alignas] = ACTIONS(1334), - [sym_primitive_type] = ACTIONS(1334), - [anon_sym_enum] = ACTIONS(1334), - [anon_sym_struct] = ACTIONS(1334), - [anon_sym_union] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_else] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_case] = ACTIONS(1334), - [anon_sym_default] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [anon_sym_do] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_goto] = ACTIONS(1334), - [anon_sym___try] = ACTIONS(1334), - [anon_sym___leave] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_sizeof] = ACTIONS(1334), - [anon_sym___alignof__] = ACTIONS(1334), - [anon_sym___alignof] = ACTIONS(1334), - [anon_sym__alignof] = ACTIONS(1334), - [anon_sym_alignof] = ACTIONS(1334), - [anon_sym__Alignof] = ACTIONS(1334), - [anon_sym_offsetof] = ACTIONS(1334), - [anon_sym__Generic] = ACTIONS(1334), - [anon_sym_asm] = ACTIONS(1334), - [anon_sym___asm__] = ACTIONS(1334), - [sym_number_literal] = ACTIONS(1336), - [anon_sym_L_SQUOTE] = ACTIONS(1336), - [anon_sym_u_SQUOTE] = ACTIONS(1336), - [anon_sym_U_SQUOTE] = ACTIONS(1336), - [anon_sym_u8_SQUOTE] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_L_DQUOTE] = ACTIONS(1336), - [anon_sym_u_DQUOTE] = ACTIONS(1336), - [anon_sym_U_DQUOTE] = ACTIONS(1336), - [anon_sym_u8_DQUOTE] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_true] = ACTIONS(1334), - [sym_false] = ACTIONS(1334), - [anon_sym_NULL] = ACTIONS(1334), - [anon_sym_nullptr] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1374), + [aux_sym_preproc_def_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), + [sym_preproc_directive] = ACTIONS(1374), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym___extension__] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym___attribute__] = ACTIONS(1374), + [anon_sym___scanf] = ACTIONS(1374), + [anon_sym___printf] = ACTIONS(1374), + [anon_sym___read_mostly] = ACTIONS(1374), + [anon_sym___must_hold] = ACTIONS(1374), + [anon_sym___ro_after_init] = ACTIONS(1374), + [anon_sym___noreturn] = ACTIONS(1374), + [anon_sym___cold] = ACTIONS(1374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym___declspec] = ACTIONS(1374), + [anon_sym___init] = ACTIONS(1374), + [anon_sym___exit] = ACTIONS(1374), + [anon_sym___cdecl] = ACTIONS(1374), + [anon_sym___clrcall] = ACTIONS(1374), + [anon_sym___stdcall] = ACTIONS(1374), + [anon_sym___fastcall] = ACTIONS(1374), + [anon_sym___thiscall] = ACTIONS(1374), + [anon_sym___vectorcall] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_constexpr] = ACTIONS(1374), + [anon_sym_volatile] = ACTIONS(1374), + [anon_sym_restrict] = ACTIONS(1374), + [anon_sym___restrict__] = ACTIONS(1374), + [anon_sym__Atomic] = ACTIONS(1374), + [anon_sym__Noreturn] = ACTIONS(1374), + [anon_sym_noreturn] = ACTIONS(1374), + [anon_sym_alignas] = ACTIONS(1374), + [anon_sym__Alignas] = ACTIONS(1374), + [sym_primitive_type] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_switch] = ACTIONS(1374), + [anon_sym_case] = ACTIONS(1374), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_goto] = ACTIONS(1374), + [anon_sym___try] = ACTIONS(1374), + [anon_sym___leave] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = ACTIONS(1374), + [anon_sym_offsetof] = ACTIONS(1374), + [anon_sym__Generic] = ACTIONS(1374), + [anon_sym_asm] = ACTIONS(1374), + [anon_sym___asm__] = ACTIONS(1374), + [sym_number_literal] = ACTIONS(1376), + [anon_sym_L_SQUOTE] = ACTIONS(1376), + [anon_sym_u_SQUOTE] = ACTIONS(1376), + [anon_sym_U_SQUOTE] = ACTIONS(1376), + [anon_sym_u8_SQUOTE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_L_DQUOTE] = ACTIONS(1376), + [anon_sym_u_DQUOTE] = ACTIONS(1376), + [anon_sym_U_DQUOTE] = ACTIONS(1376), + [anon_sym_u8_DQUOTE] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [anon_sym_NULL] = ACTIONS(1374), + [anon_sym_nullptr] = ACTIONS(1374), [sym_comment] = ACTIONS(5), }, - [217] = { - [ts_builtin_sym_end] = ACTIONS(1352), - [sym_identifier] = ACTIONS(1350), + [205] = { + [ts_builtin_sym_end] = ACTIONS(1376), + [sym_identifier] = ACTIONS(1374), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1350), - [aux_sym_preproc_def_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token1] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), - [sym_preproc_directive] = ACTIONS(1350), - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym___extension__] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym___attribute__] = ACTIONS(1350), - [anon_sym___scanf] = ACTIONS(1350), - [anon_sym___printf] = ACTIONS(1350), - [anon_sym___read_mostly] = ACTIONS(1350), - [anon_sym___must_hold] = ACTIONS(1350), - [anon_sym___ro_after_init] = ACTIONS(1350), - [anon_sym___noreturn] = ACTIONS(1350), - [anon_sym___cold] = ACTIONS(1350), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), - [anon_sym___declspec] = ACTIONS(1350), - [anon_sym___init] = ACTIONS(1350), - [anon_sym___exit] = ACTIONS(1350), - [anon_sym___cdecl] = ACTIONS(1350), - [anon_sym___clrcall] = ACTIONS(1350), - [anon_sym___stdcall] = ACTIONS(1350), - [anon_sym___fastcall] = ACTIONS(1350), - [anon_sym___thiscall] = ACTIONS(1350), - [anon_sym___vectorcall] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_signed] = ACTIONS(1350), - [anon_sym_unsigned] = ACTIONS(1350), - [anon_sym_long] = ACTIONS(1350), - [anon_sym_short] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_auto] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_inline] = ACTIONS(1350), - [anon_sym___inline] = ACTIONS(1350), - [anon_sym___inline__] = ACTIONS(1350), - [anon_sym___forceinline] = ACTIONS(1350), - [anon_sym_thread_local] = ACTIONS(1350), - [anon_sym___thread] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_constexpr] = ACTIONS(1350), - [anon_sym_volatile] = ACTIONS(1350), - [anon_sym_restrict] = ACTIONS(1350), - [anon_sym___restrict__] = ACTIONS(1350), - [anon_sym__Atomic] = ACTIONS(1350), - [anon_sym__Noreturn] = ACTIONS(1350), - [anon_sym_noreturn] = ACTIONS(1350), - [anon_sym_alignas] = ACTIONS(1350), - [anon_sym__Alignas] = ACTIONS(1350), - [sym_primitive_type] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_switch] = ACTIONS(1350), - [anon_sym_case] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_goto] = ACTIONS(1350), - [anon_sym___try] = ACTIONS(1350), - [anon_sym___leave] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_sizeof] = ACTIONS(1350), - [anon_sym___alignof__] = ACTIONS(1350), - [anon_sym___alignof] = ACTIONS(1350), - [anon_sym__alignof] = ACTIONS(1350), - [anon_sym_alignof] = ACTIONS(1350), - [anon_sym__Alignof] = ACTIONS(1350), - [anon_sym_offsetof] = ACTIONS(1350), - [anon_sym__Generic] = ACTIONS(1350), - [anon_sym_asm] = ACTIONS(1350), - [anon_sym___asm__] = ACTIONS(1350), - [sym_number_literal] = ACTIONS(1352), - [anon_sym_L_SQUOTE] = ACTIONS(1352), - [anon_sym_u_SQUOTE] = ACTIONS(1352), - [anon_sym_U_SQUOTE] = ACTIONS(1352), - [anon_sym_u8_SQUOTE] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_L_DQUOTE] = ACTIONS(1352), - [anon_sym_u_DQUOTE] = ACTIONS(1352), - [anon_sym_U_DQUOTE] = ACTIONS(1352), - [anon_sym_u8_DQUOTE] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_true] = ACTIONS(1350), - [sym_false] = ACTIONS(1350), - [anon_sym_NULL] = ACTIONS(1350), - [anon_sym_nullptr] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1374), + [aux_sym_preproc_def_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), + [sym_preproc_directive] = ACTIONS(1374), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym___extension__] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym___attribute__] = ACTIONS(1374), + [anon_sym___scanf] = ACTIONS(1374), + [anon_sym___printf] = ACTIONS(1374), + [anon_sym___read_mostly] = ACTIONS(1374), + [anon_sym___must_hold] = ACTIONS(1374), + [anon_sym___ro_after_init] = ACTIONS(1374), + [anon_sym___noreturn] = ACTIONS(1374), + [anon_sym___cold] = ACTIONS(1374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym___declspec] = ACTIONS(1374), + [anon_sym___init] = ACTIONS(1374), + [anon_sym___exit] = ACTIONS(1374), + [anon_sym___cdecl] = ACTIONS(1374), + [anon_sym___clrcall] = ACTIONS(1374), + [anon_sym___stdcall] = ACTIONS(1374), + [anon_sym___fastcall] = ACTIONS(1374), + [anon_sym___thiscall] = ACTIONS(1374), + [anon_sym___vectorcall] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_constexpr] = ACTIONS(1374), + [anon_sym_volatile] = ACTIONS(1374), + [anon_sym_restrict] = ACTIONS(1374), + [anon_sym___restrict__] = ACTIONS(1374), + [anon_sym__Atomic] = ACTIONS(1374), + [anon_sym__Noreturn] = ACTIONS(1374), + [anon_sym_noreturn] = ACTIONS(1374), + [anon_sym_alignas] = ACTIONS(1374), + [anon_sym__Alignas] = ACTIONS(1374), + [sym_primitive_type] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_switch] = ACTIONS(1374), + [anon_sym_case] = ACTIONS(1374), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_goto] = ACTIONS(1374), + [anon_sym___try] = ACTIONS(1374), + [anon_sym___leave] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = ACTIONS(1374), + [anon_sym_offsetof] = ACTIONS(1374), + [anon_sym__Generic] = ACTIONS(1374), + [anon_sym_asm] = ACTIONS(1374), + [anon_sym___asm__] = ACTIONS(1374), + [sym_number_literal] = ACTIONS(1376), + [anon_sym_L_SQUOTE] = ACTIONS(1376), + [anon_sym_u_SQUOTE] = ACTIONS(1376), + [anon_sym_U_SQUOTE] = ACTIONS(1376), + [anon_sym_u8_SQUOTE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_L_DQUOTE] = ACTIONS(1376), + [anon_sym_u_DQUOTE] = ACTIONS(1376), + [anon_sym_U_DQUOTE] = ACTIONS(1376), + [anon_sym_u8_DQUOTE] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [anon_sym_NULL] = ACTIONS(1374), + [anon_sym_nullptr] = ACTIONS(1374), [sym_comment] = ACTIONS(5), }, - [218] = { - [sym_identifier] = ACTIONS(1226), + [206] = { + [ts_builtin_sym_end] = ACTIONS(1380), + [sym_identifier] = ACTIONS(1378), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1226), - [aux_sym_preproc_def_token1] = ACTIONS(1226), - [aux_sym_preproc_if_token1] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1226), - [sym_preproc_directive] = ACTIONS(1226), - [anon_sym_LPAREN2] = ACTIONS(1228), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1226), - [anon_sym_PLUS] = ACTIONS(1226), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym___extension__] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1226), - [anon_sym_extern] = ACTIONS(1226), - [anon_sym___attribute__] = ACTIONS(1226), - [anon_sym___scanf] = ACTIONS(1226), - [anon_sym___printf] = ACTIONS(1226), - [anon_sym___read_mostly] = ACTIONS(1226), - [anon_sym___must_hold] = ACTIONS(1226), - [anon_sym___ro_after_init] = ACTIONS(1226), - [anon_sym___noreturn] = ACTIONS(1226), - [anon_sym___cold] = ACTIONS(1226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1228), - [anon_sym___declspec] = ACTIONS(1226), - [anon_sym___init] = ACTIONS(1226), - [anon_sym___exit] = ACTIONS(1226), - [anon_sym___cdecl] = ACTIONS(1226), - [anon_sym___clrcall] = ACTIONS(1226), - [anon_sym___stdcall] = ACTIONS(1226), - [anon_sym___fastcall] = ACTIONS(1226), - [anon_sym___thiscall] = ACTIONS(1226), - [anon_sym___vectorcall] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_RBRACE] = ACTIONS(1228), - [anon_sym_signed] = ACTIONS(1226), - [anon_sym_unsigned] = ACTIONS(1226), - [anon_sym_long] = ACTIONS(1226), - [anon_sym_short] = ACTIONS(1226), - [anon_sym_static] = ACTIONS(1226), - [anon_sym_auto] = ACTIONS(1226), - [anon_sym_register] = ACTIONS(1226), - [anon_sym_inline] = ACTIONS(1226), - [anon_sym___inline] = ACTIONS(1226), - [anon_sym___inline__] = ACTIONS(1226), - [anon_sym___forceinline] = ACTIONS(1226), - [anon_sym_thread_local] = ACTIONS(1226), - [anon_sym___thread] = ACTIONS(1226), - [anon_sym_const] = ACTIONS(1226), - [anon_sym_constexpr] = ACTIONS(1226), - [anon_sym_volatile] = ACTIONS(1226), - [anon_sym_restrict] = ACTIONS(1226), - [anon_sym___restrict__] = ACTIONS(1226), - [anon_sym__Atomic] = ACTIONS(1226), - [anon_sym__Noreturn] = ACTIONS(1226), - [anon_sym_noreturn] = ACTIONS(1226), - [anon_sym_alignas] = ACTIONS(1226), - [anon_sym__Alignas] = ACTIONS(1226), - [sym_primitive_type] = ACTIONS(1226), - [anon_sym_enum] = ACTIONS(1226), - [anon_sym_struct] = ACTIONS(1226), - [anon_sym_union] = ACTIONS(1226), - [anon_sym_if] = ACTIONS(1226), - [anon_sym_else] = ACTIONS(1226), - [anon_sym_switch] = ACTIONS(1226), - [anon_sym_case] = ACTIONS(1226), - [anon_sym_default] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_do] = ACTIONS(1226), - [anon_sym_for] = ACTIONS(1226), - [anon_sym_return] = ACTIONS(1226), - [anon_sym_break] = ACTIONS(1226), - [anon_sym_continue] = ACTIONS(1226), - [anon_sym_goto] = ACTIONS(1226), - [anon_sym___try] = ACTIONS(1226), - [anon_sym___leave] = ACTIONS(1226), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_sizeof] = ACTIONS(1226), - [anon_sym___alignof__] = ACTIONS(1226), - [anon_sym___alignof] = ACTIONS(1226), - [anon_sym__alignof] = ACTIONS(1226), - [anon_sym_alignof] = ACTIONS(1226), - [anon_sym__Alignof] = ACTIONS(1226), - [anon_sym_offsetof] = ACTIONS(1226), - [anon_sym__Generic] = ACTIONS(1226), - [anon_sym_asm] = ACTIONS(1226), - [anon_sym___asm__] = ACTIONS(1226), - [sym_number_literal] = ACTIONS(1228), - [anon_sym_L_SQUOTE] = ACTIONS(1228), - [anon_sym_u_SQUOTE] = ACTIONS(1228), - [anon_sym_U_SQUOTE] = ACTIONS(1228), - [anon_sym_u8_SQUOTE] = ACTIONS(1228), - [anon_sym_SQUOTE] = ACTIONS(1228), - [anon_sym_L_DQUOTE] = ACTIONS(1228), - [anon_sym_u_DQUOTE] = ACTIONS(1228), - [anon_sym_U_DQUOTE] = ACTIONS(1228), - [anon_sym_u8_DQUOTE] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym_true] = ACTIONS(1226), - [sym_false] = ACTIONS(1226), - [anon_sym_NULL] = ACTIONS(1226), - [anon_sym_nullptr] = ACTIONS(1226), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym___scanf] = ACTIONS(1378), + [anon_sym___printf] = ACTIONS(1378), + [anon_sym___read_mostly] = ACTIONS(1378), + [anon_sym___must_hold] = ACTIONS(1378), + [anon_sym___ro_after_init] = ACTIONS(1378), + [anon_sym___noreturn] = ACTIONS(1378), + [anon_sym___cold] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___init] = ACTIONS(1378), + [anon_sym___exit] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [anon_sym_alignas] = ACTIONS(1378), + [anon_sym__Alignas] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(5), }, - [219] = { - [ts_builtin_sym_end] = ACTIONS(1316), - [sym_identifier] = ACTIONS(1314), + [207] = { + [ts_builtin_sym_end] = ACTIONS(1380), + [sym_identifier] = ACTIONS(1378), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym___extension__] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym___attribute__] = ACTIONS(1314), - [anon_sym___scanf] = ACTIONS(1314), - [anon_sym___printf] = ACTIONS(1314), - [anon_sym___read_mostly] = ACTIONS(1314), - [anon_sym___must_hold] = ACTIONS(1314), - [anon_sym___ro_after_init] = ACTIONS(1314), - [anon_sym___noreturn] = ACTIONS(1314), - [anon_sym___cold] = ACTIONS(1314), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), - [anon_sym___declspec] = ACTIONS(1314), - [anon_sym___init] = ACTIONS(1314), - [anon_sym___exit] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1314), - [anon_sym_unsigned] = ACTIONS(1314), - [anon_sym_long] = ACTIONS(1314), - [anon_sym_short] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_auto] = ACTIONS(1314), - [anon_sym_register] = ACTIONS(1314), - [anon_sym_inline] = ACTIONS(1314), - [anon_sym___inline] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym___scanf] = ACTIONS(1378), + [anon_sym___printf] = ACTIONS(1378), + [anon_sym___read_mostly] = ACTIONS(1378), + [anon_sym___must_hold] = ACTIONS(1378), + [anon_sym___ro_after_init] = ACTIONS(1378), + [anon_sym___noreturn] = ACTIONS(1378), + [anon_sym___cold] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___init] = ACTIONS(1378), + [anon_sym___exit] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [anon_sym_alignas] = ACTIONS(1378), + [anon_sym__Alignas] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), + [sym_comment] = ACTIONS(5), + }, + [208] = { + [sym_identifier] = ACTIONS(1374), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1374), + [aux_sym_preproc_def_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token2] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), + [sym_preproc_directive] = ACTIONS(1374), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym___extension__] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym___attribute__] = ACTIONS(1374), + [anon_sym___scanf] = ACTIONS(1374), + [anon_sym___printf] = ACTIONS(1374), + [anon_sym___read_mostly] = ACTIONS(1374), + [anon_sym___must_hold] = ACTIONS(1374), + [anon_sym___ro_after_init] = ACTIONS(1374), + [anon_sym___noreturn] = ACTIONS(1374), + [anon_sym___cold] = ACTIONS(1374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym___declspec] = ACTIONS(1374), + [anon_sym___init] = ACTIONS(1374), + [anon_sym___exit] = ACTIONS(1374), + [anon_sym___cdecl] = ACTIONS(1374), + [anon_sym___clrcall] = ACTIONS(1374), + [anon_sym___stdcall] = ACTIONS(1374), + [anon_sym___fastcall] = ACTIONS(1374), + [anon_sym___thiscall] = ACTIONS(1374), + [anon_sym___vectorcall] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_constexpr] = ACTIONS(1374), + [anon_sym_volatile] = ACTIONS(1374), + [anon_sym_restrict] = ACTIONS(1374), + [anon_sym___restrict__] = ACTIONS(1374), + [anon_sym__Atomic] = ACTIONS(1374), + [anon_sym__Noreturn] = ACTIONS(1374), + [anon_sym_noreturn] = ACTIONS(1374), + [anon_sym_alignas] = ACTIONS(1374), + [anon_sym__Alignas] = ACTIONS(1374), + [sym_primitive_type] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_switch] = ACTIONS(1374), + [anon_sym_case] = ACTIONS(1374), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_goto] = ACTIONS(1374), + [anon_sym___try] = ACTIONS(1374), + [anon_sym___leave] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = ACTIONS(1374), + [anon_sym_offsetof] = ACTIONS(1374), + [anon_sym__Generic] = ACTIONS(1374), + [anon_sym_asm] = ACTIONS(1374), + [anon_sym___asm__] = ACTIONS(1374), + [sym_number_literal] = ACTIONS(1376), + [anon_sym_L_SQUOTE] = ACTIONS(1376), + [anon_sym_u_SQUOTE] = ACTIONS(1376), + [anon_sym_U_SQUOTE] = ACTIONS(1376), + [anon_sym_u8_SQUOTE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_L_DQUOTE] = ACTIONS(1376), + [anon_sym_u_DQUOTE] = ACTIONS(1376), + [anon_sym_U_DQUOTE] = ACTIONS(1376), + [anon_sym_u8_DQUOTE] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [anon_sym_NULL] = ACTIONS(1374), + [anon_sym_nullptr] = ACTIONS(1374), + [sym_comment] = ACTIONS(5), + }, + [209] = { + [ts_builtin_sym_end] = ACTIONS(1340), + [sym_identifier] = ACTIONS(1338), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym___scanf] = ACTIONS(1338), + [anon_sym___printf] = ACTIONS(1338), + [anon_sym___read_mostly] = ACTIONS(1338), + [anon_sym___must_hold] = ACTIONS(1338), + [anon_sym___ro_after_init] = ACTIONS(1338), + [anon_sym___noreturn] = ACTIONS(1338), + [anon_sym___cold] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___init] = ACTIONS(1338), + [anon_sym___exit] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [anon_sym_alignas] = ACTIONS(1338), + [anon_sym__Alignas] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), + [sym_comment] = ACTIONS(5), + }, + [210] = { + [sym_identifier] = ACTIONS(1314), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym___scanf] = ACTIONS(1314), + [anon_sym___printf] = ACTIONS(1314), + [anon_sym___read_mostly] = ACTIONS(1314), + [anon_sym___must_hold] = ACTIONS(1314), + [anon_sym___ro_after_init] = ACTIONS(1314), + [anon_sym___noreturn] = ACTIONS(1314), + [anon_sym___cold] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___init] = ACTIONS(1314), + [anon_sym___exit] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_RBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), [anon_sym___inline__] = ACTIONS(1314), [anon_sym___forceinline] = ACTIONS(1314), [anon_sym_thread_local] = ACTIONS(1314), @@ -46499,7 +45626,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1314), [sym_comment] = ACTIONS(5), }, - [220] = { + [211] = { + [ts_builtin_sym_end] = ACTIONS(1248), + [sym_identifier] = ACTIONS(1246), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1246), + [aux_sym_preproc_def_token1] = ACTIONS(1246), + [aux_sym_preproc_if_token1] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1246), + [sym_preproc_directive] = ACTIONS(1246), + [anon_sym_LPAREN2] = ACTIONS(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_TILDE] = ACTIONS(1248), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_PLUS] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1248), + [anon_sym___extension__] = ACTIONS(1246), + [anon_sym_typedef] = ACTIONS(1246), + [anon_sym_extern] = ACTIONS(1246), + [anon_sym___attribute__] = ACTIONS(1246), + [anon_sym___scanf] = ACTIONS(1246), + [anon_sym___printf] = ACTIONS(1246), + [anon_sym___read_mostly] = ACTIONS(1246), + [anon_sym___must_hold] = ACTIONS(1246), + [anon_sym___ro_after_init] = ACTIONS(1246), + [anon_sym___noreturn] = ACTIONS(1246), + [anon_sym___cold] = ACTIONS(1246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1248), + [anon_sym___declspec] = ACTIONS(1246), + [anon_sym___init] = ACTIONS(1246), + [anon_sym___exit] = ACTIONS(1246), + [anon_sym___cdecl] = ACTIONS(1246), + [anon_sym___clrcall] = ACTIONS(1246), + [anon_sym___stdcall] = ACTIONS(1246), + [anon_sym___fastcall] = ACTIONS(1246), + [anon_sym___thiscall] = ACTIONS(1246), + [anon_sym___vectorcall] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_signed] = ACTIONS(1246), + [anon_sym_unsigned] = ACTIONS(1246), + [anon_sym_long] = ACTIONS(1246), + [anon_sym_short] = ACTIONS(1246), + [anon_sym_static] = ACTIONS(1246), + [anon_sym_auto] = ACTIONS(1246), + [anon_sym_register] = ACTIONS(1246), + [anon_sym_inline] = ACTIONS(1246), + [anon_sym___inline] = ACTIONS(1246), + [anon_sym___inline__] = ACTIONS(1246), + [anon_sym___forceinline] = ACTIONS(1246), + [anon_sym_thread_local] = ACTIONS(1246), + [anon_sym___thread] = ACTIONS(1246), + [anon_sym_const] = ACTIONS(1246), + [anon_sym_constexpr] = ACTIONS(1246), + [anon_sym_volatile] = ACTIONS(1246), + [anon_sym_restrict] = ACTIONS(1246), + [anon_sym___restrict__] = ACTIONS(1246), + [anon_sym__Atomic] = ACTIONS(1246), + [anon_sym__Noreturn] = ACTIONS(1246), + [anon_sym_noreturn] = ACTIONS(1246), + [anon_sym_alignas] = ACTIONS(1246), + [anon_sym__Alignas] = ACTIONS(1246), + [sym_primitive_type] = ACTIONS(1246), + [anon_sym_enum] = ACTIONS(1246), + [anon_sym_struct] = ACTIONS(1246), + [anon_sym_union] = ACTIONS(1246), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_else] = ACTIONS(1246), + [anon_sym_switch] = ACTIONS(1246), + [anon_sym_case] = ACTIONS(1246), + [anon_sym_default] = ACTIONS(1246), + [anon_sym_while] = ACTIONS(1246), + [anon_sym_do] = ACTIONS(1246), + [anon_sym_for] = ACTIONS(1246), + [anon_sym_return] = ACTIONS(1246), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1246), + [anon_sym_goto] = ACTIONS(1246), + [anon_sym___try] = ACTIONS(1246), + [anon_sym___leave] = ACTIONS(1246), + [anon_sym_DASH_DASH] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_sizeof] = ACTIONS(1246), + [anon_sym___alignof__] = ACTIONS(1246), + [anon_sym___alignof] = ACTIONS(1246), + [anon_sym__alignof] = ACTIONS(1246), + [anon_sym_alignof] = ACTIONS(1246), + [anon_sym__Alignof] = ACTIONS(1246), + [anon_sym_offsetof] = ACTIONS(1246), + [anon_sym__Generic] = ACTIONS(1246), + [anon_sym_asm] = ACTIONS(1246), + [anon_sym___asm__] = ACTIONS(1246), + [sym_number_literal] = ACTIONS(1248), + [anon_sym_L_SQUOTE] = ACTIONS(1248), + [anon_sym_u_SQUOTE] = ACTIONS(1248), + [anon_sym_U_SQUOTE] = ACTIONS(1248), + [anon_sym_u8_SQUOTE] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1248), + [anon_sym_L_DQUOTE] = ACTIONS(1248), + [anon_sym_u_DQUOTE] = ACTIONS(1248), + [anon_sym_U_DQUOTE] = ACTIONS(1248), + [anon_sym_u8_DQUOTE] = ACTIONS(1248), + [anon_sym_DQUOTE] = ACTIONS(1248), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), + [anon_sym_NULL] = ACTIONS(1246), + [anon_sym_nullptr] = ACTIONS(1246), + [sym_comment] = ACTIONS(5), + }, + [212] = { [sym_identifier] = ACTIONS(1338), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1338), @@ -46609,1564 +45846,1234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1338), [sym_comment] = ACTIONS(5), }, - [221] = { - [sym_identifier] = ACTIONS(1226), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1226), - [aux_sym_preproc_def_token1] = ACTIONS(1226), - [aux_sym_preproc_if_token1] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1226), - [sym_preproc_directive] = ACTIONS(1226), - [anon_sym_LPAREN2] = ACTIONS(1228), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1226), - [anon_sym_PLUS] = ACTIONS(1226), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym___extension__] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1226), - [anon_sym_extern] = ACTIONS(1226), - [anon_sym___attribute__] = ACTIONS(1226), - [anon_sym___scanf] = ACTIONS(1226), - [anon_sym___printf] = ACTIONS(1226), - [anon_sym___read_mostly] = ACTIONS(1226), - [anon_sym___must_hold] = ACTIONS(1226), - [anon_sym___ro_after_init] = ACTIONS(1226), - [anon_sym___noreturn] = ACTIONS(1226), - [anon_sym___cold] = ACTIONS(1226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1228), - [anon_sym___declspec] = ACTIONS(1226), - [anon_sym___init] = ACTIONS(1226), - [anon_sym___exit] = ACTIONS(1226), - [anon_sym___cdecl] = ACTIONS(1226), - [anon_sym___clrcall] = ACTIONS(1226), - [anon_sym___stdcall] = ACTIONS(1226), - [anon_sym___fastcall] = ACTIONS(1226), - [anon_sym___thiscall] = ACTIONS(1226), - [anon_sym___vectorcall] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_RBRACE] = ACTIONS(1228), - [anon_sym_signed] = ACTIONS(1226), - [anon_sym_unsigned] = ACTIONS(1226), - [anon_sym_long] = ACTIONS(1226), - [anon_sym_short] = ACTIONS(1226), - [anon_sym_static] = ACTIONS(1226), - [anon_sym_auto] = ACTIONS(1226), - [anon_sym_register] = ACTIONS(1226), - [anon_sym_inline] = ACTIONS(1226), - [anon_sym___inline] = ACTIONS(1226), - [anon_sym___inline__] = ACTIONS(1226), - [anon_sym___forceinline] = ACTIONS(1226), - [anon_sym_thread_local] = ACTIONS(1226), - [anon_sym___thread] = ACTIONS(1226), - [anon_sym_const] = ACTIONS(1226), - [anon_sym_constexpr] = ACTIONS(1226), - [anon_sym_volatile] = ACTIONS(1226), - [anon_sym_restrict] = ACTIONS(1226), - [anon_sym___restrict__] = ACTIONS(1226), - [anon_sym__Atomic] = ACTIONS(1226), - [anon_sym__Noreturn] = ACTIONS(1226), - [anon_sym_noreturn] = ACTIONS(1226), - [anon_sym_alignas] = ACTIONS(1226), - [anon_sym__Alignas] = ACTIONS(1226), - [sym_primitive_type] = ACTIONS(1226), - [anon_sym_enum] = ACTIONS(1226), - [anon_sym_struct] = ACTIONS(1226), - [anon_sym_union] = ACTIONS(1226), - [anon_sym_if] = ACTIONS(1226), - [anon_sym_else] = ACTIONS(1226), - [anon_sym_switch] = ACTIONS(1226), - [anon_sym_case] = ACTIONS(1226), - [anon_sym_default] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_do] = ACTIONS(1226), - [anon_sym_for] = ACTIONS(1226), - [anon_sym_return] = ACTIONS(1226), - [anon_sym_break] = ACTIONS(1226), - [anon_sym_continue] = ACTIONS(1226), - [anon_sym_goto] = ACTIONS(1226), - [anon_sym___try] = ACTIONS(1226), - [anon_sym___leave] = ACTIONS(1226), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_sizeof] = ACTIONS(1226), - [anon_sym___alignof__] = ACTIONS(1226), - [anon_sym___alignof] = ACTIONS(1226), - [anon_sym__alignof] = ACTIONS(1226), - [anon_sym_alignof] = ACTIONS(1226), - [anon_sym__Alignof] = ACTIONS(1226), - [anon_sym_offsetof] = ACTIONS(1226), - [anon_sym__Generic] = ACTIONS(1226), - [anon_sym_asm] = ACTIONS(1226), - [anon_sym___asm__] = ACTIONS(1226), - [sym_number_literal] = ACTIONS(1228), - [anon_sym_L_SQUOTE] = ACTIONS(1228), - [anon_sym_u_SQUOTE] = ACTIONS(1228), - [anon_sym_U_SQUOTE] = ACTIONS(1228), - [anon_sym_u8_SQUOTE] = ACTIONS(1228), - [anon_sym_SQUOTE] = ACTIONS(1228), - [anon_sym_L_DQUOTE] = ACTIONS(1228), - [anon_sym_u_DQUOTE] = ACTIONS(1228), - [anon_sym_U_DQUOTE] = ACTIONS(1228), - [anon_sym_u8_DQUOTE] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym_true] = ACTIONS(1226), - [sym_false] = ACTIONS(1226), - [anon_sym_NULL] = ACTIONS(1226), - [anon_sym_nullptr] = ACTIONS(1226), - [sym_comment] = ACTIONS(5), - }, - [222] = { - [ts_builtin_sym_end] = ACTIONS(1296), - [sym_identifier] = ACTIONS(1294), + [213] = { + [sym_identifier] = ACTIONS(1374), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1294), - [aux_sym_preproc_def_token1] = ACTIONS(1294), - [aux_sym_preproc_if_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), - [sym_preproc_directive] = ACTIONS(1294), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1296), - [anon_sym_TILDE] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym___extension__] = ACTIONS(1294), - [anon_sym_typedef] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym___attribute__] = ACTIONS(1294), - [anon_sym___scanf] = ACTIONS(1294), - [anon_sym___printf] = ACTIONS(1294), - [anon_sym___read_mostly] = ACTIONS(1294), - [anon_sym___must_hold] = ACTIONS(1294), - [anon_sym___ro_after_init] = ACTIONS(1294), - [anon_sym___noreturn] = ACTIONS(1294), - [anon_sym___cold] = ACTIONS(1294), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1296), - [anon_sym___declspec] = ACTIONS(1294), - [anon_sym___init] = ACTIONS(1294), - [anon_sym___exit] = ACTIONS(1294), - [anon_sym___cdecl] = ACTIONS(1294), - [anon_sym___clrcall] = ACTIONS(1294), - [anon_sym___stdcall] = ACTIONS(1294), - [anon_sym___fastcall] = ACTIONS(1294), - [anon_sym___thiscall] = ACTIONS(1294), - [anon_sym___vectorcall] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_signed] = ACTIONS(1294), - [anon_sym_unsigned] = ACTIONS(1294), - [anon_sym_long] = ACTIONS(1294), - [anon_sym_short] = ACTIONS(1294), - [anon_sym_static] = ACTIONS(1294), - [anon_sym_auto] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_inline] = ACTIONS(1294), - [anon_sym___inline] = ACTIONS(1294), - [anon_sym___inline__] = ACTIONS(1294), - [anon_sym___forceinline] = ACTIONS(1294), - [anon_sym_thread_local] = ACTIONS(1294), - [anon_sym___thread] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [anon_sym_constexpr] = ACTIONS(1294), - [anon_sym_volatile] = ACTIONS(1294), - [anon_sym_restrict] = ACTIONS(1294), - [anon_sym___restrict__] = ACTIONS(1294), - [anon_sym__Atomic] = ACTIONS(1294), - [anon_sym__Noreturn] = ACTIONS(1294), - [anon_sym_noreturn] = ACTIONS(1294), - [anon_sym_alignas] = ACTIONS(1294), - [anon_sym__Alignas] = ACTIONS(1294), - [sym_primitive_type] = ACTIONS(1294), - [anon_sym_enum] = ACTIONS(1294), - [anon_sym_struct] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1294), - [anon_sym_switch] = ACTIONS(1294), - [anon_sym_case] = ACTIONS(1294), - [anon_sym_default] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_goto] = ACTIONS(1294), - [anon_sym___try] = ACTIONS(1294), - [anon_sym___leave] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_sizeof] = ACTIONS(1294), - [anon_sym___alignof__] = ACTIONS(1294), - [anon_sym___alignof] = ACTIONS(1294), - [anon_sym__alignof] = ACTIONS(1294), - [anon_sym_alignof] = ACTIONS(1294), - [anon_sym__Alignof] = ACTIONS(1294), - [anon_sym_offsetof] = ACTIONS(1294), - [anon_sym__Generic] = ACTIONS(1294), - [anon_sym_asm] = ACTIONS(1294), - [anon_sym___asm__] = ACTIONS(1294), - [sym_number_literal] = ACTIONS(1296), - [anon_sym_L_SQUOTE] = ACTIONS(1296), - [anon_sym_u_SQUOTE] = ACTIONS(1296), - [anon_sym_U_SQUOTE] = ACTIONS(1296), - [anon_sym_u8_SQUOTE] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [anon_sym_L_DQUOTE] = ACTIONS(1296), - [anon_sym_u_DQUOTE] = ACTIONS(1296), - [anon_sym_U_DQUOTE] = ACTIONS(1296), - [anon_sym_u8_DQUOTE] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym_true] = ACTIONS(1294), - [sym_false] = ACTIONS(1294), - [anon_sym_NULL] = ACTIONS(1294), - [anon_sym_nullptr] = ACTIONS(1294), + [aux_sym_preproc_include_token1] = ACTIONS(1374), + [aux_sym_preproc_def_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token2] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), + [sym_preproc_directive] = ACTIONS(1374), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym___extension__] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym___attribute__] = ACTIONS(1374), + [anon_sym___scanf] = ACTIONS(1374), + [anon_sym___printf] = ACTIONS(1374), + [anon_sym___read_mostly] = ACTIONS(1374), + [anon_sym___must_hold] = ACTIONS(1374), + [anon_sym___ro_after_init] = ACTIONS(1374), + [anon_sym___noreturn] = ACTIONS(1374), + [anon_sym___cold] = ACTIONS(1374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym___declspec] = ACTIONS(1374), + [anon_sym___init] = ACTIONS(1374), + [anon_sym___exit] = ACTIONS(1374), + [anon_sym___cdecl] = ACTIONS(1374), + [anon_sym___clrcall] = ACTIONS(1374), + [anon_sym___stdcall] = ACTIONS(1374), + [anon_sym___fastcall] = ACTIONS(1374), + [anon_sym___thiscall] = ACTIONS(1374), + [anon_sym___vectorcall] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_constexpr] = ACTIONS(1374), + [anon_sym_volatile] = ACTIONS(1374), + [anon_sym_restrict] = ACTIONS(1374), + [anon_sym___restrict__] = ACTIONS(1374), + [anon_sym__Atomic] = ACTIONS(1374), + [anon_sym__Noreturn] = ACTIONS(1374), + [anon_sym_noreturn] = ACTIONS(1374), + [anon_sym_alignas] = ACTIONS(1374), + [anon_sym__Alignas] = ACTIONS(1374), + [sym_primitive_type] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_switch] = ACTIONS(1374), + [anon_sym_case] = ACTIONS(1374), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_goto] = ACTIONS(1374), + [anon_sym___try] = ACTIONS(1374), + [anon_sym___leave] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = ACTIONS(1374), + [anon_sym_offsetof] = ACTIONS(1374), + [anon_sym__Generic] = ACTIONS(1374), + [anon_sym_asm] = ACTIONS(1374), + [anon_sym___asm__] = ACTIONS(1374), + [sym_number_literal] = ACTIONS(1376), + [anon_sym_L_SQUOTE] = ACTIONS(1376), + [anon_sym_u_SQUOTE] = ACTIONS(1376), + [anon_sym_U_SQUOTE] = ACTIONS(1376), + [anon_sym_u8_SQUOTE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_L_DQUOTE] = ACTIONS(1376), + [anon_sym_u_DQUOTE] = ACTIONS(1376), + [anon_sym_U_DQUOTE] = ACTIONS(1376), + [anon_sym_u8_DQUOTE] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [anon_sym_NULL] = ACTIONS(1374), + [anon_sym_nullptr] = ACTIONS(1374), [sym_comment] = ACTIONS(5), }, - [223] = { - [ts_builtin_sym_end] = ACTIONS(1276), - [sym_identifier] = ACTIONS(1274), + [214] = { + [ts_builtin_sym_end] = ACTIONS(1252), + [sym_identifier] = ACTIONS(1250), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1274), - [aux_sym_preproc_def_token1] = ACTIONS(1274), - [aux_sym_preproc_if_token1] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), - [sym_preproc_directive] = ACTIONS(1274), - [anon_sym_LPAREN2] = ACTIONS(1276), - [anon_sym_BANG] = ACTIONS(1276), - [anon_sym_TILDE] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym___extension__] = ACTIONS(1274), - [anon_sym_typedef] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym___attribute__] = ACTIONS(1274), - [anon_sym___scanf] = ACTIONS(1274), - [anon_sym___printf] = ACTIONS(1274), - [anon_sym___read_mostly] = ACTIONS(1274), - [anon_sym___must_hold] = ACTIONS(1274), - [anon_sym___ro_after_init] = ACTIONS(1274), - [anon_sym___noreturn] = ACTIONS(1274), - [anon_sym___cold] = ACTIONS(1274), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1276), - [anon_sym___declspec] = ACTIONS(1274), - [anon_sym___init] = ACTIONS(1274), - [anon_sym___exit] = ACTIONS(1274), - [anon_sym___cdecl] = ACTIONS(1274), - [anon_sym___clrcall] = ACTIONS(1274), - [anon_sym___stdcall] = ACTIONS(1274), - [anon_sym___fastcall] = ACTIONS(1274), - [anon_sym___thiscall] = ACTIONS(1274), - [anon_sym___vectorcall] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_signed] = ACTIONS(1274), - [anon_sym_unsigned] = ACTIONS(1274), - [anon_sym_long] = ACTIONS(1274), - [anon_sym_short] = ACTIONS(1274), - [anon_sym_static] = ACTIONS(1274), - [anon_sym_auto] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_inline] = ACTIONS(1274), - [anon_sym___inline] = ACTIONS(1274), - [anon_sym___inline__] = ACTIONS(1274), - [anon_sym___forceinline] = ACTIONS(1274), - [anon_sym_thread_local] = ACTIONS(1274), - [anon_sym___thread] = ACTIONS(1274), - [anon_sym_const] = ACTIONS(1274), - [anon_sym_constexpr] = ACTIONS(1274), - [anon_sym_volatile] = ACTIONS(1274), - [anon_sym_restrict] = ACTIONS(1274), - [anon_sym___restrict__] = ACTIONS(1274), - [anon_sym__Atomic] = ACTIONS(1274), - [anon_sym__Noreturn] = ACTIONS(1274), - [anon_sym_noreturn] = ACTIONS(1274), - [anon_sym_alignas] = ACTIONS(1274), - [anon_sym__Alignas] = ACTIONS(1274), - [sym_primitive_type] = ACTIONS(1274), - [anon_sym_enum] = ACTIONS(1274), - [anon_sym_struct] = ACTIONS(1274), - [anon_sym_union] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_else] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(1274), - [anon_sym_case] = ACTIONS(1274), - [anon_sym_default] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_do] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_goto] = ACTIONS(1274), - [anon_sym___try] = ACTIONS(1274), - [anon_sym___leave] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_sizeof] = ACTIONS(1274), - [anon_sym___alignof__] = ACTIONS(1274), - [anon_sym___alignof] = ACTIONS(1274), - [anon_sym__alignof] = ACTIONS(1274), - [anon_sym_alignof] = ACTIONS(1274), - [anon_sym__Alignof] = ACTIONS(1274), - [anon_sym_offsetof] = ACTIONS(1274), - [anon_sym__Generic] = ACTIONS(1274), - [anon_sym_asm] = ACTIONS(1274), - [anon_sym___asm__] = ACTIONS(1274), - [sym_number_literal] = ACTIONS(1276), - [anon_sym_L_SQUOTE] = ACTIONS(1276), - [anon_sym_u_SQUOTE] = ACTIONS(1276), - [anon_sym_U_SQUOTE] = ACTIONS(1276), - [anon_sym_u8_SQUOTE] = ACTIONS(1276), - [anon_sym_SQUOTE] = ACTIONS(1276), - [anon_sym_L_DQUOTE] = ACTIONS(1276), - [anon_sym_u_DQUOTE] = ACTIONS(1276), - [anon_sym_U_DQUOTE] = ACTIONS(1276), - [anon_sym_u8_DQUOTE] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym_true] = ACTIONS(1274), - [sym_false] = ACTIONS(1274), - [anon_sym_NULL] = ACTIONS(1274), - [anon_sym_nullptr] = ACTIONS(1274), + [aux_sym_preproc_include_token1] = ACTIONS(1250), + [aux_sym_preproc_def_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), + [sym_preproc_directive] = ACTIONS(1250), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym___extension__] = ACTIONS(1250), + [anon_sym_typedef] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1250), + [anon_sym___attribute__] = ACTIONS(1250), + [anon_sym___scanf] = ACTIONS(1250), + [anon_sym___printf] = ACTIONS(1250), + [anon_sym___read_mostly] = ACTIONS(1250), + [anon_sym___must_hold] = ACTIONS(1250), + [anon_sym___ro_after_init] = ACTIONS(1250), + [anon_sym___noreturn] = ACTIONS(1250), + [anon_sym___cold] = ACTIONS(1250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), + [anon_sym___declspec] = ACTIONS(1250), + [anon_sym___init] = ACTIONS(1250), + [anon_sym___exit] = ACTIONS(1250), + [anon_sym___cdecl] = ACTIONS(1250), + [anon_sym___clrcall] = ACTIONS(1250), + [anon_sym___stdcall] = ACTIONS(1250), + [anon_sym___fastcall] = ACTIONS(1250), + [anon_sym___thiscall] = ACTIONS(1250), + [anon_sym___vectorcall] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_signed] = ACTIONS(1250), + [anon_sym_unsigned] = ACTIONS(1250), + [anon_sym_long] = ACTIONS(1250), + [anon_sym_short] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_auto] = ACTIONS(1250), + [anon_sym_register] = ACTIONS(1250), + [anon_sym_inline] = ACTIONS(1250), + [anon_sym___inline] = ACTIONS(1250), + [anon_sym___inline__] = ACTIONS(1250), + [anon_sym___forceinline] = ACTIONS(1250), + [anon_sym_thread_local] = ACTIONS(1250), + [anon_sym___thread] = ACTIONS(1250), + [anon_sym_const] = ACTIONS(1250), + [anon_sym_constexpr] = ACTIONS(1250), + [anon_sym_volatile] = ACTIONS(1250), + [anon_sym_restrict] = ACTIONS(1250), + [anon_sym___restrict__] = ACTIONS(1250), + [anon_sym__Atomic] = ACTIONS(1250), + [anon_sym__Noreturn] = ACTIONS(1250), + [anon_sym_noreturn] = ACTIONS(1250), + [anon_sym_alignas] = ACTIONS(1250), + [anon_sym__Alignas] = ACTIONS(1250), + [sym_primitive_type] = ACTIONS(1250), + [anon_sym_enum] = ACTIONS(1250), + [anon_sym_struct] = ACTIONS(1250), + [anon_sym_union] = ACTIONS(1250), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_else] = ACTIONS(1250), + [anon_sym_switch] = ACTIONS(1250), + [anon_sym_case] = ACTIONS(1250), + [anon_sym_default] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [anon_sym_do] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_goto] = ACTIONS(1250), + [anon_sym___try] = ACTIONS(1250), + [anon_sym___leave] = ACTIONS(1250), + [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_sizeof] = ACTIONS(1250), + [anon_sym___alignof__] = ACTIONS(1250), + [anon_sym___alignof] = ACTIONS(1250), + [anon_sym__alignof] = ACTIONS(1250), + [anon_sym_alignof] = ACTIONS(1250), + [anon_sym__Alignof] = ACTIONS(1250), + [anon_sym_offsetof] = ACTIONS(1250), + [anon_sym__Generic] = ACTIONS(1250), + [anon_sym_asm] = ACTIONS(1250), + [anon_sym___asm__] = ACTIONS(1250), + [sym_number_literal] = ACTIONS(1252), + [anon_sym_L_SQUOTE] = ACTIONS(1252), + [anon_sym_u_SQUOTE] = ACTIONS(1252), + [anon_sym_U_SQUOTE] = ACTIONS(1252), + [anon_sym_u8_SQUOTE] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1252), + [anon_sym_L_DQUOTE] = ACTIONS(1252), + [anon_sym_u_DQUOTE] = ACTIONS(1252), + [anon_sym_U_DQUOTE] = ACTIONS(1252), + [anon_sym_u8_DQUOTE] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_true] = ACTIONS(1250), + [sym_false] = ACTIONS(1250), + [anon_sym_NULL] = ACTIONS(1250), + [anon_sym_nullptr] = ACTIONS(1250), [sym_comment] = ACTIONS(5), }, - [224] = { - [ts_builtin_sym_end] = ACTIONS(1296), - [sym_identifier] = ACTIONS(1294), + [215] = { + [ts_builtin_sym_end] = ACTIONS(1248), + [sym_identifier] = ACTIONS(1246), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1294), - [aux_sym_preproc_def_token1] = ACTIONS(1294), - [aux_sym_preproc_if_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), - [sym_preproc_directive] = ACTIONS(1294), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1296), - [anon_sym_TILDE] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym___extension__] = ACTIONS(1294), - [anon_sym_typedef] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym___attribute__] = ACTIONS(1294), - [anon_sym___scanf] = ACTIONS(1294), - [anon_sym___printf] = ACTIONS(1294), - [anon_sym___read_mostly] = ACTIONS(1294), - [anon_sym___must_hold] = ACTIONS(1294), - [anon_sym___ro_after_init] = ACTIONS(1294), - [anon_sym___noreturn] = ACTIONS(1294), - [anon_sym___cold] = ACTIONS(1294), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1296), - [anon_sym___declspec] = ACTIONS(1294), - [anon_sym___init] = ACTIONS(1294), - [anon_sym___exit] = ACTIONS(1294), - [anon_sym___cdecl] = ACTIONS(1294), - [anon_sym___clrcall] = ACTIONS(1294), - [anon_sym___stdcall] = ACTIONS(1294), - [anon_sym___fastcall] = ACTIONS(1294), - [anon_sym___thiscall] = ACTIONS(1294), - [anon_sym___vectorcall] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_signed] = ACTIONS(1294), - [anon_sym_unsigned] = ACTIONS(1294), - [anon_sym_long] = ACTIONS(1294), - [anon_sym_short] = ACTIONS(1294), - [anon_sym_static] = ACTIONS(1294), - [anon_sym_auto] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_inline] = ACTIONS(1294), - [anon_sym___inline] = ACTIONS(1294), - [anon_sym___inline__] = ACTIONS(1294), - [anon_sym___forceinline] = ACTIONS(1294), - [anon_sym_thread_local] = ACTIONS(1294), - [anon_sym___thread] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [anon_sym_constexpr] = ACTIONS(1294), - [anon_sym_volatile] = ACTIONS(1294), - [anon_sym_restrict] = ACTIONS(1294), - [anon_sym___restrict__] = ACTIONS(1294), - [anon_sym__Atomic] = ACTIONS(1294), - [anon_sym__Noreturn] = ACTIONS(1294), - [anon_sym_noreturn] = ACTIONS(1294), - [anon_sym_alignas] = ACTIONS(1294), - [anon_sym__Alignas] = ACTIONS(1294), - [sym_primitive_type] = ACTIONS(1294), - [anon_sym_enum] = ACTIONS(1294), - [anon_sym_struct] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1294), - [anon_sym_switch] = ACTIONS(1294), - [anon_sym_case] = ACTIONS(1294), - [anon_sym_default] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_goto] = ACTIONS(1294), - [anon_sym___try] = ACTIONS(1294), - [anon_sym___leave] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_sizeof] = ACTIONS(1294), - [anon_sym___alignof__] = ACTIONS(1294), - [anon_sym___alignof] = ACTIONS(1294), - [anon_sym__alignof] = ACTIONS(1294), - [anon_sym_alignof] = ACTIONS(1294), - [anon_sym__Alignof] = ACTIONS(1294), - [anon_sym_offsetof] = ACTIONS(1294), - [anon_sym__Generic] = ACTIONS(1294), - [anon_sym_asm] = ACTIONS(1294), - [anon_sym___asm__] = ACTIONS(1294), - [sym_number_literal] = ACTIONS(1296), - [anon_sym_L_SQUOTE] = ACTIONS(1296), - [anon_sym_u_SQUOTE] = ACTIONS(1296), - [anon_sym_U_SQUOTE] = ACTIONS(1296), - [anon_sym_u8_SQUOTE] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [anon_sym_L_DQUOTE] = ACTIONS(1296), - [anon_sym_u_DQUOTE] = ACTIONS(1296), - [anon_sym_U_DQUOTE] = ACTIONS(1296), - [anon_sym_u8_DQUOTE] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym_true] = ACTIONS(1294), - [sym_false] = ACTIONS(1294), - [anon_sym_NULL] = ACTIONS(1294), - [anon_sym_nullptr] = ACTIONS(1294), - [sym_comment] = ACTIONS(5), - }, - [225] = { - [ts_builtin_sym_end] = ACTIONS(1296), - [sym_identifier] = ACTIONS(1294), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1294), - [aux_sym_preproc_def_token1] = ACTIONS(1294), - [aux_sym_preproc_if_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), - [sym_preproc_directive] = ACTIONS(1294), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1296), - [anon_sym_TILDE] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym___extension__] = ACTIONS(1294), - [anon_sym_typedef] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym___attribute__] = ACTIONS(1294), - [anon_sym___scanf] = ACTIONS(1294), - [anon_sym___printf] = ACTIONS(1294), - [anon_sym___read_mostly] = ACTIONS(1294), - [anon_sym___must_hold] = ACTIONS(1294), - [anon_sym___ro_after_init] = ACTIONS(1294), - [anon_sym___noreturn] = ACTIONS(1294), - [anon_sym___cold] = ACTIONS(1294), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1296), - [anon_sym___declspec] = ACTIONS(1294), - [anon_sym___init] = ACTIONS(1294), - [anon_sym___exit] = ACTIONS(1294), - [anon_sym___cdecl] = ACTIONS(1294), - [anon_sym___clrcall] = ACTIONS(1294), - [anon_sym___stdcall] = ACTIONS(1294), - [anon_sym___fastcall] = ACTIONS(1294), - [anon_sym___thiscall] = ACTIONS(1294), - [anon_sym___vectorcall] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_signed] = ACTIONS(1294), - [anon_sym_unsigned] = ACTIONS(1294), - [anon_sym_long] = ACTIONS(1294), - [anon_sym_short] = ACTIONS(1294), - [anon_sym_static] = ACTIONS(1294), - [anon_sym_auto] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_inline] = ACTIONS(1294), - [anon_sym___inline] = ACTIONS(1294), - [anon_sym___inline__] = ACTIONS(1294), - [anon_sym___forceinline] = ACTIONS(1294), - [anon_sym_thread_local] = ACTIONS(1294), - [anon_sym___thread] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [anon_sym_constexpr] = ACTIONS(1294), - [anon_sym_volatile] = ACTIONS(1294), - [anon_sym_restrict] = ACTIONS(1294), - [anon_sym___restrict__] = ACTIONS(1294), - [anon_sym__Atomic] = ACTIONS(1294), - [anon_sym__Noreturn] = ACTIONS(1294), - [anon_sym_noreturn] = ACTIONS(1294), - [anon_sym_alignas] = ACTIONS(1294), - [anon_sym__Alignas] = ACTIONS(1294), - [sym_primitive_type] = ACTIONS(1294), - [anon_sym_enum] = ACTIONS(1294), - [anon_sym_struct] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1294), - [anon_sym_switch] = ACTIONS(1294), - [anon_sym_case] = ACTIONS(1294), - [anon_sym_default] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_goto] = ACTIONS(1294), - [anon_sym___try] = ACTIONS(1294), - [anon_sym___leave] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_sizeof] = ACTIONS(1294), - [anon_sym___alignof__] = ACTIONS(1294), - [anon_sym___alignof] = ACTIONS(1294), - [anon_sym__alignof] = ACTIONS(1294), - [anon_sym_alignof] = ACTIONS(1294), - [anon_sym__Alignof] = ACTIONS(1294), - [anon_sym_offsetof] = ACTIONS(1294), - [anon_sym__Generic] = ACTIONS(1294), - [anon_sym_asm] = ACTIONS(1294), - [anon_sym___asm__] = ACTIONS(1294), - [sym_number_literal] = ACTIONS(1296), - [anon_sym_L_SQUOTE] = ACTIONS(1296), - [anon_sym_u_SQUOTE] = ACTIONS(1296), - [anon_sym_U_SQUOTE] = ACTIONS(1296), - [anon_sym_u8_SQUOTE] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [anon_sym_L_DQUOTE] = ACTIONS(1296), - [anon_sym_u_DQUOTE] = ACTIONS(1296), - [anon_sym_U_DQUOTE] = ACTIONS(1296), - [anon_sym_u8_DQUOTE] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym_true] = ACTIONS(1294), - [sym_false] = ACTIONS(1294), - [anon_sym_NULL] = ACTIONS(1294), - [anon_sym_nullptr] = ACTIONS(1294), + [aux_sym_preproc_include_token1] = ACTIONS(1246), + [aux_sym_preproc_def_token1] = ACTIONS(1246), + [aux_sym_preproc_if_token1] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1246), + [sym_preproc_directive] = ACTIONS(1246), + [anon_sym_LPAREN2] = ACTIONS(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_TILDE] = ACTIONS(1248), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_PLUS] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1248), + [anon_sym___extension__] = ACTIONS(1246), + [anon_sym_typedef] = ACTIONS(1246), + [anon_sym_extern] = ACTIONS(1246), + [anon_sym___attribute__] = ACTIONS(1246), + [anon_sym___scanf] = ACTIONS(1246), + [anon_sym___printf] = ACTIONS(1246), + [anon_sym___read_mostly] = ACTIONS(1246), + [anon_sym___must_hold] = ACTIONS(1246), + [anon_sym___ro_after_init] = ACTIONS(1246), + [anon_sym___noreturn] = ACTIONS(1246), + [anon_sym___cold] = ACTIONS(1246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1248), + [anon_sym___declspec] = ACTIONS(1246), + [anon_sym___init] = ACTIONS(1246), + [anon_sym___exit] = ACTIONS(1246), + [anon_sym___cdecl] = ACTIONS(1246), + [anon_sym___clrcall] = ACTIONS(1246), + [anon_sym___stdcall] = ACTIONS(1246), + [anon_sym___fastcall] = ACTIONS(1246), + [anon_sym___thiscall] = ACTIONS(1246), + [anon_sym___vectorcall] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_signed] = ACTIONS(1246), + [anon_sym_unsigned] = ACTIONS(1246), + [anon_sym_long] = ACTIONS(1246), + [anon_sym_short] = ACTIONS(1246), + [anon_sym_static] = ACTIONS(1246), + [anon_sym_auto] = ACTIONS(1246), + [anon_sym_register] = ACTIONS(1246), + [anon_sym_inline] = ACTIONS(1246), + [anon_sym___inline] = ACTIONS(1246), + [anon_sym___inline__] = ACTIONS(1246), + [anon_sym___forceinline] = ACTIONS(1246), + [anon_sym_thread_local] = ACTIONS(1246), + [anon_sym___thread] = ACTIONS(1246), + [anon_sym_const] = ACTIONS(1246), + [anon_sym_constexpr] = ACTIONS(1246), + [anon_sym_volatile] = ACTIONS(1246), + [anon_sym_restrict] = ACTIONS(1246), + [anon_sym___restrict__] = ACTIONS(1246), + [anon_sym__Atomic] = ACTIONS(1246), + [anon_sym__Noreturn] = ACTIONS(1246), + [anon_sym_noreturn] = ACTIONS(1246), + [anon_sym_alignas] = ACTIONS(1246), + [anon_sym__Alignas] = ACTIONS(1246), + [sym_primitive_type] = ACTIONS(1246), + [anon_sym_enum] = ACTIONS(1246), + [anon_sym_struct] = ACTIONS(1246), + [anon_sym_union] = ACTIONS(1246), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_else] = ACTIONS(1246), + [anon_sym_switch] = ACTIONS(1246), + [anon_sym_case] = ACTIONS(1246), + [anon_sym_default] = ACTIONS(1246), + [anon_sym_while] = ACTIONS(1246), + [anon_sym_do] = ACTIONS(1246), + [anon_sym_for] = ACTIONS(1246), + [anon_sym_return] = ACTIONS(1246), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1246), + [anon_sym_goto] = ACTIONS(1246), + [anon_sym___try] = ACTIONS(1246), + [anon_sym___leave] = ACTIONS(1246), + [anon_sym_DASH_DASH] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_sizeof] = ACTIONS(1246), + [anon_sym___alignof__] = ACTIONS(1246), + [anon_sym___alignof] = ACTIONS(1246), + [anon_sym__alignof] = ACTIONS(1246), + [anon_sym_alignof] = ACTIONS(1246), + [anon_sym__Alignof] = ACTIONS(1246), + [anon_sym_offsetof] = ACTIONS(1246), + [anon_sym__Generic] = ACTIONS(1246), + [anon_sym_asm] = ACTIONS(1246), + [anon_sym___asm__] = ACTIONS(1246), + [sym_number_literal] = ACTIONS(1248), + [anon_sym_L_SQUOTE] = ACTIONS(1248), + [anon_sym_u_SQUOTE] = ACTIONS(1248), + [anon_sym_U_SQUOTE] = ACTIONS(1248), + [anon_sym_u8_SQUOTE] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1248), + [anon_sym_L_DQUOTE] = ACTIONS(1248), + [anon_sym_u_DQUOTE] = ACTIONS(1248), + [anon_sym_U_DQUOTE] = ACTIONS(1248), + [anon_sym_u8_DQUOTE] = ACTIONS(1248), + [anon_sym_DQUOTE] = ACTIONS(1248), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), + [anon_sym_NULL] = ACTIONS(1246), + [anon_sym_nullptr] = ACTIONS(1246), [sym_comment] = ACTIONS(5), }, - [226] = { - [ts_builtin_sym_end] = ACTIONS(1276), - [sym_identifier] = ACTIONS(1274), + [216] = { + [ts_builtin_sym_end] = ACTIONS(1252), + [sym_identifier] = ACTIONS(1250), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1274), - [aux_sym_preproc_def_token1] = ACTIONS(1274), - [aux_sym_preproc_if_token1] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), - [sym_preproc_directive] = ACTIONS(1274), - [anon_sym_LPAREN2] = ACTIONS(1276), - [anon_sym_BANG] = ACTIONS(1276), - [anon_sym_TILDE] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym___extension__] = ACTIONS(1274), - [anon_sym_typedef] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym___attribute__] = ACTIONS(1274), - [anon_sym___scanf] = ACTIONS(1274), - [anon_sym___printf] = ACTIONS(1274), - [anon_sym___read_mostly] = ACTIONS(1274), - [anon_sym___must_hold] = ACTIONS(1274), - [anon_sym___ro_after_init] = ACTIONS(1274), - [anon_sym___noreturn] = ACTIONS(1274), - [anon_sym___cold] = ACTIONS(1274), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1276), - [anon_sym___declspec] = ACTIONS(1274), - [anon_sym___init] = ACTIONS(1274), - [anon_sym___exit] = ACTIONS(1274), - [anon_sym___cdecl] = ACTIONS(1274), - [anon_sym___clrcall] = ACTIONS(1274), - [anon_sym___stdcall] = ACTIONS(1274), - [anon_sym___fastcall] = ACTIONS(1274), - [anon_sym___thiscall] = ACTIONS(1274), - [anon_sym___vectorcall] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_signed] = ACTIONS(1274), - [anon_sym_unsigned] = ACTIONS(1274), - [anon_sym_long] = ACTIONS(1274), - [anon_sym_short] = ACTIONS(1274), - [anon_sym_static] = ACTIONS(1274), - [anon_sym_auto] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_inline] = ACTIONS(1274), - [anon_sym___inline] = ACTIONS(1274), - [anon_sym___inline__] = ACTIONS(1274), - [anon_sym___forceinline] = ACTIONS(1274), - [anon_sym_thread_local] = ACTIONS(1274), - [anon_sym___thread] = ACTIONS(1274), - [anon_sym_const] = ACTIONS(1274), - [anon_sym_constexpr] = ACTIONS(1274), - [anon_sym_volatile] = ACTIONS(1274), - [anon_sym_restrict] = ACTIONS(1274), - [anon_sym___restrict__] = ACTIONS(1274), - [anon_sym__Atomic] = ACTIONS(1274), - [anon_sym__Noreturn] = ACTIONS(1274), - [anon_sym_noreturn] = ACTIONS(1274), - [anon_sym_alignas] = ACTIONS(1274), - [anon_sym__Alignas] = ACTIONS(1274), - [sym_primitive_type] = ACTIONS(1274), - [anon_sym_enum] = ACTIONS(1274), - [anon_sym_struct] = ACTIONS(1274), - [anon_sym_union] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_else] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(1274), - [anon_sym_case] = ACTIONS(1274), - [anon_sym_default] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_do] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_goto] = ACTIONS(1274), - [anon_sym___try] = ACTIONS(1274), - [anon_sym___leave] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_sizeof] = ACTIONS(1274), - [anon_sym___alignof__] = ACTIONS(1274), - [anon_sym___alignof] = ACTIONS(1274), - [anon_sym__alignof] = ACTIONS(1274), - [anon_sym_alignof] = ACTIONS(1274), - [anon_sym__Alignof] = ACTIONS(1274), - [anon_sym_offsetof] = ACTIONS(1274), - [anon_sym__Generic] = ACTIONS(1274), - [anon_sym_asm] = ACTIONS(1274), - [anon_sym___asm__] = ACTIONS(1274), - [sym_number_literal] = ACTIONS(1276), - [anon_sym_L_SQUOTE] = ACTIONS(1276), - [anon_sym_u_SQUOTE] = ACTIONS(1276), - [anon_sym_U_SQUOTE] = ACTIONS(1276), - [anon_sym_u8_SQUOTE] = ACTIONS(1276), - [anon_sym_SQUOTE] = ACTIONS(1276), - [anon_sym_L_DQUOTE] = ACTIONS(1276), - [anon_sym_u_DQUOTE] = ACTIONS(1276), - [anon_sym_U_DQUOTE] = ACTIONS(1276), - [anon_sym_u8_DQUOTE] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym_true] = ACTIONS(1274), - [sym_false] = ACTIONS(1274), - [anon_sym_NULL] = ACTIONS(1274), - [anon_sym_nullptr] = ACTIONS(1274), - [sym_comment] = ACTIONS(5), - }, - [227] = { - [ts_builtin_sym_end] = ACTIONS(1220), - [sym_identifier] = ACTIONS(1218), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1218), - [aux_sym_preproc_def_token1] = ACTIONS(1218), - [aux_sym_preproc_if_token1] = ACTIONS(1218), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1218), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1218), - [sym_preproc_directive] = ACTIONS(1218), - [anon_sym_LPAREN2] = ACTIONS(1220), - [anon_sym_BANG] = ACTIONS(1220), - [anon_sym_TILDE] = ACTIONS(1220), - [anon_sym_DASH] = ACTIONS(1218), - [anon_sym_PLUS] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1220), - [anon_sym_SEMI] = ACTIONS(1220), - [anon_sym___extension__] = ACTIONS(1218), - [anon_sym_typedef] = ACTIONS(1218), - [anon_sym_extern] = ACTIONS(1218), - [anon_sym___attribute__] = ACTIONS(1218), - [anon_sym___scanf] = ACTIONS(1218), - [anon_sym___printf] = ACTIONS(1218), - [anon_sym___read_mostly] = ACTIONS(1218), - [anon_sym___must_hold] = ACTIONS(1218), - [anon_sym___ro_after_init] = ACTIONS(1218), - [anon_sym___noreturn] = ACTIONS(1218), - [anon_sym___cold] = ACTIONS(1218), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1220), - [anon_sym___declspec] = ACTIONS(1218), - [anon_sym___init] = ACTIONS(1218), - [anon_sym___exit] = ACTIONS(1218), - [anon_sym___cdecl] = ACTIONS(1218), - [anon_sym___clrcall] = ACTIONS(1218), - [anon_sym___stdcall] = ACTIONS(1218), - [anon_sym___fastcall] = ACTIONS(1218), - [anon_sym___thiscall] = ACTIONS(1218), - [anon_sym___vectorcall] = ACTIONS(1218), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_signed] = ACTIONS(1218), - [anon_sym_unsigned] = ACTIONS(1218), - [anon_sym_long] = ACTIONS(1218), - [anon_sym_short] = ACTIONS(1218), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_auto] = ACTIONS(1218), - [anon_sym_register] = ACTIONS(1218), - [anon_sym_inline] = ACTIONS(1218), - [anon_sym___inline] = ACTIONS(1218), - [anon_sym___inline__] = ACTIONS(1218), - [anon_sym___forceinline] = ACTIONS(1218), - [anon_sym_thread_local] = ACTIONS(1218), - [anon_sym___thread] = ACTIONS(1218), - [anon_sym_const] = ACTIONS(1218), - [anon_sym_constexpr] = ACTIONS(1218), - [anon_sym_volatile] = ACTIONS(1218), - [anon_sym_restrict] = ACTIONS(1218), - [anon_sym___restrict__] = ACTIONS(1218), - [anon_sym__Atomic] = ACTIONS(1218), - [anon_sym__Noreturn] = ACTIONS(1218), - [anon_sym_noreturn] = ACTIONS(1218), - [anon_sym_alignas] = ACTIONS(1218), - [anon_sym__Alignas] = ACTIONS(1218), - [sym_primitive_type] = ACTIONS(1218), - [anon_sym_enum] = ACTIONS(1218), - [anon_sym_struct] = ACTIONS(1218), - [anon_sym_union] = ACTIONS(1218), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_else] = ACTIONS(1218), - [anon_sym_switch] = ACTIONS(1218), - [anon_sym_case] = ACTIONS(1218), - [anon_sym_default] = ACTIONS(1218), - [anon_sym_while] = ACTIONS(1218), - [anon_sym_do] = ACTIONS(1218), - [anon_sym_for] = ACTIONS(1218), - [anon_sym_return] = ACTIONS(1218), - [anon_sym_break] = ACTIONS(1218), - [anon_sym_continue] = ACTIONS(1218), - [anon_sym_goto] = ACTIONS(1218), - [anon_sym___try] = ACTIONS(1218), - [anon_sym___leave] = ACTIONS(1218), - [anon_sym_DASH_DASH] = ACTIONS(1220), - [anon_sym_PLUS_PLUS] = ACTIONS(1220), - [anon_sym_sizeof] = ACTIONS(1218), - [anon_sym___alignof__] = ACTIONS(1218), - [anon_sym___alignof] = ACTIONS(1218), - [anon_sym__alignof] = ACTIONS(1218), - [anon_sym_alignof] = ACTIONS(1218), - [anon_sym__Alignof] = ACTIONS(1218), - [anon_sym_offsetof] = ACTIONS(1218), - [anon_sym__Generic] = ACTIONS(1218), - [anon_sym_asm] = ACTIONS(1218), - [anon_sym___asm__] = ACTIONS(1218), - [sym_number_literal] = ACTIONS(1220), - [anon_sym_L_SQUOTE] = ACTIONS(1220), - [anon_sym_u_SQUOTE] = ACTIONS(1220), - [anon_sym_U_SQUOTE] = ACTIONS(1220), - [anon_sym_u8_SQUOTE] = ACTIONS(1220), - [anon_sym_SQUOTE] = ACTIONS(1220), - [anon_sym_L_DQUOTE] = ACTIONS(1220), - [anon_sym_u_DQUOTE] = ACTIONS(1220), - [anon_sym_U_DQUOTE] = ACTIONS(1220), - [anon_sym_u8_DQUOTE] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1220), - [sym_true] = ACTIONS(1218), - [sym_false] = ACTIONS(1218), - [anon_sym_NULL] = ACTIONS(1218), - [anon_sym_nullptr] = ACTIONS(1218), + [aux_sym_preproc_include_token1] = ACTIONS(1250), + [aux_sym_preproc_def_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), + [sym_preproc_directive] = ACTIONS(1250), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym___extension__] = ACTIONS(1250), + [anon_sym_typedef] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1250), + [anon_sym___attribute__] = ACTIONS(1250), + [anon_sym___scanf] = ACTIONS(1250), + [anon_sym___printf] = ACTIONS(1250), + [anon_sym___read_mostly] = ACTIONS(1250), + [anon_sym___must_hold] = ACTIONS(1250), + [anon_sym___ro_after_init] = ACTIONS(1250), + [anon_sym___noreturn] = ACTIONS(1250), + [anon_sym___cold] = ACTIONS(1250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), + [anon_sym___declspec] = ACTIONS(1250), + [anon_sym___init] = ACTIONS(1250), + [anon_sym___exit] = ACTIONS(1250), + [anon_sym___cdecl] = ACTIONS(1250), + [anon_sym___clrcall] = ACTIONS(1250), + [anon_sym___stdcall] = ACTIONS(1250), + [anon_sym___fastcall] = ACTIONS(1250), + [anon_sym___thiscall] = ACTIONS(1250), + [anon_sym___vectorcall] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_signed] = ACTIONS(1250), + [anon_sym_unsigned] = ACTIONS(1250), + [anon_sym_long] = ACTIONS(1250), + [anon_sym_short] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_auto] = ACTIONS(1250), + [anon_sym_register] = ACTIONS(1250), + [anon_sym_inline] = ACTIONS(1250), + [anon_sym___inline] = ACTIONS(1250), + [anon_sym___inline__] = ACTIONS(1250), + [anon_sym___forceinline] = ACTIONS(1250), + [anon_sym_thread_local] = ACTIONS(1250), + [anon_sym___thread] = ACTIONS(1250), + [anon_sym_const] = ACTIONS(1250), + [anon_sym_constexpr] = ACTIONS(1250), + [anon_sym_volatile] = ACTIONS(1250), + [anon_sym_restrict] = ACTIONS(1250), + [anon_sym___restrict__] = ACTIONS(1250), + [anon_sym__Atomic] = ACTIONS(1250), + [anon_sym__Noreturn] = ACTIONS(1250), + [anon_sym_noreturn] = ACTIONS(1250), + [anon_sym_alignas] = ACTIONS(1250), + [anon_sym__Alignas] = ACTIONS(1250), + [sym_primitive_type] = ACTIONS(1250), + [anon_sym_enum] = ACTIONS(1250), + [anon_sym_struct] = ACTIONS(1250), + [anon_sym_union] = ACTIONS(1250), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_else] = ACTIONS(1250), + [anon_sym_switch] = ACTIONS(1250), + [anon_sym_case] = ACTIONS(1250), + [anon_sym_default] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [anon_sym_do] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_goto] = ACTIONS(1250), + [anon_sym___try] = ACTIONS(1250), + [anon_sym___leave] = ACTIONS(1250), + [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_sizeof] = ACTIONS(1250), + [anon_sym___alignof__] = ACTIONS(1250), + [anon_sym___alignof] = ACTIONS(1250), + [anon_sym__alignof] = ACTIONS(1250), + [anon_sym_alignof] = ACTIONS(1250), + [anon_sym__Alignof] = ACTIONS(1250), + [anon_sym_offsetof] = ACTIONS(1250), + [anon_sym__Generic] = ACTIONS(1250), + [anon_sym_asm] = ACTIONS(1250), + [anon_sym___asm__] = ACTIONS(1250), + [sym_number_literal] = ACTIONS(1252), + [anon_sym_L_SQUOTE] = ACTIONS(1252), + [anon_sym_u_SQUOTE] = ACTIONS(1252), + [anon_sym_U_SQUOTE] = ACTIONS(1252), + [anon_sym_u8_SQUOTE] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1252), + [anon_sym_L_DQUOTE] = ACTIONS(1252), + [anon_sym_u_DQUOTE] = ACTIONS(1252), + [anon_sym_U_DQUOTE] = ACTIONS(1252), + [anon_sym_u8_DQUOTE] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_true] = ACTIONS(1250), + [sym_false] = ACTIONS(1250), + [anon_sym_NULL] = ACTIONS(1250), + [anon_sym_nullptr] = ACTIONS(1250), [sym_comment] = ACTIONS(5), }, - [228] = { - [ts_builtin_sym_end] = ACTIONS(1276), - [sym_identifier] = ACTIONS(1274), + [217] = { + [ts_builtin_sym_end] = ACTIONS(1252), + [sym_identifier] = ACTIONS(1250), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1274), - [aux_sym_preproc_def_token1] = ACTIONS(1274), - [aux_sym_preproc_if_token1] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), - [sym_preproc_directive] = ACTIONS(1274), - [anon_sym_LPAREN2] = ACTIONS(1276), - [anon_sym_BANG] = ACTIONS(1276), - [anon_sym_TILDE] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym___extension__] = ACTIONS(1274), - [anon_sym_typedef] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym___attribute__] = ACTIONS(1274), - [anon_sym___scanf] = ACTIONS(1274), - [anon_sym___printf] = ACTIONS(1274), - [anon_sym___read_mostly] = ACTIONS(1274), - [anon_sym___must_hold] = ACTIONS(1274), - [anon_sym___ro_after_init] = ACTIONS(1274), - [anon_sym___noreturn] = ACTIONS(1274), - [anon_sym___cold] = ACTIONS(1274), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1276), - [anon_sym___declspec] = ACTIONS(1274), - [anon_sym___init] = ACTIONS(1274), - [anon_sym___exit] = ACTIONS(1274), - [anon_sym___cdecl] = ACTIONS(1274), - [anon_sym___clrcall] = ACTIONS(1274), - [anon_sym___stdcall] = ACTIONS(1274), - [anon_sym___fastcall] = ACTIONS(1274), - [anon_sym___thiscall] = ACTIONS(1274), - [anon_sym___vectorcall] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_signed] = ACTIONS(1274), - [anon_sym_unsigned] = ACTIONS(1274), - [anon_sym_long] = ACTIONS(1274), - [anon_sym_short] = ACTIONS(1274), - [anon_sym_static] = ACTIONS(1274), - [anon_sym_auto] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_inline] = ACTIONS(1274), - [anon_sym___inline] = ACTIONS(1274), - [anon_sym___inline__] = ACTIONS(1274), - [anon_sym___forceinline] = ACTIONS(1274), - [anon_sym_thread_local] = ACTIONS(1274), - [anon_sym___thread] = ACTIONS(1274), - [anon_sym_const] = ACTIONS(1274), - [anon_sym_constexpr] = ACTIONS(1274), - [anon_sym_volatile] = ACTIONS(1274), - [anon_sym_restrict] = ACTIONS(1274), - [anon_sym___restrict__] = ACTIONS(1274), - [anon_sym__Atomic] = ACTIONS(1274), - [anon_sym__Noreturn] = ACTIONS(1274), - [anon_sym_noreturn] = ACTIONS(1274), - [anon_sym_alignas] = ACTIONS(1274), - [anon_sym__Alignas] = ACTIONS(1274), - [sym_primitive_type] = ACTIONS(1274), - [anon_sym_enum] = ACTIONS(1274), - [anon_sym_struct] = ACTIONS(1274), - [anon_sym_union] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_else] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(1274), - [anon_sym_case] = ACTIONS(1274), - [anon_sym_default] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_do] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_goto] = ACTIONS(1274), - [anon_sym___try] = ACTIONS(1274), - [anon_sym___leave] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_sizeof] = ACTIONS(1274), - [anon_sym___alignof__] = ACTIONS(1274), - [anon_sym___alignof] = ACTIONS(1274), - [anon_sym__alignof] = ACTIONS(1274), - [anon_sym_alignof] = ACTIONS(1274), - [anon_sym__Alignof] = ACTIONS(1274), - [anon_sym_offsetof] = ACTIONS(1274), - [anon_sym__Generic] = ACTIONS(1274), - [anon_sym_asm] = ACTIONS(1274), - [anon_sym___asm__] = ACTIONS(1274), - [sym_number_literal] = ACTIONS(1276), - [anon_sym_L_SQUOTE] = ACTIONS(1276), - [anon_sym_u_SQUOTE] = ACTIONS(1276), - [anon_sym_U_SQUOTE] = ACTIONS(1276), - [anon_sym_u8_SQUOTE] = ACTIONS(1276), - [anon_sym_SQUOTE] = ACTIONS(1276), - [anon_sym_L_DQUOTE] = ACTIONS(1276), - [anon_sym_u_DQUOTE] = ACTIONS(1276), - [anon_sym_U_DQUOTE] = ACTIONS(1276), - [anon_sym_u8_DQUOTE] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym_true] = ACTIONS(1274), - [sym_false] = ACTIONS(1274), - [anon_sym_NULL] = ACTIONS(1274), - [anon_sym_nullptr] = ACTIONS(1274), + [aux_sym_preproc_include_token1] = ACTIONS(1250), + [aux_sym_preproc_def_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), + [sym_preproc_directive] = ACTIONS(1250), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym___extension__] = ACTIONS(1250), + [anon_sym_typedef] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1250), + [anon_sym___attribute__] = ACTIONS(1250), + [anon_sym___scanf] = ACTIONS(1250), + [anon_sym___printf] = ACTIONS(1250), + [anon_sym___read_mostly] = ACTIONS(1250), + [anon_sym___must_hold] = ACTIONS(1250), + [anon_sym___ro_after_init] = ACTIONS(1250), + [anon_sym___noreturn] = ACTIONS(1250), + [anon_sym___cold] = ACTIONS(1250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), + [anon_sym___declspec] = ACTIONS(1250), + [anon_sym___init] = ACTIONS(1250), + [anon_sym___exit] = ACTIONS(1250), + [anon_sym___cdecl] = ACTIONS(1250), + [anon_sym___clrcall] = ACTIONS(1250), + [anon_sym___stdcall] = ACTIONS(1250), + [anon_sym___fastcall] = ACTIONS(1250), + [anon_sym___thiscall] = ACTIONS(1250), + [anon_sym___vectorcall] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_signed] = ACTIONS(1250), + [anon_sym_unsigned] = ACTIONS(1250), + [anon_sym_long] = ACTIONS(1250), + [anon_sym_short] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_auto] = ACTIONS(1250), + [anon_sym_register] = ACTIONS(1250), + [anon_sym_inline] = ACTIONS(1250), + [anon_sym___inline] = ACTIONS(1250), + [anon_sym___inline__] = ACTIONS(1250), + [anon_sym___forceinline] = ACTIONS(1250), + [anon_sym_thread_local] = ACTIONS(1250), + [anon_sym___thread] = ACTIONS(1250), + [anon_sym_const] = ACTIONS(1250), + [anon_sym_constexpr] = ACTIONS(1250), + [anon_sym_volatile] = ACTIONS(1250), + [anon_sym_restrict] = ACTIONS(1250), + [anon_sym___restrict__] = ACTIONS(1250), + [anon_sym__Atomic] = ACTIONS(1250), + [anon_sym__Noreturn] = ACTIONS(1250), + [anon_sym_noreturn] = ACTIONS(1250), + [anon_sym_alignas] = ACTIONS(1250), + [anon_sym__Alignas] = ACTIONS(1250), + [sym_primitive_type] = ACTIONS(1250), + [anon_sym_enum] = ACTIONS(1250), + [anon_sym_struct] = ACTIONS(1250), + [anon_sym_union] = ACTIONS(1250), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_else] = ACTIONS(1250), + [anon_sym_switch] = ACTIONS(1250), + [anon_sym_case] = ACTIONS(1250), + [anon_sym_default] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [anon_sym_do] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_goto] = ACTIONS(1250), + [anon_sym___try] = ACTIONS(1250), + [anon_sym___leave] = ACTIONS(1250), + [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_sizeof] = ACTIONS(1250), + [anon_sym___alignof__] = ACTIONS(1250), + [anon_sym___alignof] = ACTIONS(1250), + [anon_sym__alignof] = ACTIONS(1250), + [anon_sym_alignof] = ACTIONS(1250), + [anon_sym__Alignof] = ACTIONS(1250), + [anon_sym_offsetof] = ACTIONS(1250), + [anon_sym__Generic] = ACTIONS(1250), + [anon_sym_asm] = ACTIONS(1250), + [anon_sym___asm__] = ACTIONS(1250), + [sym_number_literal] = ACTIONS(1252), + [anon_sym_L_SQUOTE] = ACTIONS(1252), + [anon_sym_u_SQUOTE] = ACTIONS(1252), + [anon_sym_U_SQUOTE] = ACTIONS(1252), + [anon_sym_u8_SQUOTE] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1252), + [anon_sym_L_DQUOTE] = ACTIONS(1252), + [anon_sym_u_DQUOTE] = ACTIONS(1252), + [anon_sym_U_DQUOTE] = ACTIONS(1252), + [anon_sym_u8_DQUOTE] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_true] = ACTIONS(1250), + [sym_false] = ACTIONS(1250), + [anon_sym_NULL] = ACTIONS(1250), + [anon_sym_nullptr] = ACTIONS(1250), [sym_comment] = ACTIONS(5), }, - [229] = { - [sym_identifier] = ACTIONS(1218), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1218), - [aux_sym_preproc_def_token1] = ACTIONS(1218), - [aux_sym_preproc_if_token1] = ACTIONS(1218), - [aux_sym_preproc_if_token2] = ACTIONS(1218), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1218), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1218), - [sym_preproc_directive] = ACTIONS(1218), - [anon_sym_LPAREN2] = ACTIONS(1220), - [anon_sym_BANG] = ACTIONS(1220), - [anon_sym_TILDE] = ACTIONS(1220), - [anon_sym_DASH] = ACTIONS(1218), - [anon_sym_PLUS] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1220), - [anon_sym_SEMI] = ACTIONS(1220), - [anon_sym___extension__] = ACTIONS(1218), - [anon_sym_typedef] = ACTIONS(1218), - [anon_sym_extern] = ACTIONS(1218), - [anon_sym___attribute__] = ACTIONS(1218), - [anon_sym___scanf] = ACTIONS(1218), - [anon_sym___printf] = ACTIONS(1218), - [anon_sym___read_mostly] = ACTIONS(1218), - [anon_sym___must_hold] = ACTIONS(1218), - [anon_sym___ro_after_init] = ACTIONS(1218), - [anon_sym___noreturn] = ACTIONS(1218), - [anon_sym___cold] = ACTIONS(1218), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1220), - [anon_sym___declspec] = ACTIONS(1218), - [anon_sym___init] = ACTIONS(1218), - [anon_sym___exit] = ACTIONS(1218), - [anon_sym___cdecl] = ACTIONS(1218), - [anon_sym___clrcall] = ACTIONS(1218), - [anon_sym___stdcall] = ACTIONS(1218), - [anon_sym___fastcall] = ACTIONS(1218), - [anon_sym___thiscall] = ACTIONS(1218), - [anon_sym___vectorcall] = ACTIONS(1218), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_signed] = ACTIONS(1218), - [anon_sym_unsigned] = ACTIONS(1218), - [anon_sym_long] = ACTIONS(1218), - [anon_sym_short] = ACTIONS(1218), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_auto] = ACTIONS(1218), - [anon_sym_register] = ACTIONS(1218), - [anon_sym_inline] = ACTIONS(1218), - [anon_sym___inline] = ACTIONS(1218), - [anon_sym___inline__] = ACTIONS(1218), - [anon_sym___forceinline] = ACTIONS(1218), - [anon_sym_thread_local] = ACTIONS(1218), - [anon_sym___thread] = ACTIONS(1218), - [anon_sym_const] = ACTIONS(1218), - [anon_sym_constexpr] = ACTIONS(1218), - [anon_sym_volatile] = ACTIONS(1218), - [anon_sym_restrict] = ACTIONS(1218), - [anon_sym___restrict__] = ACTIONS(1218), - [anon_sym__Atomic] = ACTIONS(1218), - [anon_sym__Noreturn] = ACTIONS(1218), - [anon_sym_noreturn] = ACTIONS(1218), - [anon_sym_alignas] = ACTIONS(1218), - [anon_sym__Alignas] = ACTIONS(1218), - [sym_primitive_type] = ACTIONS(1218), - [anon_sym_enum] = ACTIONS(1218), - [anon_sym_struct] = ACTIONS(1218), - [anon_sym_union] = ACTIONS(1218), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_else] = ACTIONS(1218), - [anon_sym_switch] = ACTIONS(1218), - [anon_sym_case] = ACTIONS(1218), - [anon_sym_default] = ACTIONS(1218), - [anon_sym_while] = ACTIONS(1218), - [anon_sym_do] = ACTIONS(1218), - [anon_sym_for] = ACTIONS(1218), - [anon_sym_return] = ACTIONS(1218), - [anon_sym_break] = ACTIONS(1218), - [anon_sym_continue] = ACTIONS(1218), - [anon_sym_goto] = ACTIONS(1218), - [anon_sym___try] = ACTIONS(1218), - [anon_sym___leave] = ACTIONS(1218), - [anon_sym_DASH_DASH] = ACTIONS(1220), - [anon_sym_PLUS_PLUS] = ACTIONS(1220), - [anon_sym_sizeof] = ACTIONS(1218), - [anon_sym___alignof__] = ACTIONS(1218), - [anon_sym___alignof] = ACTIONS(1218), - [anon_sym__alignof] = ACTIONS(1218), - [anon_sym_alignof] = ACTIONS(1218), - [anon_sym__Alignof] = ACTIONS(1218), - [anon_sym_offsetof] = ACTIONS(1218), - [anon_sym__Generic] = ACTIONS(1218), - [anon_sym_asm] = ACTIONS(1218), - [anon_sym___asm__] = ACTIONS(1218), - [sym_number_literal] = ACTIONS(1220), - [anon_sym_L_SQUOTE] = ACTIONS(1220), - [anon_sym_u_SQUOTE] = ACTIONS(1220), - [anon_sym_U_SQUOTE] = ACTIONS(1220), - [anon_sym_u8_SQUOTE] = ACTIONS(1220), - [anon_sym_SQUOTE] = ACTIONS(1220), - [anon_sym_L_DQUOTE] = ACTIONS(1220), - [anon_sym_u_DQUOTE] = ACTIONS(1220), - [anon_sym_U_DQUOTE] = ACTIONS(1220), - [anon_sym_u8_DQUOTE] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1220), - [sym_true] = ACTIONS(1218), - [sym_false] = ACTIONS(1218), - [anon_sym_NULL] = ACTIONS(1218), - [anon_sym_nullptr] = ACTIONS(1218), + [218] = { + [ts_builtin_sym_end] = ACTIONS(1256), + [sym_identifier] = ACTIONS(1254), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1254), + [aux_sym_preproc_def_token1] = ACTIONS(1254), + [aux_sym_preproc_if_token1] = ACTIONS(1254), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1254), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1254), + [sym_preproc_directive] = ACTIONS(1254), + [anon_sym_LPAREN2] = ACTIONS(1256), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_SEMI] = ACTIONS(1256), + [anon_sym___extension__] = ACTIONS(1254), + [anon_sym_typedef] = ACTIONS(1254), + [anon_sym_extern] = ACTIONS(1254), + [anon_sym___attribute__] = ACTIONS(1254), + [anon_sym___scanf] = ACTIONS(1254), + [anon_sym___printf] = ACTIONS(1254), + [anon_sym___read_mostly] = ACTIONS(1254), + [anon_sym___must_hold] = ACTIONS(1254), + [anon_sym___ro_after_init] = ACTIONS(1254), + [anon_sym___noreturn] = ACTIONS(1254), + [anon_sym___cold] = ACTIONS(1254), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1256), + [anon_sym___declspec] = ACTIONS(1254), + [anon_sym___init] = ACTIONS(1254), + [anon_sym___exit] = ACTIONS(1254), + [anon_sym___cdecl] = ACTIONS(1254), + [anon_sym___clrcall] = ACTIONS(1254), + [anon_sym___stdcall] = ACTIONS(1254), + [anon_sym___fastcall] = ACTIONS(1254), + [anon_sym___thiscall] = ACTIONS(1254), + [anon_sym___vectorcall] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_signed] = ACTIONS(1254), + [anon_sym_unsigned] = ACTIONS(1254), + [anon_sym_long] = ACTIONS(1254), + [anon_sym_short] = ACTIONS(1254), + [anon_sym_static] = ACTIONS(1254), + [anon_sym_auto] = ACTIONS(1254), + [anon_sym_register] = ACTIONS(1254), + [anon_sym_inline] = ACTIONS(1254), + [anon_sym___inline] = ACTIONS(1254), + [anon_sym___inline__] = ACTIONS(1254), + [anon_sym___forceinline] = ACTIONS(1254), + [anon_sym_thread_local] = ACTIONS(1254), + [anon_sym___thread] = ACTIONS(1254), + [anon_sym_const] = ACTIONS(1254), + [anon_sym_constexpr] = ACTIONS(1254), + [anon_sym_volatile] = ACTIONS(1254), + [anon_sym_restrict] = ACTIONS(1254), + [anon_sym___restrict__] = ACTIONS(1254), + [anon_sym__Atomic] = ACTIONS(1254), + [anon_sym__Noreturn] = ACTIONS(1254), + [anon_sym_noreturn] = ACTIONS(1254), + [anon_sym_alignas] = ACTIONS(1254), + [anon_sym__Alignas] = ACTIONS(1254), + [sym_primitive_type] = ACTIONS(1254), + [anon_sym_enum] = ACTIONS(1254), + [anon_sym_struct] = ACTIONS(1254), + [anon_sym_union] = ACTIONS(1254), + [anon_sym_if] = ACTIONS(1254), + [anon_sym_else] = ACTIONS(1254), + [anon_sym_switch] = ACTIONS(1254), + [anon_sym_case] = ACTIONS(1254), + [anon_sym_default] = ACTIONS(1254), + [anon_sym_while] = ACTIONS(1254), + [anon_sym_do] = ACTIONS(1254), + [anon_sym_for] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1254), + [anon_sym_break] = ACTIONS(1254), + [anon_sym_continue] = ACTIONS(1254), + [anon_sym_goto] = ACTIONS(1254), + [anon_sym___try] = ACTIONS(1254), + [anon_sym___leave] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1256), + [anon_sym_sizeof] = ACTIONS(1254), + [anon_sym___alignof__] = ACTIONS(1254), + [anon_sym___alignof] = ACTIONS(1254), + [anon_sym__alignof] = ACTIONS(1254), + [anon_sym_alignof] = ACTIONS(1254), + [anon_sym__Alignof] = ACTIONS(1254), + [anon_sym_offsetof] = ACTIONS(1254), + [anon_sym__Generic] = ACTIONS(1254), + [anon_sym_asm] = ACTIONS(1254), + [anon_sym___asm__] = ACTIONS(1254), + [sym_number_literal] = ACTIONS(1256), + [anon_sym_L_SQUOTE] = ACTIONS(1256), + [anon_sym_u_SQUOTE] = ACTIONS(1256), + [anon_sym_U_SQUOTE] = ACTIONS(1256), + [anon_sym_u8_SQUOTE] = ACTIONS(1256), + [anon_sym_SQUOTE] = ACTIONS(1256), + [anon_sym_L_DQUOTE] = ACTIONS(1256), + [anon_sym_u_DQUOTE] = ACTIONS(1256), + [anon_sym_U_DQUOTE] = ACTIONS(1256), + [anon_sym_u8_DQUOTE] = ACTIONS(1256), + [anon_sym_DQUOTE] = ACTIONS(1256), + [sym_true] = ACTIONS(1254), + [sym_false] = ACTIONS(1254), + [anon_sym_NULL] = ACTIONS(1254), + [anon_sym_nullptr] = ACTIONS(1254), [sym_comment] = ACTIONS(5), }, - [230] = { - [sym_identifier] = ACTIONS(1222), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1222), - [aux_sym_preproc_def_token1] = ACTIONS(1222), - [aux_sym_preproc_if_token1] = ACTIONS(1222), - [aux_sym_preproc_if_token2] = ACTIONS(1222), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1222), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1222), - [sym_preproc_directive] = ACTIONS(1222), - [anon_sym_LPAREN2] = ACTIONS(1224), - [anon_sym_BANG] = ACTIONS(1224), - [anon_sym_TILDE] = ACTIONS(1224), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_STAR] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym___extension__] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(1222), - [anon_sym___attribute__] = ACTIONS(1222), - [anon_sym___scanf] = ACTIONS(1222), - [anon_sym___printf] = ACTIONS(1222), - [anon_sym___read_mostly] = ACTIONS(1222), - [anon_sym___must_hold] = ACTIONS(1222), - [anon_sym___ro_after_init] = ACTIONS(1222), - [anon_sym___noreturn] = ACTIONS(1222), - [anon_sym___cold] = ACTIONS(1222), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1224), - [anon_sym___declspec] = ACTIONS(1222), - [anon_sym___init] = ACTIONS(1222), - [anon_sym___exit] = ACTIONS(1222), - [anon_sym___cdecl] = ACTIONS(1222), - [anon_sym___clrcall] = ACTIONS(1222), - [anon_sym___stdcall] = ACTIONS(1222), - [anon_sym___fastcall] = ACTIONS(1222), - [anon_sym___thiscall] = ACTIONS(1222), - [anon_sym___vectorcall] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_signed] = ACTIONS(1222), - [anon_sym_unsigned] = ACTIONS(1222), - [anon_sym_long] = ACTIONS(1222), - [anon_sym_short] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1222), - [anon_sym_auto] = ACTIONS(1222), - [anon_sym_register] = ACTIONS(1222), - [anon_sym_inline] = ACTIONS(1222), - [anon_sym___inline] = ACTIONS(1222), - [anon_sym___inline__] = ACTIONS(1222), - [anon_sym___forceinline] = ACTIONS(1222), - [anon_sym_thread_local] = ACTIONS(1222), - [anon_sym___thread] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_constexpr] = ACTIONS(1222), - [anon_sym_volatile] = ACTIONS(1222), - [anon_sym_restrict] = ACTIONS(1222), - [anon_sym___restrict__] = ACTIONS(1222), - [anon_sym__Atomic] = ACTIONS(1222), - [anon_sym__Noreturn] = ACTIONS(1222), - [anon_sym_noreturn] = ACTIONS(1222), - [anon_sym_alignas] = ACTIONS(1222), - [anon_sym__Alignas] = ACTIONS(1222), - [sym_primitive_type] = ACTIONS(1222), - [anon_sym_enum] = ACTIONS(1222), - [anon_sym_struct] = ACTIONS(1222), - [anon_sym_union] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_else] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(1222), - [anon_sym_case] = ACTIONS(1222), - [anon_sym_default] = ACTIONS(1222), - [anon_sym_while] = ACTIONS(1222), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_break] = ACTIONS(1222), - [anon_sym_continue] = ACTIONS(1222), - [anon_sym_goto] = ACTIONS(1222), - [anon_sym___try] = ACTIONS(1222), - [anon_sym___leave] = ACTIONS(1222), - [anon_sym_DASH_DASH] = ACTIONS(1224), - [anon_sym_PLUS_PLUS] = ACTIONS(1224), - [anon_sym_sizeof] = ACTIONS(1222), - [anon_sym___alignof__] = ACTIONS(1222), - [anon_sym___alignof] = ACTIONS(1222), - [anon_sym__alignof] = ACTIONS(1222), - [anon_sym_alignof] = ACTIONS(1222), - [anon_sym__Alignof] = ACTIONS(1222), - [anon_sym_offsetof] = ACTIONS(1222), - [anon_sym__Generic] = ACTIONS(1222), - [anon_sym_asm] = ACTIONS(1222), - [anon_sym___asm__] = ACTIONS(1222), - [sym_number_literal] = ACTIONS(1224), - [anon_sym_L_SQUOTE] = ACTIONS(1224), - [anon_sym_u_SQUOTE] = ACTIONS(1224), - [anon_sym_U_SQUOTE] = ACTIONS(1224), - [anon_sym_u8_SQUOTE] = ACTIONS(1224), - [anon_sym_SQUOTE] = ACTIONS(1224), - [anon_sym_L_DQUOTE] = ACTIONS(1224), - [anon_sym_u_DQUOTE] = ACTIONS(1224), - [anon_sym_U_DQUOTE] = ACTIONS(1224), - [anon_sym_u8_DQUOTE] = ACTIONS(1224), - [anon_sym_DQUOTE] = ACTIONS(1224), - [sym_true] = ACTIONS(1222), - [sym_false] = ACTIONS(1222), - [anon_sym_NULL] = ACTIONS(1222), - [anon_sym_nullptr] = ACTIONS(1222), + [219] = { + [sym_identifier] = ACTIONS(1266), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1266), + [aux_sym_preproc_def_token1] = ACTIONS(1266), + [aux_sym_preproc_if_token1] = ACTIONS(1266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1266), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1266), + [sym_preproc_directive] = ACTIONS(1266), + [anon_sym_LPAREN2] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_TILDE] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_AMP] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1268), + [anon_sym___extension__] = ACTIONS(1266), + [anon_sym_typedef] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym___attribute__] = ACTIONS(1266), + [anon_sym___scanf] = ACTIONS(1266), + [anon_sym___printf] = ACTIONS(1266), + [anon_sym___read_mostly] = ACTIONS(1266), + [anon_sym___must_hold] = ACTIONS(1266), + [anon_sym___ro_after_init] = ACTIONS(1266), + [anon_sym___noreturn] = ACTIONS(1266), + [anon_sym___cold] = ACTIONS(1266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1268), + [anon_sym___declspec] = ACTIONS(1266), + [anon_sym___init] = ACTIONS(1266), + [anon_sym___exit] = ACTIONS(1266), + [anon_sym___cdecl] = ACTIONS(1266), + [anon_sym___clrcall] = ACTIONS(1266), + [anon_sym___stdcall] = ACTIONS(1266), + [anon_sym___fastcall] = ACTIONS(1266), + [anon_sym___thiscall] = ACTIONS(1266), + [anon_sym___vectorcall] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_RBRACE] = ACTIONS(1268), + [anon_sym_signed] = ACTIONS(1266), + [anon_sym_unsigned] = ACTIONS(1266), + [anon_sym_long] = ACTIONS(1266), + [anon_sym_short] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(1266), + [anon_sym_auto] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_inline] = ACTIONS(1266), + [anon_sym___inline] = ACTIONS(1266), + [anon_sym___inline__] = ACTIONS(1266), + [anon_sym___forceinline] = ACTIONS(1266), + [anon_sym_thread_local] = ACTIONS(1266), + [anon_sym___thread] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_constexpr] = ACTIONS(1266), + [anon_sym_volatile] = ACTIONS(1266), + [anon_sym_restrict] = ACTIONS(1266), + [anon_sym___restrict__] = ACTIONS(1266), + [anon_sym__Atomic] = ACTIONS(1266), + [anon_sym__Noreturn] = ACTIONS(1266), + [anon_sym_noreturn] = ACTIONS(1266), + [anon_sym_alignas] = ACTIONS(1266), + [anon_sym__Alignas] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(1266), + [anon_sym_enum] = ACTIONS(1266), + [anon_sym_struct] = ACTIONS(1266), + [anon_sym_union] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_else] = ACTIONS(1266), + [anon_sym_switch] = ACTIONS(1266), + [anon_sym_case] = ACTIONS(1266), + [anon_sym_default] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_goto] = ACTIONS(1266), + [anon_sym___try] = ACTIONS(1266), + [anon_sym___leave] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1268), + [anon_sym_sizeof] = ACTIONS(1266), + [anon_sym___alignof__] = ACTIONS(1266), + [anon_sym___alignof] = ACTIONS(1266), + [anon_sym__alignof] = ACTIONS(1266), + [anon_sym_alignof] = ACTIONS(1266), + [anon_sym__Alignof] = ACTIONS(1266), + [anon_sym_offsetof] = ACTIONS(1266), + [anon_sym__Generic] = ACTIONS(1266), + [anon_sym_asm] = ACTIONS(1266), + [anon_sym___asm__] = ACTIONS(1266), + [sym_number_literal] = ACTIONS(1268), + [anon_sym_L_SQUOTE] = ACTIONS(1268), + [anon_sym_u_SQUOTE] = ACTIONS(1268), + [anon_sym_U_SQUOTE] = ACTIONS(1268), + [anon_sym_u8_SQUOTE] = ACTIONS(1268), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_L_DQUOTE] = ACTIONS(1268), + [anon_sym_u_DQUOTE] = ACTIONS(1268), + [anon_sym_U_DQUOTE] = ACTIONS(1268), + [anon_sym_u8_DQUOTE] = ACTIONS(1268), + [anon_sym_DQUOTE] = ACTIONS(1268), + [sym_true] = ACTIONS(1266), + [sym_false] = ACTIONS(1266), + [anon_sym_NULL] = ACTIONS(1266), + [anon_sym_nullptr] = ACTIONS(1266), [sym_comment] = ACTIONS(5), }, - [231] = { - [sym_identifier] = ACTIONS(1230), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1230), - [aux_sym_preproc_def_token1] = ACTIONS(1230), - [aux_sym_preproc_if_token1] = ACTIONS(1230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1230), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1230), - [sym_preproc_directive] = ACTIONS(1230), - [anon_sym_LPAREN2] = ACTIONS(1232), - [anon_sym_BANG] = ACTIONS(1232), - [anon_sym_TILDE] = ACTIONS(1232), - [anon_sym_DASH] = ACTIONS(1230), - [anon_sym_PLUS] = ACTIONS(1230), - [anon_sym_STAR] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(1232), - [anon_sym_SEMI] = ACTIONS(1232), - [anon_sym___extension__] = ACTIONS(1230), - [anon_sym_typedef] = ACTIONS(1230), - [anon_sym_extern] = ACTIONS(1230), - [anon_sym___attribute__] = ACTIONS(1230), - [anon_sym___scanf] = ACTIONS(1230), - [anon_sym___printf] = ACTIONS(1230), - [anon_sym___read_mostly] = ACTIONS(1230), - [anon_sym___must_hold] = ACTIONS(1230), - [anon_sym___ro_after_init] = ACTIONS(1230), - [anon_sym___noreturn] = ACTIONS(1230), - [anon_sym___cold] = ACTIONS(1230), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1232), - [anon_sym___declspec] = ACTIONS(1230), - [anon_sym___init] = ACTIONS(1230), - [anon_sym___exit] = ACTIONS(1230), - [anon_sym___cdecl] = ACTIONS(1230), - [anon_sym___clrcall] = ACTIONS(1230), - [anon_sym___stdcall] = ACTIONS(1230), - [anon_sym___fastcall] = ACTIONS(1230), - [anon_sym___thiscall] = ACTIONS(1230), - [anon_sym___vectorcall] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_RBRACE] = ACTIONS(1232), - [anon_sym_signed] = ACTIONS(1230), - [anon_sym_unsigned] = ACTIONS(1230), - [anon_sym_long] = ACTIONS(1230), - [anon_sym_short] = ACTIONS(1230), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_auto] = ACTIONS(1230), - [anon_sym_register] = ACTIONS(1230), - [anon_sym_inline] = ACTIONS(1230), - [anon_sym___inline] = ACTIONS(1230), - [anon_sym___inline__] = ACTIONS(1230), - [anon_sym___forceinline] = ACTIONS(1230), - [anon_sym_thread_local] = ACTIONS(1230), - [anon_sym___thread] = ACTIONS(1230), - [anon_sym_const] = ACTIONS(1230), - [anon_sym_constexpr] = ACTIONS(1230), - [anon_sym_volatile] = ACTIONS(1230), - [anon_sym_restrict] = ACTIONS(1230), - [anon_sym___restrict__] = ACTIONS(1230), - [anon_sym__Atomic] = ACTIONS(1230), - [anon_sym__Noreturn] = ACTIONS(1230), - [anon_sym_noreturn] = ACTIONS(1230), - [anon_sym_alignas] = ACTIONS(1230), - [anon_sym__Alignas] = ACTIONS(1230), - [sym_primitive_type] = ACTIONS(1230), - [anon_sym_enum] = ACTIONS(1230), - [anon_sym_struct] = ACTIONS(1230), - [anon_sym_union] = ACTIONS(1230), - [anon_sym_if] = ACTIONS(1230), - [anon_sym_else] = ACTIONS(1230), - [anon_sym_switch] = ACTIONS(1230), - [anon_sym_case] = ACTIONS(1230), - [anon_sym_default] = ACTIONS(1230), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_do] = ACTIONS(1230), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(1230), - [anon_sym_break] = ACTIONS(1230), - [anon_sym_continue] = ACTIONS(1230), - [anon_sym_goto] = ACTIONS(1230), - [anon_sym___try] = ACTIONS(1230), - [anon_sym___leave] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1232), - [anon_sym_PLUS_PLUS] = ACTIONS(1232), - [anon_sym_sizeof] = ACTIONS(1230), - [anon_sym___alignof__] = ACTIONS(1230), - [anon_sym___alignof] = ACTIONS(1230), - [anon_sym__alignof] = ACTIONS(1230), - [anon_sym_alignof] = ACTIONS(1230), - [anon_sym__Alignof] = ACTIONS(1230), - [anon_sym_offsetof] = ACTIONS(1230), - [anon_sym__Generic] = ACTIONS(1230), - [anon_sym_asm] = ACTIONS(1230), - [anon_sym___asm__] = ACTIONS(1230), - [sym_number_literal] = ACTIONS(1232), - [anon_sym_L_SQUOTE] = ACTIONS(1232), - [anon_sym_u_SQUOTE] = ACTIONS(1232), - [anon_sym_U_SQUOTE] = ACTIONS(1232), - [anon_sym_u8_SQUOTE] = ACTIONS(1232), - [anon_sym_SQUOTE] = ACTIONS(1232), - [anon_sym_L_DQUOTE] = ACTIONS(1232), - [anon_sym_u_DQUOTE] = ACTIONS(1232), - [anon_sym_U_DQUOTE] = ACTIONS(1232), - [anon_sym_u8_DQUOTE] = ACTIONS(1232), - [anon_sym_DQUOTE] = ACTIONS(1232), - [sym_true] = ACTIONS(1230), - [sym_false] = ACTIONS(1230), - [anon_sym_NULL] = ACTIONS(1230), - [anon_sym_nullptr] = ACTIONS(1230), + [220] = { + [sym_identifier] = ACTIONS(1266), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1266), + [aux_sym_preproc_def_token1] = ACTIONS(1266), + [aux_sym_preproc_if_token1] = ACTIONS(1266), + [aux_sym_preproc_if_token2] = ACTIONS(1266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1266), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1266), + [sym_preproc_directive] = ACTIONS(1266), + [anon_sym_LPAREN2] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_TILDE] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_AMP] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1268), + [anon_sym___extension__] = ACTIONS(1266), + [anon_sym_typedef] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym___attribute__] = ACTIONS(1266), + [anon_sym___scanf] = ACTIONS(1266), + [anon_sym___printf] = ACTIONS(1266), + [anon_sym___read_mostly] = ACTIONS(1266), + [anon_sym___must_hold] = ACTIONS(1266), + [anon_sym___ro_after_init] = ACTIONS(1266), + [anon_sym___noreturn] = ACTIONS(1266), + [anon_sym___cold] = ACTIONS(1266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1268), + [anon_sym___declspec] = ACTIONS(1266), + [anon_sym___init] = ACTIONS(1266), + [anon_sym___exit] = ACTIONS(1266), + [anon_sym___cdecl] = ACTIONS(1266), + [anon_sym___clrcall] = ACTIONS(1266), + [anon_sym___stdcall] = ACTIONS(1266), + [anon_sym___fastcall] = ACTIONS(1266), + [anon_sym___thiscall] = ACTIONS(1266), + [anon_sym___vectorcall] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_signed] = ACTIONS(1266), + [anon_sym_unsigned] = ACTIONS(1266), + [anon_sym_long] = ACTIONS(1266), + [anon_sym_short] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(1266), + [anon_sym_auto] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_inline] = ACTIONS(1266), + [anon_sym___inline] = ACTIONS(1266), + [anon_sym___inline__] = ACTIONS(1266), + [anon_sym___forceinline] = ACTIONS(1266), + [anon_sym_thread_local] = ACTIONS(1266), + [anon_sym___thread] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_constexpr] = ACTIONS(1266), + [anon_sym_volatile] = ACTIONS(1266), + [anon_sym_restrict] = ACTIONS(1266), + [anon_sym___restrict__] = ACTIONS(1266), + [anon_sym__Atomic] = ACTIONS(1266), + [anon_sym__Noreturn] = ACTIONS(1266), + [anon_sym_noreturn] = ACTIONS(1266), + [anon_sym_alignas] = ACTIONS(1266), + [anon_sym__Alignas] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(1266), + [anon_sym_enum] = ACTIONS(1266), + [anon_sym_struct] = ACTIONS(1266), + [anon_sym_union] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_else] = ACTIONS(1266), + [anon_sym_switch] = ACTIONS(1266), + [anon_sym_case] = ACTIONS(1266), + [anon_sym_default] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_goto] = ACTIONS(1266), + [anon_sym___try] = ACTIONS(1266), + [anon_sym___leave] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1268), + [anon_sym_sizeof] = ACTIONS(1266), + [anon_sym___alignof__] = ACTIONS(1266), + [anon_sym___alignof] = ACTIONS(1266), + [anon_sym__alignof] = ACTIONS(1266), + [anon_sym_alignof] = ACTIONS(1266), + [anon_sym__Alignof] = ACTIONS(1266), + [anon_sym_offsetof] = ACTIONS(1266), + [anon_sym__Generic] = ACTIONS(1266), + [anon_sym_asm] = ACTIONS(1266), + [anon_sym___asm__] = ACTIONS(1266), + [sym_number_literal] = ACTIONS(1268), + [anon_sym_L_SQUOTE] = ACTIONS(1268), + [anon_sym_u_SQUOTE] = ACTIONS(1268), + [anon_sym_U_SQUOTE] = ACTIONS(1268), + [anon_sym_u8_SQUOTE] = ACTIONS(1268), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_L_DQUOTE] = ACTIONS(1268), + [anon_sym_u_DQUOTE] = ACTIONS(1268), + [anon_sym_U_DQUOTE] = ACTIONS(1268), + [anon_sym_u8_DQUOTE] = ACTIONS(1268), + [anon_sym_DQUOTE] = ACTIONS(1268), + [sym_true] = ACTIONS(1266), + [sym_false] = ACTIONS(1266), + [anon_sym_NULL] = ACTIONS(1266), + [anon_sym_nullptr] = ACTIONS(1266), [sym_comment] = ACTIONS(5), }, - [232] = { - [ts_builtin_sym_end] = ACTIONS(1288), - [sym_identifier] = ACTIONS(1286), + [221] = { + [sym_identifier] = ACTIONS(1254), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1286), - [aux_sym_preproc_def_token1] = ACTIONS(1286), - [aux_sym_preproc_if_token1] = ACTIONS(1286), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1286), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1286), - [sym_preproc_directive] = ACTIONS(1286), - [anon_sym_LPAREN2] = ACTIONS(1288), - [anon_sym_BANG] = ACTIONS(1288), - [anon_sym_TILDE] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym___extension__] = ACTIONS(1286), - [anon_sym_typedef] = ACTIONS(1286), - [anon_sym_extern] = ACTIONS(1286), - [anon_sym___attribute__] = ACTIONS(1286), - [anon_sym___scanf] = ACTIONS(1286), - [anon_sym___printf] = ACTIONS(1286), - [anon_sym___read_mostly] = ACTIONS(1286), - [anon_sym___must_hold] = ACTIONS(1286), - [anon_sym___ro_after_init] = ACTIONS(1286), - [anon_sym___noreturn] = ACTIONS(1286), - [anon_sym___cold] = ACTIONS(1286), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1288), - [anon_sym___declspec] = ACTIONS(1286), - [anon_sym___init] = ACTIONS(1286), - [anon_sym___exit] = ACTIONS(1286), - [anon_sym___cdecl] = ACTIONS(1286), - [anon_sym___clrcall] = ACTIONS(1286), - [anon_sym___stdcall] = ACTIONS(1286), - [anon_sym___fastcall] = ACTIONS(1286), - [anon_sym___thiscall] = ACTIONS(1286), - [anon_sym___vectorcall] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_signed] = ACTIONS(1286), - [anon_sym_unsigned] = ACTIONS(1286), - [anon_sym_long] = ACTIONS(1286), - [anon_sym_short] = ACTIONS(1286), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_auto] = ACTIONS(1286), - [anon_sym_register] = ACTIONS(1286), - [anon_sym_inline] = ACTIONS(1286), - [anon_sym___inline] = ACTIONS(1286), - [anon_sym___inline__] = ACTIONS(1286), - [anon_sym___forceinline] = ACTIONS(1286), - [anon_sym_thread_local] = ACTIONS(1286), - [anon_sym___thread] = ACTIONS(1286), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_constexpr] = ACTIONS(1286), - [anon_sym_volatile] = ACTIONS(1286), - [anon_sym_restrict] = ACTIONS(1286), - [anon_sym___restrict__] = ACTIONS(1286), - [anon_sym__Atomic] = ACTIONS(1286), - [anon_sym__Noreturn] = ACTIONS(1286), - [anon_sym_noreturn] = ACTIONS(1286), - [anon_sym_alignas] = ACTIONS(1286), - [anon_sym__Alignas] = ACTIONS(1286), - [sym_primitive_type] = ACTIONS(1286), - [anon_sym_enum] = ACTIONS(1286), - [anon_sym_struct] = ACTIONS(1286), - [anon_sym_union] = ACTIONS(1286), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_else] = ACTIONS(1286), - [anon_sym_switch] = ACTIONS(1286), - [anon_sym_case] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1286), - [anon_sym_while] = ACTIONS(1286), - [anon_sym_do] = ACTIONS(1286), - [anon_sym_for] = ACTIONS(1286), - [anon_sym_return] = ACTIONS(1286), - [anon_sym_break] = ACTIONS(1286), - [anon_sym_continue] = ACTIONS(1286), - [anon_sym_goto] = ACTIONS(1286), - [anon_sym___try] = ACTIONS(1286), - [anon_sym___leave] = ACTIONS(1286), - [anon_sym_DASH_DASH] = ACTIONS(1288), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_sizeof] = ACTIONS(1286), - [anon_sym___alignof__] = ACTIONS(1286), - [anon_sym___alignof] = ACTIONS(1286), - [anon_sym__alignof] = ACTIONS(1286), - [anon_sym_alignof] = ACTIONS(1286), - [anon_sym__Alignof] = ACTIONS(1286), - [anon_sym_offsetof] = ACTIONS(1286), - [anon_sym__Generic] = ACTIONS(1286), - [anon_sym_asm] = ACTIONS(1286), - [anon_sym___asm__] = ACTIONS(1286), - [sym_number_literal] = ACTIONS(1288), - [anon_sym_L_SQUOTE] = ACTIONS(1288), - [anon_sym_u_SQUOTE] = ACTIONS(1288), - [anon_sym_U_SQUOTE] = ACTIONS(1288), - [anon_sym_u8_SQUOTE] = ACTIONS(1288), - [anon_sym_SQUOTE] = ACTIONS(1288), - [anon_sym_L_DQUOTE] = ACTIONS(1288), - [anon_sym_u_DQUOTE] = ACTIONS(1288), - [anon_sym_U_DQUOTE] = ACTIONS(1288), - [anon_sym_u8_DQUOTE] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym_true] = ACTIONS(1286), - [sym_false] = ACTIONS(1286), - [anon_sym_NULL] = ACTIONS(1286), - [anon_sym_nullptr] = ACTIONS(1286), - [sym_comment] = ACTIONS(5), - }, - [233] = { - [sym_identifier] = ACTIONS(1350), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1350), - [aux_sym_preproc_def_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token2] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), - [sym_preproc_directive] = ACTIONS(1350), - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym___extension__] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym___attribute__] = ACTIONS(1350), - [anon_sym___scanf] = ACTIONS(1350), - [anon_sym___printf] = ACTIONS(1350), - [anon_sym___read_mostly] = ACTIONS(1350), - [anon_sym___must_hold] = ACTIONS(1350), - [anon_sym___ro_after_init] = ACTIONS(1350), - [anon_sym___noreturn] = ACTIONS(1350), - [anon_sym___cold] = ACTIONS(1350), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), - [anon_sym___declspec] = ACTIONS(1350), - [anon_sym___init] = ACTIONS(1350), - [anon_sym___exit] = ACTIONS(1350), - [anon_sym___cdecl] = ACTIONS(1350), - [anon_sym___clrcall] = ACTIONS(1350), - [anon_sym___stdcall] = ACTIONS(1350), - [anon_sym___fastcall] = ACTIONS(1350), - [anon_sym___thiscall] = ACTIONS(1350), - [anon_sym___vectorcall] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_signed] = ACTIONS(1350), - [anon_sym_unsigned] = ACTIONS(1350), - [anon_sym_long] = ACTIONS(1350), - [anon_sym_short] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_auto] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_inline] = ACTIONS(1350), - [anon_sym___inline] = ACTIONS(1350), - [anon_sym___inline__] = ACTIONS(1350), - [anon_sym___forceinline] = ACTIONS(1350), - [anon_sym_thread_local] = ACTIONS(1350), - [anon_sym___thread] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_constexpr] = ACTIONS(1350), - [anon_sym_volatile] = ACTIONS(1350), - [anon_sym_restrict] = ACTIONS(1350), - [anon_sym___restrict__] = ACTIONS(1350), - [anon_sym__Atomic] = ACTIONS(1350), - [anon_sym__Noreturn] = ACTIONS(1350), - [anon_sym_noreturn] = ACTIONS(1350), - [anon_sym_alignas] = ACTIONS(1350), - [anon_sym__Alignas] = ACTIONS(1350), - [sym_primitive_type] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_switch] = ACTIONS(1350), - [anon_sym_case] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_goto] = ACTIONS(1350), - [anon_sym___try] = ACTIONS(1350), - [anon_sym___leave] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_sizeof] = ACTIONS(1350), - [anon_sym___alignof__] = ACTIONS(1350), - [anon_sym___alignof] = ACTIONS(1350), - [anon_sym__alignof] = ACTIONS(1350), - [anon_sym_alignof] = ACTIONS(1350), - [anon_sym__Alignof] = ACTIONS(1350), - [anon_sym_offsetof] = ACTIONS(1350), - [anon_sym__Generic] = ACTIONS(1350), - [anon_sym_asm] = ACTIONS(1350), - [anon_sym___asm__] = ACTIONS(1350), - [sym_number_literal] = ACTIONS(1352), - [anon_sym_L_SQUOTE] = ACTIONS(1352), - [anon_sym_u_SQUOTE] = ACTIONS(1352), - [anon_sym_U_SQUOTE] = ACTIONS(1352), - [anon_sym_u8_SQUOTE] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_L_DQUOTE] = ACTIONS(1352), - [anon_sym_u_DQUOTE] = ACTIONS(1352), - [anon_sym_U_DQUOTE] = ACTIONS(1352), - [anon_sym_u8_DQUOTE] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_true] = ACTIONS(1350), - [sym_false] = ACTIONS(1350), - [anon_sym_NULL] = ACTIONS(1350), - [anon_sym_nullptr] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1254), + [aux_sym_preproc_def_token1] = ACTIONS(1254), + [aux_sym_preproc_if_token1] = ACTIONS(1254), + [aux_sym_preproc_if_token2] = ACTIONS(1254), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1254), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1254), + [sym_preproc_directive] = ACTIONS(1254), + [anon_sym_LPAREN2] = ACTIONS(1256), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_SEMI] = ACTIONS(1256), + [anon_sym___extension__] = ACTIONS(1254), + [anon_sym_typedef] = ACTIONS(1254), + [anon_sym_extern] = ACTIONS(1254), + [anon_sym___attribute__] = ACTIONS(1254), + [anon_sym___scanf] = ACTIONS(1254), + [anon_sym___printf] = ACTIONS(1254), + [anon_sym___read_mostly] = ACTIONS(1254), + [anon_sym___must_hold] = ACTIONS(1254), + [anon_sym___ro_after_init] = ACTIONS(1254), + [anon_sym___noreturn] = ACTIONS(1254), + [anon_sym___cold] = ACTIONS(1254), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1256), + [anon_sym___declspec] = ACTIONS(1254), + [anon_sym___init] = ACTIONS(1254), + [anon_sym___exit] = ACTIONS(1254), + [anon_sym___cdecl] = ACTIONS(1254), + [anon_sym___clrcall] = ACTIONS(1254), + [anon_sym___stdcall] = ACTIONS(1254), + [anon_sym___fastcall] = ACTIONS(1254), + [anon_sym___thiscall] = ACTIONS(1254), + [anon_sym___vectorcall] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_signed] = ACTIONS(1254), + [anon_sym_unsigned] = ACTIONS(1254), + [anon_sym_long] = ACTIONS(1254), + [anon_sym_short] = ACTIONS(1254), + [anon_sym_static] = ACTIONS(1254), + [anon_sym_auto] = ACTIONS(1254), + [anon_sym_register] = ACTIONS(1254), + [anon_sym_inline] = ACTIONS(1254), + [anon_sym___inline] = ACTIONS(1254), + [anon_sym___inline__] = ACTIONS(1254), + [anon_sym___forceinline] = ACTIONS(1254), + [anon_sym_thread_local] = ACTIONS(1254), + [anon_sym___thread] = ACTIONS(1254), + [anon_sym_const] = ACTIONS(1254), + [anon_sym_constexpr] = ACTIONS(1254), + [anon_sym_volatile] = ACTIONS(1254), + [anon_sym_restrict] = ACTIONS(1254), + [anon_sym___restrict__] = ACTIONS(1254), + [anon_sym__Atomic] = ACTIONS(1254), + [anon_sym__Noreturn] = ACTIONS(1254), + [anon_sym_noreturn] = ACTIONS(1254), + [anon_sym_alignas] = ACTIONS(1254), + [anon_sym__Alignas] = ACTIONS(1254), + [sym_primitive_type] = ACTIONS(1254), + [anon_sym_enum] = ACTIONS(1254), + [anon_sym_struct] = ACTIONS(1254), + [anon_sym_union] = ACTIONS(1254), + [anon_sym_if] = ACTIONS(1254), + [anon_sym_else] = ACTIONS(1254), + [anon_sym_switch] = ACTIONS(1254), + [anon_sym_case] = ACTIONS(1254), + [anon_sym_default] = ACTIONS(1254), + [anon_sym_while] = ACTIONS(1254), + [anon_sym_do] = ACTIONS(1254), + [anon_sym_for] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1254), + [anon_sym_break] = ACTIONS(1254), + [anon_sym_continue] = ACTIONS(1254), + [anon_sym_goto] = ACTIONS(1254), + [anon_sym___try] = ACTIONS(1254), + [anon_sym___leave] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1256), + [anon_sym_sizeof] = ACTIONS(1254), + [anon_sym___alignof__] = ACTIONS(1254), + [anon_sym___alignof] = ACTIONS(1254), + [anon_sym__alignof] = ACTIONS(1254), + [anon_sym_alignof] = ACTIONS(1254), + [anon_sym__Alignof] = ACTIONS(1254), + [anon_sym_offsetof] = ACTIONS(1254), + [anon_sym__Generic] = ACTIONS(1254), + [anon_sym_asm] = ACTIONS(1254), + [anon_sym___asm__] = ACTIONS(1254), + [sym_number_literal] = ACTIONS(1256), + [anon_sym_L_SQUOTE] = ACTIONS(1256), + [anon_sym_u_SQUOTE] = ACTIONS(1256), + [anon_sym_U_SQUOTE] = ACTIONS(1256), + [anon_sym_u8_SQUOTE] = ACTIONS(1256), + [anon_sym_SQUOTE] = ACTIONS(1256), + [anon_sym_L_DQUOTE] = ACTIONS(1256), + [anon_sym_u_DQUOTE] = ACTIONS(1256), + [anon_sym_U_DQUOTE] = ACTIONS(1256), + [anon_sym_u8_DQUOTE] = ACTIONS(1256), + [anon_sym_DQUOTE] = ACTIONS(1256), + [sym_true] = ACTIONS(1254), + [sym_false] = ACTIONS(1254), + [anon_sym_NULL] = ACTIONS(1254), + [anon_sym_nullptr] = ACTIONS(1254), [sym_comment] = ACTIONS(5), }, - [234] = { - [sym_identifier] = ACTIONS(1346), + [222] = { + [ts_builtin_sym_end] = ACTIONS(1284), + [sym_identifier] = ACTIONS(1282), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1346), - [aux_sym_preproc_def_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token2] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), - [sym_preproc_directive] = ACTIONS(1346), - [anon_sym_LPAREN2] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_TILDE] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym___extension__] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym___attribute__] = ACTIONS(1346), - [anon_sym___scanf] = ACTIONS(1346), - [anon_sym___printf] = ACTIONS(1346), - [anon_sym___read_mostly] = ACTIONS(1346), - [anon_sym___must_hold] = ACTIONS(1346), - [anon_sym___ro_after_init] = ACTIONS(1346), - [anon_sym___noreturn] = ACTIONS(1346), - [anon_sym___cold] = ACTIONS(1346), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), - [anon_sym___declspec] = ACTIONS(1346), - [anon_sym___init] = ACTIONS(1346), - [anon_sym___exit] = ACTIONS(1346), - [anon_sym___cdecl] = ACTIONS(1346), - [anon_sym___clrcall] = ACTIONS(1346), - [anon_sym___stdcall] = ACTIONS(1346), - [anon_sym___fastcall] = ACTIONS(1346), - [anon_sym___thiscall] = ACTIONS(1346), - [anon_sym___vectorcall] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1346), - [anon_sym_unsigned] = ACTIONS(1346), - [anon_sym_long] = ACTIONS(1346), - [anon_sym_short] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_auto] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_inline] = ACTIONS(1346), - [anon_sym___inline] = ACTIONS(1346), - [anon_sym___inline__] = ACTIONS(1346), - [anon_sym___forceinline] = ACTIONS(1346), - [anon_sym_thread_local] = ACTIONS(1346), - [anon_sym___thread] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_constexpr] = ACTIONS(1346), - [anon_sym_volatile] = ACTIONS(1346), - [anon_sym_restrict] = ACTIONS(1346), - [anon_sym___restrict__] = ACTIONS(1346), - [anon_sym__Atomic] = ACTIONS(1346), - [anon_sym__Noreturn] = ACTIONS(1346), - [anon_sym_noreturn] = ACTIONS(1346), - [anon_sym_alignas] = ACTIONS(1346), - [anon_sym__Alignas] = ACTIONS(1346), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_case] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_goto] = ACTIONS(1346), - [anon_sym___try] = ACTIONS(1346), - [anon_sym___leave] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_sizeof] = ACTIONS(1346), - [anon_sym___alignof__] = ACTIONS(1346), - [anon_sym___alignof] = ACTIONS(1346), - [anon_sym__alignof] = ACTIONS(1346), - [anon_sym_alignof] = ACTIONS(1346), - [anon_sym__Alignof] = ACTIONS(1346), - [anon_sym_offsetof] = ACTIONS(1346), - [anon_sym__Generic] = ACTIONS(1346), - [anon_sym_asm] = ACTIONS(1346), - [anon_sym___asm__] = ACTIONS(1346), - [sym_number_literal] = ACTIONS(1348), - [anon_sym_L_SQUOTE] = ACTIONS(1348), - [anon_sym_u_SQUOTE] = ACTIONS(1348), - [anon_sym_U_SQUOTE] = ACTIONS(1348), - [anon_sym_u8_SQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_L_DQUOTE] = ACTIONS(1348), - [anon_sym_u_DQUOTE] = ACTIONS(1348), - [anon_sym_U_DQUOTE] = ACTIONS(1348), - [anon_sym_u8_DQUOTE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [anon_sym_NULL] = ACTIONS(1346), - [anon_sym_nullptr] = ACTIONS(1346), + [aux_sym_preproc_include_token1] = ACTIONS(1282), + [aux_sym_preproc_def_token1] = ACTIONS(1282), + [aux_sym_preproc_if_token1] = ACTIONS(1282), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1282), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1282), + [sym_preproc_directive] = ACTIONS(1282), + [anon_sym_LPAREN2] = ACTIONS(1284), + [anon_sym_BANG] = ACTIONS(1284), + [anon_sym_TILDE] = ACTIONS(1284), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_PLUS] = ACTIONS(1282), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1284), + [anon_sym___extension__] = ACTIONS(1282), + [anon_sym_typedef] = ACTIONS(1282), + [anon_sym_extern] = ACTIONS(1282), + [anon_sym___attribute__] = ACTIONS(1282), + [anon_sym___scanf] = ACTIONS(1282), + [anon_sym___printf] = ACTIONS(1282), + [anon_sym___read_mostly] = ACTIONS(1282), + [anon_sym___must_hold] = ACTIONS(1282), + [anon_sym___ro_after_init] = ACTIONS(1282), + [anon_sym___noreturn] = ACTIONS(1282), + [anon_sym___cold] = ACTIONS(1282), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1284), + [anon_sym___declspec] = ACTIONS(1282), + [anon_sym___init] = ACTIONS(1282), + [anon_sym___exit] = ACTIONS(1282), + [anon_sym___cdecl] = ACTIONS(1282), + [anon_sym___clrcall] = ACTIONS(1282), + [anon_sym___stdcall] = ACTIONS(1282), + [anon_sym___fastcall] = ACTIONS(1282), + [anon_sym___thiscall] = ACTIONS(1282), + [anon_sym___vectorcall] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_signed] = ACTIONS(1282), + [anon_sym_unsigned] = ACTIONS(1282), + [anon_sym_long] = ACTIONS(1282), + [anon_sym_short] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1282), + [anon_sym_auto] = ACTIONS(1282), + [anon_sym_register] = ACTIONS(1282), + [anon_sym_inline] = ACTIONS(1282), + [anon_sym___inline] = ACTIONS(1282), + [anon_sym___inline__] = ACTIONS(1282), + [anon_sym___forceinline] = ACTIONS(1282), + [anon_sym_thread_local] = ACTIONS(1282), + [anon_sym___thread] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(1282), + [anon_sym_constexpr] = ACTIONS(1282), + [anon_sym_volatile] = ACTIONS(1282), + [anon_sym_restrict] = ACTIONS(1282), + [anon_sym___restrict__] = ACTIONS(1282), + [anon_sym__Atomic] = ACTIONS(1282), + [anon_sym__Noreturn] = ACTIONS(1282), + [anon_sym_noreturn] = ACTIONS(1282), + [anon_sym_alignas] = ACTIONS(1282), + [anon_sym__Alignas] = ACTIONS(1282), + [sym_primitive_type] = ACTIONS(1282), + [anon_sym_enum] = ACTIONS(1282), + [anon_sym_struct] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_if] = ACTIONS(1282), + [anon_sym_else] = ACTIONS(1282), + [anon_sym_switch] = ACTIONS(1282), + [anon_sym_case] = ACTIONS(1282), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_while] = ACTIONS(1282), + [anon_sym_do] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(1282), + [anon_sym_break] = ACTIONS(1282), + [anon_sym_continue] = ACTIONS(1282), + [anon_sym_goto] = ACTIONS(1282), + [anon_sym___try] = ACTIONS(1282), + [anon_sym___leave] = ACTIONS(1282), + [anon_sym_DASH_DASH] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1284), + [anon_sym_sizeof] = ACTIONS(1282), + [anon_sym___alignof__] = ACTIONS(1282), + [anon_sym___alignof] = ACTIONS(1282), + [anon_sym__alignof] = ACTIONS(1282), + [anon_sym_alignof] = ACTIONS(1282), + [anon_sym__Alignof] = ACTIONS(1282), + [anon_sym_offsetof] = ACTIONS(1282), + [anon_sym__Generic] = ACTIONS(1282), + [anon_sym_asm] = ACTIONS(1282), + [anon_sym___asm__] = ACTIONS(1282), + [sym_number_literal] = ACTIONS(1284), + [anon_sym_L_SQUOTE] = ACTIONS(1284), + [anon_sym_u_SQUOTE] = ACTIONS(1284), + [anon_sym_U_SQUOTE] = ACTIONS(1284), + [anon_sym_u8_SQUOTE] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(1284), + [anon_sym_L_DQUOTE] = ACTIONS(1284), + [anon_sym_u_DQUOTE] = ACTIONS(1284), + [anon_sym_U_DQUOTE] = ACTIONS(1284), + [anon_sym_u8_DQUOTE] = ACTIONS(1284), + [anon_sym_DQUOTE] = ACTIONS(1284), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(1282), + [anon_sym_nullptr] = ACTIONS(1282), [sym_comment] = ACTIONS(5), }, - [235] = { - [sym_identifier] = ACTIONS(1342), + [223] = { + [sym_identifier] = ACTIONS(1258), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1342), - [aux_sym_preproc_def_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token2] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), - [sym_preproc_directive] = ACTIONS(1342), - [anon_sym_LPAREN2] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), + [aux_sym_preproc_include_token1] = ACTIONS(1258), + [aux_sym_preproc_def_token1] = ACTIONS(1258), + [aux_sym_preproc_if_token1] = ACTIONS(1258), + [aux_sym_preproc_if_token2] = ACTIONS(1258), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1258), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1258), + [sym_preproc_directive] = ACTIONS(1258), + [anon_sym_LPAREN2] = ACTIONS(1260), + [anon_sym_BANG] = ACTIONS(1260), + [anon_sym_TILDE] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1260), + [anon_sym_AMP] = ACTIONS(1260), + [anon_sym_SEMI] = ACTIONS(1260), + [anon_sym___extension__] = ACTIONS(1258), + [anon_sym_typedef] = ACTIONS(1258), + [anon_sym_extern] = ACTIONS(1258), + [anon_sym___attribute__] = ACTIONS(1258), + [anon_sym___scanf] = ACTIONS(1258), + [anon_sym___printf] = ACTIONS(1258), + [anon_sym___read_mostly] = ACTIONS(1258), + [anon_sym___must_hold] = ACTIONS(1258), + [anon_sym___ro_after_init] = ACTIONS(1258), + [anon_sym___noreturn] = ACTIONS(1258), + [anon_sym___cold] = ACTIONS(1258), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1260), + [anon_sym___declspec] = ACTIONS(1258), + [anon_sym___init] = ACTIONS(1258), + [anon_sym___exit] = ACTIONS(1258), + [anon_sym___cdecl] = ACTIONS(1258), + [anon_sym___clrcall] = ACTIONS(1258), + [anon_sym___stdcall] = ACTIONS(1258), + [anon_sym___fastcall] = ACTIONS(1258), + [anon_sym___thiscall] = ACTIONS(1258), + [anon_sym___vectorcall] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1260), + [anon_sym_signed] = ACTIONS(1258), + [anon_sym_unsigned] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_static] = ACTIONS(1258), + [anon_sym_auto] = ACTIONS(1258), + [anon_sym_register] = ACTIONS(1258), + [anon_sym_inline] = ACTIONS(1258), + [anon_sym___inline] = ACTIONS(1258), + [anon_sym___inline__] = ACTIONS(1258), + [anon_sym___forceinline] = ACTIONS(1258), + [anon_sym_thread_local] = ACTIONS(1258), + [anon_sym___thread] = ACTIONS(1258), + [anon_sym_const] = ACTIONS(1258), + [anon_sym_constexpr] = ACTIONS(1258), + [anon_sym_volatile] = ACTIONS(1258), + [anon_sym_restrict] = ACTIONS(1258), + [anon_sym___restrict__] = ACTIONS(1258), + [anon_sym__Atomic] = ACTIONS(1258), + [anon_sym__Noreturn] = ACTIONS(1258), + [anon_sym_noreturn] = ACTIONS(1258), + [anon_sym_alignas] = ACTIONS(1258), + [anon_sym__Alignas] = ACTIONS(1258), + [sym_primitive_type] = ACTIONS(1258), + [anon_sym_enum] = ACTIONS(1258), + [anon_sym_struct] = ACTIONS(1258), + [anon_sym_union] = ACTIONS(1258), + [anon_sym_if] = ACTIONS(1258), + [anon_sym_else] = ACTIONS(1258), + [anon_sym_switch] = ACTIONS(1258), + [anon_sym_case] = ACTIONS(1258), + [anon_sym_default] = ACTIONS(1258), + [anon_sym_while] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1258), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_break] = ACTIONS(1258), + [anon_sym_continue] = ACTIONS(1258), + [anon_sym_goto] = ACTIONS(1258), + [anon_sym___try] = ACTIONS(1258), + [anon_sym___leave] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1260), + [anon_sym_sizeof] = ACTIONS(1258), + [anon_sym___alignof__] = ACTIONS(1258), + [anon_sym___alignof] = ACTIONS(1258), + [anon_sym__alignof] = ACTIONS(1258), + [anon_sym_alignof] = ACTIONS(1258), + [anon_sym__Alignof] = ACTIONS(1258), + [anon_sym_offsetof] = ACTIONS(1258), + [anon_sym__Generic] = ACTIONS(1258), + [anon_sym_asm] = ACTIONS(1258), + [anon_sym___asm__] = ACTIONS(1258), + [sym_number_literal] = ACTIONS(1260), + [anon_sym_L_SQUOTE] = ACTIONS(1260), + [anon_sym_u_SQUOTE] = ACTIONS(1260), + [anon_sym_U_SQUOTE] = ACTIONS(1260), + [anon_sym_u8_SQUOTE] = ACTIONS(1260), + [anon_sym_SQUOTE] = ACTIONS(1260), + [anon_sym_L_DQUOTE] = ACTIONS(1260), + [anon_sym_u_DQUOTE] = ACTIONS(1260), + [anon_sym_U_DQUOTE] = ACTIONS(1260), + [anon_sym_u8_DQUOTE] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(1260), + [sym_true] = ACTIONS(1258), + [sym_false] = ACTIONS(1258), + [anon_sym_NULL] = ACTIONS(1258), + [anon_sym_nullptr] = ACTIONS(1258), + [sym_comment] = ACTIONS(5), + }, + [224] = { + [ts_builtin_sym_end] = ACTIONS(1344), + [sym_identifier] = ACTIONS(1342), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), [anon_sym___extension__] = ACTIONS(1342), [anon_sym_typedef] = ACTIONS(1342), [anon_sym_extern] = ACTIONS(1342), @@ -48259,673 +47166,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1342), [sym_comment] = ACTIONS(5), }, - [236] = { - [sym_identifier] = ACTIONS(1314), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token2] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym___extension__] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym___attribute__] = ACTIONS(1314), - [anon_sym___scanf] = ACTIONS(1314), - [anon_sym___printf] = ACTIONS(1314), - [anon_sym___read_mostly] = ACTIONS(1314), - [anon_sym___must_hold] = ACTIONS(1314), - [anon_sym___ro_after_init] = ACTIONS(1314), - [anon_sym___noreturn] = ACTIONS(1314), - [anon_sym___cold] = ACTIONS(1314), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), - [anon_sym___declspec] = ACTIONS(1314), - [anon_sym___init] = ACTIONS(1314), - [anon_sym___exit] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1314), - [anon_sym_unsigned] = ACTIONS(1314), - [anon_sym_long] = ACTIONS(1314), - [anon_sym_short] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_auto] = ACTIONS(1314), - [anon_sym_register] = ACTIONS(1314), - [anon_sym_inline] = ACTIONS(1314), - [anon_sym___inline] = ACTIONS(1314), - [anon_sym___inline__] = ACTIONS(1314), - [anon_sym___forceinline] = ACTIONS(1314), - [anon_sym_thread_local] = ACTIONS(1314), - [anon_sym___thread] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_constexpr] = ACTIONS(1314), - [anon_sym_volatile] = ACTIONS(1314), - [anon_sym_restrict] = ACTIONS(1314), - [anon_sym___restrict__] = ACTIONS(1314), - [anon_sym__Atomic] = ACTIONS(1314), - [anon_sym__Noreturn] = ACTIONS(1314), - [anon_sym_noreturn] = ACTIONS(1314), - [anon_sym_alignas] = ACTIONS(1314), - [anon_sym__Alignas] = ACTIONS(1314), - [sym_primitive_type] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_else] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_goto] = ACTIONS(1314), - [anon_sym___try] = ACTIONS(1314), - [anon_sym___leave] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1314), - [anon_sym___alignof__] = ACTIONS(1314), - [anon_sym___alignof] = ACTIONS(1314), - [anon_sym__alignof] = ACTIONS(1314), - [anon_sym_alignof] = ACTIONS(1314), - [anon_sym__Alignof] = ACTIONS(1314), - [anon_sym_offsetof] = ACTIONS(1314), - [anon_sym__Generic] = ACTIONS(1314), - [anon_sym_asm] = ACTIONS(1314), - [anon_sym___asm__] = ACTIONS(1314), - [sym_number_literal] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1316), - [anon_sym_u_SQUOTE] = ACTIONS(1316), - [anon_sym_U_SQUOTE] = ACTIONS(1316), - [anon_sym_u8_SQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_L_DQUOTE] = ACTIONS(1316), - [anon_sym_u_DQUOTE] = ACTIONS(1316), - [anon_sym_U_DQUOTE] = ACTIONS(1316), - [anon_sym_u8_DQUOTE] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [anon_sym_NULL] = ACTIONS(1314), - [anon_sym_nullptr] = ACTIONS(1314), - [sym_comment] = ACTIONS(5), - }, - [237] = { - [ts_builtin_sym_end] = ACTIONS(1304), - [sym_identifier] = ACTIONS(1302), + [225] = { + [sym_identifier] = ACTIONS(1262), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1302), - [aux_sym_preproc_def_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), - [sym_preproc_directive] = ACTIONS(1302), - [anon_sym_LPAREN2] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym___extension__] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym___attribute__] = ACTIONS(1302), - [anon_sym___scanf] = ACTIONS(1302), - [anon_sym___printf] = ACTIONS(1302), - [anon_sym___read_mostly] = ACTIONS(1302), - [anon_sym___must_hold] = ACTIONS(1302), - [anon_sym___ro_after_init] = ACTIONS(1302), - [anon_sym___noreturn] = ACTIONS(1302), - [anon_sym___cold] = ACTIONS(1302), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), - [anon_sym___declspec] = ACTIONS(1302), - [anon_sym___init] = ACTIONS(1302), - [anon_sym___exit] = ACTIONS(1302), - [anon_sym___cdecl] = ACTIONS(1302), - [anon_sym___clrcall] = ACTIONS(1302), - [anon_sym___stdcall] = ACTIONS(1302), - [anon_sym___fastcall] = ACTIONS(1302), - [anon_sym___thiscall] = ACTIONS(1302), - [anon_sym___vectorcall] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_signed] = ACTIONS(1302), - [anon_sym_unsigned] = ACTIONS(1302), - [anon_sym_long] = ACTIONS(1302), - [anon_sym_short] = ACTIONS(1302), - [anon_sym_static] = ACTIONS(1302), - [anon_sym_auto] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_inline] = ACTIONS(1302), - [anon_sym___inline] = ACTIONS(1302), - [anon_sym___inline__] = ACTIONS(1302), - [anon_sym___forceinline] = ACTIONS(1302), - [anon_sym_thread_local] = ACTIONS(1302), - [anon_sym___thread] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_constexpr] = ACTIONS(1302), - [anon_sym_volatile] = ACTIONS(1302), - [anon_sym_restrict] = ACTIONS(1302), - [anon_sym___restrict__] = ACTIONS(1302), - [anon_sym__Atomic] = ACTIONS(1302), - [anon_sym__Noreturn] = ACTIONS(1302), - [anon_sym_noreturn] = ACTIONS(1302), - [anon_sym_alignas] = ACTIONS(1302), - [anon_sym__Alignas] = ACTIONS(1302), - [sym_primitive_type] = ACTIONS(1302), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_union] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_else] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1302), - [anon_sym_default] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_goto] = ACTIONS(1302), - [anon_sym___try] = ACTIONS(1302), - [anon_sym___leave] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_sizeof] = ACTIONS(1302), - [anon_sym___alignof__] = ACTIONS(1302), - [anon_sym___alignof] = ACTIONS(1302), - [anon_sym__alignof] = ACTIONS(1302), - [anon_sym_alignof] = ACTIONS(1302), - [anon_sym__Alignof] = ACTIONS(1302), - [anon_sym_offsetof] = ACTIONS(1302), - [anon_sym__Generic] = ACTIONS(1302), - [anon_sym_asm] = ACTIONS(1302), - [anon_sym___asm__] = ACTIONS(1302), - [sym_number_literal] = ACTIONS(1304), - [anon_sym_L_SQUOTE] = ACTIONS(1304), - [anon_sym_u_SQUOTE] = ACTIONS(1304), - [anon_sym_U_SQUOTE] = ACTIONS(1304), - [anon_sym_u8_SQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_L_DQUOTE] = ACTIONS(1304), - [anon_sym_u_DQUOTE] = ACTIONS(1304), - [anon_sym_U_DQUOTE] = ACTIONS(1304), - [anon_sym_u8_DQUOTE] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym_true] = ACTIONS(1302), - [sym_false] = ACTIONS(1302), - [anon_sym_NULL] = ACTIONS(1302), - [anon_sym_nullptr] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1262), + [aux_sym_preproc_def_token1] = ACTIONS(1262), + [aux_sym_preproc_if_token1] = ACTIONS(1262), + [aux_sym_preproc_if_token2] = ACTIONS(1262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1262), + [sym_preproc_directive] = ACTIONS(1262), + [anon_sym_LPAREN2] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1264), + [anon_sym___extension__] = ACTIONS(1262), + [anon_sym_typedef] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(1262), + [anon_sym___attribute__] = ACTIONS(1262), + [anon_sym___scanf] = ACTIONS(1262), + [anon_sym___printf] = ACTIONS(1262), + [anon_sym___read_mostly] = ACTIONS(1262), + [anon_sym___must_hold] = ACTIONS(1262), + [anon_sym___ro_after_init] = ACTIONS(1262), + [anon_sym___noreturn] = ACTIONS(1262), + [anon_sym___cold] = ACTIONS(1262), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym___declspec] = ACTIONS(1262), + [anon_sym___init] = ACTIONS(1262), + [anon_sym___exit] = ACTIONS(1262), + [anon_sym___cdecl] = ACTIONS(1262), + [anon_sym___clrcall] = ACTIONS(1262), + [anon_sym___stdcall] = ACTIONS(1262), + [anon_sym___fastcall] = ACTIONS(1262), + [anon_sym___thiscall] = ACTIONS(1262), + [anon_sym___vectorcall] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_signed] = ACTIONS(1262), + [anon_sym_unsigned] = ACTIONS(1262), + [anon_sym_long] = ACTIONS(1262), + [anon_sym_short] = ACTIONS(1262), + [anon_sym_static] = ACTIONS(1262), + [anon_sym_auto] = ACTIONS(1262), + [anon_sym_register] = ACTIONS(1262), + [anon_sym_inline] = ACTIONS(1262), + [anon_sym___inline] = ACTIONS(1262), + [anon_sym___inline__] = ACTIONS(1262), + [anon_sym___forceinline] = ACTIONS(1262), + [anon_sym_thread_local] = ACTIONS(1262), + [anon_sym___thread] = ACTIONS(1262), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_constexpr] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_restrict] = ACTIONS(1262), + [anon_sym___restrict__] = ACTIONS(1262), + [anon_sym__Atomic] = ACTIONS(1262), + [anon_sym__Noreturn] = ACTIONS(1262), + [anon_sym_noreturn] = ACTIONS(1262), + [anon_sym_alignas] = ACTIONS(1262), + [anon_sym__Alignas] = ACTIONS(1262), + [sym_primitive_type] = ACTIONS(1262), + [anon_sym_enum] = ACTIONS(1262), + [anon_sym_struct] = ACTIONS(1262), + [anon_sym_union] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1262), + [anon_sym_else] = ACTIONS(1262), + [anon_sym_switch] = ACTIONS(1262), + [anon_sym_case] = ACTIONS(1262), + [anon_sym_default] = ACTIONS(1262), + [anon_sym_while] = ACTIONS(1262), + [anon_sym_do] = ACTIONS(1262), + [anon_sym_for] = ACTIONS(1262), + [anon_sym_return] = ACTIONS(1262), + [anon_sym_break] = ACTIONS(1262), + [anon_sym_continue] = ACTIONS(1262), + [anon_sym_goto] = ACTIONS(1262), + [anon_sym___try] = ACTIONS(1262), + [anon_sym___leave] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1264), + [anon_sym_PLUS_PLUS] = ACTIONS(1264), + [anon_sym_sizeof] = ACTIONS(1262), + [anon_sym___alignof__] = ACTIONS(1262), + [anon_sym___alignof] = ACTIONS(1262), + [anon_sym__alignof] = ACTIONS(1262), + [anon_sym_alignof] = ACTIONS(1262), + [anon_sym__Alignof] = ACTIONS(1262), + [anon_sym_offsetof] = ACTIONS(1262), + [anon_sym__Generic] = ACTIONS(1262), + [anon_sym_asm] = ACTIONS(1262), + [anon_sym___asm__] = ACTIONS(1262), + [sym_number_literal] = ACTIONS(1264), + [anon_sym_L_SQUOTE] = ACTIONS(1264), + [anon_sym_u_SQUOTE] = ACTIONS(1264), + [anon_sym_U_SQUOTE] = ACTIONS(1264), + [anon_sym_u8_SQUOTE] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_L_DQUOTE] = ACTIONS(1264), + [anon_sym_u_DQUOTE] = ACTIONS(1264), + [anon_sym_U_DQUOTE] = ACTIONS(1264), + [anon_sym_u8_DQUOTE] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1264), + [sym_true] = ACTIONS(1262), + [sym_false] = ACTIONS(1262), + [anon_sym_NULL] = ACTIONS(1262), + [anon_sym_nullptr] = ACTIONS(1262), [sym_comment] = ACTIONS(5), }, - [238] = { - [sym_identifier] = ACTIONS(1266), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1266), - [aux_sym_preproc_def_token1] = ACTIONS(1266), - [aux_sym_preproc_if_token1] = ACTIONS(1266), - [aux_sym_preproc_if_token2] = ACTIONS(1266), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1266), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1266), - [sym_preproc_directive] = ACTIONS(1266), - [anon_sym_LPAREN2] = ACTIONS(1268), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_TILDE] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1268), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym___extension__] = ACTIONS(1266), - [anon_sym_typedef] = ACTIONS(1266), - [anon_sym_extern] = ACTIONS(1266), - [anon_sym___attribute__] = ACTIONS(1266), - [anon_sym___scanf] = ACTIONS(1266), - [anon_sym___printf] = ACTIONS(1266), - [anon_sym___read_mostly] = ACTIONS(1266), - [anon_sym___must_hold] = ACTIONS(1266), - [anon_sym___ro_after_init] = ACTIONS(1266), - [anon_sym___noreturn] = ACTIONS(1266), - [anon_sym___cold] = ACTIONS(1266), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1268), - [anon_sym___declspec] = ACTIONS(1266), - [anon_sym___init] = ACTIONS(1266), - [anon_sym___exit] = ACTIONS(1266), - [anon_sym___cdecl] = ACTIONS(1266), - [anon_sym___clrcall] = ACTIONS(1266), - [anon_sym___stdcall] = ACTIONS(1266), - [anon_sym___fastcall] = ACTIONS(1266), - [anon_sym___thiscall] = ACTIONS(1266), - [anon_sym___vectorcall] = ACTIONS(1266), - [anon_sym_LBRACE] = ACTIONS(1268), - [anon_sym_signed] = ACTIONS(1266), - [anon_sym_unsigned] = ACTIONS(1266), - [anon_sym_long] = ACTIONS(1266), - [anon_sym_short] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(1266), - [anon_sym_auto] = ACTIONS(1266), - [anon_sym_register] = ACTIONS(1266), - [anon_sym_inline] = ACTIONS(1266), - [anon_sym___inline] = ACTIONS(1266), - [anon_sym___inline__] = ACTIONS(1266), - [anon_sym___forceinline] = ACTIONS(1266), - [anon_sym_thread_local] = ACTIONS(1266), - [anon_sym___thread] = ACTIONS(1266), - [anon_sym_const] = ACTIONS(1266), - [anon_sym_constexpr] = ACTIONS(1266), - [anon_sym_volatile] = ACTIONS(1266), - [anon_sym_restrict] = ACTIONS(1266), - [anon_sym___restrict__] = ACTIONS(1266), - [anon_sym__Atomic] = ACTIONS(1266), - [anon_sym__Noreturn] = ACTIONS(1266), - [anon_sym_noreturn] = ACTIONS(1266), - [anon_sym_alignas] = ACTIONS(1266), - [anon_sym__Alignas] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(1266), - [anon_sym_enum] = ACTIONS(1266), - [anon_sym_struct] = ACTIONS(1266), - [anon_sym_union] = ACTIONS(1266), - [anon_sym_if] = ACTIONS(1266), - [anon_sym_else] = ACTIONS(1266), - [anon_sym_switch] = ACTIONS(1266), - [anon_sym_case] = ACTIONS(1266), - [anon_sym_default] = ACTIONS(1266), - [anon_sym_while] = ACTIONS(1266), - [anon_sym_do] = ACTIONS(1266), - [anon_sym_for] = ACTIONS(1266), - [anon_sym_return] = ACTIONS(1266), - [anon_sym_break] = ACTIONS(1266), - [anon_sym_continue] = ACTIONS(1266), - [anon_sym_goto] = ACTIONS(1266), - [anon_sym___try] = ACTIONS(1266), - [anon_sym___leave] = ACTIONS(1266), - [anon_sym_DASH_DASH] = ACTIONS(1268), - [anon_sym_PLUS_PLUS] = ACTIONS(1268), - [anon_sym_sizeof] = ACTIONS(1266), - [anon_sym___alignof__] = ACTIONS(1266), - [anon_sym___alignof] = ACTIONS(1266), - [anon_sym__alignof] = ACTIONS(1266), - [anon_sym_alignof] = ACTIONS(1266), - [anon_sym__Alignof] = ACTIONS(1266), - [anon_sym_offsetof] = ACTIONS(1266), - [anon_sym__Generic] = ACTIONS(1266), - [anon_sym_asm] = ACTIONS(1266), - [anon_sym___asm__] = ACTIONS(1266), - [sym_number_literal] = ACTIONS(1268), - [anon_sym_L_SQUOTE] = ACTIONS(1268), - [anon_sym_u_SQUOTE] = ACTIONS(1268), - [anon_sym_U_SQUOTE] = ACTIONS(1268), - [anon_sym_u8_SQUOTE] = ACTIONS(1268), - [anon_sym_SQUOTE] = ACTIONS(1268), - [anon_sym_L_DQUOTE] = ACTIONS(1268), - [anon_sym_u_DQUOTE] = ACTIONS(1268), - [anon_sym_U_DQUOTE] = ACTIONS(1268), - [anon_sym_u8_DQUOTE] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1268), - [sym_true] = ACTIONS(1266), - [sym_false] = ACTIONS(1266), - [anon_sym_NULL] = ACTIONS(1266), - [anon_sym_nullptr] = ACTIONS(1266), - [sym_comment] = ACTIONS(5), - }, - [239] = { - [sym_identifier] = ACTIONS(1222), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1222), - [aux_sym_preproc_def_token1] = ACTIONS(1222), - [aux_sym_preproc_if_token1] = ACTIONS(1222), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1222), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1222), - [sym_preproc_directive] = ACTIONS(1222), - [anon_sym_LPAREN2] = ACTIONS(1224), - [anon_sym_BANG] = ACTIONS(1224), - [anon_sym_TILDE] = ACTIONS(1224), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_STAR] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym___extension__] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(1222), - [anon_sym___attribute__] = ACTIONS(1222), - [anon_sym___scanf] = ACTIONS(1222), - [anon_sym___printf] = ACTIONS(1222), - [anon_sym___read_mostly] = ACTIONS(1222), - [anon_sym___must_hold] = ACTIONS(1222), - [anon_sym___ro_after_init] = ACTIONS(1222), - [anon_sym___noreturn] = ACTIONS(1222), - [anon_sym___cold] = ACTIONS(1222), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1224), - [anon_sym___declspec] = ACTIONS(1222), - [anon_sym___init] = ACTIONS(1222), - [anon_sym___exit] = ACTIONS(1222), - [anon_sym___cdecl] = ACTIONS(1222), - [anon_sym___clrcall] = ACTIONS(1222), - [anon_sym___stdcall] = ACTIONS(1222), - [anon_sym___fastcall] = ACTIONS(1222), - [anon_sym___thiscall] = ACTIONS(1222), - [anon_sym___vectorcall] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_RBRACE] = ACTIONS(1224), - [anon_sym_signed] = ACTIONS(1222), - [anon_sym_unsigned] = ACTIONS(1222), - [anon_sym_long] = ACTIONS(1222), - [anon_sym_short] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1222), - [anon_sym_auto] = ACTIONS(1222), - [anon_sym_register] = ACTIONS(1222), - [anon_sym_inline] = ACTIONS(1222), - [anon_sym___inline] = ACTIONS(1222), - [anon_sym___inline__] = ACTIONS(1222), - [anon_sym___forceinline] = ACTIONS(1222), - [anon_sym_thread_local] = ACTIONS(1222), - [anon_sym___thread] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_constexpr] = ACTIONS(1222), - [anon_sym_volatile] = ACTIONS(1222), - [anon_sym_restrict] = ACTIONS(1222), - [anon_sym___restrict__] = ACTIONS(1222), - [anon_sym__Atomic] = ACTIONS(1222), - [anon_sym__Noreturn] = ACTIONS(1222), - [anon_sym_noreturn] = ACTIONS(1222), - [anon_sym_alignas] = ACTIONS(1222), - [anon_sym__Alignas] = ACTIONS(1222), - [sym_primitive_type] = ACTIONS(1222), - [anon_sym_enum] = ACTIONS(1222), - [anon_sym_struct] = ACTIONS(1222), - [anon_sym_union] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_else] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(1222), - [anon_sym_case] = ACTIONS(1222), - [anon_sym_default] = ACTIONS(1222), - [anon_sym_while] = ACTIONS(1222), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_break] = ACTIONS(1222), - [anon_sym_continue] = ACTIONS(1222), - [anon_sym_goto] = ACTIONS(1222), - [anon_sym___try] = ACTIONS(1222), - [anon_sym___leave] = ACTIONS(1222), - [anon_sym_DASH_DASH] = ACTIONS(1224), - [anon_sym_PLUS_PLUS] = ACTIONS(1224), - [anon_sym_sizeof] = ACTIONS(1222), - [anon_sym___alignof__] = ACTIONS(1222), - [anon_sym___alignof] = ACTIONS(1222), - [anon_sym__alignof] = ACTIONS(1222), - [anon_sym_alignof] = ACTIONS(1222), - [anon_sym__Alignof] = ACTIONS(1222), - [anon_sym_offsetof] = ACTIONS(1222), - [anon_sym__Generic] = ACTIONS(1222), - [anon_sym_asm] = ACTIONS(1222), - [anon_sym___asm__] = ACTIONS(1222), - [sym_number_literal] = ACTIONS(1224), - [anon_sym_L_SQUOTE] = ACTIONS(1224), - [anon_sym_u_SQUOTE] = ACTIONS(1224), - [anon_sym_U_SQUOTE] = ACTIONS(1224), - [anon_sym_u8_SQUOTE] = ACTIONS(1224), - [anon_sym_SQUOTE] = ACTIONS(1224), - [anon_sym_L_DQUOTE] = ACTIONS(1224), - [anon_sym_u_DQUOTE] = ACTIONS(1224), - [anon_sym_U_DQUOTE] = ACTIONS(1224), - [anon_sym_u8_DQUOTE] = ACTIONS(1224), - [anon_sym_DQUOTE] = ACTIONS(1224), - [sym_true] = ACTIONS(1222), - [sym_false] = ACTIONS(1222), - [anon_sym_NULL] = ACTIONS(1222), - [anon_sym_nullptr] = ACTIONS(1222), - [sym_comment] = ACTIONS(5), - }, - [240] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym___scanf] = ACTIONS(1298), - [anon_sym___printf] = ACTIONS(1298), - [anon_sym___read_mostly] = ACTIONS(1298), - [anon_sym___must_hold] = ACTIONS(1298), - [anon_sym___ro_after_init] = ACTIONS(1298), - [anon_sym___noreturn] = ACTIONS(1298), - [anon_sym___cold] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___init] = ACTIONS(1298), - [anon_sym___exit] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [anon_sym_alignas] = ACTIONS(1298), - [anon_sym__Alignas] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(5), - }, - [241] = { - [sym_identifier] = ACTIONS(1266), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1266), - [aux_sym_preproc_def_token1] = ACTIONS(1266), - [aux_sym_preproc_if_token1] = ACTIONS(1266), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1266), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1266), - [sym_preproc_directive] = ACTIONS(1266), - [anon_sym_LPAREN2] = ACTIONS(1268), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_TILDE] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1268), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym___extension__] = ACTIONS(1266), - [anon_sym_typedef] = ACTIONS(1266), - [anon_sym_extern] = ACTIONS(1266), - [anon_sym___attribute__] = ACTIONS(1266), - [anon_sym___scanf] = ACTIONS(1266), - [anon_sym___printf] = ACTIONS(1266), - [anon_sym___read_mostly] = ACTIONS(1266), - [anon_sym___must_hold] = ACTIONS(1266), - [anon_sym___ro_after_init] = ACTIONS(1266), - [anon_sym___noreturn] = ACTIONS(1266), - [anon_sym___cold] = ACTIONS(1266), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1268), - [anon_sym___declspec] = ACTIONS(1266), - [anon_sym___init] = ACTIONS(1266), - [anon_sym___exit] = ACTIONS(1266), - [anon_sym___cdecl] = ACTIONS(1266), - [anon_sym___clrcall] = ACTIONS(1266), - [anon_sym___stdcall] = ACTIONS(1266), - [anon_sym___fastcall] = ACTIONS(1266), - [anon_sym___thiscall] = ACTIONS(1266), - [anon_sym___vectorcall] = ACTIONS(1266), - [anon_sym_LBRACE] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(1268), - [anon_sym_signed] = ACTIONS(1266), - [anon_sym_unsigned] = ACTIONS(1266), - [anon_sym_long] = ACTIONS(1266), - [anon_sym_short] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(1266), - [anon_sym_auto] = ACTIONS(1266), - [anon_sym_register] = ACTIONS(1266), - [anon_sym_inline] = ACTIONS(1266), - [anon_sym___inline] = ACTIONS(1266), - [anon_sym___inline__] = ACTIONS(1266), - [anon_sym___forceinline] = ACTIONS(1266), - [anon_sym_thread_local] = ACTIONS(1266), - [anon_sym___thread] = ACTIONS(1266), - [anon_sym_const] = ACTIONS(1266), - [anon_sym_constexpr] = ACTIONS(1266), - [anon_sym_volatile] = ACTIONS(1266), - [anon_sym_restrict] = ACTIONS(1266), - [anon_sym___restrict__] = ACTIONS(1266), - [anon_sym__Atomic] = ACTIONS(1266), - [anon_sym__Noreturn] = ACTIONS(1266), - [anon_sym_noreturn] = ACTIONS(1266), - [anon_sym_alignas] = ACTIONS(1266), - [anon_sym__Alignas] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(1266), - [anon_sym_enum] = ACTIONS(1266), - [anon_sym_struct] = ACTIONS(1266), - [anon_sym_union] = ACTIONS(1266), - [anon_sym_if] = ACTIONS(1266), - [anon_sym_else] = ACTIONS(1266), - [anon_sym_switch] = ACTIONS(1266), - [anon_sym_case] = ACTIONS(1266), - [anon_sym_default] = ACTIONS(1266), - [anon_sym_while] = ACTIONS(1266), - [anon_sym_do] = ACTIONS(1266), - [anon_sym_for] = ACTIONS(1266), - [anon_sym_return] = ACTIONS(1266), - [anon_sym_break] = ACTIONS(1266), - [anon_sym_continue] = ACTIONS(1266), - [anon_sym_goto] = ACTIONS(1266), - [anon_sym___try] = ACTIONS(1266), - [anon_sym___leave] = ACTIONS(1266), - [anon_sym_DASH_DASH] = ACTIONS(1268), - [anon_sym_PLUS_PLUS] = ACTIONS(1268), - [anon_sym_sizeof] = ACTIONS(1266), - [anon_sym___alignof__] = ACTIONS(1266), - [anon_sym___alignof] = ACTIONS(1266), - [anon_sym__alignof] = ACTIONS(1266), - [anon_sym_alignof] = ACTIONS(1266), - [anon_sym__Alignof] = ACTIONS(1266), - [anon_sym_offsetof] = ACTIONS(1266), - [anon_sym__Generic] = ACTIONS(1266), - [anon_sym_asm] = ACTIONS(1266), - [anon_sym___asm__] = ACTIONS(1266), - [sym_number_literal] = ACTIONS(1268), - [anon_sym_L_SQUOTE] = ACTIONS(1268), - [anon_sym_u_SQUOTE] = ACTIONS(1268), - [anon_sym_U_SQUOTE] = ACTIONS(1268), - [anon_sym_u8_SQUOTE] = ACTIONS(1268), - [anon_sym_SQUOTE] = ACTIONS(1268), - [anon_sym_L_DQUOTE] = ACTIONS(1268), - [anon_sym_u_DQUOTE] = ACTIONS(1268), - [anon_sym_U_DQUOTE] = ACTIONS(1268), - [anon_sym_u8_DQUOTE] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1268), - [sym_true] = ACTIONS(1266), - [sym_false] = ACTIONS(1266), - [anon_sym_NULL] = ACTIONS(1266), - [anon_sym_nullptr] = ACTIONS(1266), - [sym_comment] = ACTIONS(5), - }, - [242] = { - [ts_builtin_sym_end] = ACTIONS(1272), - [sym_identifier] = ACTIONS(1270), + [226] = { + [sym_identifier] = ACTIONS(1270), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1270), [aux_sym_preproc_def_token1] = ACTIONS(1270), [aux_sym_preproc_if_token1] = ACTIONS(1270), + [aux_sym_preproc_if_token2] = ACTIONS(1270), [aux_sym_preproc_ifdef_token1] = ACTIONS(1270), [aux_sym_preproc_ifdef_token2] = ACTIONS(1270), [sym_preproc_directive] = ACTIONS(1270), @@ -49029,136 +47386,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1270), [sym_comment] = ACTIONS(5), }, - [243] = { - [ts_builtin_sym_end] = ACTIONS(1260), - [sym_identifier] = ACTIONS(1258), + [227] = { + [sym_identifier] = ACTIONS(1274), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1258), - [aux_sym_preproc_def_token1] = ACTIONS(1258), - [aux_sym_preproc_if_token1] = ACTIONS(1258), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1258), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1258), - [sym_preproc_directive] = ACTIONS(1258), - [anon_sym_LPAREN2] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1260), - [anon_sym_TILDE] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_SEMI] = ACTIONS(1260), - [anon_sym___extension__] = ACTIONS(1258), - [anon_sym_typedef] = ACTIONS(1258), - [anon_sym_extern] = ACTIONS(1258), - [anon_sym___attribute__] = ACTIONS(1258), - [anon_sym___scanf] = ACTIONS(1258), - [anon_sym___printf] = ACTIONS(1258), - [anon_sym___read_mostly] = ACTIONS(1258), - [anon_sym___must_hold] = ACTIONS(1258), - [anon_sym___ro_after_init] = ACTIONS(1258), - [anon_sym___noreturn] = ACTIONS(1258), - [anon_sym___cold] = ACTIONS(1258), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1260), - [anon_sym___declspec] = ACTIONS(1258), - [anon_sym___init] = ACTIONS(1258), - [anon_sym___exit] = ACTIONS(1258), - [anon_sym___cdecl] = ACTIONS(1258), - [anon_sym___clrcall] = ACTIONS(1258), - [anon_sym___stdcall] = ACTIONS(1258), - [anon_sym___fastcall] = ACTIONS(1258), - [anon_sym___thiscall] = ACTIONS(1258), - [anon_sym___vectorcall] = ACTIONS(1258), - [anon_sym_LBRACE] = ACTIONS(1260), - [anon_sym_signed] = ACTIONS(1258), - [anon_sym_unsigned] = ACTIONS(1258), - [anon_sym_long] = ACTIONS(1258), - [anon_sym_short] = ACTIONS(1258), - [anon_sym_static] = ACTIONS(1258), - [anon_sym_auto] = ACTIONS(1258), - [anon_sym_register] = ACTIONS(1258), - [anon_sym_inline] = ACTIONS(1258), - [anon_sym___inline] = ACTIONS(1258), - [anon_sym___inline__] = ACTIONS(1258), - [anon_sym___forceinline] = ACTIONS(1258), - [anon_sym_thread_local] = ACTIONS(1258), - [anon_sym___thread] = ACTIONS(1258), - [anon_sym_const] = ACTIONS(1258), - [anon_sym_constexpr] = ACTIONS(1258), - [anon_sym_volatile] = ACTIONS(1258), - [anon_sym_restrict] = ACTIONS(1258), - [anon_sym___restrict__] = ACTIONS(1258), - [anon_sym__Atomic] = ACTIONS(1258), - [anon_sym__Noreturn] = ACTIONS(1258), - [anon_sym_noreturn] = ACTIONS(1258), - [anon_sym_alignas] = ACTIONS(1258), - [anon_sym__Alignas] = ACTIONS(1258), - [sym_primitive_type] = ACTIONS(1258), - [anon_sym_enum] = ACTIONS(1258), - [anon_sym_struct] = ACTIONS(1258), - [anon_sym_union] = ACTIONS(1258), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_else] = ACTIONS(1258), - [anon_sym_switch] = ACTIONS(1258), - [anon_sym_case] = ACTIONS(1258), - [anon_sym_default] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1258), - [anon_sym_do] = ACTIONS(1258), - [anon_sym_for] = ACTIONS(1258), - [anon_sym_return] = ACTIONS(1258), - [anon_sym_break] = ACTIONS(1258), - [anon_sym_continue] = ACTIONS(1258), - [anon_sym_goto] = ACTIONS(1258), - [anon_sym___try] = ACTIONS(1258), - [anon_sym___leave] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1260), - [anon_sym_PLUS_PLUS] = ACTIONS(1260), - [anon_sym_sizeof] = ACTIONS(1258), - [anon_sym___alignof__] = ACTIONS(1258), - [anon_sym___alignof] = ACTIONS(1258), - [anon_sym__alignof] = ACTIONS(1258), - [anon_sym_alignof] = ACTIONS(1258), - [anon_sym__Alignof] = ACTIONS(1258), - [anon_sym_offsetof] = ACTIONS(1258), - [anon_sym__Generic] = ACTIONS(1258), - [anon_sym_asm] = ACTIONS(1258), - [anon_sym___asm__] = ACTIONS(1258), - [sym_number_literal] = ACTIONS(1260), - [anon_sym_L_SQUOTE] = ACTIONS(1260), - [anon_sym_u_SQUOTE] = ACTIONS(1260), - [anon_sym_U_SQUOTE] = ACTIONS(1260), - [anon_sym_u8_SQUOTE] = ACTIONS(1260), - [anon_sym_SQUOTE] = ACTIONS(1260), - [anon_sym_L_DQUOTE] = ACTIONS(1260), - [anon_sym_u_DQUOTE] = ACTIONS(1260), - [anon_sym_U_DQUOTE] = ACTIONS(1260), - [anon_sym_u8_DQUOTE] = ACTIONS(1260), - [anon_sym_DQUOTE] = ACTIONS(1260), - [sym_true] = ACTIONS(1258), - [sym_false] = ACTIONS(1258), - [anon_sym_NULL] = ACTIONS(1258), - [anon_sym_nullptr] = ACTIONS(1258), + [aux_sym_preproc_include_token1] = ACTIONS(1274), + [aux_sym_preproc_def_token1] = ACTIONS(1274), + [aux_sym_preproc_if_token1] = ACTIONS(1274), + [aux_sym_preproc_if_token2] = ACTIONS(1274), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), + [sym_preproc_directive] = ACTIONS(1274), + [anon_sym_LPAREN2] = ACTIONS(1276), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_PLUS] = ACTIONS(1274), + [anon_sym_STAR] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1276), + [anon_sym_SEMI] = ACTIONS(1276), + [anon_sym___extension__] = ACTIONS(1274), + [anon_sym_typedef] = ACTIONS(1274), + [anon_sym_extern] = ACTIONS(1274), + [anon_sym___attribute__] = ACTIONS(1274), + [anon_sym___scanf] = ACTIONS(1274), + [anon_sym___printf] = ACTIONS(1274), + [anon_sym___read_mostly] = ACTIONS(1274), + [anon_sym___must_hold] = ACTIONS(1274), + [anon_sym___ro_after_init] = ACTIONS(1274), + [anon_sym___noreturn] = ACTIONS(1274), + [anon_sym___cold] = ACTIONS(1274), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1276), + [anon_sym___declspec] = ACTIONS(1274), + [anon_sym___init] = ACTIONS(1274), + [anon_sym___exit] = ACTIONS(1274), + [anon_sym___cdecl] = ACTIONS(1274), + [anon_sym___clrcall] = ACTIONS(1274), + [anon_sym___stdcall] = ACTIONS(1274), + [anon_sym___fastcall] = ACTIONS(1274), + [anon_sym___thiscall] = ACTIONS(1274), + [anon_sym___vectorcall] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_signed] = ACTIONS(1274), + [anon_sym_unsigned] = ACTIONS(1274), + [anon_sym_long] = ACTIONS(1274), + [anon_sym_short] = ACTIONS(1274), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_auto] = ACTIONS(1274), + [anon_sym_register] = ACTIONS(1274), + [anon_sym_inline] = ACTIONS(1274), + [anon_sym___inline] = ACTIONS(1274), + [anon_sym___inline__] = ACTIONS(1274), + [anon_sym___forceinline] = ACTIONS(1274), + [anon_sym_thread_local] = ACTIONS(1274), + [anon_sym___thread] = ACTIONS(1274), + [anon_sym_const] = ACTIONS(1274), + [anon_sym_constexpr] = ACTIONS(1274), + [anon_sym_volatile] = ACTIONS(1274), + [anon_sym_restrict] = ACTIONS(1274), + [anon_sym___restrict__] = ACTIONS(1274), + [anon_sym__Atomic] = ACTIONS(1274), + [anon_sym__Noreturn] = ACTIONS(1274), + [anon_sym_noreturn] = ACTIONS(1274), + [anon_sym_alignas] = ACTIONS(1274), + [anon_sym__Alignas] = ACTIONS(1274), + [sym_primitive_type] = ACTIONS(1274), + [anon_sym_enum] = ACTIONS(1274), + [anon_sym_struct] = ACTIONS(1274), + [anon_sym_union] = ACTIONS(1274), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_else] = ACTIONS(1274), + [anon_sym_switch] = ACTIONS(1274), + [anon_sym_case] = ACTIONS(1274), + [anon_sym_default] = ACTIONS(1274), + [anon_sym_while] = ACTIONS(1274), + [anon_sym_do] = ACTIONS(1274), + [anon_sym_for] = ACTIONS(1274), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_break] = ACTIONS(1274), + [anon_sym_continue] = ACTIONS(1274), + [anon_sym_goto] = ACTIONS(1274), + [anon_sym___try] = ACTIONS(1274), + [anon_sym___leave] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1276), + [anon_sym_PLUS_PLUS] = ACTIONS(1276), + [anon_sym_sizeof] = ACTIONS(1274), + [anon_sym___alignof__] = ACTIONS(1274), + [anon_sym___alignof] = ACTIONS(1274), + [anon_sym__alignof] = ACTIONS(1274), + [anon_sym_alignof] = ACTIONS(1274), + [anon_sym__Alignof] = ACTIONS(1274), + [anon_sym_offsetof] = ACTIONS(1274), + [anon_sym__Generic] = ACTIONS(1274), + [anon_sym_asm] = ACTIONS(1274), + [anon_sym___asm__] = ACTIONS(1274), + [sym_number_literal] = ACTIONS(1276), + [anon_sym_L_SQUOTE] = ACTIONS(1276), + [anon_sym_u_SQUOTE] = ACTIONS(1276), + [anon_sym_U_SQUOTE] = ACTIONS(1276), + [anon_sym_u8_SQUOTE] = ACTIONS(1276), + [anon_sym_SQUOTE] = ACTIONS(1276), + [anon_sym_L_DQUOTE] = ACTIONS(1276), + [anon_sym_u_DQUOTE] = ACTIONS(1276), + [anon_sym_U_DQUOTE] = ACTIONS(1276), + [anon_sym_u8_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE] = ACTIONS(1276), + [sym_true] = ACTIONS(1274), + [sym_false] = ACTIONS(1274), + [anon_sym_NULL] = ACTIONS(1274), + [anon_sym_nullptr] = ACTIONS(1274), [sym_comment] = ACTIONS(5), }, - [244] = { - [sym_identifier] = ACTIONS(1254), + [228] = { + [sym_identifier] = ACTIONS(1278), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1254), - [aux_sym_preproc_def_token1] = ACTIONS(1254), - [aux_sym_preproc_if_token1] = ACTIONS(1254), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1254), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1254), - [sym_preproc_directive] = ACTIONS(1254), - [anon_sym_LPAREN2] = ACTIONS(1256), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_SEMI] = ACTIONS(1256), - [anon_sym___extension__] = ACTIONS(1254), - [anon_sym_typedef] = ACTIONS(1254), - [anon_sym_extern] = ACTIONS(1254), + [aux_sym_preproc_include_token1] = ACTIONS(1278), + [aux_sym_preproc_def_token1] = ACTIONS(1278), + [aux_sym_preproc_if_token1] = ACTIONS(1278), + [aux_sym_preproc_if_token2] = ACTIONS(1278), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1278), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1278), + [sym_preproc_directive] = ACTIONS(1278), + [anon_sym_LPAREN2] = ACTIONS(1280), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1278), + [anon_sym_PLUS] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_AMP] = ACTIONS(1280), + [anon_sym_SEMI] = ACTIONS(1280), + [anon_sym___extension__] = ACTIONS(1278), + [anon_sym_typedef] = ACTIONS(1278), + [anon_sym_extern] = ACTIONS(1278), + [anon_sym___attribute__] = ACTIONS(1278), + [anon_sym___scanf] = ACTIONS(1278), + [anon_sym___printf] = ACTIONS(1278), + [anon_sym___read_mostly] = ACTIONS(1278), + [anon_sym___must_hold] = ACTIONS(1278), + [anon_sym___ro_after_init] = ACTIONS(1278), + [anon_sym___noreturn] = ACTIONS(1278), + [anon_sym___cold] = ACTIONS(1278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1280), + [anon_sym___declspec] = ACTIONS(1278), + [anon_sym___init] = ACTIONS(1278), + [anon_sym___exit] = ACTIONS(1278), + [anon_sym___cdecl] = ACTIONS(1278), + [anon_sym___clrcall] = ACTIONS(1278), + [anon_sym___stdcall] = ACTIONS(1278), + [anon_sym___fastcall] = ACTIONS(1278), + [anon_sym___thiscall] = ACTIONS(1278), + [anon_sym___vectorcall] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(1280), + [anon_sym_signed] = ACTIONS(1278), + [anon_sym_unsigned] = ACTIONS(1278), + [anon_sym_long] = ACTIONS(1278), + [anon_sym_short] = ACTIONS(1278), + [anon_sym_static] = ACTIONS(1278), + [anon_sym_auto] = ACTIONS(1278), + [anon_sym_register] = ACTIONS(1278), + [anon_sym_inline] = ACTIONS(1278), + [anon_sym___inline] = ACTIONS(1278), + [anon_sym___inline__] = ACTIONS(1278), + [anon_sym___forceinline] = ACTIONS(1278), + [anon_sym_thread_local] = ACTIONS(1278), + [anon_sym___thread] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1278), + [anon_sym_constexpr] = ACTIONS(1278), + [anon_sym_volatile] = ACTIONS(1278), + [anon_sym_restrict] = ACTIONS(1278), + [anon_sym___restrict__] = ACTIONS(1278), + [anon_sym__Atomic] = ACTIONS(1278), + [anon_sym__Noreturn] = ACTIONS(1278), + [anon_sym_noreturn] = ACTIONS(1278), + [anon_sym_alignas] = ACTIONS(1278), + [anon_sym__Alignas] = ACTIONS(1278), + [sym_primitive_type] = ACTIONS(1278), + [anon_sym_enum] = ACTIONS(1278), + [anon_sym_struct] = ACTIONS(1278), + [anon_sym_union] = ACTIONS(1278), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_else] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(1278), + [anon_sym_case] = ACTIONS(1278), + [anon_sym_default] = ACTIONS(1278), + [anon_sym_while] = ACTIONS(1278), + [anon_sym_do] = ACTIONS(1278), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_return] = ACTIONS(1278), + [anon_sym_break] = ACTIONS(1278), + [anon_sym_continue] = ACTIONS(1278), + [anon_sym_goto] = ACTIONS(1278), + [anon_sym___try] = ACTIONS(1278), + [anon_sym___leave] = ACTIONS(1278), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_sizeof] = ACTIONS(1278), + [anon_sym___alignof__] = ACTIONS(1278), + [anon_sym___alignof] = ACTIONS(1278), + [anon_sym__alignof] = ACTIONS(1278), + [anon_sym_alignof] = ACTIONS(1278), + [anon_sym__Alignof] = ACTIONS(1278), + [anon_sym_offsetof] = ACTIONS(1278), + [anon_sym__Generic] = ACTIONS(1278), + [anon_sym_asm] = ACTIONS(1278), + [anon_sym___asm__] = ACTIONS(1278), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(1280), + [anon_sym_u_SQUOTE] = ACTIONS(1280), + [anon_sym_U_SQUOTE] = ACTIONS(1280), + [anon_sym_u8_SQUOTE] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1280), + [anon_sym_L_DQUOTE] = ACTIONS(1280), + [anon_sym_u_DQUOTE] = ACTIONS(1280), + [anon_sym_U_DQUOTE] = ACTIONS(1280), + [anon_sym_u8_DQUOTE] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(1280), + [sym_true] = ACTIONS(1278), + [sym_false] = ACTIONS(1278), + [anon_sym_NULL] = ACTIONS(1278), + [anon_sym_nullptr] = ACTIONS(1278), + [sym_comment] = ACTIONS(5), + }, + [229] = { + [sym_identifier] = ACTIONS(1254), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1254), + [aux_sym_preproc_def_token1] = ACTIONS(1254), + [aux_sym_preproc_if_token1] = ACTIONS(1254), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1254), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1254), + [sym_preproc_directive] = ACTIONS(1254), + [anon_sym_LPAREN2] = ACTIONS(1256), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_SEMI] = ACTIONS(1256), + [anon_sym___extension__] = ACTIONS(1254), + [anon_sym_typedef] = ACTIONS(1254), + [anon_sym_extern] = ACTIONS(1254), [anon_sym___attribute__] = ACTIONS(1254), [anon_sym___scanf] = ACTIONS(1254), [anon_sym___printf] = ACTIONS(1254), @@ -49249,2356 +47716,1916 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1254), [sym_comment] = ACTIONS(5), }, - [245] = { - [ts_builtin_sym_end] = ACTIONS(1228), - [sym_identifier] = ACTIONS(1226), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1226), - [aux_sym_preproc_def_token1] = ACTIONS(1226), - [aux_sym_preproc_if_token1] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1226), - [sym_preproc_directive] = ACTIONS(1226), - [anon_sym_LPAREN2] = ACTIONS(1228), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1226), - [anon_sym_PLUS] = ACTIONS(1226), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym___extension__] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1226), - [anon_sym_extern] = ACTIONS(1226), - [anon_sym___attribute__] = ACTIONS(1226), - [anon_sym___scanf] = ACTIONS(1226), - [anon_sym___printf] = ACTIONS(1226), - [anon_sym___read_mostly] = ACTIONS(1226), - [anon_sym___must_hold] = ACTIONS(1226), - [anon_sym___ro_after_init] = ACTIONS(1226), - [anon_sym___noreturn] = ACTIONS(1226), - [anon_sym___cold] = ACTIONS(1226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1228), - [anon_sym___declspec] = ACTIONS(1226), - [anon_sym___init] = ACTIONS(1226), - [anon_sym___exit] = ACTIONS(1226), - [anon_sym___cdecl] = ACTIONS(1226), - [anon_sym___clrcall] = ACTIONS(1226), - [anon_sym___stdcall] = ACTIONS(1226), - [anon_sym___fastcall] = ACTIONS(1226), - [anon_sym___thiscall] = ACTIONS(1226), - [anon_sym___vectorcall] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_signed] = ACTIONS(1226), - [anon_sym_unsigned] = ACTIONS(1226), - [anon_sym_long] = ACTIONS(1226), - [anon_sym_short] = ACTIONS(1226), - [anon_sym_static] = ACTIONS(1226), - [anon_sym_auto] = ACTIONS(1226), - [anon_sym_register] = ACTIONS(1226), - [anon_sym_inline] = ACTIONS(1226), - [anon_sym___inline] = ACTIONS(1226), - [anon_sym___inline__] = ACTIONS(1226), - [anon_sym___forceinline] = ACTIONS(1226), - [anon_sym_thread_local] = ACTIONS(1226), - [anon_sym___thread] = ACTIONS(1226), - [anon_sym_const] = ACTIONS(1226), - [anon_sym_constexpr] = ACTIONS(1226), - [anon_sym_volatile] = ACTIONS(1226), - [anon_sym_restrict] = ACTIONS(1226), - [anon_sym___restrict__] = ACTIONS(1226), - [anon_sym__Atomic] = ACTIONS(1226), - [anon_sym__Noreturn] = ACTIONS(1226), - [anon_sym_noreturn] = ACTIONS(1226), - [anon_sym_alignas] = ACTIONS(1226), - [anon_sym__Alignas] = ACTIONS(1226), - [sym_primitive_type] = ACTIONS(1226), - [anon_sym_enum] = ACTIONS(1226), - [anon_sym_struct] = ACTIONS(1226), - [anon_sym_union] = ACTIONS(1226), - [anon_sym_if] = ACTIONS(1226), - [anon_sym_else] = ACTIONS(1226), - [anon_sym_switch] = ACTIONS(1226), - [anon_sym_case] = ACTIONS(1226), - [anon_sym_default] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_do] = ACTIONS(1226), - [anon_sym_for] = ACTIONS(1226), - [anon_sym_return] = ACTIONS(1226), - [anon_sym_break] = ACTIONS(1226), - [anon_sym_continue] = ACTIONS(1226), - [anon_sym_goto] = ACTIONS(1226), - [anon_sym___try] = ACTIONS(1226), - [anon_sym___leave] = ACTIONS(1226), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_sizeof] = ACTIONS(1226), - [anon_sym___alignof__] = ACTIONS(1226), - [anon_sym___alignof] = ACTIONS(1226), - [anon_sym__alignof] = ACTIONS(1226), - [anon_sym_alignof] = ACTIONS(1226), - [anon_sym__Alignof] = ACTIONS(1226), - [anon_sym_offsetof] = ACTIONS(1226), - [anon_sym__Generic] = ACTIONS(1226), - [anon_sym_asm] = ACTIONS(1226), - [anon_sym___asm__] = ACTIONS(1226), - [sym_number_literal] = ACTIONS(1228), - [anon_sym_L_SQUOTE] = ACTIONS(1228), - [anon_sym_u_SQUOTE] = ACTIONS(1228), - [anon_sym_U_SQUOTE] = ACTIONS(1228), - [anon_sym_u8_SQUOTE] = ACTIONS(1228), - [anon_sym_SQUOTE] = ACTIONS(1228), - [anon_sym_L_DQUOTE] = ACTIONS(1228), - [anon_sym_u_DQUOTE] = ACTIONS(1228), - [anon_sym_U_DQUOTE] = ACTIONS(1228), - [anon_sym_u8_DQUOTE] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym_true] = ACTIONS(1226), - [sym_false] = ACTIONS(1226), - [anon_sym_NULL] = ACTIONS(1226), - [anon_sym_nullptr] = ACTIONS(1226), - [sym_comment] = ACTIONS(5), - }, - [246] = { - [ts_builtin_sym_end] = ACTIONS(1228), - [sym_identifier] = ACTIONS(1226), + [230] = { + [sym_identifier] = ACTIONS(1378), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1226), - [aux_sym_preproc_def_token1] = ACTIONS(1226), - [aux_sym_preproc_if_token1] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1226), - [sym_preproc_directive] = ACTIONS(1226), - [anon_sym_LPAREN2] = ACTIONS(1228), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1226), - [anon_sym_PLUS] = ACTIONS(1226), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym___extension__] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1226), - [anon_sym_extern] = ACTIONS(1226), - [anon_sym___attribute__] = ACTIONS(1226), - [anon_sym___scanf] = ACTIONS(1226), - [anon_sym___printf] = ACTIONS(1226), - [anon_sym___read_mostly] = ACTIONS(1226), - [anon_sym___must_hold] = ACTIONS(1226), - [anon_sym___ro_after_init] = ACTIONS(1226), - [anon_sym___noreturn] = ACTIONS(1226), - [anon_sym___cold] = ACTIONS(1226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1228), - [anon_sym___declspec] = ACTIONS(1226), - [anon_sym___init] = ACTIONS(1226), - [anon_sym___exit] = ACTIONS(1226), - [anon_sym___cdecl] = ACTIONS(1226), - [anon_sym___clrcall] = ACTIONS(1226), - [anon_sym___stdcall] = ACTIONS(1226), - [anon_sym___fastcall] = ACTIONS(1226), - [anon_sym___thiscall] = ACTIONS(1226), - [anon_sym___vectorcall] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_signed] = ACTIONS(1226), - [anon_sym_unsigned] = ACTIONS(1226), - [anon_sym_long] = ACTIONS(1226), - [anon_sym_short] = ACTIONS(1226), - [anon_sym_static] = ACTIONS(1226), - [anon_sym_auto] = ACTIONS(1226), - [anon_sym_register] = ACTIONS(1226), - [anon_sym_inline] = ACTIONS(1226), - [anon_sym___inline] = ACTIONS(1226), - [anon_sym___inline__] = ACTIONS(1226), - [anon_sym___forceinline] = ACTIONS(1226), - [anon_sym_thread_local] = ACTIONS(1226), - [anon_sym___thread] = ACTIONS(1226), - [anon_sym_const] = ACTIONS(1226), - [anon_sym_constexpr] = ACTIONS(1226), - [anon_sym_volatile] = ACTIONS(1226), - [anon_sym_restrict] = ACTIONS(1226), - [anon_sym___restrict__] = ACTIONS(1226), - [anon_sym__Atomic] = ACTIONS(1226), - [anon_sym__Noreturn] = ACTIONS(1226), - [anon_sym_noreturn] = ACTIONS(1226), - [anon_sym_alignas] = ACTIONS(1226), - [anon_sym__Alignas] = ACTIONS(1226), - [sym_primitive_type] = ACTIONS(1226), - [anon_sym_enum] = ACTIONS(1226), - [anon_sym_struct] = ACTIONS(1226), - [anon_sym_union] = ACTIONS(1226), - [anon_sym_if] = ACTIONS(1226), - [anon_sym_else] = ACTIONS(1226), - [anon_sym_switch] = ACTIONS(1226), - [anon_sym_case] = ACTIONS(1226), - [anon_sym_default] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_do] = ACTIONS(1226), - [anon_sym_for] = ACTIONS(1226), - [anon_sym_return] = ACTIONS(1226), - [anon_sym_break] = ACTIONS(1226), - [anon_sym_continue] = ACTIONS(1226), - [anon_sym_goto] = ACTIONS(1226), - [anon_sym___try] = ACTIONS(1226), - [anon_sym___leave] = ACTIONS(1226), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_sizeof] = ACTIONS(1226), - [anon_sym___alignof__] = ACTIONS(1226), - [anon_sym___alignof] = ACTIONS(1226), - [anon_sym__alignof] = ACTIONS(1226), - [anon_sym_alignof] = ACTIONS(1226), - [anon_sym__Alignof] = ACTIONS(1226), - [anon_sym_offsetof] = ACTIONS(1226), - [anon_sym__Generic] = ACTIONS(1226), - [anon_sym_asm] = ACTIONS(1226), - [anon_sym___asm__] = ACTIONS(1226), - [sym_number_literal] = ACTIONS(1228), - [anon_sym_L_SQUOTE] = ACTIONS(1228), - [anon_sym_u_SQUOTE] = ACTIONS(1228), - [anon_sym_U_SQUOTE] = ACTIONS(1228), - [anon_sym_u8_SQUOTE] = ACTIONS(1228), - [anon_sym_SQUOTE] = ACTIONS(1228), - [anon_sym_L_DQUOTE] = ACTIONS(1228), - [anon_sym_u_DQUOTE] = ACTIONS(1228), - [anon_sym_U_DQUOTE] = ACTIONS(1228), - [anon_sym_u8_DQUOTE] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym_true] = ACTIONS(1226), - [sym_false] = ACTIONS(1226), - [anon_sym_NULL] = ACTIONS(1226), - [anon_sym_nullptr] = ACTIONS(1226), - [sym_comment] = ACTIONS(5), - }, - [247] = { - [sym_identifier] = ACTIONS(1242), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1242), - [aux_sym_preproc_def_token1] = ACTIONS(1242), - [aux_sym_preproc_if_token1] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), - [sym_preproc_directive] = ACTIONS(1242), - [anon_sym_LPAREN2] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_TILDE] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym___extension__] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym___attribute__] = ACTIONS(1242), - [anon_sym___scanf] = ACTIONS(1242), - [anon_sym___printf] = ACTIONS(1242), - [anon_sym___read_mostly] = ACTIONS(1242), - [anon_sym___must_hold] = ACTIONS(1242), - [anon_sym___ro_after_init] = ACTIONS(1242), - [anon_sym___noreturn] = ACTIONS(1242), - [anon_sym___cold] = ACTIONS(1242), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1244), - [anon_sym___declspec] = ACTIONS(1242), - [anon_sym___init] = ACTIONS(1242), - [anon_sym___exit] = ACTIONS(1242), - [anon_sym___cdecl] = ACTIONS(1242), - [anon_sym___clrcall] = ACTIONS(1242), - [anon_sym___stdcall] = ACTIONS(1242), - [anon_sym___fastcall] = ACTIONS(1242), - [anon_sym___thiscall] = ACTIONS(1242), - [anon_sym___vectorcall] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_signed] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_long] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_register] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym___inline] = ACTIONS(1242), - [anon_sym___inline__] = ACTIONS(1242), - [anon_sym___forceinline] = ACTIONS(1242), - [anon_sym_thread_local] = ACTIONS(1242), - [anon_sym___thread] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_constexpr] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym___restrict__] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [anon_sym__Noreturn] = ACTIONS(1242), - [anon_sym_noreturn] = ACTIONS(1242), - [anon_sym_alignas] = ACTIONS(1242), - [anon_sym__Alignas] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_case] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [anon_sym___try] = ACTIONS(1242), - [anon_sym___leave] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym___alignof__] = ACTIONS(1242), - [anon_sym___alignof] = ACTIONS(1242), - [anon_sym__alignof] = ACTIONS(1242), - [anon_sym_alignof] = ACTIONS(1242), - [anon_sym__Alignof] = ACTIONS(1242), - [anon_sym_offsetof] = ACTIONS(1242), - [anon_sym__Generic] = ACTIONS(1242), - [anon_sym_asm] = ACTIONS(1242), - [anon_sym___asm__] = ACTIONS(1242), - [sym_number_literal] = ACTIONS(1244), - [anon_sym_L_SQUOTE] = ACTIONS(1244), - [anon_sym_u_SQUOTE] = ACTIONS(1244), - [anon_sym_U_SQUOTE] = ACTIONS(1244), - [anon_sym_u8_SQUOTE] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1244), - [anon_sym_L_DQUOTE] = ACTIONS(1244), - [anon_sym_u_DQUOTE] = ACTIONS(1244), - [anon_sym_U_DQUOTE] = ACTIONS(1244), - [anon_sym_u8_DQUOTE] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(1244), - [sym_true] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_NULL] = ACTIONS(1242), - [anon_sym_nullptr] = ACTIONS(1242), - [sym_comment] = ACTIONS(5), - }, - [248] = { - [sym_identifier] = ACTIONS(1242), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1242), - [aux_sym_preproc_def_token1] = ACTIONS(1242), - [aux_sym_preproc_if_token1] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), - [sym_preproc_directive] = ACTIONS(1242), - [anon_sym_LPAREN2] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_TILDE] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym___extension__] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym___attribute__] = ACTIONS(1242), - [anon_sym___scanf] = ACTIONS(1242), - [anon_sym___printf] = ACTIONS(1242), - [anon_sym___read_mostly] = ACTIONS(1242), - [anon_sym___must_hold] = ACTIONS(1242), - [anon_sym___ro_after_init] = ACTIONS(1242), - [anon_sym___noreturn] = ACTIONS(1242), - [anon_sym___cold] = ACTIONS(1242), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1244), - [anon_sym___declspec] = ACTIONS(1242), - [anon_sym___init] = ACTIONS(1242), - [anon_sym___exit] = ACTIONS(1242), - [anon_sym___cdecl] = ACTIONS(1242), - [anon_sym___clrcall] = ACTIONS(1242), - [anon_sym___stdcall] = ACTIONS(1242), - [anon_sym___fastcall] = ACTIONS(1242), - [anon_sym___thiscall] = ACTIONS(1242), - [anon_sym___vectorcall] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_signed] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_long] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_register] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym___inline] = ACTIONS(1242), - [anon_sym___inline__] = ACTIONS(1242), - [anon_sym___forceinline] = ACTIONS(1242), - [anon_sym_thread_local] = ACTIONS(1242), - [anon_sym___thread] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_constexpr] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym___restrict__] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [anon_sym__Noreturn] = ACTIONS(1242), - [anon_sym_noreturn] = ACTIONS(1242), - [anon_sym_alignas] = ACTIONS(1242), - [anon_sym__Alignas] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_case] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [anon_sym___try] = ACTIONS(1242), - [anon_sym___leave] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym___alignof__] = ACTIONS(1242), - [anon_sym___alignof] = ACTIONS(1242), - [anon_sym__alignof] = ACTIONS(1242), - [anon_sym_alignof] = ACTIONS(1242), - [anon_sym__Alignof] = ACTIONS(1242), - [anon_sym_offsetof] = ACTIONS(1242), - [anon_sym__Generic] = ACTIONS(1242), - [anon_sym_asm] = ACTIONS(1242), - [anon_sym___asm__] = ACTIONS(1242), - [sym_number_literal] = ACTIONS(1244), - [anon_sym_L_SQUOTE] = ACTIONS(1244), - [anon_sym_u_SQUOTE] = ACTIONS(1244), - [anon_sym_U_SQUOTE] = ACTIONS(1244), - [anon_sym_u8_SQUOTE] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1244), - [anon_sym_L_DQUOTE] = ACTIONS(1244), - [anon_sym_u_DQUOTE] = ACTIONS(1244), - [anon_sym_U_DQUOTE] = ACTIONS(1244), - [anon_sym_u8_DQUOTE] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(1244), - [sym_true] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_NULL] = ACTIONS(1242), - [anon_sym_nullptr] = ACTIONS(1242), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token2] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym___scanf] = ACTIONS(1378), + [anon_sym___printf] = ACTIONS(1378), + [anon_sym___read_mostly] = ACTIONS(1378), + [anon_sym___must_hold] = ACTIONS(1378), + [anon_sym___ro_after_init] = ACTIONS(1378), + [anon_sym___noreturn] = ACTIONS(1378), + [anon_sym___cold] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___init] = ACTIONS(1378), + [anon_sym___exit] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [anon_sym_alignas] = ACTIONS(1378), + [anon_sym__Alignas] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(5), }, - [249] = { - [sym_identifier] = ACTIONS(1226), + [231] = { + [sym_identifier] = ACTIONS(1286), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1226), - [aux_sym_preproc_def_token1] = ACTIONS(1226), - [aux_sym_preproc_if_token1] = ACTIONS(1226), - [aux_sym_preproc_if_token2] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1226), - [sym_preproc_directive] = ACTIONS(1226), - [anon_sym_LPAREN2] = ACTIONS(1228), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1226), - [anon_sym_PLUS] = ACTIONS(1226), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym___extension__] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1226), - [anon_sym_extern] = ACTIONS(1226), - [anon_sym___attribute__] = ACTIONS(1226), - [anon_sym___scanf] = ACTIONS(1226), - [anon_sym___printf] = ACTIONS(1226), - [anon_sym___read_mostly] = ACTIONS(1226), - [anon_sym___must_hold] = ACTIONS(1226), - [anon_sym___ro_after_init] = ACTIONS(1226), - [anon_sym___noreturn] = ACTIONS(1226), - [anon_sym___cold] = ACTIONS(1226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1228), - [anon_sym___declspec] = ACTIONS(1226), - [anon_sym___init] = ACTIONS(1226), - [anon_sym___exit] = ACTIONS(1226), - [anon_sym___cdecl] = ACTIONS(1226), - [anon_sym___clrcall] = ACTIONS(1226), - [anon_sym___stdcall] = ACTIONS(1226), - [anon_sym___fastcall] = ACTIONS(1226), - [anon_sym___thiscall] = ACTIONS(1226), - [anon_sym___vectorcall] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_signed] = ACTIONS(1226), - [anon_sym_unsigned] = ACTIONS(1226), - [anon_sym_long] = ACTIONS(1226), - [anon_sym_short] = ACTIONS(1226), - [anon_sym_static] = ACTIONS(1226), - [anon_sym_auto] = ACTIONS(1226), - [anon_sym_register] = ACTIONS(1226), - [anon_sym_inline] = ACTIONS(1226), - [anon_sym___inline] = ACTIONS(1226), - [anon_sym___inline__] = ACTIONS(1226), - [anon_sym___forceinline] = ACTIONS(1226), - [anon_sym_thread_local] = ACTIONS(1226), - [anon_sym___thread] = ACTIONS(1226), - [anon_sym_const] = ACTIONS(1226), - [anon_sym_constexpr] = ACTIONS(1226), - [anon_sym_volatile] = ACTIONS(1226), - [anon_sym_restrict] = ACTIONS(1226), - [anon_sym___restrict__] = ACTIONS(1226), - [anon_sym__Atomic] = ACTIONS(1226), - [anon_sym__Noreturn] = ACTIONS(1226), - [anon_sym_noreturn] = ACTIONS(1226), - [anon_sym_alignas] = ACTIONS(1226), - [anon_sym__Alignas] = ACTIONS(1226), - [sym_primitive_type] = ACTIONS(1226), - [anon_sym_enum] = ACTIONS(1226), - [anon_sym_struct] = ACTIONS(1226), - [anon_sym_union] = ACTIONS(1226), - [anon_sym_if] = ACTIONS(1226), - [anon_sym_else] = ACTIONS(1226), - [anon_sym_switch] = ACTIONS(1226), - [anon_sym_case] = ACTIONS(1226), - [anon_sym_default] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_do] = ACTIONS(1226), - [anon_sym_for] = ACTIONS(1226), - [anon_sym_return] = ACTIONS(1226), - [anon_sym_break] = ACTIONS(1226), - [anon_sym_continue] = ACTIONS(1226), - [anon_sym_goto] = ACTIONS(1226), - [anon_sym___try] = ACTIONS(1226), - [anon_sym___leave] = ACTIONS(1226), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_sizeof] = ACTIONS(1226), - [anon_sym___alignof__] = ACTIONS(1226), - [anon_sym___alignof] = ACTIONS(1226), - [anon_sym__alignof] = ACTIONS(1226), - [anon_sym_alignof] = ACTIONS(1226), - [anon_sym__Alignof] = ACTIONS(1226), - [anon_sym_offsetof] = ACTIONS(1226), - [anon_sym__Generic] = ACTIONS(1226), - [anon_sym_asm] = ACTIONS(1226), - [anon_sym___asm__] = ACTIONS(1226), - [sym_number_literal] = ACTIONS(1228), - [anon_sym_L_SQUOTE] = ACTIONS(1228), - [anon_sym_u_SQUOTE] = ACTIONS(1228), - [anon_sym_U_SQUOTE] = ACTIONS(1228), - [anon_sym_u8_SQUOTE] = ACTIONS(1228), - [anon_sym_SQUOTE] = ACTIONS(1228), - [anon_sym_L_DQUOTE] = ACTIONS(1228), - [anon_sym_u_DQUOTE] = ACTIONS(1228), - [anon_sym_U_DQUOTE] = ACTIONS(1228), - [anon_sym_u8_DQUOTE] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym_true] = ACTIONS(1226), - [sym_false] = ACTIONS(1226), - [anon_sym_NULL] = ACTIONS(1226), - [anon_sym_nullptr] = ACTIONS(1226), - [sym_comment] = ACTIONS(5), - }, - [250] = { - [sym_identifier] = ACTIONS(1234), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1234), - [aux_sym_preproc_def_token1] = ACTIONS(1234), - [aux_sym_preproc_if_token1] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), - [sym_preproc_directive] = ACTIONS(1234), - [anon_sym_LPAREN2] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym___extension__] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym___attribute__] = ACTIONS(1234), - [anon_sym___scanf] = ACTIONS(1234), - [anon_sym___printf] = ACTIONS(1234), - [anon_sym___read_mostly] = ACTIONS(1234), - [anon_sym___must_hold] = ACTIONS(1234), - [anon_sym___ro_after_init] = ACTIONS(1234), - [anon_sym___noreturn] = ACTIONS(1234), - [anon_sym___cold] = ACTIONS(1234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), - [anon_sym___declspec] = ACTIONS(1234), - [anon_sym___init] = ACTIONS(1234), - [anon_sym___exit] = ACTIONS(1234), - [anon_sym___cdecl] = ACTIONS(1234), - [anon_sym___clrcall] = ACTIONS(1234), - [anon_sym___stdcall] = ACTIONS(1234), - [anon_sym___fastcall] = ACTIONS(1234), - [anon_sym___thiscall] = ACTIONS(1234), - [anon_sym___vectorcall] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_RBRACE] = ACTIONS(1236), - [anon_sym_signed] = ACTIONS(1234), - [anon_sym_unsigned] = ACTIONS(1234), - [anon_sym_long] = ACTIONS(1234), - [anon_sym_short] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_auto] = ACTIONS(1234), - [anon_sym_register] = ACTIONS(1234), - [anon_sym_inline] = ACTIONS(1234), - [anon_sym___inline] = ACTIONS(1234), - [anon_sym___inline__] = ACTIONS(1234), - [anon_sym___forceinline] = ACTIONS(1234), - [anon_sym_thread_local] = ACTIONS(1234), - [anon_sym___thread] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_constexpr] = ACTIONS(1234), - [anon_sym_volatile] = ACTIONS(1234), - [anon_sym_restrict] = ACTIONS(1234), - [anon_sym___restrict__] = ACTIONS(1234), - [anon_sym__Atomic] = ACTIONS(1234), - [anon_sym__Noreturn] = ACTIONS(1234), - [anon_sym_noreturn] = ACTIONS(1234), - [anon_sym_alignas] = ACTIONS(1234), - [anon_sym__Alignas] = ACTIONS(1234), - [sym_primitive_type] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [anon_sym_switch] = ACTIONS(1234), - [anon_sym_case] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_goto] = ACTIONS(1234), - [anon_sym___try] = ACTIONS(1234), - [anon_sym___leave] = ACTIONS(1234), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_sizeof] = ACTIONS(1234), - [anon_sym___alignof__] = ACTIONS(1234), - [anon_sym___alignof] = ACTIONS(1234), - [anon_sym__alignof] = ACTIONS(1234), - [anon_sym_alignof] = ACTIONS(1234), - [anon_sym__Alignof] = ACTIONS(1234), - [anon_sym_offsetof] = ACTIONS(1234), - [anon_sym__Generic] = ACTIONS(1234), - [anon_sym_asm] = ACTIONS(1234), - [anon_sym___asm__] = ACTIONS(1234), - [sym_number_literal] = ACTIONS(1236), - [anon_sym_L_SQUOTE] = ACTIONS(1236), - [anon_sym_u_SQUOTE] = ACTIONS(1236), - [anon_sym_U_SQUOTE] = ACTIONS(1236), - [anon_sym_u8_SQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_L_DQUOTE] = ACTIONS(1236), - [anon_sym_u_DQUOTE] = ACTIONS(1236), - [anon_sym_U_DQUOTE] = ACTIONS(1236), - [anon_sym_u8_DQUOTE] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1236), - [sym_true] = ACTIONS(1234), - [sym_false] = ACTIONS(1234), - [anon_sym_NULL] = ACTIONS(1234), - [anon_sym_nullptr] = ACTIONS(1234), + [aux_sym_preproc_include_token1] = ACTIONS(1286), + [aux_sym_preproc_def_token1] = ACTIONS(1286), + [aux_sym_preproc_if_token1] = ACTIONS(1286), + [aux_sym_preproc_if_token2] = ACTIONS(1286), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1286), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1286), + [sym_preproc_directive] = ACTIONS(1286), + [anon_sym_LPAREN2] = ACTIONS(1288), + [anon_sym_BANG] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_DASH] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1288), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym___extension__] = ACTIONS(1286), + [anon_sym_typedef] = ACTIONS(1286), + [anon_sym_extern] = ACTIONS(1286), + [anon_sym___attribute__] = ACTIONS(1286), + [anon_sym___scanf] = ACTIONS(1286), + [anon_sym___printf] = ACTIONS(1286), + [anon_sym___read_mostly] = ACTIONS(1286), + [anon_sym___must_hold] = ACTIONS(1286), + [anon_sym___ro_after_init] = ACTIONS(1286), + [anon_sym___noreturn] = ACTIONS(1286), + [anon_sym___cold] = ACTIONS(1286), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1288), + [anon_sym___declspec] = ACTIONS(1286), + [anon_sym___init] = ACTIONS(1286), + [anon_sym___exit] = ACTIONS(1286), + [anon_sym___cdecl] = ACTIONS(1286), + [anon_sym___clrcall] = ACTIONS(1286), + [anon_sym___stdcall] = ACTIONS(1286), + [anon_sym___fastcall] = ACTIONS(1286), + [anon_sym___thiscall] = ACTIONS(1286), + [anon_sym___vectorcall] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_signed] = ACTIONS(1286), + [anon_sym_unsigned] = ACTIONS(1286), + [anon_sym_long] = ACTIONS(1286), + [anon_sym_short] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_auto] = ACTIONS(1286), + [anon_sym_register] = ACTIONS(1286), + [anon_sym_inline] = ACTIONS(1286), + [anon_sym___inline] = ACTIONS(1286), + [anon_sym___inline__] = ACTIONS(1286), + [anon_sym___forceinline] = ACTIONS(1286), + [anon_sym_thread_local] = ACTIONS(1286), + [anon_sym___thread] = ACTIONS(1286), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_constexpr] = ACTIONS(1286), + [anon_sym_volatile] = ACTIONS(1286), + [anon_sym_restrict] = ACTIONS(1286), + [anon_sym___restrict__] = ACTIONS(1286), + [anon_sym__Atomic] = ACTIONS(1286), + [anon_sym__Noreturn] = ACTIONS(1286), + [anon_sym_noreturn] = ACTIONS(1286), + [anon_sym_alignas] = ACTIONS(1286), + [anon_sym__Alignas] = ACTIONS(1286), + [sym_primitive_type] = ACTIONS(1286), + [anon_sym_enum] = ACTIONS(1286), + [anon_sym_struct] = ACTIONS(1286), + [anon_sym_union] = ACTIONS(1286), + [anon_sym_if] = ACTIONS(1286), + [anon_sym_else] = ACTIONS(1286), + [anon_sym_switch] = ACTIONS(1286), + [anon_sym_case] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1286), + [anon_sym_while] = ACTIONS(1286), + [anon_sym_do] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1286), + [anon_sym_return] = ACTIONS(1286), + [anon_sym_break] = ACTIONS(1286), + [anon_sym_continue] = ACTIONS(1286), + [anon_sym_goto] = ACTIONS(1286), + [anon_sym___try] = ACTIONS(1286), + [anon_sym___leave] = ACTIONS(1286), + [anon_sym_DASH_DASH] = ACTIONS(1288), + [anon_sym_PLUS_PLUS] = ACTIONS(1288), + [anon_sym_sizeof] = ACTIONS(1286), + [anon_sym___alignof__] = ACTIONS(1286), + [anon_sym___alignof] = ACTIONS(1286), + [anon_sym__alignof] = ACTIONS(1286), + [anon_sym_alignof] = ACTIONS(1286), + [anon_sym__Alignof] = ACTIONS(1286), + [anon_sym_offsetof] = ACTIONS(1286), + [anon_sym__Generic] = ACTIONS(1286), + [anon_sym_asm] = ACTIONS(1286), + [anon_sym___asm__] = ACTIONS(1286), + [sym_number_literal] = ACTIONS(1288), + [anon_sym_L_SQUOTE] = ACTIONS(1288), + [anon_sym_u_SQUOTE] = ACTIONS(1288), + [anon_sym_U_SQUOTE] = ACTIONS(1288), + [anon_sym_u8_SQUOTE] = ACTIONS(1288), + [anon_sym_SQUOTE] = ACTIONS(1288), + [anon_sym_L_DQUOTE] = ACTIONS(1288), + [anon_sym_u_DQUOTE] = ACTIONS(1288), + [anon_sym_U_DQUOTE] = ACTIONS(1288), + [anon_sym_u8_DQUOTE] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1288), + [sym_true] = ACTIONS(1286), + [sym_false] = ACTIONS(1286), + [anon_sym_NULL] = ACTIONS(1286), + [anon_sym_nullptr] = ACTIONS(1286), [sym_comment] = ACTIONS(5), }, - [251] = { - [sym_identifier] = ACTIONS(1226), + [232] = { + [sym_identifier] = ACTIONS(1290), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1226), - [aux_sym_preproc_def_token1] = ACTIONS(1226), - [aux_sym_preproc_if_token1] = ACTIONS(1226), - [aux_sym_preproc_if_token2] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1226), - [sym_preproc_directive] = ACTIONS(1226), - [anon_sym_LPAREN2] = ACTIONS(1228), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1226), - [anon_sym_PLUS] = ACTIONS(1226), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym___extension__] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1226), - [anon_sym_extern] = ACTIONS(1226), - [anon_sym___attribute__] = ACTIONS(1226), - [anon_sym___scanf] = ACTIONS(1226), - [anon_sym___printf] = ACTIONS(1226), - [anon_sym___read_mostly] = ACTIONS(1226), - [anon_sym___must_hold] = ACTIONS(1226), - [anon_sym___ro_after_init] = ACTIONS(1226), - [anon_sym___noreturn] = ACTIONS(1226), - [anon_sym___cold] = ACTIONS(1226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1228), - [anon_sym___declspec] = ACTIONS(1226), - [anon_sym___init] = ACTIONS(1226), - [anon_sym___exit] = ACTIONS(1226), - [anon_sym___cdecl] = ACTIONS(1226), - [anon_sym___clrcall] = ACTIONS(1226), - [anon_sym___stdcall] = ACTIONS(1226), - [anon_sym___fastcall] = ACTIONS(1226), - [anon_sym___thiscall] = ACTIONS(1226), - [anon_sym___vectorcall] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_signed] = ACTIONS(1226), - [anon_sym_unsigned] = ACTIONS(1226), - [anon_sym_long] = ACTIONS(1226), - [anon_sym_short] = ACTIONS(1226), - [anon_sym_static] = ACTIONS(1226), - [anon_sym_auto] = ACTIONS(1226), - [anon_sym_register] = ACTIONS(1226), - [anon_sym_inline] = ACTIONS(1226), - [anon_sym___inline] = ACTIONS(1226), - [anon_sym___inline__] = ACTIONS(1226), - [anon_sym___forceinline] = ACTIONS(1226), - [anon_sym_thread_local] = ACTIONS(1226), - [anon_sym___thread] = ACTIONS(1226), - [anon_sym_const] = ACTIONS(1226), - [anon_sym_constexpr] = ACTIONS(1226), - [anon_sym_volatile] = ACTIONS(1226), - [anon_sym_restrict] = ACTIONS(1226), - [anon_sym___restrict__] = ACTIONS(1226), - [anon_sym__Atomic] = ACTIONS(1226), - [anon_sym__Noreturn] = ACTIONS(1226), - [anon_sym_noreturn] = ACTIONS(1226), - [anon_sym_alignas] = ACTIONS(1226), - [anon_sym__Alignas] = ACTIONS(1226), - [sym_primitive_type] = ACTIONS(1226), - [anon_sym_enum] = ACTIONS(1226), - [anon_sym_struct] = ACTIONS(1226), - [anon_sym_union] = ACTIONS(1226), - [anon_sym_if] = ACTIONS(1226), - [anon_sym_else] = ACTIONS(1226), - [anon_sym_switch] = ACTIONS(1226), - [anon_sym_case] = ACTIONS(1226), - [anon_sym_default] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_do] = ACTIONS(1226), - [anon_sym_for] = ACTIONS(1226), - [anon_sym_return] = ACTIONS(1226), - [anon_sym_break] = ACTIONS(1226), - [anon_sym_continue] = ACTIONS(1226), - [anon_sym_goto] = ACTIONS(1226), - [anon_sym___try] = ACTIONS(1226), - [anon_sym___leave] = ACTIONS(1226), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_sizeof] = ACTIONS(1226), - [anon_sym___alignof__] = ACTIONS(1226), - [anon_sym___alignof] = ACTIONS(1226), - [anon_sym__alignof] = ACTIONS(1226), - [anon_sym_alignof] = ACTIONS(1226), - [anon_sym__Alignof] = ACTIONS(1226), - [anon_sym_offsetof] = ACTIONS(1226), - [anon_sym__Generic] = ACTIONS(1226), - [anon_sym_asm] = ACTIONS(1226), - [anon_sym___asm__] = ACTIONS(1226), - [sym_number_literal] = ACTIONS(1228), - [anon_sym_L_SQUOTE] = ACTIONS(1228), - [anon_sym_u_SQUOTE] = ACTIONS(1228), - [anon_sym_U_SQUOTE] = ACTIONS(1228), - [anon_sym_u8_SQUOTE] = ACTIONS(1228), - [anon_sym_SQUOTE] = ACTIONS(1228), - [anon_sym_L_DQUOTE] = ACTIONS(1228), - [anon_sym_u_DQUOTE] = ACTIONS(1228), - [anon_sym_U_DQUOTE] = ACTIONS(1228), - [anon_sym_u8_DQUOTE] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym_true] = ACTIONS(1226), - [sym_false] = ACTIONS(1226), - [anon_sym_NULL] = ACTIONS(1226), - [anon_sym_nullptr] = ACTIONS(1226), + [aux_sym_preproc_include_token1] = ACTIONS(1290), + [aux_sym_preproc_def_token1] = ACTIONS(1290), + [aux_sym_preproc_if_token1] = ACTIONS(1290), + [aux_sym_preproc_if_token2] = ACTIONS(1290), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1290), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1290), + [sym_preproc_directive] = ACTIONS(1290), + [anon_sym_LPAREN2] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1290), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym___extension__] = ACTIONS(1290), + [anon_sym_typedef] = ACTIONS(1290), + [anon_sym_extern] = ACTIONS(1290), + [anon_sym___attribute__] = ACTIONS(1290), + [anon_sym___scanf] = ACTIONS(1290), + [anon_sym___printf] = ACTIONS(1290), + [anon_sym___read_mostly] = ACTIONS(1290), + [anon_sym___must_hold] = ACTIONS(1290), + [anon_sym___ro_after_init] = ACTIONS(1290), + [anon_sym___noreturn] = ACTIONS(1290), + [anon_sym___cold] = ACTIONS(1290), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1292), + [anon_sym___declspec] = ACTIONS(1290), + [anon_sym___init] = ACTIONS(1290), + [anon_sym___exit] = ACTIONS(1290), + [anon_sym___cdecl] = ACTIONS(1290), + [anon_sym___clrcall] = ACTIONS(1290), + [anon_sym___stdcall] = ACTIONS(1290), + [anon_sym___fastcall] = ACTIONS(1290), + [anon_sym___thiscall] = ACTIONS(1290), + [anon_sym___vectorcall] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_signed] = ACTIONS(1290), + [anon_sym_unsigned] = ACTIONS(1290), + [anon_sym_long] = ACTIONS(1290), + [anon_sym_short] = ACTIONS(1290), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_auto] = ACTIONS(1290), + [anon_sym_register] = ACTIONS(1290), + [anon_sym_inline] = ACTIONS(1290), + [anon_sym___inline] = ACTIONS(1290), + [anon_sym___inline__] = ACTIONS(1290), + [anon_sym___forceinline] = ACTIONS(1290), + [anon_sym_thread_local] = ACTIONS(1290), + [anon_sym___thread] = ACTIONS(1290), + [anon_sym_const] = ACTIONS(1290), + [anon_sym_constexpr] = ACTIONS(1290), + [anon_sym_volatile] = ACTIONS(1290), + [anon_sym_restrict] = ACTIONS(1290), + [anon_sym___restrict__] = ACTIONS(1290), + [anon_sym__Atomic] = ACTIONS(1290), + [anon_sym__Noreturn] = ACTIONS(1290), + [anon_sym_noreturn] = ACTIONS(1290), + [anon_sym_alignas] = ACTIONS(1290), + [anon_sym__Alignas] = ACTIONS(1290), + [sym_primitive_type] = ACTIONS(1290), + [anon_sym_enum] = ACTIONS(1290), + [anon_sym_struct] = ACTIONS(1290), + [anon_sym_union] = ACTIONS(1290), + [anon_sym_if] = ACTIONS(1290), + [anon_sym_else] = ACTIONS(1290), + [anon_sym_switch] = ACTIONS(1290), + [anon_sym_case] = ACTIONS(1290), + [anon_sym_default] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_do] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1290), + [anon_sym_return] = ACTIONS(1290), + [anon_sym_break] = ACTIONS(1290), + [anon_sym_continue] = ACTIONS(1290), + [anon_sym_goto] = ACTIONS(1290), + [anon_sym___try] = ACTIONS(1290), + [anon_sym___leave] = ACTIONS(1290), + [anon_sym_DASH_DASH] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [anon_sym_sizeof] = ACTIONS(1290), + [anon_sym___alignof__] = ACTIONS(1290), + [anon_sym___alignof] = ACTIONS(1290), + [anon_sym__alignof] = ACTIONS(1290), + [anon_sym_alignof] = ACTIONS(1290), + [anon_sym__Alignof] = ACTIONS(1290), + [anon_sym_offsetof] = ACTIONS(1290), + [anon_sym__Generic] = ACTIONS(1290), + [anon_sym_asm] = ACTIONS(1290), + [anon_sym___asm__] = ACTIONS(1290), + [sym_number_literal] = ACTIONS(1292), + [anon_sym_L_SQUOTE] = ACTIONS(1292), + [anon_sym_u_SQUOTE] = ACTIONS(1292), + [anon_sym_U_SQUOTE] = ACTIONS(1292), + [anon_sym_u8_SQUOTE] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1292), + [anon_sym_L_DQUOTE] = ACTIONS(1292), + [anon_sym_u_DQUOTE] = ACTIONS(1292), + [anon_sym_U_DQUOTE] = ACTIONS(1292), + [anon_sym_u8_DQUOTE] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(1292), + [sym_true] = ACTIONS(1290), + [sym_false] = ACTIONS(1290), + [anon_sym_NULL] = ACTIONS(1290), + [anon_sym_nullptr] = ACTIONS(1290), [sym_comment] = ACTIONS(5), }, - [252] = { - [sym_identifier] = ACTIONS(1246), + [233] = { + [sym_identifier] = ACTIONS(1298), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1246), - [aux_sym_preproc_def_token1] = ACTIONS(1246), - [aux_sym_preproc_if_token1] = ACTIONS(1246), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1246), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1246), - [sym_preproc_directive] = ACTIONS(1246), - [anon_sym_LPAREN2] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(1248), - [anon_sym_TILDE] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1248), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_SEMI] = ACTIONS(1248), - [anon_sym___extension__] = ACTIONS(1246), - [anon_sym_typedef] = ACTIONS(1246), - [anon_sym_extern] = ACTIONS(1246), - [anon_sym___attribute__] = ACTIONS(1246), - [anon_sym___scanf] = ACTIONS(1246), - [anon_sym___printf] = ACTIONS(1246), - [anon_sym___read_mostly] = ACTIONS(1246), - [anon_sym___must_hold] = ACTIONS(1246), - [anon_sym___ro_after_init] = ACTIONS(1246), - [anon_sym___noreturn] = ACTIONS(1246), - [anon_sym___cold] = ACTIONS(1246), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1248), - [anon_sym___declspec] = ACTIONS(1246), - [anon_sym___init] = ACTIONS(1246), - [anon_sym___exit] = ACTIONS(1246), - [anon_sym___cdecl] = ACTIONS(1246), - [anon_sym___clrcall] = ACTIONS(1246), - [anon_sym___stdcall] = ACTIONS(1246), - [anon_sym___fastcall] = ACTIONS(1246), - [anon_sym___thiscall] = ACTIONS(1246), - [anon_sym___vectorcall] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_RBRACE] = ACTIONS(1248), - [anon_sym_signed] = ACTIONS(1246), - [anon_sym_unsigned] = ACTIONS(1246), - [anon_sym_long] = ACTIONS(1246), - [anon_sym_short] = ACTIONS(1246), - [anon_sym_static] = ACTIONS(1246), - [anon_sym_auto] = ACTIONS(1246), - [anon_sym_register] = ACTIONS(1246), - [anon_sym_inline] = ACTIONS(1246), - [anon_sym___inline] = ACTIONS(1246), - [anon_sym___inline__] = ACTIONS(1246), - [anon_sym___forceinline] = ACTIONS(1246), - [anon_sym_thread_local] = ACTIONS(1246), - [anon_sym___thread] = ACTIONS(1246), - [anon_sym_const] = ACTIONS(1246), - [anon_sym_constexpr] = ACTIONS(1246), - [anon_sym_volatile] = ACTIONS(1246), - [anon_sym_restrict] = ACTIONS(1246), - [anon_sym___restrict__] = ACTIONS(1246), - [anon_sym__Atomic] = ACTIONS(1246), - [anon_sym__Noreturn] = ACTIONS(1246), - [anon_sym_noreturn] = ACTIONS(1246), - [anon_sym_alignas] = ACTIONS(1246), - [anon_sym__Alignas] = ACTIONS(1246), - [sym_primitive_type] = ACTIONS(1246), - [anon_sym_enum] = ACTIONS(1246), - [anon_sym_struct] = ACTIONS(1246), - [anon_sym_union] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1246), - [anon_sym_else] = ACTIONS(1246), - [anon_sym_switch] = ACTIONS(1246), - [anon_sym_case] = ACTIONS(1246), - [anon_sym_default] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_do] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(1246), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1246), - [anon_sym_goto] = ACTIONS(1246), - [anon_sym___try] = ACTIONS(1246), - [anon_sym___leave] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1248), - [anon_sym_PLUS_PLUS] = ACTIONS(1248), - [anon_sym_sizeof] = ACTIONS(1246), - [anon_sym___alignof__] = ACTIONS(1246), - [anon_sym___alignof] = ACTIONS(1246), - [anon_sym__alignof] = ACTIONS(1246), - [anon_sym_alignof] = ACTIONS(1246), - [anon_sym__Alignof] = ACTIONS(1246), - [anon_sym_offsetof] = ACTIONS(1246), - [anon_sym__Generic] = ACTIONS(1246), - [anon_sym_asm] = ACTIONS(1246), - [anon_sym___asm__] = ACTIONS(1246), - [sym_number_literal] = ACTIONS(1248), - [anon_sym_L_SQUOTE] = ACTIONS(1248), - [anon_sym_u_SQUOTE] = ACTIONS(1248), - [anon_sym_U_SQUOTE] = ACTIONS(1248), - [anon_sym_u8_SQUOTE] = ACTIONS(1248), - [anon_sym_SQUOTE] = ACTIONS(1248), - [anon_sym_L_DQUOTE] = ACTIONS(1248), - [anon_sym_u_DQUOTE] = ACTIONS(1248), - [anon_sym_U_DQUOTE] = ACTIONS(1248), - [anon_sym_u8_DQUOTE] = ACTIONS(1248), - [anon_sym_DQUOTE] = ACTIONS(1248), - [sym_true] = ACTIONS(1246), - [sym_false] = ACTIONS(1246), - [anon_sym_NULL] = ACTIONS(1246), - [anon_sym_nullptr] = ACTIONS(1246), - [sym_comment] = ACTIONS(5), - }, - [253] = { - [sym_identifier] = ACTIONS(1242), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1242), - [aux_sym_preproc_def_token1] = ACTIONS(1242), - [aux_sym_preproc_if_token1] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), - [sym_preproc_directive] = ACTIONS(1242), - [anon_sym_LPAREN2] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_TILDE] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym___extension__] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym___attribute__] = ACTIONS(1242), - [anon_sym___scanf] = ACTIONS(1242), - [anon_sym___printf] = ACTIONS(1242), - [anon_sym___read_mostly] = ACTIONS(1242), - [anon_sym___must_hold] = ACTIONS(1242), - [anon_sym___ro_after_init] = ACTIONS(1242), - [anon_sym___noreturn] = ACTIONS(1242), - [anon_sym___cold] = ACTIONS(1242), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1244), - [anon_sym___declspec] = ACTIONS(1242), - [anon_sym___init] = ACTIONS(1242), - [anon_sym___exit] = ACTIONS(1242), - [anon_sym___cdecl] = ACTIONS(1242), - [anon_sym___clrcall] = ACTIONS(1242), - [anon_sym___stdcall] = ACTIONS(1242), - [anon_sym___fastcall] = ACTIONS(1242), - [anon_sym___thiscall] = ACTIONS(1242), - [anon_sym___vectorcall] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_signed] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_long] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_register] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym___inline] = ACTIONS(1242), - [anon_sym___inline__] = ACTIONS(1242), - [anon_sym___forceinline] = ACTIONS(1242), - [anon_sym_thread_local] = ACTIONS(1242), - [anon_sym___thread] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_constexpr] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym___restrict__] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [anon_sym__Noreturn] = ACTIONS(1242), - [anon_sym_noreturn] = ACTIONS(1242), - [anon_sym_alignas] = ACTIONS(1242), - [anon_sym__Alignas] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_case] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [anon_sym___try] = ACTIONS(1242), - [anon_sym___leave] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym___alignof__] = ACTIONS(1242), - [anon_sym___alignof] = ACTIONS(1242), - [anon_sym__alignof] = ACTIONS(1242), - [anon_sym_alignof] = ACTIONS(1242), - [anon_sym__Alignof] = ACTIONS(1242), - [anon_sym_offsetof] = ACTIONS(1242), - [anon_sym__Generic] = ACTIONS(1242), - [anon_sym_asm] = ACTIONS(1242), - [anon_sym___asm__] = ACTIONS(1242), - [sym_number_literal] = ACTIONS(1244), - [anon_sym_L_SQUOTE] = ACTIONS(1244), - [anon_sym_u_SQUOTE] = ACTIONS(1244), - [anon_sym_U_SQUOTE] = ACTIONS(1244), - [anon_sym_u8_SQUOTE] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1244), - [anon_sym_L_DQUOTE] = ACTIONS(1244), - [anon_sym_u_DQUOTE] = ACTIONS(1244), - [anon_sym_U_DQUOTE] = ACTIONS(1244), - [anon_sym_u8_DQUOTE] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(1244), - [sym_true] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_NULL] = ACTIONS(1242), - [anon_sym_nullptr] = ACTIONS(1242), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym___scanf] = ACTIONS(1298), + [anon_sym___printf] = ACTIONS(1298), + [anon_sym___read_mostly] = ACTIONS(1298), + [anon_sym___must_hold] = ACTIONS(1298), + [anon_sym___ro_after_init] = ACTIONS(1298), + [anon_sym___noreturn] = ACTIONS(1298), + [anon_sym___cold] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___init] = ACTIONS(1298), + [anon_sym___exit] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [anon_sym_alignas] = ACTIONS(1298), + [anon_sym__Alignas] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(5), }, - [254] = { - [sym_identifier] = ACTIONS(1238), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1238), - [aux_sym_preproc_def_token1] = ACTIONS(1238), - [aux_sym_preproc_if_token1] = ACTIONS(1238), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1238), - [sym_preproc_directive] = ACTIONS(1238), - [anon_sym_LPAREN2] = ACTIONS(1240), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym___extension__] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1238), - [anon_sym_extern] = ACTIONS(1238), - [anon_sym___attribute__] = ACTIONS(1238), - [anon_sym___scanf] = ACTIONS(1238), - [anon_sym___printf] = ACTIONS(1238), - [anon_sym___read_mostly] = ACTIONS(1238), - [anon_sym___must_hold] = ACTIONS(1238), - [anon_sym___ro_after_init] = ACTIONS(1238), - [anon_sym___noreturn] = ACTIONS(1238), - [anon_sym___cold] = ACTIONS(1238), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1240), - [anon_sym___declspec] = ACTIONS(1238), - [anon_sym___init] = ACTIONS(1238), - [anon_sym___exit] = ACTIONS(1238), - [anon_sym___cdecl] = ACTIONS(1238), - [anon_sym___clrcall] = ACTIONS(1238), - [anon_sym___stdcall] = ACTIONS(1238), - [anon_sym___fastcall] = ACTIONS(1238), - [anon_sym___thiscall] = ACTIONS(1238), - [anon_sym___vectorcall] = ACTIONS(1238), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_signed] = ACTIONS(1238), - [anon_sym_unsigned] = ACTIONS(1238), - [anon_sym_long] = ACTIONS(1238), - [anon_sym_short] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_auto] = ACTIONS(1238), - [anon_sym_register] = ACTIONS(1238), - [anon_sym_inline] = ACTIONS(1238), - [anon_sym___inline] = ACTIONS(1238), - [anon_sym___inline__] = ACTIONS(1238), - [anon_sym___forceinline] = ACTIONS(1238), - [anon_sym_thread_local] = ACTIONS(1238), - [anon_sym___thread] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_constexpr] = ACTIONS(1238), - [anon_sym_volatile] = ACTIONS(1238), - [anon_sym_restrict] = ACTIONS(1238), - [anon_sym___restrict__] = ACTIONS(1238), - [anon_sym__Atomic] = ACTIONS(1238), - [anon_sym__Noreturn] = ACTIONS(1238), - [anon_sym_noreturn] = ACTIONS(1238), - [anon_sym_alignas] = ACTIONS(1238), - [anon_sym__Alignas] = ACTIONS(1238), - [sym_primitive_type] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1238), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_else] = ACTIONS(1238), - [anon_sym_switch] = ACTIONS(1238), - [anon_sym_case] = ACTIONS(1238), - [anon_sym_default] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_do] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_goto] = ACTIONS(1238), - [anon_sym___try] = ACTIONS(1238), - [anon_sym___leave] = ACTIONS(1238), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [anon_sym_sizeof] = ACTIONS(1238), - [anon_sym___alignof__] = ACTIONS(1238), - [anon_sym___alignof] = ACTIONS(1238), - [anon_sym__alignof] = ACTIONS(1238), - [anon_sym_alignof] = ACTIONS(1238), - [anon_sym__Alignof] = ACTIONS(1238), - [anon_sym_offsetof] = ACTIONS(1238), - [anon_sym__Generic] = ACTIONS(1238), - [anon_sym_asm] = ACTIONS(1238), - [anon_sym___asm__] = ACTIONS(1238), - [sym_number_literal] = ACTIONS(1240), - [anon_sym_L_SQUOTE] = ACTIONS(1240), - [anon_sym_u_SQUOTE] = ACTIONS(1240), - [anon_sym_U_SQUOTE] = ACTIONS(1240), - [anon_sym_u8_SQUOTE] = ACTIONS(1240), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_L_DQUOTE] = ACTIONS(1240), - [anon_sym_u_DQUOTE] = ACTIONS(1240), - [anon_sym_U_DQUOTE] = ACTIONS(1240), - [anon_sym_u8_DQUOTE] = ACTIONS(1240), - [anon_sym_DQUOTE] = ACTIONS(1240), - [sym_true] = ACTIONS(1238), - [sym_false] = ACTIONS(1238), - [anon_sym_NULL] = ACTIONS(1238), - [anon_sym_nullptr] = ACTIONS(1238), + [234] = { + [sym_identifier] = ACTIONS(1302), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym___scanf] = ACTIONS(1302), + [anon_sym___printf] = ACTIONS(1302), + [anon_sym___read_mostly] = ACTIONS(1302), + [anon_sym___must_hold] = ACTIONS(1302), + [anon_sym___ro_after_init] = ACTIONS(1302), + [anon_sym___noreturn] = ACTIONS(1302), + [anon_sym___cold] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___init] = ACTIONS(1302), + [anon_sym___exit] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [anon_sym_alignas] = ACTIONS(1302), + [anon_sym__Alignas] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(5), }, - [255] = { - [sym_identifier] = ACTIONS(1234), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1234), - [aux_sym_preproc_def_token1] = ACTIONS(1234), - [aux_sym_preproc_if_token1] = ACTIONS(1234), - [aux_sym_preproc_if_token2] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), - [sym_preproc_directive] = ACTIONS(1234), - [anon_sym_LPAREN2] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym___extension__] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym___attribute__] = ACTIONS(1234), - [anon_sym___scanf] = ACTIONS(1234), - [anon_sym___printf] = ACTIONS(1234), - [anon_sym___read_mostly] = ACTIONS(1234), - [anon_sym___must_hold] = ACTIONS(1234), - [anon_sym___ro_after_init] = ACTIONS(1234), - [anon_sym___noreturn] = ACTIONS(1234), - [anon_sym___cold] = ACTIONS(1234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), - [anon_sym___declspec] = ACTIONS(1234), - [anon_sym___init] = ACTIONS(1234), - [anon_sym___exit] = ACTIONS(1234), - [anon_sym___cdecl] = ACTIONS(1234), - [anon_sym___clrcall] = ACTIONS(1234), - [anon_sym___stdcall] = ACTIONS(1234), - [anon_sym___fastcall] = ACTIONS(1234), - [anon_sym___thiscall] = ACTIONS(1234), - [anon_sym___vectorcall] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_signed] = ACTIONS(1234), - [anon_sym_unsigned] = ACTIONS(1234), - [anon_sym_long] = ACTIONS(1234), - [anon_sym_short] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_auto] = ACTIONS(1234), - [anon_sym_register] = ACTIONS(1234), - [anon_sym_inline] = ACTIONS(1234), - [anon_sym___inline] = ACTIONS(1234), - [anon_sym___inline__] = ACTIONS(1234), - [anon_sym___forceinline] = ACTIONS(1234), - [anon_sym_thread_local] = ACTIONS(1234), - [anon_sym___thread] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_constexpr] = ACTIONS(1234), - [anon_sym_volatile] = ACTIONS(1234), - [anon_sym_restrict] = ACTIONS(1234), - [anon_sym___restrict__] = ACTIONS(1234), - [anon_sym__Atomic] = ACTIONS(1234), - [anon_sym__Noreturn] = ACTIONS(1234), - [anon_sym_noreturn] = ACTIONS(1234), - [anon_sym_alignas] = ACTIONS(1234), - [anon_sym__Alignas] = ACTIONS(1234), - [sym_primitive_type] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [anon_sym_switch] = ACTIONS(1234), - [anon_sym_case] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_goto] = ACTIONS(1234), - [anon_sym___try] = ACTIONS(1234), - [anon_sym___leave] = ACTIONS(1234), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_sizeof] = ACTIONS(1234), - [anon_sym___alignof__] = ACTIONS(1234), - [anon_sym___alignof] = ACTIONS(1234), - [anon_sym__alignof] = ACTIONS(1234), - [anon_sym_alignof] = ACTIONS(1234), - [anon_sym__Alignof] = ACTIONS(1234), - [anon_sym_offsetof] = ACTIONS(1234), - [anon_sym__Generic] = ACTIONS(1234), - [anon_sym_asm] = ACTIONS(1234), - [anon_sym___asm__] = ACTIONS(1234), - [sym_number_literal] = ACTIONS(1236), - [anon_sym_L_SQUOTE] = ACTIONS(1236), - [anon_sym_u_SQUOTE] = ACTIONS(1236), - [anon_sym_U_SQUOTE] = ACTIONS(1236), - [anon_sym_u8_SQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_L_DQUOTE] = ACTIONS(1236), - [anon_sym_u_DQUOTE] = ACTIONS(1236), - [anon_sym_U_DQUOTE] = ACTIONS(1236), - [anon_sym_u8_DQUOTE] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1236), - [sym_true] = ACTIONS(1234), - [sym_false] = ACTIONS(1234), - [anon_sym_NULL] = ACTIONS(1234), - [anon_sym_nullptr] = ACTIONS(1234), + [235] = { + [sym_identifier] = ACTIONS(1310), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1310), + [aux_sym_preproc_def_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token2] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), + [sym_preproc_directive] = ACTIONS(1310), + [anon_sym_LPAREN2] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym___extension__] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym___scanf] = ACTIONS(1310), + [anon_sym___printf] = ACTIONS(1310), + [anon_sym___read_mostly] = ACTIONS(1310), + [anon_sym___must_hold] = ACTIONS(1310), + [anon_sym___ro_after_init] = ACTIONS(1310), + [anon_sym___noreturn] = ACTIONS(1310), + [anon_sym___cold] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), + [anon_sym___declspec] = ACTIONS(1310), + [anon_sym___init] = ACTIONS(1310), + [anon_sym___exit] = ACTIONS(1310), + [anon_sym___cdecl] = ACTIONS(1310), + [anon_sym___clrcall] = ACTIONS(1310), + [anon_sym___stdcall] = ACTIONS(1310), + [anon_sym___fastcall] = ACTIONS(1310), + [anon_sym___thiscall] = ACTIONS(1310), + [anon_sym___vectorcall] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1310), + [anon_sym_unsigned] = ACTIONS(1310), + [anon_sym_long] = ACTIONS(1310), + [anon_sym_short] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_auto] = ACTIONS(1310), + [anon_sym_register] = ACTIONS(1310), + [anon_sym_inline] = ACTIONS(1310), + [anon_sym___inline] = ACTIONS(1310), + [anon_sym___inline__] = ACTIONS(1310), + [anon_sym___forceinline] = ACTIONS(1310), + [anon_sym_thread_local] = ACTIONS(1310), + [anon_sym___thread] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_constexpr] = ACTIONS(1310), + [anon_sym_volatile] = ACTIONS(1310), + [anon_sym_restrict] = ACTIONS(1310), + [anon_sym___restrict__] = ACTIONS(1310), + [anon_sym__Atomic] = ACTIONS(1310), + [anon_sym__Noreturn] = ACTIONS(1310), + [anon_sym_noreturn] = ACTIONS(1310), + [anon_sym_alignas] = ACTIONS(1310), + [anon_sym__Alignas] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_else] = ACTIONS(1310), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_case] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_goto] = ACTIONS(1310), + [anon_sym___try] = ACTIONS(1310), + [anon_sym___leave] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_sizeof] = ACTIONS(1310), + [anon_sym___alignof__] = ACTIONS(1310), + [anon_sym___alignof] = ACTIONS(1310), + [anon_sym__alignof] = ACTIONS(1310), + [anon_sym_alignof] = ACTIONS(1310), + [anon_sym__Alignof] = ACTIONS(1310), + [anon_sym_offsetof] = ACTIONS(1310), + [anon_sym__Generic] = ACTIONS(1310), + [anon_sym_asm] = ACTIONS(1310), + [anon_sym___asm__] = ACTIONS(1310), + [sym_number_literal] = ACTIONS(1312), + [anon_sym_L_SQUOTE] = ACTIONS(1312), + [anon_sym_u_SQUOTE] = ACTIONS(1312), + [anon_sym_U_SQUOTE] = ACTIONS(1312), + [anon_sym_u8_SQUOTE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_L_DQUOTE] = ACTIONS(1312), + [anon_sym_u_DQUOTE] = ACTIONS(1312), + [anon_sym_U_DQUOTE] = ACTIONS(1312), + [anon_sym_u8_DQUOTE] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [anon_sym_NULL] = ACTIONS(1310), + [anon_sym_nullptr] = ACTIONS(1310), [sym_comment] = ACTIONS(5), }, - [256] = { - [sym_identifier] = ACTIONS(1234), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1234), - [aux_sym_preproc_def_token1] = ACTIONS(1234), - [aux_sym_preproc_if_token1] = ACTIONS(1234), - [aux_sym_preproc_if_token2] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), - [sym_preproc_directive] = ACTIONS(1234), - [anon_sym_LPAREN2] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym___extension__] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym___attribute__] = ACTIONS(1234), - [anon_sym___scanf] = ACTIONS(1234), - [anon_sym___printf] = ACTIONS(1234), - [anon_sym___read_mostly] = ACTIONS(1234), - [anon_sym___must_hold] = ACTIONS(1234), - [anon_sym___ro_after_init] = ACTIONS(1234), - [anon_sym___noreturn] = ACTIONS(1234), - [anon_sym___cold] = ACTIONS(1234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), - [anon_sym___declspec] = ACTIONS(1234), - [anon_sym___init] = ACTIONS(1234), - [anon_sym___exit] = ACTIONS(1234), - [anon_sym___cdecl] = ACTIONS(1234), - [anon_sym___clrcall] = ACTIONS(1234), - [anon_sym___stdcall] = ACTIONS(1234), - [anon_sym___fastcall] = ACTIONS(1234), - [anon_sym___thiscall] = ACTIONS(1234), - [anon_sym___vectorcall] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_signed] = ACTIONS(1234), - [anon_sym_unsigned] = ACTIONS(1234), - [anon_sym_long] = ACTIONS(1234), - [anon_sym_short] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_auto] = ACTIONS(1234), - [anon_sym_register] = ACTIONS(1234), - [anon_sym_inline] = ACTIONS(1234), - [anon_sym___inline] = ACTIONS(1234), - [anon_sym___inline__] = ACTIONS(1234), - [anon_sym___forceinline] = ACTIONS(1234), - [anon_sym_thread_local] = ACTIONS(1234), - [anon_sym___thread] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_constexpr] = ACTIONS(1234), - [anon_sym_volatile] = ACTIONS(1234), - [anon_sym_restrict] = ACTIONS(1234), - [anon_sym___restrict__] = ACTIONS(1234), - [anon_sym__Atomic] = ACTIONS(1234), - [anon_sym__Noreturn] = ACTIONS(1234), - [anon_sym_noreturn] = ACTIONS(1234), - [anon_sym_alignas] = ACTIONS(1234), - [anon_sym__Alignas] = ACTIONS(1234), - [sym_primitive_type] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [anon_sym_switch] = ACTIONS(1234), - [anon_sym_case] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_goto] = ACTIONS(1234), - [anon_sym___try] = ACTIONS(1234), - [anon_sym___leave] = ACTIONS(1234), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_sizeof] = ACTIONS(1234), - [anon_sym___alignof__] = ACTIONS(1234), - [anon_sym___alignof] = ACTIONS(1234), - [anon_sym__alignof] = ACTIONS(1234), - [anon_sym_alignof] = ACTIONS(1234), - [anon_sym__Alignof] = ACTIONS(1234), - [anon_sym_offsetof] = ACTIONS(1234), - [anon_sym__Generic] = ACTIONS(1234), - [anon_sym_asm] = ACTIONS(1234), - [anon_sym___asm__] = ACTIONS(1234), - [sym_number_literal] = ACTIONS(1236), - [anon_sym_L_SQUOTE] = ACTIONS(1236), - [anon_sym_u_SQUOTE] = ACTIONS(1236), - [anon_sym_U_SQUOTE] = ACTIONS(1236), - [anon_sym_u8_SQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_L_DQUOTE] = ACTIONS(1236), - [anon_sym_u_DQUOTE] = ACTIONS(1236), - [anon_sym_U_DQUOTE] = ACTIONS(1236), - [anon_sym_u8_DQUOTE] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1236), - [sym_true] = ACTIONS(1234), - [sym_false] = ACTIONS(1234), - [anon_sym_NULL] = ACTIONS(1234), - [anon_sym_nullptr] = ACTIONS(1234), + [236] = { + [sym_identifier] = ACTIONS(1322), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token2] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym___extension__] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym___attribute__] = ACTIONS(1322), + [anon_sym___scanf] = ACTIONS(1322), + [anon_sym___printf] = ACTIONS(1322), + [anon_sym___read_mostly] = ACTIONS(1322), + [anon_sym___must_hold] = ACTIONS(1322), + [anon_sym___ro_after_init] = ACTIONS(1322), + [anon_sym___noreturn] = ACTIONS(1322), + [anon_sym___cold] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym___init] = ACTIONS(1322), + [anon_sym___exit] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [anon_sym_alignas] = ACTIONS(1322), + [anon_sym__Alignas] = ACTIONS(1322), + [sym_primitive_type] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym___try] = ACTIONS(1322), + [anon_sym___leave] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), [sym_comment] = ACTIONS(5), }, - [257] = { - [ts_builtin_sym_end] = ACTIONS(1340), - [sym_identifier] = ACTIONS(1338), + [237] = { + [sym_identifier] = ACTIONS(1326), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym___extension__] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym___attribute__] = ACTIONS(1338), - [anon_sym___scanf] = ACTIONS(1338), - [anon_sym___printf] = ACTIONS(1338), - [anon_sym___read_mostly] = ACTIONS(1338), - [anon_sym___must_hold] = ACTIONS(1338), - [anon_sym___ro_after_init] = ACTIONS(1338), - [anon_sym___noreturn] = ACTIONS(1338), - [anon_sym___cold] = ACTIONS(1338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), - [anon_sym___declspec] = ACTIONS(1338), - [anon_sym___init] = ACTIONS(1338), - [anon_sym___exit] = ACTIONS(1338), - [anon_sym___cdecl] = ACTIONS(1338), - [anon_sym___clrcall] = ACTIONS(1338), - [anon_sym___stdcall] = ACTIONS(1338), - [anon_sym___fastcall] = ACTIONS(1338), - [anon_sym___thiscall] = ACTIONS(1338), - [anon_sym___vectorcall] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_long] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym___inline] = ACTIONS(1338), - [anon_sym___inline__] = ACTIONS(1338), - [anon_sym___forceinline] = ACTIONS(1338), - [anon_sym_thread_local] = ACTIONS(1338), - [anon_sym___thread] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_constexpr] = ACTIONS(1338), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym___restrict__] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [anon_sym__Noreturn] = ACTIONS(1338), - [anon_sym_noreturn] = ACTIONS(1338), - [anon_sym_alignas] = ACTIONS(1338), - [anon_sym__Alignas] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_case] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [anon_sym___try] = ACTIONS(1338), - [anon_sym___leave] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym___alignof__] = ACTIONS(1338), - [anon_sym___alignof] = ACTIONS(1338), - [anon_sym__alignof] = ACTIONS(1338), - [anon_sym_alignof] = ACTIONS(1338), - [anon_sym__Alignof] = ACTIONS(1338), - [anon_sym_offsetof] = ACTIONS(1338), - [anon_sym__Generic] = ACTIONS(1338), - [anon_sym_asm] = ACTIONS(1338), - [anon_sym___asm__] = ACTIONS(1338), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_L_SQUOTE] = ACTIONS(1340), - [anon_sym_u_SQUOTE] = ACTIONS(1340), - [anon_sym_U_SQUOTE] = ACTIONS(1340), - [anon_sym_u8_SQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_L_DQUOTE] = ACTIONS(1340), - [anon_sym_u_DQUOTE] = ACTIONS(1340), - [anon_sym_U_DQUOTE] = ACTIONS(1340), - [anon_sym_u8_DQUOTE] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_true] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_NULL] = ACTIONS(1338), - [anon_sym_nullptr] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token2] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym___scanf] = ACTIONS(1326), + [anon_sym___printf] = ACTIONS(1326), + [anon_sym___read_mostly] = ACTIONS(1326), + [anon_sym___must_hold] = ACTIONS(1326), + [anon_sym___ro_after_init] = ACTIONS(1326), + [anon_sym___noreturn] = ACTIONS(1326), + [anon_sym___cold] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___init] = ACTIONS(1326), + [anon_sym___exit] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [anon_sym_alignas] = ACTIONS(1326), + [anon_sym__Alignas] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), [sym_comment] = ACTIONS(5), }, - [258] = { - [sym_identifier] = ACTIONS(1234), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1234), - [aux_sym_preproc_def_token1] = ACTIONS(1234), - [aux_sym_preproc_if_token1] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), - [sym_preproc_directive] = ACTIONS(1234), - [anon_sym_LPAREN2] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym___extension__] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym___attribute__] = ACTIONS(1234), - [anon_sym___scanf] = ACTIONS(1234), - [anon_sym___printf] = ACTIONS(1234), - [anon_sym___read_mostly] = ACTIONS(1234), - [anon_sym___must_hold] = ACTIONS(1234), - [anon_sym___ro_after_init] = ACTIONS(1234), - [anon_sym___noreturn] = ACTIONS(1234), - [anon_sym___cold] = ACTIONS(1234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), - [anon_sym___declspec] = ACTIONS(1234), - [anon_sym___init] = ACTIONS(1234), - [anon_sym___exit] = ACTIONS(1234), - [anon_sym___cdecl] = ACTIONS(1234), - [anon_sym___clrcall] = ACTIONS(1234), - [anon_sym___stdcall] = ACTIONS(1234), - [anon_sym___fastcall] = ACTIONS(1234), - [anon_sym___thiscall] = ACTIONS(1234), - [anon_sym___vectorcall] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_RBRACE] = ACTIONS(1236), - [anon_sym_signed] = ACTIONS(1234), - [anon_sym_unsigned] = ACTIONS(1234), - [anon_sym_long] = ACTIONS(1234), - [anon_sym_short] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_auto] = ACTIONS(1234), - [anon_sym_register] = ACTIONS(1234), - [anon_sym_inline] = ACTIONS(1234), - [anon_sym___inline] = ACTIONS(1234), - [anon_sym___inline__] = ACTIONS(1234), - [anon_sym___forceinline] = ACTIONS(1234), - [anon_sym_thread_local] = ACTIONS(1234), - [anon_sym___thread] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_constexpr] = ACTIONS(1234), - [anon_sym_volatile] = ACTIONS(1234), - [anon_sym_restrict] = ACTIONS(1234), - [anon_sym___restrict__] = ACTIONS(1234), - [anon_sym__Atomic] = ACTIONS(1234), - [anon_sym__Noreturn] = ACTIONS(1234), - [anon_sym_noreturn] = ACTIONS(1234), - [anon_sym_alignas] = ACTIONS(1234), - [anon_sym__Alignas] = ACTIONS(1234), - [sym_primitive_type] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [anon_sym_switch] = ACTIONS(1234), - [anon_sym_case] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_goto] = ACTIONS(1234), - [anon_sym___try] = ACTIONS(1234), - [anon_sym___leave] = ACTIONS(1234), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_sizeof] = ACTIONS(1234), - [anon_sym___alignof__] = ACTIONS(1234), - [anon_sym___alignof] = ACTIONS(1234), - [anon_sym__alignof] = ACTIONS(1234), - [anon_sym_alignof] = ACTIONS(1234), - [anon_sym__Alignof] = ACTIONS(1234), - [anon_sym_offsetof] = ACTIONS(1234), - [anon_sym__Generic] = ACTIONS(1234), - [anon_sym_asm] = ACTIONS(1234), - [anon_sym___asm__] = ACTIONS(1234), - [sym_number_literal] = ACTIONS(1236), - [anon_sym_L_SQUOTE] = ACTIONS(1236), - [anon_sym_u_SQUOTE] = ACTIONS(1236), - [anon_sym_U_SQUOTE] = ACTIONS(1236), - [anon_sym_u8_SQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_L_DQUOTE] = ACTIONS(1236), - [anon_sym_u_DQUOTE] = ACTIONS(1236), - [anon_sym_U_DQUOTE] = ACTIONS(1236), - [anon_sym_u8_DQUOTE] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1236), - [sym_true] = ACTIONS(1234), - [sym_false] = ACTIONS(1234), - [anon_sym_NULL] = ACTIONS(1234), - [anon_sym_nullptr] = ACTIONS(1234), + [238] = { + [sym_identifier] = ACTIONS(1330), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token2] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym___scanf] = ACTIONS(1330), + [anon_sym___printf] = ACTIONS(1330), + [anon_sym___read_mostly] = ACTIONS(1330), + [anon_sym___must_hold] = ACTIONS(1330), + [anon_sym___ro_after_init] = ACTIONS(1330), + [anon_sym___noreturn] = ACTIONS(1330), + [anon_sym___cold] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___init] = ACTIONS(1330), + [anon_sym___exit] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [anon_sym_alignas] = ACTIONS(1330), + [anon_sym__Alignas] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_else] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), [sym_comment] = ACTIONS(5), }, - [259] = { - [sym_identifier] = ACTIONS(1234), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1234), - [aux_sym_preproc_def_token1] = ACTIONS(1234), - [aux_sym_preproc_if_token1] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), - [sym_preproc_directive] = ACTIONS(1234), - [anon_sym_LPAREN2] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym___extension__] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym___attribute__] = ACTIONS(1234), - [anon_sym___scanf] = ACTIONS(1234), - [anon_sym___printf] = ACTIONS(1234), - [anon_sym___read_mostly] = ACTIONS(1234), - [anon_sym___must_hold] = ACTIONS(1234), - [anon_sym___ro_after_init] = ACTIONS(1234), - [anon_sym___noreturn] = ACTIONS(1234), - [anon_sym___cold] = ACTIONS(1234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), - [anon_sym___declspec] = ACTIONS(1234), - [anon_sym___init] = ACTIONS(1234), - [anon_sym___exit] = ACTIONS(1234), - [anon_sym___cdecl] = ACTIONS(1234), - [anon_sym___clrcall] = ACTIONS(1234), - [anon_sym___stdcall] = ACTIONS(1234), - [anon_sym___fastcall] = ACTIONS(1234), - [anon_sym___thiscall] = ACTIONS(1234), - [anon_sym___vectorcall] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_RBRACE] = ACTIONS(1236), - [anon_sym_signed] = ACTIONS(1234), - [anon_sym_unsigned] = ACTIONS(1234), - [anon_sym_long] = ACTIONS(1234), - [anon_sym_short] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_auto] = ACTIONS(1234), - [anon_sym_register] = ACTIONS(1234), - [anon_sym_inline] = ACTIONS(1234), - [anon_sym___inline] = ACTIONS(1234), - [anon_sym___inline__] = ACTIONS(1234), - [anon_sym___forceinline] = ACTIONS(1234), - [anon_sym_thread_local] = ACTIONS(1234), - [anon_sym___thread] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_constexpr] = ACTIONS(1234), - [anon_sym_volatile] = ACTIONS(1234), - [anon_sym_restrict] = ACTIONS(1234), - [anon_sym___restrict__] = ACTIONS(1234), - [anon_sym__Atomic] = ACTIONS(1234), - [anon_sym__Noreturn] = ACTIONS(1234), - [anon_sym_noreturn] = ACTIONS(1234), - [anon_sym_alignas] = ACTIONS(1234), - [anon_sym__Alignas] = ACTIONS(1234), - [sym_primitive_type] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [anon_sym_switch] = ACTIONS(1234), - [anon_sym_case] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_goto] = ACTIONS(1234), - [anon_sym___try] = ACTIONS(1234), - [anon_sym___leave] = ACTIONS(1234), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_sizeof] = ACTIONS(1234), - [anon_sym___alignof__] = ACTIONS(1234), - [anon_sym___alignof] = ACTIONS(1234), - [anon_sym__alignof] = ACTIONS(1234), - [anon_sym_alignof] = ACTIONS(1234), - [anon_sym__Alignof] = ACTIONS(1234), - [anon_sym_offsetof] = ACTIONS(1234), - [anon_sym__Generic] = ACTIONS(1234), - [anon_sym_asm] = ACTIONS(1234), - [anon_sym___asm__] = ACTIONS(1234), - [sym_number_literal] = ACTIONS(1236), - [anon_sym_L_SQUOTE] = ACTIONS(1236), - [anon_sym_u_SQUOTE] = ACTIONS(1236), - [anon_sym_U_SQUOTE] = ACTIONS(1236), - [anon_sym_u8_SQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_L_DQUOTE] = ACTIONS(1236), - [anon_sym_u_DQUOTE] = ACTIONS(1236), - [anon_sym_U_DQUOTE] = ACTIONS(1236), - [anon_sym_u8_DQUOTE] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1236), - [sym_true] = ACTIONS(1234), - [sym_false] = ACTIONS(1234), - [anon_sym_NULL] = ACTIONS(1234), - [anon_sym_nullptr] = ACTIONS(1234), + [239] = { + [sym_identifier] = ACTIONS(1374), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1374), + [aux_sym_preproc_def_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token2] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), + [sym_preproc_directive] = ACTIONS(1374), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym___extension__] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym___attribute__] = ACTIONS(1374), + [anon_sym___scanf] = ACTIONS(1374), + [anon_sym___printf] = ACTIONS(1374), + [anon_sym___read_mostly] = ACTIONS(1374), + [anon_sym___must_hold] = ACTIONS(1374), + [anon_sym___ro_after_init] = ACTIONS(1374), + [anon_sym___noreturn] = ACTIONS(1374), + [anon_sym___cold] = ACTIONS(1374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym___declspec] = ACTIONS(1374), + [anon_sym___init] = ACTIONS(1374), + [anon_sym___exit] = ACTIONS(1374), + [anon_sym___cdecl] = ACTIONS(1374), + [anon_sym___clrcall] = ACTIONS(1374), + [anon_sym___stdcall] = ACTIONS(1374), + [anon_sym___fastcall] = ACTIONS(1374), + [anon_sym___thiscall] = ACTIONS(1374), + [anon_sym___vectorcall] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_constexpr] = ACTIONS(1374), + [anon_sym_volatile] = ACTIONS(1374), + [anon_sym_restrict] = ACTIONS(1374), + [anon_sym___restrict__] = ACTIONS(1374), + [anon_sym__Atomic] = ACTIONS(1374), + [anon_sym__Noreturn] = ACTIONS(1374), + [anon_sym_noreturn] = ACTIONS(1374), + [anon_sym_alignas] = ACTIONS(1374), + [anon_sym__Alignas] = ACTIONS(1374), + [sym_primitive_type] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_switch] = ACTIONS(1374), + [anon_sym_case] = ACTIONS(1374), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_goto] = ACTIONS(1374), + [anon_sym___try] = ACTIONS(1374), + [anon_sym___leave] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = ACTIONS(1374), + [anon_sym_offsetof] = ACTIONS(1374), + [anon_sym__Generic] = ACTIONS(1374), + [anon_sym_asm] = ACTIONS(1374), + [anon_sym___asm__] = ACTIONS(1374), + [sym_number_literal] = ACTIONS(1376), + [anon_sym_L_SQUOTE] = ACTIONS(1376), + [anon_sym_u_SQUOTE] = ACTIONS(1376), + [anon_sym_U_SQUOTE] = ACTIONS(1376), + [anon_sym_u8_SQUOTE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_L_DQUOTE] = ACTIONS(1376), + [anon_sym_u_DQUOTE] = ACTIONS(1376), + [anon_sym_U_DQUOTE] = ACTIONS(1376), + [anon_sym_u8_DQUOTE] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [anon_sym_NULL] = ACTIONS(1374), + [anon_sym_nullptr] = ACTIONS(1374), [sym_comment] = ACTIONS(5), }, - [260] = { - [sym_identifier] = ACTIONS(1250), + [240] = { + [sym_identifier] = ACTIONS(1318), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1250), - [aux_sym_preproc_def_token1] = ACTIONS(1250), - [aux_sym_preproc_if_token1] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), - [sym_preproc_directive] = ACTIONS(1250), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(1252), - [anon_sym_TILDE] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym___extension__] = ACTIONS(1250), - [anon_sym_typedef] = ACTIONS(1250), - [anon_sym_extern] = ACTIONS(1250), - [anon_sym___attribute__] = ACTIONS(1250), - [anon_sym___scanf] = ACTIONS(1250), - [anon_sym___printf] = ACTIONS(1250), - [anon_sym___read_mostly] = ACTIONS(1250), - [anon_sym___must_hold] = ACTIONS(1250), - [anon_sym___ro_after_init] = ACTIONS(1250), - [anon_sym___noreturn] = ACTIONS(1250), - [anon_sym___cold] = ACTIONS(1250), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), - [anon_sym___declspec] = ACTIONS(1250), - [anon_sym___init] = ACTIONS(1250), - [anon_sym___exit] = ACTIONS(1250), - [anon_sym___cdecl] = ACTIONS(1250), - [anon_sym___clrcall] = ACTIONS(1250), - [anon_sym___stdcall] = ACTIONS(1250), - [anon_sym___fastcall] = ACTIONS(1250), - [anon_sym___thiscall] = ACTIONS(1250), - [anon_sym___vectorcall] = ACTIONS(1250), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_RBRACE] = ACTIONS(1252), - [anon_sym_signed] = ACTIONS(1250), - [anon_sym_unsigned] = ACTIONS(1250), - [anon_sym_long] = ACTIONS(1250), - [anon_sym_short] = ACTIONS(1250), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_auto] = ACTIONS(1250), - [anon_sym_register] = ACTIONS(1250), - [anon_sym_inline] = ACTIONS(1250), - [anon_sym___inline] = ACTIONS(1250), - [anon_sym___inline__] = ACTIONS(1250), - [anon_sym___forceinline] = ACTIONS(1250), - [anon_sym_thread_local] = ACTIONS(1250), - [anon_sym___thread] = ACTIONS(1250), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_constexpr] = ACTIONS(1250), - [anon_sym_volatile] = ACTIONS(1250), - [anon_sym_restrict] = ACTIONS(1250), - [anon_sym___restrict__] = ACTIONS(1250), - [anon_sym__Atomic] = ACTIONS(1250), - [anon_sym__Noreturn] = ACTIONS(1250), - [anon_sym_noreturn] = ACTIONS(1250), - [anon_sym_alignas] = ACTIONS(1250), - [anon_sym__Alignas] = ACTIONS(1250), - [sym_primitive_type] = ACTIONS(1250), - [anon_sym_enum] = ACTIONS(1250), - [anon_sym_struct] = ACTIONS(1250), - [anon_sym_union] = ACTIONS(1250), - [anon_sym_if] = ACTIONS(1250), - [anon_sym_else] = ACTIONS(1250), - [anon_sym_switch] = ACTIONS(1250), - [anon_sym_case] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1250), - [anon_sym_while] = ACTIONS(1250), - [anon_sym_do] = ACTIONS(1250), - [anon_sym_for] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_break] = ACTIONS(1250), - [anon_sym_continue] = ACTIONS(1250), - [anon_sym_goto] = ACTIONS(1250), - [anon_sym___try] = ACTIONS(1250), - [anon_sym___leave] = ACTIONS(1250), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_sizeof] = ACTIONS(1250), - [anon_sym___alignof__] = ACTIONS(1250), - [anon_sym___alignof] = ACTIONS(1250), - [anon_sym__alignof] = ACTIONS(1250), - [anon_sym_alignof] = ACTIONS(1250), - [anon_sym__Alignof] = ACTIONS(1250), - [anon_sym_offsetof] = ACTIONS(1250), - [anon_sym__Generic] = ACTIONS(1250), - [anon_sym_asm] = ACTIONS(1250), - [anon_sym___asm__] = ACTIONS(1250), - [sym_number_literal] = ACTIONS(1252), - [anon_sym_L_SQUOTE] = ACTIONS(1252), - [anon_sym_u_SQUOTE] = ACTIONS(1252), - [anon_sym_U_SQUOTE] = ACTIONS(1252), - [anon_sym_u8_SQUOTE] = ACTIONS(1252), - [anon_sym_SQUOTE] = ACTIONS(1252), - [anon_sym_L_DQUOTE] = ACTIONS(1252), - [anon_sym_u_DQUOTE] = ACTIONS(1252), - [anon_sym_U_DQUOTE] = ACTIONS(1252), - [anon_sym_u8_DQUOTE] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym_true] = ACTIONS(1250), - [sym_false] = ACTIONS(1250), - [anon_sym_NULL] = ACTIONS(1250), - [anon_sym_nullptr] = ACTIONS(1250), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token2] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym___scanf] = ACTIONS(1318), + [anon_sym___printf] = ACTIONS(1318), + [anon_sym___read_mostly] = ACTIONS(1318), + [anon_sym___must_hold] = ACTIONS(1318), + [anon_sym___ro_after_init] = ACTIONS(1318), + [anon_sym___noreturn] = ACTIONS(1318), + [anon_sym___cold] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___init] = ACTIONS(1318), + [anon_sym___exit] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [anon_sym_alignas] = ACTIONS(1318), + [anon_sym__Alignas] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(5), }, - [261] = { - [sym_identifier] = ACTIONS(1234), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1234), - [aux_sym_preproc_def_token1] = ACTIONS(1234), - [aux_sym_preproc_if_token1] = ACTIONS(1234), - [aux_sym_preproc_if_token2] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), - [sym_preproc_directive] = ACTIONS(1234), - [anon_sym_LPAREN2] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym___extension__] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym___attribute__] = ACTIONS(1234), - [anon_sym___scanf] = ACTIONS(1234), - [anon_sym___printf] = ACTIONS(1234), - [anon_sym___read_mostly] = ACTIONS(1234), - [anon_sym___must_hold] = ACTIONS(1234), - [anon_sym___ro_after_init] = ACTIONS(1234), - [anon_sym___noreturn] = ACTIONS(1234), - [anon_sym___cold] = ACTIONS(1234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), - [anon_sym___declspec] = ACTIONS(1234), - [anon_sym___init] = ACTIONS(1234), - [anon_sym___exit] = ACTIONS(1234), - [anon_sym___cdecl] = ACTIONS(1234), - [anon_sym___clrcall] = ACTIONS(1234), - [anon_sym___stdcall] = ACTIONS(1234), - [anon_sym___fastcall] = ACTIONS(1234), - [anon_sym___thiscall] = ACTIONS(1234), - [anon_sym___vectorcall] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_signed] = ACTIONS(1234), - [anon_sym_unsigned] = ACTIONS(1234), - [anon_sym_long] = ACTIONS(1234), - [anon_sym_short] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_auto] = ACTIONS(1234), - [anon_sym_register] = ACTIONS(1234), - [anon_sym_inline] = ACTIONS(1234), - [anon_sym___inline] = ACTIONS(1234), - [anon_sym___inline__] = ACTIONS(1234), - [anon_sym___forceinline] = ACTIONS(1234), - [anon_sym_thread_local] = ACTIONS(1234), - [anon_sym___thread] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_constexpr] = ACTIONS(1234), - [anon_sym_volatile] = ACTIONS(1234), - [anon_sym_restrict] = ACTIONS(1234), - [anon_sym___restrict__] = ACTIONS(1234), - [anon_sym__Atomic] = ACTIONS(1234), - [anon_sym__Noreturn] = ACTIONS(1234), - [anon_sym_noreturn] = ACTIONS(1234), - [anon_sym_alignas] = ACTIONS(1234), - [anon_sym__Alignas] = ACTIONS(1234), - [sym_primitive_type] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [anon_sym_switch] = ACTIONS(1234), - [anon_sym_case] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_goto] = ACTIONS(1234), - [anon_sym___try] = ACTIONS(1234), - [anon_sym___leave] = ACTIONS(1234), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_sizeof] = ACTIONS(1234), - [anon_sym___alignof__] = ACTIONS(1234), - [anon_sym___alignof] = ACTIONS(1234), - [anon_sym__alignof] = ACTIONS(1234), - [anon_sym_alignof] = ACTIONS(1234), - [anon_sym__Alignof] = ACTIONS(1234), - [anon_sym_offsetof] = ACTIONS(1234), - [anon_sym__Generic] = ACTIONS(1234), - [anon_sym_asm] = ACTIONS(1234), - [anon_sym___asm__] = ACTIONS(1234), - [sym_number_literal] = ACTIONS(1236), - [anon_sym_L_SQUOTE] = ACTIONS(1236), - [anon_sym_u_SQUOTE] = ACTIONS(1236), - [anon_sym_U_SQUOTE] = ACTIONS(1236), - [anon_sym_u8_SQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_L_DQUOTE] = ACTIONS(1236), - [anon_sym_u_DQUOTE] = ACTIONS(1236), - [anon_sym_U_DQUOTE] = ACTIONS(1236), - [anon_sym_u8_DQUOTE] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1236), - [sym_true] = ACTIONS(1234), - [sym_false] = ACTIONS(1234), - [anon_sym_NULL] = ACTIONS(1234), - [anon_sym_nullptr] = ACTIONS(1234), + [241] = { + [ts_builtin_sym_end] = ACTIONS(1292), + [sym_identifier] = ACTIONS(1290), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1290), + [aux_sym_preproc_def_token1] = ACTIONS(1290), + [aux_sym_preproc_if_token1] = ACTIONS(1290), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1290), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1290), + [sym_preproc_directive] = ACTIONS(1290), + [anon_sym_LPAREN2] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1290), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym___extension__] = ACTIONS(1290), + [anon_sym_typedef] = ACTIONS(1290), + [anon_sym_extern] = ACTIONS(1290), + [anon_sym___attribute__] = ACTIONS(1290), + [anon_sym___scanf] = ACTIONS(1290), + [anon_sym___printf] = ACTIONS(1290), + [anon_sym___read_mostly] = ACTIONS(1290), + [anon_sym___must_hold] = ACTIONS(1290), + [anon_sym___ro_after_init] = ACTIONS(1290), + [anon_sym___noreturn] = ACTIONS(1290), + [anon_sym___cold] = ACTIONS(1290), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1292), + [anon_sym___declspec] = ACTIONS(1290), + [anon_sym___init] = ACTIONS(1290), + [anon_sym___exit] = ACTIONS(1290), + [anon_sym___cdecl] = ACTIONS(1290), + [anon_sym___clrcall] = ACTIONS(1290), + [anon_sym___stdcall] = ACTIONS(1290), + [anon_sym___fastcall] = ACTIONS(1290), + [anon_sym___thiscall] = ACTIONS(1290), + [anon_sym___vectorcall] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_signed] = ACTIONS(1290), + [anon_sym_unsigned] = ACTIONS(1290), + [anon_sym_long] = ACTIONS(1290), + [anon_sym_short] = ACTIONS(1290), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_auto] = ACTIONS(1290), + [anon_sym_register] = ACTIONS(1290), + [anon_sym_inline] = ACTIONS(1290), + [anon_sym___inline] = ACTIONS(1290), + [anon_sym___inline__] = ACTIONS(1290), + [anon_sym___forceinline] = ACTIONS(1290), + [anon_sym_thread_local] = ACTIONS(1290), + [anon_sym___thread] = ACTIONS(1290), + [anon_sym_const] = ACTIONS(1290), + [anon_sym_constexpr] = ACTIONS(1290), + [anon_sym_volatile] = ACTIONS(1290), + [anon_sym_restrict] = ACTIONS(1290), + [anon_sym___restrict__] = ACTIONS(1290), + [anon_sym__Atomic] = ACTIONS(1290), + [anon_sym__Noreturn] = ACTIONS(1290), + [anon_sym_noreturn] = ACTIONS(1290), + [anon_sym_alignas] = ACTIONS(1290), + [anon_sym__Alignas] = ACTIONS(1290), + [sym_primitive_type] = ACTIONS(1290), + [anon_sym_enum] = ACTIONS(1290), + [anon_sym_struct] = ACTIONS(1290), + [anon_sym_union] = ACTIONS(1290), + [anon_sym_if] = ACTIONS(1290), + [anon_sym_else] = ACTIONS(1290), + [anon_sym_switch] = ACTIONS(1290), + [anon_sym_case] = ACTIONS(1290), + [anon_sym_default] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_do] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1290), + [anon_sym_return] = ACTIONS(1290), + [anon_sym_break] = ACTIONS(1290), + [anon_sym_continue] = ACTIONS(1290), + [anon_sym_goto] = ACTIONS(1290), + [anon_sym___try] = ACTIONS(1290), + [anon_sym___leave] = ACTIONS(1290), + [anon_sym_DASH_DASH] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [anon_sym_sizeof] = ACTIONS(1290), + [anon_sym___alignof__] = ACTIONS(1290), + [anon_sym___alignof] = ACTIONS(1290), + [anon_sym__alignof] = ACTIONS(1290), + [anon_sym_alignof] = ACTIONS(1290), + [anon_sym__Alignof] = ACTIONS(1290), + [anon_sym_offsetof] = ACTIONS(1290), + [anon_sym__Generic] = ACTIONS(1290), + [anon_sym_asm] = ACTIONS(1290), + [anon_sym___asm__] = ACTIONS(1290), + [sym_number_literal] = ACTIONS(1292), + [anon_sym_L_SQUOTE] = ACTIONS(1292), + [anon_sym_u_SQUOTE] = ACTIONS(1292), + [anon_sym_U_SQUOTE] = ACTIONS(1292), + [anon_sym_u8_SQUOTE] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1292), + [anon_sym_L_DQUOTE] = ACTIONS(1292), + [anon_sym_u_DQUOTE] = ACTIONS(1292), + [anon_sym_U_DQUOTE] = ACTIONS(1292), + [anon_sym_u8_DQUOTE] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(1292), + [sym_true] = ACTIONS(1290), + [sym_false] = ACTIONS(1290), + [anon_sym_NULL] = ACTIONS(1290), + [anon_sym_nullptr] = ACTIONS(1290), [sym_comment] = ACTIONS(5), }, - [262] = { - [sym_identifier] = ACTIONS(1250), + [242] = { + [ts_builtin_sym_end] = ACTIONS(1288), + [sym_identifier] = ACTIONS(1286), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1250), - [aux_sym_preproc_def_token1] = ACTIONS(1250), - [aux_sym_preproc_if_token1] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), - [sym_preproc_directive] = ACTIONS(1250), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(1252), - [anon_sym_TILDE] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym___extension__] = ACTIONS(1250), - [anon_sym_typedef] = ACTIONS(1250), - [anon_sym_extern] = ACTIONS(1250), - [anon_sym___attribute__] = ACTIONS(1250), - [anon_sym___scanf] = ACTIONS(1250), - [anon_sym___printf] = ACTIONS(1250), - [anon_sym___read_mostly] = ACTIONS(1250), - [anon_sym___must_hold] = ACTIONS(1250), - [anon_sym___ro_after_init] = ACTIONS(1250), - [anon_sym___noreturn] = ACTIONS(1250), - [anon_sym___cold] = ACTIONS(1250), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), - [anon_sym___declspec] = ACTIONS(1250), - [anon_sym___init] = ACTIONS(1250), - [anon_sym___exit] = ACTIONS(1250), - [anon_sym___cdecl] = ACTIONS(1250), - [anon_sym___clrcall] = ACTIONS(1250), - [anon_sym___stdcall] = ACTIONS(1250), - [anon_sym___fastcall] = ACTIONS(1250), - [anon_sym___thiscall] = ACTIONS(1250), - [anon_sym___vectorcall] = ACTIONS(1250), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_RBRACE] = ACTIONS(1252), - [anon_sym_signed] = ACTIONS(1250), - [anon_sym_unsigned] = ACTIONS(1250), - [anon_sym_long] = ACTIONS(1250), - [anon_sym_short] = ACTIONS(1250), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_auto] = ACTIONS(1250), - [anon_sym_register] = ACTIONS(1250), - [anon_sym_inline] = ACTIONS(1250), - [anon_sym___inline] = ACTIONS(1250), - [anon_sym___inline__] = ACTIONS(1250), - [anon_sym___forceinline] = ACTIONS(1250), - [anon_sym_thread_local] = ACTIONS(1250), - [anon_sym___thread] = ACTIONS(1250), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_constexpr] = ACTIONS(1250), - [anon_sym_volatile] = ACTIONS(1250), - [anon_sym_restrict] = ACTIONS(1250), - [anon_sym___restrict__] = ACTIONS(1250), - [anon_sym__Atomic] = ACTIONS(1250), - [anon_sym__Noreturn] = ACTIONS(1250), - [anon_sym_noreturn] = ACTIONS(1250), - [anon_sym_alignas] = ACTIONS(1250), - [anon_sym__Alignas] = ACTIONS(1250), - [sym_primitive_type] = ACTIONS(1250), - [anon_sym_enum] = ACTIONS(1250), - [anon_sym_struct] = ACTIONS(1250), - [anon_sym_union] = ACTIONS(1250), - [anon_sym_if] = ACTIONS(1250), - [anon_sym_else] = ACTIONS(1250), - [anon_sym_switch] = ACTIONS(1250), - [anon_sym_case] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1250), - [anon_sym_while] = ACTIONS(1250), - [anon_sym_do] = ACTIONS(1250), - [anon_sym_for] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_break] = ACTIONS(1250), - [anon_sym_continue] = ACTIONS(1250), - [anon_sym_goto] = ACTIONS(1250), - [anon_sym___try] = ACTIONS(1250), - [anon_sym___leave] = ACTIONS(1250), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_sizeof] = ACTIONS(1250), - [anon_sym___alignof__] = ACTIONS(1250), - [anon_sym___alignof] = ACTIONS(1250), - [anon_sym__alignof] = ACTIONS(1250), - [anon_sym_alignof] = ACTIONS(1250), - [anon_sym__Alignof] = ACTIONS(1250), - [anon_sym_offsetof] = ACTIONS(1250), - [anon_sym__Generic] = ACTIONS(1250), - [anon_sym_asm] = ACTIONS(1250), - [anon_sym___asm__] = ACTIONS(1250), - [sym_number_literal] = ACTIONS(1252), - [anon_sym_L_SQUOTE] = ACTIONS(1252), - [anon_sym_u_SQUOTE] = ACTIONS(1252), - [anon_sym_U_SQUOTE] = ACTIONS(1252), - [anon_sym_u8_SQUOTE] = ACTIONS(1252), - [anon_sym_SQUOTE] = ACTIONS(1252), - [anon_sym_L_DQUOTE] = ACTIONS(1252), - [anon_sym_u_DQUOTE] = ACTIONS(1252), - [anon_sym_U_DQUOTE] = ACTIONS(1252), - [anon_sym_u8_DQUOTE] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym_true] = ACTIONS(1250), - [sym_false] = ACTIONS(1250), - [anon_sym_NULL] = ACTIONS(1250), - [anon_sym_nullptr] = ACTIONS(1250), + [aux_sym_preproc_include_token1] = ACTIONS(1286), + [aux_sym_preproc_def_token1] = ACTIONS(1286), + [aux_sym_preproc_if_token1] = ACTIONS(1286), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1286), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1286), + [sym_preproc_directive] = ACTIONS(1286), + [anon_sym_LPAREN2] = ACTIONS(1288), + [anon_sym_BANG] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_DASH] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1288), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym___extension__] = ACTIONS(1286), + [anon_sym_typedef] = ACTIONS(1286), + [anon_sym_extern] = ACTIONS(1286), + [anon_sym___attribute__] = ACTIONS(1286), + [anon_sym___scanf] = ACTIONS(1286), + [anon_sym___printf] = ACTIONS(1286), + [anon_sym___read_mostly] = ACTIONS(1286), + [anon_sym___must_hold] = ACTIONS(1286), + [anon_sym___ro_after_init] = ACTIONS(1286), + [anon_sym___noreturn] = ACTIONS(1286), + [anon_sym___cold] = ACTIONS(1286), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1288), + [anon_sym___declspec] = ACTIONS(1286), + [anon_sym___init] = ACTIONS(1286), + [anon_sym___exit] = ACTIONS(1286), + [anon_sym___cdecl] = ACTIONS(1286), + [anon_sym___clrcall] = ACTIONS(1286), + [anon_sym___stdcall] = ACTIONS(1286), + [anon_sym___fastcall] = ACTIONS(1286), + [anon_sym___thiscall] = ACTIONS(1286), + [anon_sym___vectorcall] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_signed] = ACTIONS(1286), + [anon_sym_unsigned] = ACTIONS(1286), + [anon_sym_long] = ACTIONS(1286), + [anon_sym_short] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_auto] = ACTIONS(1286), + [anon_sym_register] = ACTIONS(1286), + [anon_sym_inline] = ACTIONS(1286), + [anon_sym___inline] = ACTIONS(1286), + [anon_sym___inline__] = ACTIONS(1286), + [anon_sym___forceinline] = ACTIONS(1286), + [anon_sym_thread_local] = ACTIONS(1286), + [anon_sym___thread] = ACTIONS(1286), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_constexpr] = ACTIONS(1286), + [anon_sym_volatile] = ACTIONS(1286), + [anon_sym_restrict] = ACTIONS(1286), + [anon_sym___restrict__] = ACTIONS(1286), + [anon_sym__Atomic] = ACTIONS(1286), + [anon_sym__Noreturn] = ACTIONS(1286), + [anon_sym_noreturn] = ACTIONS(1286), + [anon_sym_alignas] = ACTIONS(1286), + [anon_sym__Alignas] = ACTIONS(1286), + [sym_primitive_type] = ACTIONS(1286), + [anon_sym_enum] = ACTIONS(1286), + [anon_sym_struct] = ACTIONS(1286), + [anon_sym_union] = ACTIONS(1286), + [anon_sym_if] = ACTIONS(1286), + [anon_sym_else] = ACTIONS(1286), + [anon_sym_switch] = ACTIONS(1286), + [anon_sym_case] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1286), + [anon_sym_while] = ACTIONS(1286), + [anon_sym_do] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1286), + [anon_sym_return] = ACTIONS(1286), + [anon_sym_break] = ACTIONS(1286), + [anon_sym_continue] = ACTIONS(1286), + [anon_sym_goto] = ACTIONS(1286), + [anon_sym___try] = ACTIONS(1286), + [anon_sym___leave] = ACTIONS(1286), + [anon_sym_DASH_DASH] = ACTIONS(1288), + [anon_sym_PLUS_PLUS] = ACTIONS(1288), + [anon_sym_sizeof] = ACTIONS(1286), + [anon_sym___alignof__] = ACTIONS(1286), + [anon_sym___alignof] = ACTIONS(1286), + [anon_sym__alignof] = ACTIONS(1286), + [anon_sym_alignof] = ACTIONS(1286), + [anon_sym__Alignof] = ACTIONS(1286), + [anon_sym_offsetof] = ACTIONS(1286), + [anon_sym__Generic] = ACTIONS(1286), + [anon_sym_asm] = ACTIONS(1286), + [anon_sym___asm__] = ACTIONS(1286), + [sym_number_literal] = ACTIONS(1288), + [anon_sym_L_SQUOTE] = ACTIONS(1288), + [anon_sym_u_SQUOTE] = ACTIONS(1288), + [anon_sym_U_SQUOTE] = ACTIONS(1288), + [anon_sym_u8_SQUOTE] = ACTIONS(1288), + [anon_sym_SQUOTE] = ACTIONS(1288), + [anon_sym_L_DQUOTE] = ACTIONS(1288), + [anon_sym_u_DQUOTE] = ACTIONS(1288), + [anon_sym_U_DQUOTE] = ACTIONS(1288), + [anon_sym_u8_DQUOTE] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1288), + [sym_true] = ACTIONS(1286), + [sym_false] = ACTIONS(1286), + [anon_sym_NULL] = ACTIONS(1286), + [anon_sym_nullptr] = ACTIONS(1286), [sym_comment] = ACTIONS(5), }, - [263] = { - [sym_identifier] = ACTIONS(1250), + [243] = { + [sym_identifier] = ACTIONS(1342), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1250), - [aux_sym_preproc_def_token1] = ACTIONS(1250), - [aux_sym_preproc_if_token1] = ACTIONS(1250), - [aux_sym_preproc_if_token2] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), - [sym_preproc_directive] = ACTIONS(1250), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(1252), - [anon_sym_TILDE] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym___extension__] = ACTIONS(1250), - [anon_sym_typedef] = ACTIONS(1250), - [anon_sym_extern] = ACTIONS(1250), - [anon_sym___attribute__] = ACTIONS(1250), - [anon_sym___scanf] = ACTIONS(1250), - [anon_sym___printf] = ACTIONS(1250), - [anon_sym___read_mostly] = ACTIONS(1250), - [anon_sym___must_hold] = ACTIONS(1250), - [anon_sym___ro_after_init] = ACTIONS(1250), - [anon_sym___noreturn] = ACTIONS(1250), - [anon_sym___cold] = ACTIONS(1250), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), - [anon_sym___declspec] = ACTIONS(1250), - [anon_sym___init] = ACTIONS(1250), - [anon_sym___exit] = ACTIONS(1250), - [anon_sym___cdecl] = ACTIONS(1250), - [anon_sym___clrcall] = ACTIONS(1250), - [anon_sym___stdcall] = ACTIONS(1250), - [anon_sym___fastcall] = ACTIONS(1250), - [anon_sym___thiscall] = ACTIONS(1250), - [anon_sym___vectorcall] = ACTIONS(1250), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_signed] = ACTIONS(1250), - [anon_sym_unsigned] = ACTIONS(1250), - [anon_sym_long] = ACTIONS(1250), - [anon_sym_short] = ACTIONS(1250), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_auto] = ACTIONS(1250), - [anon_sym_register] = ACTIONS(1250), - [anon_sym_inline] = ACTIONS(1250), - [anon_sym___inline] = ACTIONS(1250), - [anon_sym___inline__] = ACTIONS(1250), - [anon_sym___forceinline] = ACTIONS(1250), - [anon_sym_thread_local] = ACTIONS(1250), - [anon_sym___thread] = ACTIONS(1250), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_constexpr] = ACTIONS(1250), - [anon_sym_volatile] = ACTIONS(1250), - [anon_sym_restrict] = ACTIONS(1250), - [anon_sym___restrict__] = ACTIONS(1250), - [anon_sym__Atomic] = ACTIONS(1250), - [anon_sym__Noreturn] = ACTIONS(1250), - [anon_sym_noreturn] = ACTIONS(1250), - [anon_sym_alignas] = ACTIONS(1250), - [anon_sym__Alignas] = ACTIONS(1250), - [sym_primitive_type] = ACTIONS(1250), - [anon_sym_enum] = ACTIONS(1250), - [anon_sym_struct] = ACTIONS(1250), - [anon_sym_union] = ACTIONS(1250), - [anon_sym_if] = ACTIONS(1250), - [anon_sym_else] = ACTIONS(1250), - [anon_sym_switch] = ACTIONS(1250), - [anon_sym_case] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1250), - [anon_sym_while] = ACTIONS(1250), - [anon_sym_do] = ACTIONS(1250), - [anon_sym_for] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_break] = ACTIONS(1250), - [anon_sym_continue] = ACTIONS(1250), - [anon_sym_goto] = ACTIONS(1250), - [anon_sym___try] = ACTIONS(1250), - [anon_sym___leave] = ACTIONS(1250), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_sizeof] = ACTIONS(1250), - [anon_sym___alignof__] = ACTIONS(1250), - [anon_sym___alignof] = ACTIONS(1250), - [anon_sym__alignof] = ACTIONS(1250), - [anon_sym_alignof] = ACTIONS(1250), - [anon_sym__Alignof] = ACTIONS(1250), - [anon_sym_offsetof] = ACTIONS(1250), - [anon_sym__Generic] = ACTIONS(1250), - [anon_sym_asm] = ACTIONS(1250), - [anon_sym___asm__] = ACTIONS(1250), - [sym_number_literal] = ACTIONS(1252), - [anon_sym_L_SQUOTE] = ACTIONS(1252), - [anon_sym_u_SQUOTE] = ACTIONS(1252), - [anon_sym_U_SQUOTE] = ACTIONS(1252), - [anon_sym_u8_SQUOTE] = ACTIONS(1252), - [anon_sym_SQUOTE] = ACTIONS(1252), - [anon_sym_L_DQUOTE] = ACTIONS(1252), - [anon_sym_u_DQUOTE] = ACTIONS(1252), - [anon_sym_U_DQUOTE] = ACTIONS(1252), - [anon_sym_u8_DQUOTE] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym_true] = ACTIONS(1250), - [sym_false] = ACTIONS(1250), - [anon_sym_NULL] = ACTIONS(1250), - [anon_sym_nullptr] = ACTIONS(1250), - [sym_comment] = ACTIONS(5), - }, - [264] = { - [sym_identifier] = ACTIONS(1250), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1250), - [aux_sym_preproc_def_token1] = ACTIONS(1250), - [aux_sym_preproc_if_token1] = ACTIONS(1250), - [aux_sym_preproc_if_token2] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), - [sym_preproc_directive] = ACTIONS(1250), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(1252), - [anon_sym_TILDE] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym___extension__] = ACTIONS(1250), - [anon_sym_typedef] = ACTIONS(1250), - [anon_sym_extern] = ACTIONS(1250), - [anon_sym___attribute__] = ACTIONS(1250), - [anon_sym___scanf] = ACTIONS(1250), - [anon_sym___printf] = ACTIONS(1250), - [anon_sym___read_mostly] = ACTIONS(1250), - [anon_sym___must_hold] = ACTIONS(1250), - [anon_sym___ro_after_init] = ACTIONS(1250), - [anon_sym___noreturn] = ACTIONS(1250), - [anon_sym___cold] = ACTIONS(1250), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), - [anon_sym___declspec] = ACTIONS(1250), - [anon_sym___init] = ACTIONS(1250), - [anon_sym___exit] = ACTIONS(1250), - [anon_sym___cdecl] = ACTIONS(1250), - [anon_sym___clrcall] = ACTIONS(1250), - [anon_sym___stdcall] = ACTIONS(1250), - [anon_sym___fastcall] = ACTIONS(1250), - [anon_sym___thiscall] = ACTIONS(1250), - [anon_sym___vectorcall] = ACTIONS(1250), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_signed] = ACTIONS(1250), - [anon_sym_unsigned] = ACTIONS(1250), - [anon_sym_long] = ACTIONS(1250), - [anon_sym_short] = ACTIONS(1250), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_auto] = ACTIONS(1250), - [anon_sym_register] = ACTIONS(1250), - [anon_sym_inline] = ACTIONS(1250), - [anon_sym___inline] = ACTIONS(1250), - [anon_sym___inline__] = ACTIONS(1250), - [anon_sym___forceinline] = ACTIONS(1250), - [anon_sym_thread_local] = ACTIONS(1250), - [anon_sym___thread] = ACTIONS(1250), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_constexpr] = ACTIONS(1250), - [anon_sym_volatile] = ACTIONS(1250), - [anon_sym_restrict] = ACTIONS(1250), - [anon_sym___restrict__] = ACTIONS(1250), - [anon_sym__Atomic] = ACTIONS(1250), - [anon_sym__Noreturn] = ACTIONS(1250), - [anon_sym_noreturn] = ACTIONS(1250), - [anon_sym_alignas] = ACTIONS(1250), - [anon_sym__Alignas] = ACTIONS(1250), - [sym_primitive_type] = ACTIONS(1250), - [anon_sym_enum] = ACTIONS(1250), - [anon_sym_struct] = ACTIONS(1250), - [anon_sym_union] = ACTIONS(1250), - [anon_sym_if] = ACTIONS(1250), - [anon_sym_else] = ACTIONS(1250), - [anon_sym_switch] = ACTIONS(1250), - [anon_sym_case] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1250), - [anon_sym_while] = ACTIONS(1250), - [anon_sym_do] = ACTIONS(1250), - [anon_sym_for] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_break] = ACTIONS(1250), - [anon_sym_continue] = ACTIONS(1250), - [anon_sym_goto] = ACTIONS(1250), - [anon_sym___try] = ACTIONS(1250), - [anon_sym___leave] = ACTIONS(1250), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_sizeof] = ACTIONS(1250), - [anon_sym___alignof__] = ACTIONS(1250), - [anon_sym___alignof] = ACTIONS(1250), - [anon_sym__alignof] = ACTIONS(1250), - [anon_sym_alignof] = ACTIONS(1250), - [anon_sym__Alignof] = ACTIONS(1250), - [anon_sym_offsetof] = ACTIONS(1250), - [anon_sym__Generic] = ACTIONS(1250), - [anon_sym_asm] = ACTIONS(1250), - [anon_sym___asm__] = ACTIONS(1250), - [sym_number_literal] = ACTIONS(1252), - [anon_sym_L_SQUOTE] = ACTIONS(1252), - [anon_sym_u_SQUOTE] = ACTIONS(1252), - [anon_sym_U_SQUOTE] = ACTIONS(1252), - [anon_sym_u8_SQUOTE] = ACTIONS(1252), - [anon_sym_SQUOTE] = ACTIONS(1252), - [anon_sym_L_DQUOTE] = ACTIONS(1252), - [anon_sym_u_DQUOTE] = ACTIONS(1252), - [anon_sym_U_DQUOTE] = ACTIONS(1252), - [anon_sym_u8_DQUOTE] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym_true] = ACTIONS(1250), - [sym_false] = ACTIONS(1250), - [anon_sym_NULL] = ACTIONS(1250), - [anon_sym_nullptr] = ACTIONS(1250), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token2] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym___scanf] = ACTIONS(1342), + [anon_sym___printf] = ACTIONS(1342), + [anon_sym___read_mostly] = ACTIONS(1342), + [anon_sym___must_hold] = ACTIONS(1342), + [anon_sym___ro_after_init] = ACTIONS(1342), + [anon_sym___noreturn] = ACTIONS(1342), + [anon_sym___cold] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym___init] = ACTIONS(1342), + [anon_sym___exit] = ACTIONS(1342), + [anon_sym___cdecl] = ACTIONS(1342), + [anon_sym___clrcall] = ACTIONS(1342), + [anon_sym___stdcall] = ACTIONS(1342), + [anon_sym___fastcall] = ACTIONS(1342), + [anon_sym___thiscall] = ACTIONS(1342), + [anon_sym___vectorcall] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [anon_sym_alignas] = ACTIONS(1342), + [anon_sym__Alignas] = ACTIONS(1342), + [sym_primitive_type] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym___try] = ACTIONS(1342), + [anon_sym___leave] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), [sym_comment] = ACTIONS(5), }, - [265] = { - [sym_identifier] = ACTIONS(1294), + [244] = { + [sym_identifier] = ACTIONS(1262), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1294), - [aux_sym_preproc_def_token1] = ACTIONS(1294), - [aux_sym_preproc_if_token1] = ACTIONS(1294), - [aux_sym_preproc_if_token2] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), - [sym_preproc_directive] = ACTIONS(1294), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1296), - [anon_sym_TILDE] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym___extension__] = ACTIONS(1294), - [anon_sym_typedef] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym___attribute__] = ACTIONS(1294), - [anon_sym___scanf] = ACTIONS(1294), - [anon_sym___printf] = ACTIONS(1294), - [anon_sym___read_mostly] = ACTIONS(1294), - [anon_sym___must_hold] = ACTIONS(1294), - [anon_sym___ro_after_init] = ACTIONS(1294), - [anon_sym___noreturn] = ACTIONS(1294), - [anon_sym___cold] = ACTIONS(1294), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1296), - [anon_sym___declspec] = ACTIONS(1294), - [anon_sym___init] = ACTIONS(1294), - [anon_sym___exit] = ACTIONS(1294), - [anon_sym___cdecl] = ACTIONS(1294), - [anon_sym___clrcall] = ACTIONS(1294), - [anon_sym___stdcall] = ACTIONS(1294), - [anon_sym___fastcall] = ACTIONS(1294), - [anon_sym___thiscall] = ACTIONS(1294), - [anon_sym___vectorcall] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_signed] = ACTIONS(1294), - [anon_sym_unsigned] = ACTIONS(1294), - [anon_sym_long] = ACTIONS(1294), - [anon_sym_short] = ACTIONS(1294), - [anon_sym_static] = ACTIONS(1294), - [anon_sym_auto] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_inline] = ACTIONS(1294), - [anon_sym___inline] = ACTIONS(1294), - [anon_sym___inline__] = ACTIONS(1294), - [anon_sym___forceinline] = ACTIONS(1294), - [anon_sym_thread_local] = ACTIONS(1294), - [anon_sym___thread] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [anon_sym_constexpr] = ACTIONS(1294), - [anon_sym_volatile] = ACTIONS(1294), - [anon_sym_restrict] = ACTIONS(1294), - [anon_sym___restrict__] = ACTIONS(1294), - [anon_sym__Atomic] = ACTIONS(1294), - [anon_sym__Noreturn] = ACTIONS(1294), - [anon_sym_noreturn] = ACTIONS(1294), - [anon_sym_alignas] = ACTIONS(1294), - [anon_sym__Alignas] = ACTIONS(1294), - [sym_primitive_type] = ACTIONS(1294), - [anon_sym_enum] = ACTIONS(1294), - [anon_sym_struct] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1294), - [anon_sym_switch] = ACTIONS(1294), - [anon_sym_case] = ACTIONS(1294), - [anon_sym_default] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_goto] = ACTIONS(1294), - [anon_sym___try] = ACTIONS(1294), - [anon_sym___leave] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_sizeof] = ACTIONS(1294), - [anon_sym___alignof__] = ACTIONS(1294), - [anon_sym___alignof] = ACTIONS(1294), - [anon_sym__alignof] = ACTIONS(1294), - [anon_sym_alignof] = ACTIONS(1294), - [anon_sym__Alignof] = ACTIONS(1294), - [anon_sym_offsetof] = ACTIONS(1294), - [anon_sym__Generic] = ACTIONS(1294), - [anon_sym_asm] = ACTIONS(1294), - [anon_sym___asm__] = ACTIONS(1294), - [sym_number_literal] = ACTIONS(1296), - [anon_sym_L_SQUOTE] = ACTIONS(1296), - [anon_sym_u_SQUOTE] = ACTIONS(1296), - [anon_sym_U_SQUOTE] = ACTIONS(1296), - [anon_sym_u8_SQUOTE] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [anon_sym_L_DQUOTE] = ACTIONS(1296), - [anon_sym_u_DQUOTE] = ACTIONS(1296), - [anon_sym_U_DQUOTE] = ACTIONS(1296), - [anon_sym_u8_DQUOTE] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym_true] = ACTIONS(1294), - [sym_false] = ACTIONS(1294), - [anon_sym_NULL] = ACTIONS(1294), - [anon_sym_nullptr] = ACTIONS(1294), + [aux_sym_preproc_include_token1] = ACTIONS(1262), + [aux_sym_preproc_def_token1] = ACTIONS(1262), + [aux_sym_preproc_if_token1] = ACTIONS(1262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1262), + [sym_preproc_directive] = ACTIONS(1262), + [anon_sym_LPAREN2] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1264), + [anon_sym___extension__] = ACTIONS(1262), + [anon_sym_typedef] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(1262), + [anon_sym___attribute__] = ACTIONS(1262), + [anon_sym___scanf] = ACTIONS(1262), + [anon_sym___printf] = ACTIONS(1262), + [anon_sym___read_mostly] = ACTIONS(1262), + [anon_sym___must_hold] = ACTIONS(1262), + [anon_sym___ro_after_init] = ACTIONS(1262), + [anon_sym___noreturn] = ACTIONS(1262), + [anon_sym___cold] = ACTIONS(1262), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym___declspec] = ACTIONS(1262), + [anon_sym___init] = ACTIONS(1262), + [anon_sym___exit] = ACTIONS(1262), + [anon_sym___cdecl] = ACTIONS(1262), + [anon_sym___clrcall] = ACTIONS(1262), + [anon_sym___stdcall] = ACTIONS(1262), + [anon_sym___fastcall] = ACTIONS(1262), + [anon_sym___thiscall] = ACTIONS(1262), + [anon_sym___vectorcall] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_RBRACE] = ACTIONS(1264), + [anon_sym_signed] = ACTIONS(1262), + [anon_sym_unsigned] = ACTIONS(1262), + [anon_sym_long] = ACTIONS(1262), + [anon_sym_short] = ACTIONS(1262), + [anon_sym_static] = ACTIONS(1262), + [anon_sym_auto] = ACTIONS(1262), + [anon_sym_register] = ACTIONS(1262), + [anon_sym_inline] = ACTIONS(1262), + [anon_sym___inline] = ACTIONS(1262), + [anon_sym___inline__] = ACTIONS(1262), + [anon_sym___forceinline] = ACTIONS(1262), + [anon_sym_thread_local] = ACTIONS(1262), + [anon_sym___thread] = ACTIONS(1262), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_constexpr] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_restrict] = ACTIONS(1262), + [anon_sym___restrict__] = ACTIONS(1262), + [anon_sym__Atomic] = ACTIONS(1262), + [anon_sym__Noreturn] = ACTIONS(1262), + [anon_sym_noreturn] = ACTIONS(1262), + [anon_sym_alignas] = ACTIONS(1262), + [anon_sym__Alignas] = ACTIONS(1262), + [sym_primitive_type] = ACTIONS(1262), + [anon_sym_enum] = ACTIONS(1262), + [anon_sym_struct] = ACTIONS(1262), + [anon_sym_union] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1262), + [anon_sym_else] = ACTIONS(1262), + [anon_sym_switch] = ACTIONS(1262), + [anon_sym_case] = ACTIONS(1262), + [anon_sym_default] = ACTIONS(1262), + [anon_sym_while] = ACTIONS(1262), + [anon_sym_do] = ACTIONS(1262), + [anon_sym_for] = ACTIONS(1262), + [anon_sym_return] = ACTIONS(1262), + [anon_sym_break] = ACTIONS(1262), + [anon_sym_continue] = ACTIONS(1262), + [anon_sym_goto] = ACTIONS(1262), + [anon_sym___try] = ACTIONS(1262), + [anon_sym___leave] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1264), + [anon_sym_PLUS_PLUS] = ACTIONS(1264), + [anon_sym_sizeof] = ACTIONS(1262), + [anon_sym___alignof__] = ACTIONS(1262), + [anon_sym___alignof] = ACTIONS(1262), + [anon_sym__alignof] = ACTIONS(1262), + [anon_sym_alignof] = ACTIONS(1262), + [anon_sym__Alignof] = ACTIONS(1262), + [anon_sym_offsetof] = ACTIONS(1262), + [anon_sym__Generic] = ACTIONS(1262), + [anon_sym_asm] = ACTIONS(1262), + [anon_sym___asm__] = ACTIONS(1262), + [sym_number_literal] = ACTIONS(1264), + [anon_sym_L_SQUOTE] = ACTIONS(1264), + [anon_sym_u_SQUOTE] = ACTIONS(1264), + [anon_sym_U_SQUOTE] = ACTIONS(1264), + [anon_sym_u8_SQUOTE] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_L_DQUOTE] = ACTIONS(1264), + [anon_sym_u_DQUOTE] = ACTIONS(1264), + [anon_sym_U_DQUOTE] = ACTIONS(1264), + [anon_sym_u8_DQUOTE] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1264), + [sym_true] = ACTIONS(1262), + [sym_false] = ACTIONS(1262), + [anon_sym_NULL] = ACTIONS(1262), + [anon_sym_nullptr] = ACTIONS(1262), [sym_comment] = ACTIONS(5), }, - [266] = { - [sym_identifier] = ACTIONS(1274), + [245] = { + [sym_identifier] = ACTIONS(1370), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1274), - [aux_sym_preproc_def_token1] = ACTIONS(1274), - [aux_sym_preproc_if_token1] = ACTIONS(1274), - [aux_sym_preproc_if_token2] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), - [sym_preproc_directive] = ACTIONS(1274), - [anon_sym_LPAREN2] = ACTIONS(1276), - [anon_sym_BANG] = ACTIONS(1276), - [anon_sym_TILDE] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym___extension__] = ACTIONS(1274), - [anon_sym_typedef] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym___attribute__] = ACTIONS(1274), - [anon_sym___scanf] = ACTIONS(1274), - [anon_sym___printf] = ACTIONS(1274), - [anon_sym___read_mostly] = ACTIONS(1274), - [anon_sym___must_hold] = ACTIONS(1274), - [anon_sym___ro_after_init] = ACTIONS(1274), - [anon_sym___noreturn] = ACTIONS(1274), - [anon_sym___cold] = ACTIONS(1274), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1276), - [anon_sym___declspec] = ACTIONS(1274), - [anon_sym___init] = ACTIONS(1274), - [anon_sym___exit] = ACTIONS(1274), - [anon_sym___cdecl] = ACTIONS(1274), - [anon_sym___clrcall] = ACTIONS(1274), - [anon_sym___stdcall] = ACTIONS(1274), - [anon_sym___fastcall] = ACTIONS(1274), + [aux_sym_preproc_include_token1] = ACTIONS(1370), + [aux_sym_preproc_def_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token2] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), + [sym_preproc_directive] = ACTIONS(1370), + [anon_sym_LPAREN2] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym___extension__] = ACTIONS(1370), + [anon_sym_typedef] = ACTIONS(1370), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym___attribute__] = ACTIONS(1370), + [anon_sym___scanf] = ACTIONS(1370), + [anon_sym___printf] = ACTIONS(1370), + [anon_sym___read_mostly] = ACTIONS(1370), + [anon_sym___must_hold] = ACTIONS(1370), + [anon_sym___ro_after_init] = ACTIONS(1370), + [anon_sym___noreturn] = ACTIONS(1370), + [anon_sym___cold] = ACTIONS(1370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), + [anon_sym___declspec] = ACTIONS(1370), + [anon_sym___init] = ACTIONS(1370), + [anon_sym___exit] = ACTIONS(1370), + [anon_sym___cdecl] = ACTIONS(1370), + [anon_sym___clrcall] = ACTIONS(1370), + [anon_sym___stdcall] = ACTIONS(1370), + [anon_sym___fastcall] = ACTIONS(1370), + [anon_sym___thiscall] = ACTIONS(1370), + [anon_sym___vectorcall] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_signed] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), + [anon_sym___inline] = ACTIONS(1370), + [anon_sym___inline__] = ACTIONS(1370), + [anon_sym___forceinline] = ACTIONS(1370), + [anon_sym_thread_local] = ACTIONS(1370), + [anon_sym___thread] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_constexpr] = ACTIONS(1370), + [anon_sym_volatile] = ACTIONS(1370), + [anon_sym_restrict] = ACTIONS(1370), + [anon_sym___restrict__] = ACTIONS(1370), + [anon_sym__Atomic] = ACTIONS(1370), + [anon_sym__Noreturn] = ACTIONS(1370), + [anon_sym_noreturn] = ACTIONS(1370), + [anon_sym_alignas] = ACTIONS(1370), + [anon_sym__Alignas] = ACTIONS(1370), + [sym_primitive_type] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_else] = ACTIONS(1370), + [anon_sym_switch] = ACTIONS(1370), + [anon_sym_case] = ACTIONS(1370), + [anon_sym_default] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_goto] = ACTIONS(1370), + [anon_sym___try] = ACTIONS(1370), + [anon_sym___leave] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_sizeof] = ACTIONS(1370), + [anon_sym___alignof__] = ACTIONS(1370), + [anon_sym___alignof] = ACTIONS(1370), + [anon_sym__alignof] = ACTIONS(1370), + [anon_sym_alignof] = ACTIONS(1370), + [anon_sym__Alignof] = ACTIONS(1370), + [anon_sym_offsetof] = ACTIONS(1370), + [anon_sym__Generic] = ACTIONS(1370), + [anon_sym_asm] = ACTIONS(1370), + [anon_sym___asm__] = ACTIONS(1370), + [sym_number_literal] = ACTIONS(1372), + [anon_sym_L_SQUOTE] = ACTIONS(1372), + [anon_sym_u_SQUOTE] = ACTIONS(1372), + [anon_sym_U_SQUOTE] = ACTIONS(1372), + [anon_sym_u8_SQUOTE] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_L_DQUOTE] = ACTIONS(1372), + [anon_sym_u_DQUOTE] = ACTIONS(1372), + [anon_sym_U_DQUOTE] = ACTIONS(1372), + [anon_sym_u8_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [sym_true] = ACTIONS(1370), + [sym_false] = ACTIONS(1370), + [anon_sym_NULL] = ACTIONS(1370), + [anon_sym_nullptr] = ACTIONS(1370), + [sym_comment] = ACTIONS(5), + }, + [246] = { + [sym_identifier] = ACTIONS(1270), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1270), + [aux_sym_preproc_def_token1] = ACTIONS(1270), + [aux_sym_preproc_if_token1] = ACTIONS(1270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1270), + [sym_preproc_directive] = ACTIONS(1270), + [anon_sym_LPAREN2] = ACTIONS(1272), + [anon_sym_BANG] = ACTIONS(1272), + [anon_sym_TILDE] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_PLUS] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(1272), + [anon_sym_AMP] = ACTIONS(1272), + [anon_sym_SEMI] = ACTIONS(1272), + [anon_sym___extension__] = ACTIONS(1270), + [anon_sym_typedef] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1270), + [anon_sym___attribute__] = ACTIONS(1270), + [anon_sym___scanf] = ACTIONS(1270), + [anon_sym___printf] = ACTIONS(1270), + [anon_sym___read_mostly] = ACTIONS(1270), + [anon_sym___must_hold] = ACTIONS(1270), + [anon_sym___ro_after_init] = ACTIONS(1270), + [anon_sym___noreturn] = ACTIONS(1270), + [anon_sym___cold] = ACTIONS(1270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1272), + [anon_sym___declspec] = ACTIONS(1270), + [anon_sym___init] = ACTIONS(1270), + [anon_sym___exit] = ACTIONS(1270), + [anon_sym___cdecl] = ACTIONS(1270), + [anon_sym___clrcall] = ACTIONS(1270), + [anon_sym___stdcall] = ACTIONS(1270), + [anon_sym___fastcall] = ACTIONS(1270), + [anon_sym___thiscall] = ACTIONS(1270), + [anon_sym___vectorcall] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_RBRACE] = ACTIONS(1272), + [anon_sym_signed] = ACTIONS(1270), + [anon_sym_unsigned] = ACTIONS(1270), + [anon_sym_long] = ACTIONS(1270), + [anon_sym_short] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_auto] = ACTIONS(1270), + [anon_sym_register] = ACTIONS(1270), + [anon_sym_inline] = ACTIONS(1270), + [anon_sym___inline] = ACTIONS(1270), + [anon_sym___inline__] = ACTIONS(1270), + [anon_sym___forceinline] = ACTIONS(1270), + [anon_sym_thread_local] = ACTIONS(1270), + [anon_sym___thread] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_constexpr] = ACTIONS(1270), + [anon_sym_volatile] = ACTIONS(1270), + [anon_sym_restrict] = ACTIONS(1270), + [anon_sym___restrict__] = ACTIONS(1270), + [anon_sym__Atomic] = ACTIONS(1270), + [anon_sym__Noreturn] = ACTIONS(1270), + [anon_sym_noreturn] = ACTIONS(1270), + [anon_sym_alignas] = ACTIONS(1270), + [anon_sym__Alignas] = ACTIONS(1270), + [sym_primitive_type] = ACTIONS(1270), + [anon_sym_enum] = ACTIONS(1270), + [anon_sym_struct] = ACTIONS(1270), + [anon_sym_union] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_else] = ACTIONS(1270), + [anon_sym_switch] = ACTIONS(1270), + [anon_sym_case] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_do] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_goto] = ACTIONS(1270), + [anon_sym___try] = ACTIONS(1270), + [anon_sym___leave] = ACTIONS(1270), + [anon_sym_DASH_DASH] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1272), + [anon_sym_sizeof] = ACTIONS(1270), + [anon_sym___alignof__] = ACTIONS(1270), + [anon_sym___alignof] = ACTIONS(1270), + [anon_sym__alignof] = ACTIONS(1270), + [anon_sym_alignof] = ACTIONS(1270), + [anon_sym__Alignof] = ACTIONS(1270), + [anon_sym_offsetof] = ACTIONS(1270), + [anon_sym__Generic] = ACTIONS(1270), + [anon_sym_asm] = ACTIONS(1270), + [anon_sym___asm__] = ACTIONS(1270), + [sym_number_literal] = ACTIONS(1272), + [anon_sym_L_SQUOTE] = ACTIONS(1272), + [anon_sym_u_SQUOTE] = ACTIONS(1272), + [anon_sym_U_SQUOTE] = ACTIONS(1272), + [anon_sym_u8_SQUOTE] = ACTIONS(1272), + [anon_sym_SQUOTE] = ACTIONS(1272), + [anon_sym_L_DQUOTE] = ACTIONS(1272), + [anon_sym_u_DQUOTE] = ACTIONS(1272), + [anon_sym_U_DQUOTE] = ACTIONS(1272), + [anon_sym_u8_DQUOTE] = ACTIONS(1272), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym_true] = ACTIONS(1270), + [sym_false] = ACTIONS(1270), + [anon_sym_NULL] = ACTIONS(1270), + [anon_sym_nullptr] = ACTIONS(1270), + [sym_comment] = ACTIONS(5), + }, + [247] = { + [sym_identifier] = ACTIONS(1274), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1274), + [aux_sym_preproc_def_token1] = ACTIONS(1274), + [aux_sym_preproc_if_token1] = ACTIONS(1274), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), + [sym_preproc_directive] = ACTIONS(1274), + [anon_sym_LPAREN2] = ACTIONS(1276), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_PLUS] = ACTIONS(1274), + [anon_sym_STAR] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1276), + [anon_sym_SEMI] = ACTIONS(1276), + [anon_sym___extension__] = ACTIONS(1274), + [anon_sym_typedef] = ACTIONS(1274), + [anon_sym_extern] = ACTIONS(1274), + [anon_sym___attribute__] = ACTIONS(1274), + [anon_sym___scanf] = ACTIONS(1274), + [anon_sym___printf] = ACTIONS(1274), + [anon_sym___read_mostly] = ACTIONS(1274), + [anon_sym___must_hold] = ACTIONS(1274), + [anon_sym___ro_after_init] = ACTIONS(1274), + [anon_sym___noreturn] = ACTIONS(1274), + [anon_sym___cold] = ACTIONS(1274), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1276), + [anon_sym___declspec] = ACTIONS(1274), + [anon_sym___init] = ACTIONS(1274), + [anon_sym___exit] = ACTIONS(1274), + [anon_sym___cdecl] = ACTIONS(1274), + [anon_sym___clrcall] = ACTIONS(1274), + [anon_sym___stdcall] = ACTIONS(1274), + [anon_sym___fastcall] = ACTIONS(1274), [anon_sym___thiscall] = ACTIONS(1274), [anon_sym___vectorcall] = ACTIONS(1274), [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_RBRACE] = ACTIONS(1276), [anon_sym_signed] = ACTIONS(1274), [anon_sym_unsigned] = ACTIONS(1274), [anon_sym_long] = ACTIONS(1274), @@ -51669,5706 +49696,2978 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1274), [sym_comment] = ACTIONS(5), }, - [267] = { - [sym_identifier] = ACTIONS(1298), + [248] = { + [sym_identifier] = ACTIONS(1358), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym___scanf] = ACTIONS(1298), - [anon_sym___printf] = ACTIONS(1298), - [anon_sym___read_mostly] = ACTIONS(1298), - [anon_sym___must_hold] = ACTIONS(1298), - [anon_sym___ro_after_init] = ACTIONS(1298), - [anon_sym___noreturn] = ACTIONS(1298), - [anon_sym___cold] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___init] = ACTIONS(1298), - [anon_sym___exit] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [anon_sym_alignas] = ACTIONS(1298), - [anon_sym__Alignas] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1358), + [aux_sym_preproc_def_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token2] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___extension__] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym___scanf] = ACTIONS(1358), + [anon_sym___printf] = ACTIONS(1358), + [anon_sym___read_mostly] = ACTIONS(1358), + [anon_sym___must_hold] = ACTIONS(1358), + [anon_sym___ro_after_init] = ACTIONS(1358), + [anon_sym___noreturn] = ACTIONS(1358), + [anon_sym___cold] = ACTIONS(1358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), + [anon_sym___declspec] = ACTIONS(1358), + [anon_sym___init] = ACTIONS(1358), + [anon_sym___exit] = ACTIONS(1358), + [anon_sym___cdecl] = ACTIONS(1358), + [anon_sym___clrcall] = ACTIONS(1358), + [anon_sym___stdcall] = ACTIONS(1358), + [anon_sym___fastcall] = ACTIONS(1358), + [anon_sym___thiscall] = ACTIONS(1358), + [anon_sym___vectorcall] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1358), + [anon_sym___inline__] = ACTIONS(1358), + [anon_sym___forceinline] = ACTIONS(1358), + [anon_sym_thread_local] = ACTIONS(1358), + [anon_sym___thread] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_constexpr] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym___restrict__] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym__Noreturn] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_alignas] = ACTIONS(1358), + [anon_sym__Alignas] = ACTIONS(1358), + [sym_primitive_type] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym___try] = ACTIONS(1358), + [anon_sym___leave] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1358), + [anon_sym___alignof__] = ACTIONS(1358), + [anon_sym___alignof] = ACTIONS(1358), + [anon_sym__alignof] = ACTIONS(1358), + [anon_sym_alignof] = ACTIONS(1358), + [anon_sym__Alignof] = ACTIONS(1358), + [anon_sym_offsetof] = ACTIONS(1358), + [anon_sym__Generic] = ACTIONS(1358), + [anon_sym_asm] = ACTIONS(1358), + [anon_sym___asm__] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1360), + [anon_sym_u_SQUOTE] = ACTIONS(1360), + [anon_sym_U_SQUOTE] = ACTIONS(1360), + [anon_sym_u8_SQUOTE] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_L_DQUOTE] = ACTIONS(1360), + [anon_sym_u_DQUOTE] = ACTIONS(1360), + [anon_sym_U_DQUOTE] = ACTIONS(1360), + [anon_sym_u8_DQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [anon_sym_NULL] = ACTIONS(1358), + [anon_sym_nullptr] = ACTIONS(1358), [sym_comment] = ACTIONS(5), }, - [268] = { - [sym_identifier] = ACTIONS(1302), + [249] = { + [sym_identifier] = ACTIONS(1354), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1302), - [aux_sym_preproc_def_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), - [sym_preproc_directive] = ACTIONS(1302), - [anon_sym_LPAREN2] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym___extension__] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym___attribute__] = ACTIONS(1302), - [anon_sym___scanf] = ACTIONS(1302), - [anon_sym___printf] = ACTIONS(1302), - [anon_sym___read_mostly] = ACTIONS(1302), - [anon_sym___must_hold] = ACTIONS(1302), - [anon_sym___ro_after_init] = ACTIONS(1302), - [anon_sym___noreturn] = ACTIONS(1302), - [anon_sym___cold] = ACTIONS(1302), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), - [anon_sym___declspec] = ACTIONS(1302), - [anon_sym___init] = ACTIONS(1302), - [anon_sym___exit] = ACTIONS(1302), - [anon_sym___cdecl] = ACTIONS(1302), - [anon_sym___clrcall] = ACTIONS(1302), - [anon_sym___stdcall] = ACTIONS(1302), - [anon_sym___fastcall] = ACTIONS(1302), - [anon_sym___thiscall] = ACTIONS(1302), - [anon_sym___vectorcall] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1304), - [anon_sym_signed] = ACTIONS(1302), - [anon_sym_unsigned] = ACTIONS(1302), - [anon_sym_long] = ACTIONS(1302), - [anon_sym_short] = ACTIONS(1302), - [anon_sym_static] = ACTIONS(1302), - [anon_sym_auto] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_inline] = ACTIONS(1302), - [anon_sym___inline] = ACTIONS(1302), - [anon_sym___inline__] = ACTIONS(1302), - [anon_sym___forceinline] = ACTIONS(1302), - [anon_sym_thread_local] = ACTIONS(1302), - [anon_sym___thread] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_constexpr] = ACTIONS(1302), - [anon_sym_volatile] = ACTIONS(1302), - [anon_sym_restrict] = ACTIONS(1302), - [anon_sym___restrict__] = ACTIONS(1302), - [anon_sym__Atomic] = ACTIONS(1302), - [anon_sym__Noreturn] = ACTIONS(1302), - [anon_sym_noreturn] = ACTIONS(1302), - [anon_sym_alignas] = ACTIONS(1302), - [anon_sym__Alignas] = ACTIONS(1302), - [sym_primitive_type] = ACTIONS(1302), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_union] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_else] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1302), - [anon_sym_default] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_goto] = ACTIONS(1302), - [anon_sym___try] = ACTIONS(1302), - [anon_sym___leave] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_sizeof] = ACTIONS(1302), - [anon_sym___alignof__] = ACTIONS(1302), - [anon_sym___alignof] = ACTIONS(1302), - [anon_sym__alignof] = ACTIONS(1302), - [anon_sym_alignof] = ACTIONS(1302), - [anon_sym__Alignof] = ACTIONS(1302), - [anon_sym_offsetof] = ACTIONS(1302), - [anon_sym__Generic] = ACTIONS(1302), - [anon_sym_asm] = ACTIONS(1302), - [anon_sym___asm__] = ACTIONS(1302), - [sym_number_literal] = ACTIONS(1304), - [anon_sym_L_SQUOTE] = ACTIONS(1304), - [anon_sym_u_SQUOTE] = ACTIONS(1304), - [anon_sym_U_SQUOTE] = ACTIONS(1304), - [anon_sym_u8_SQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_L_DQUOTE] = ACTIONS(1304), - [anon_sym_u_DQUOTE] = ACTIONS(1304), - [anon_sym_U_DQUOTE] = ACTIONS(1304), - [anon_sym_u8_DQUOTE] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym_true] = ACTIONS(1302), - [sym_false] = ACTIONS(1302), - [anon_sym_NULL] = ACTIONS(1302), - [anon_sym_nullptr] = ACTIONS(1302), - [sym_comment] = ACTIONS(5), - }, - [269] = { - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_identifier] = ACTIONS(1306), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym___scanf] = ACTIONS(1306), - [anon_sym___printf] = ACTIONS(1306), - [anon_sym___read_mostly] = ACTIONS(1306), - [anon_sym___must_hold] = ACTIONS(1306), - [anon_sym___ro_after_init] = ACTIONS(1306), - [anon_sym___noreturn] = ACTIONS(1306), - [anon_sym___cold] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___init] = ACTIONS(1306), - [anon_sym___exit] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [anon_sym_alignas] = ACTIONS(1306), - [anon_sym__Alignas] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1354), + [aux_sym_preproc_def_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token2] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), + [sym_preproc_directive] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym___extension__] = ACTIONS(1354), + [anon_sym_typedef] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym___attribute__] = ACTIONS(1354), + [anon_sym___scanf] = ACTIONS(1354), + [anon_sym___printf] = ACTIONS(1354), + [anon_sym___read_mostly] = ACTIONS(1354), + [anon_sym___must_hold] = ACTIONS(1354), + [anon_sym___ro_after_init] = ACTIONS(1354), + [anon_sym___noreturn] = ACTIONS(1354), + [anon_sym___cold] = ACTIONS(1354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym___declspec] = ACTIONS(1354), + [anon_sym___init] = ACTIONS(1354), + [anon_sym___exit] = ACTIONS(1354), + [anon_sym___cdecl] = ACTIONS(1354), + [anon_sym___clrcall] = ACTIONS(1354), + [anon_sym___stdcall] = ACTIONS(1354), + [anon_sym___fastcall] = ACTIONS(1354), + [anon_sym___thiscall] = ACTIONS(1354), + [anon_sym___vectorcall] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_signed] = ACTIONS(1354), + [anon_sym_unsigned] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_auto] = ACTIONS(1354), + [anon_sym_register] = ACTIONS(1354), + [anon_sym_inline] = ACTIONS(1354), + [anon_sym___inline] = ACTIONS(1354), + [anon_sym___inline__] = ACTIONS(1354), + [anon_sym___forceinline] = ACTIONS(1354), + [anon_sym_thread_local] = ACTIONS(1354), + [anon_sym___thread] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_constexpr] = ACTIONS(1354), + [anon_sym_volatile] = ACTIONS(1354), + [anon_sym_restrict] = ACTIONS(1354), + [anon_sym___restrict__] = ACTIONS(1354), + [anon_sym__Atomic] = ACTIONS(1354), + [anon_sym__Noreturn] = ACTIONS(1354), + [anon_sym_noreturn] = ACTIONS(1354), + [anon_sym_alignas] = ACTIONS(1354), + [anon_sym__Alignas] = ACTIONS(1354), + [sym_primitive_type] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_else] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1354), + [anon_sym_case] = ACTIONS(1354), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_goto] = ACTIONS(1354), + [anon_sym___try] = ACTIONS(1354), + [anon_sym___leave] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_sizeof] = ACTIONS(1354), + [anon_sym___alignof__] = ACTIONS(1354), + [anon_sym___alignof] = ACTIONS(1354), + [anon_sym__alignof] = ACTIONS(1354), + [anon_sym_alignof] = ACTIONS(1354), + [anon_sym__Alignof] = ACTIONS(1354), + [anon_sym_offsetof] = ACTIONS(1354), + [anon_sym__Generic] = ACTIONS(1354), + [anon_sym_asm] = ACTIONS(1354), + [anon_sym___asm__] = ACTIONS(1354), + [sym_number_literal] = ACTIONS(1356), + [anon_sym_L_SQUOTE] = ACTIONS(1356), + [anon_sym_u_SQUOTE] = ACTIONS(1356), + [anon_sym_U_SQUOTE] = ACTIONS(1356), + [anon_sym_u8_SQUOTE] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_L_DQUOTE] = ACTIONS(1356), + [anon_sym_u_DQUOTE] = ACTIONS(1356), + [anon_sym_U_DQUOTE] = ACTIONS(1356), + [anon_sym_u8_DQUOTE] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym_true] = ACTIONS(1354), + [sym_false] = ACTIONS(1354), + [anon_sym_NULL] = ACTIONS(1354), + [anon_sym_nullptr] = ACTIONS(1354), [sym_comment] = ACTIONS(5), }, - [270] = { - [ts_builtin_sym_end] = ACTIONS(1336), - [sym_identifier] = ACTIONS(1334), + [250] = { + [sym_identifier] = ACTIONS(1278), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1334), - [aux_sym_preproc_def_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), - [sym_preproc_directive] = ACTIONS(1334), - [anon_sym_LPAREN2] = ACTIONS(1336), - [anon_sym_BANG] = ACTIONS(1336), - [anon_sym_TILDE] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym___extension__] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1334), - [anon_sym___attribute__] = ACTIONS(1334), - [anon_sym___scanf] = ACTIONS(1334), - [anon_sym___printf] = ACTIONS(1334), - [anon_sym___read_mostly] = ACTIONS(1334), - [anon_sym___must_hold] = ACTIONS(1334), - [anon_sym___ro_after_init] = ACTIONS(1334), - [anon_sym___noreturn] = ACTIONS(1334), - [anon_sym___cold] = ACTIONS(1334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), - [anon_sym___declspec] = ACTIONS(1334), - [anon_sym___init] = ACTIONS(1334), - [anon_sym___exit] = ACTIONS(1334), - [anon_sym___cdecl] = ACTIONS(1334), - [anon_sym___clrcall] = ACTIONS(1334), - [anon_sym___stdcall] = ACTIONS(1334), - [anon_sym___fastcall] = ACTIONS(1334), - [anon_sym___thiscall] = ACTIONS(1334), - [anon_sym___vectorcall] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_signed] = ACTIONS(1334), - [anon_sym_unsigned] = ACTIONS(1334), - [anon_sym_long] = ACTIONS(1334), - [anon_sym_short] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1334), - [anon_sym_auto] = ACTIONS(1334), - [anon_sym_register] = ACTIONS(1334), - [anon_sym_inline] = ACTIONS(1334), - [anon_sym___inline] = ACTIONS(1334), - [anon_sym___inline__] = ACTIONS(1334), - [anon_sym___forceinline] = ACTIONS(1334), - [anon_sym_thread_local] = ACTIONS(1334), - [anon_sym___thread] = ACTIONS(1334), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_constexpr] = ACTIONS(1334), - [anon_sym_volatile] = ACTIONS(1334), - [anon_sym_restrict] = ACTIONS(1334), - [anon_sym___restrict__] = ACTIONS(1334), - [anon_sym__Atomic] = ACTIONS(1334), - [anon_sym__Noreturn] = ACTIONS(1334), - [anon_sym_noreturn] = ACTIONS(1334), - [anon_sym_alignas] = ACTIONS(1334), - [anon_sym__Alignas] = ACTIONS(1334), - [sym_primitive_type] = ACTIONS(1334), - [anon_sym_enum] = ACTIONS(1334), - [anon_sym_struct] = ACTIONS(1334), - [anon_sym_union] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_else] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_case] = ACTIONS(1334), - [anon_sym_default] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [anon_sym_do] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_goto] = ACTIONS(1334), - [anon_sym___try] = ACTIONS(1334), - [anon_sym___leave] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_sizeof] = ACTIONS(1334), - [anon_sym___alignof__] = ACTIONS(1334), - [anon_sym___alignof] = ACTIONS(1334), - [anon_sym__alignof] = ACTIONS(1334), - [anon_sym_alignof] = ACTIONS(1334), - [anon_sym__Alignof] = ACTIONS(1334), - [anon_sym_offsetof] = ACTIONS(1334), - [anon_sym__Generic] = ACTIONS(1334), - [anon_sym_asm] = ACTIONS(1334), - [anon_sym___asm__] = ACTIONS(1334), - [sym_number_literal] = ACTIONS(1336), - [anon_sym_L_SQUOTE] = ACTIONS(1336), - [anon_sym_u_SQUOTE] = ACTIONS(1336), - [anon_sym_U_SQUOTE] = ACTIONS(1336), - [anon_sym_u8_SQUOTE] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_L_DQUOTE] = ACTIONS(1336), - [anon_sym_u_DQUOTE] = ACTIONS(1336), - [anon_sym_U_DQUOTE] = ACTIONS(1336), - [anon_sym_u8_DQUOTE] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_true] = ACTIONS(1334), - [sym_false] = ACTIONS(1334), - [anon_sym_NULL] = ACTIONS(1334), - [anon_sym_nullptr] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1278), + [aux_sym_preproc_def_token1] = ACTIONS(1278), + [aux_sym_preproc_if_token1] = ACTIONS(1278), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1278), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1278), + [sym_preproc_directive] = ACTIONS(1278), + [anon_sym_LPAREN2] = ACTIONS(1280), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1278), + [anon_sym_PLUS] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_AMP] = ACTIONS(1280), + [anon_sym_SEMI] = ACTIONS(1280), + [anon_sym___extension__] = ACTIONS(1278), + [anon_sym_typedef] = ACTIONS(1278), + [anon_sym_extern] = ACTIONS(1278), + [anon_sym___attribute__] = ACTIONS(1278), + [anon_sym___scanf] = ACTIONS(1278), + [anon_sym___printf] = ACTIONS(1278), + [anon_sym___read_mostly] = ACTIONS(1278), + [anon_sym___must_hold] = ACTIONS(1278), + [anon_sym___ro_after_init] = ACTIONS(1278), + [anon_sym___noreturn] = ACTIONS(1278), + [anon_sym___cold] = ACTIONS(1278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1280), + [anon_sym___declspec] = ACTIONS(1278), + [anon_sym___init] = ACTIONS(1278), + [anon_sym___exit] = ACTIONS(1278), + [anon_sym___cdecl] = ACTIONS(1278), + [anon_sym___clrcall] = ACTIONS(1278), + [anon_sym___stdcall] = ACTIONS(1278), + [anon_sym___fastcall] = ACTIONS(1278), + [anon_sym___thiscall] = ACTIONS(1278), + [anon_sym___vectorcall] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(1280), + [anon_sym_RBRACE] = ACTIONS(1280), + [anon_sym_signed] = ACTIONS(1278), + [anon_sym_unsigned] = ACTIONS(1278), + [anon_sym_long] = ACTIONS(1278), + [anon_sym_short] = ACTIONS(1278), + [anon_sym_static] = ACTIONS(1278), + [anon_sym_auto] = ACTIONS(1278), + [anon_sym_register] = ACTIONS(1278), + [anon_sym_inline] = ACTIONS(1278), + [anon_sym___inline] = ACTIONS(1278), + [anon_sym___inline__] = ACTIONS(1278), + [anon_sym___forceinline] = ACTIONS(1278), + [anon_sym_thread_local] = ACTIONS(1278), + [anon_sym___thread] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1278), + [anon_sym_constexpr] = ACTIONS(1278), + [anon_sym_volatile] = ACTIONS(1278), + [anon_sym_restrict] = ACTIONS(1278), + [anon_sym___restrict__] = ACTIONS(1278), + [anon_sym__Atomic] = ACTIONS(1278), + [anon_sym__Noreturn] = ACTIONS(1278), + [anon_sym_noreturn] = ACTIONS(1278), + [anon_sym_alignas] = ACTIONS(1278), + [anon_sym__Alignas] = ACTIONS(1278), + [sym_primitive_type] = ACTIONS(1278), + [anon_sym_enum] = ACTIONS(1278), + [anon_sym_struct] = ACTIONS(1278), + [anon_sym_union] = ACTIONS(1278), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_else] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(1278), + [anon_sym_case] = ACTIONS(1278), + [anon_sym_default] = ACTIONS(1278), + [anon_sym_while] = ACTIONS(1278), + [anon_sym_do] = ACTIONS(1278), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_return] = ACTIONS(1278), + [anon_sym_break] = ACTIONS(1278), + [anon_sym_continue] = ACTIONS(1278), + [anon_sym_goto] = ACTIONS(1278), + [anon_sym___try] = ACTIONS(1278), + [anon_sym___leave] = ACTIONS(1278), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_sizeof] = ACTIONS(1278), + [anon_sym___alignof__] = ACTIONS(1278), + [anon_sym___alignof] = ACTIONS(1278), + [anon_sym__alignof] = ACTIONS(1278), + [anon_sym_alignof] = ACTIONS(1278), + [anon_sym__Alignof] = ACTIONS(1278), + [anon_sym_offsetof] = ACTIONS(1278), + [anon_sym__Generic] = ACTIONS(1278), + [anon_sym_asm] = ACTIONS(1278), + [anon_sym___asm__] = ACTIONS(1278), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(1280), + [anon_sym_u_SQUOTE] = ACTIONS(1280), + [anon_sym_U_SQUOTE] = ACTIONS(1280), + [anon_sym_u8_SQUOTE] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1280), + [anon_sym_L_DQUOTE] = ACTIONS(1280), + [anon_sym_u_DQUOTE] = ACTIONS(1280), + [anon_sym_U_DQUOTE] = ACTIONS(1280), + [anon_sym_u8_DQUOTE] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(1280), + [sym_true] = ACTIONS(1278), + [sym_false] = ACTIONS(1278), + [anon_sym_NULL] = ACTIONS(1278), + [anon_sym_nullptr] = ACTIONS(1278), [sym_comment] = ACTIONS(5), }, - [271] = { - [ts_builtin_sym_end] = ACTIONS(1328), - [sym_identifier] = ACTIONS(1326), + [251] = { + [ts_builtin_sym_end] = ACTIONS(1260), + [sym_identifier] = ACTIONS(1258), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1326), - [aux_sym_preproc_def_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), - [sym_preproc_directive] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym___extension__] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym___attribute__] = ACTIONS(1326), - [anon_sym___scanf] = ACTIONS(1326), - [anon_sym___printf] = ACTIONS(1326), - [anon_sym___read_mostly] = ACTIONS(1326), - [anon_sym___must_hold] = ACTIONS(1326), - [anon_sym___ro_after_init] = ACTIONS(1326), - [anon_sym___noreturn] = ACTIONS(1326), - [anon_sym___cold] = ACTIONS(1326), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym___init] = ACTIONS(1326), - [anon_sym___exit] = ACTIONS(1326), - [anon_sym___cdecl] = ACTIONS(1326), - [anon_sym___clrcall] = ACTIONS(1326), - [anon_sym___stdcall] = ACTIONS(1326), - [anon_sym___fastcall] = ACTIONS(1326), - [anon_sym___thiscall] = ACTIONS(1326), - [anon_sym___vectorcall] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), - [anon_sym_short] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_auto] = ACTIONS(1326), - [anon_sym_register] = ACTIONS(1326), - [anon_sym_inline] = ACTIONS(1326), - [anon_sym___inline] = ACTIONS(1326), - [anon_sym___inline__] = ACTIONS(1326), - [anon_sym___forceinline] = ACTIONS(1326), - [anon_sym_thread_local] = ACTIONS(1326), - [anon_sym___thread] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_constexpr] = ACTIONS(1326), - [anon_sym_volatile] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(1326), - [anon_sym___restrict__] = ACTIONS(1326), - [anon_sym__Atomic] = ACTIONS(1326), - [anon_sym__Noreturn] = ACTIONS(1326), - [anon_sym_noreturn] = ACTIONS(1326), - [anon_sym_alignas] = ACTIONS(1326), - [anon_sym__Alignas] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_goto] = ACTIONS(1326), - [anon_sym___try] = ACTIONS(1326), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_sizeof] = ACTIONS(1326), - [anon_sym___alignof__] = ACTIONS(1326), - [anon_sym___alignof] = ACTIONS(1326), - [anon_sym__alignof] = ACTIONS(1326), - [anon_sym_alignof] = ACTIONS(1326), - [anon_sym__Alignof] = ACTIONS(1326), - [anon_sym_offsetof] = ACTIONS(1326), - [anon_sym__Generic] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1326), - [anon_sym___asm__] = ACTIONS(1326), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_L_SQUOTE] = ACTIONS(1328), - [anon_sym_u_SQUOTE] = ACTIONS(1328), - [anon_sym_U_SQUOTE] = ACTIONS(1328), - [anon_sym_u8_SQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_L_DQUOTE] = ACTIONS(1328), - [anon_sym_u_DQUOTE] = ACTIONS(1328), - [anon_sym_U_DQUOTE] = ACTIONS(1328), - [anon_sym_u8_DQUOTE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_true] = ACTIONS(1326), - [sym_false] = ACTIONS(1326), - [anon_sym_NULL] = ACTIONS(1326), - [anon_sym_nullptr] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1258), + [aux_sym_preproc_def_token1] = ACTIONS(1258), + [aux_sym_preproc_if_token1] = ACTIONS(1258), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1258), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1258), + [sym_preproc_directive] = ACTIONS(1258), + [anon_sym_LPAREN2] = ACTIONS(1260), + [anon_sym_BANG] = ACTIONS(1260), + [anon_sym_TILDE] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1260), + [anon_sym_AMP] = ACTIONS(1260), + [anon_sym_SEMI] = ACTIONS(1260), + [anon_sym___extension__] = ACTIONS(1258), + [anon_sym_typedef] = ACTIONS(1258), + [anon_sym_extern] = ACTIONS(1258), + [anon_sym___attribute__] = ACTIONS(1258), + [anon_sym___scanf] = ACTIONS(1258), + [anon_sym___printf] = ACTIONS(1258), + [anon_sym___read_mostly] = ACTIONS(1258), + [anon_sym___must_hold] = ACTIONS(1258), + [anon_sym___ro_after_init] = ACTIONS(1258), + [anon_sym___noreturn] = ACTIONS(1258), + [anon_sym___cold] = ACTIONS(1258), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1260), + [anon_sym___declspec] = ACTIONS(1258), + [anon_sym___init] = ACTIONS(1258), + [anon_sym___exit] = ACTIONS(1258), + [anon_sym___cdecl] = ACTIONS(1258), + [anon_sym___clrcall] = ACTIONS(1258), + [anon_sym___stdcall] = ACTIONS(1258), + [anon_sym___fastcall] = ACTIONS(1258), + [anon_sym___thiscall] = ACTIONS(1258), + [anon_sym___vectorcall] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1260), + [anon_sym_signed] = ACTIONS(1258), + [anon_sym_unsigned] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_static] = ACTIONS(1258), + [anon_sym_auto] = ACTIONS(1258), + [anon_sym_register] = ACTIONS(1258), + [anon_sym_inline] = ACTIONS(1258), + [anon_sym___inline] = ACTIONS(1258), + [anon_sym___inline__] = ACTIONS(1258), + [anon_sym___forceinline] = ACTIONS(1258), + [anon_sym_thread_local] = ACTIONS(1258), + [anon_sym___thread] = ACTIONS(1258), + [anon_sym_const] = ACTIONS(1258), + [anon_sym_constexpr] = ACTIONS(1258), + [anon_sym_volatile] = ACTIONS(1258), + [anon_sym_restrict] = ACTIONS(1258), + [anon_sym___restrict__] = ACTIONS(1258), + [anon_sym__Atomic] = ACTIONS(1258), + [anon_sym__Noreturn] = ACTIONS(1258), + [anon_sym_noreturn] = ACTIONS(1258), + [anon_sym_alignas] = ACTIONS(1258), + [anon_sym__Alignas] = ACTIONS(1258), + [sym_primitive_type] = ACTIONS(1258), + [anon_sym_enum] = ACTIONS(1258), + [anon_sym_struct] = ACTIONS(1258), + [anon_sym_union] = ACTIONS(1258), + [anon_sym_if] = ACTIONS(1258), + [anon_sym_else] = ACTIONS(1258), + [anon_sym_switch] = ACTIONS(1258), + [anon_sym_case] = ACTIONS(1258), + [anon_sym_default] = ACTIONS(1258), + [anon_sym_while] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1258), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_break] = ACTIONS(1258), + [anon_sym_continue] = ACTIONS(1258), + [anon_sym_goto] = ACTIONS(1258), + [anon_sym___try] = ACTIONS(1258), + [anon_sym___leave] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1260), + [anon_sym_sizeof] = ACTIONS(1258), + [anon_sym___alignof__] = ACTIONS(1258), + [anon_sym___alignof] = ACTIONS(1258), + [anon_sym__alignof] = ACTIONS(1258), + [anon_sym_alignof] = ACTIONS(1258), + [anon_sym__Alignof] = ACTIONS(1258), + [anon_sym_offsetof] = ACTIONS(1258), + [anon_sym__Generic] = ACTIONS(1258), + [anon_sym_asm] = ACTIONS(1258), + [anon_sym___asm__] = ACTIONS(1258), + [sym_number_literal] = ACTIONS(1260), + [anon_sym_L_SQUOTE] = ACTIONS(1260), + [anon_sym_u_SQUOTE] = ACTIONS(1260), + [anon_sym_U_SQUOTE] = ACTIONS(1260), + [anon_sym_u8_SQUOTE] = ACTIONS(1260), + [anon_sym_SQUOTE] = ACTIONS(1260), + [anon_sym_L_DQUOTE] = ACTIONS(1260), + [anon_sym_u_DQUOTE] = ACTIONS(1260), + [anon_sym_U_DQUOTE] = ACTIONS(1260), + [anon_sym_u8_DQUOTE] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(1260), + [sym_true] = ACTIONS(1258), + [sym_false] = ACTIONS(1258), + [anon_sym_NULL] = ACTIONS(1258), + [anon_sym_nullptr] = ACTIONS(1258), [sym_comment] = ACTIONS(5), }, - [272] = { - [sym_identifier] = ACTIONS(1294), + [252] = { + [sym_identifier] = ACTIONS(1298), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1294), - [aux_sym_preproc_def_token1] = ACTIONS(1294), - [aux_sym_preproc_if_token1] = ACTIONS(1294), - [aux_sym_preproc_if_token2] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), - [sym_preproc_directive] = ACTIONS(1294), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1296), - [anon_sym_TILDE] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym___extension__] = ACTIONS(1294), - [anon_sym_typedef] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym___attribute__] = ACTIONS(1294), - [anon_sym___scanf] = ACTIONS(1294), - [anon_sym___printf] = ACTIONS(1294), - [anon_sym___read_mostly] = ACTIONS(1294), - [anon_sym___must_hold] = ACTIONS(1294), - [anon_sym___ro_after_init] = ACTIONS(1294), - [anon_sym___noreturn] = ACTIONS(1294), - [anon_sym___cold] = ACTIONS(1294), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1296), - [anon_sym___declspec] = ACTIONS(1294), - [anon_sym___init] = ACTIONS(1294), - [anon_sym___exit] = ACTIONS(1294), - [anon_sym___cdecl] = ACTIONS(1294), - [anon_sym___clrcall] = ACTIONS(1294), - [anon_sym___stdcall] = ACTIONS(1294), - [anon_sym___fastcall] = ACTIONS(1294), - [anon_sym___thiscall] = ACTIONS(1294), - [anon_sym___vectorcall] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_signed] = ACTIONS(1294), - [anon_sym_unsigned] = ACTIONS(1294), - [anon_sym_long] = ACTIONS(1294), - [anon_sym_short] = ACTIONS(1294), - [anon_sym_static] = ACTIONS(1294), - [anon_sym_auto] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_inline] = ACTIONS(1294), - [anon_sym___inline] = ACTIONS(1294), - [anon_sym___inline__] = ACTIONS(1294), - [anon_sym___forceinline] = ACTIONS(1294), - [anon_sym_thread_local] = ACTIONS(1294), - [anon_sym___thread] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [anon_sym_constexpr] = ACTIONS(1294), - [anon_sym_volatile] = ACTIONS(1294), - [anon_sym_restrict] = ACTIONS(1294), - [anon_sym___restrict__] = ACTIONS(1294), - [anon_sym__Atomic] = ACTIONS(1294), - [anon_sym__Noreturn] = ACTIONS(1294), - [anon_sym_noreturn] = ACTIONS(1294), - [anon_sym_alignas] = ACTIONS(1294), - [anon_sym__Alignas] = ACTIONS(1294), - [sym_primitive_type] = ACTIONS(1294), - [anon_sym_enum] = ACTIONS(1294), - [anon_sym_struct] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1294), - [anon_sym_switch] = ACTIONS(1294), - [anon_sym_case] = ACTIONS(1294), - [anon_sym_default] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_goto] = ACTIONS(1294), - [anon_sym___try] = ACTIONS(1294), - [anon_sym___leave] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_sizeof] = ACTIONS(1294), - [anon_sym___alignof__] = ACTIONS(1294), - [anon_sym___alignof] = ACTIONS(1294), - [anon_sym__alignof] = ACTIONS(1294), - [anon_sym_alignof] = ACTIONS(1294), - [anon_sym__Alignof] = ACTIONS(1294), - [anon_sym_offsetof] = ACTIONS(1294), - [anon_sym__Generic] = ACTIONS(1294), - [anon_sym_asm] = ACTIONS(1294), - [anon_sym___asm__] = ACTIONS(1294), - [sym_number_literal] = ACTIONS(1296), - [anon_sym_L_SQUOTE] = ACTIONS(1296), - [anon_sym_u_SQUOTE] = ACTIONS(1296), - [anon_sym_U_SQUOTE] = ACTIONS(1296), - [anon_sym_u8_SQUOTE] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [anon_sym_L_DQUOTE] = ACTIONS(1296), - [anon_sym_u_DQUOTE] = ACTIONS(1296), - [anon_sym_U_DQUOTE] = ACTIONS(1296), - [anon_sym_u8_DQUOTE] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym_true] = ACTIONS(1294), - [sym_false] = ACTIONS(1294), - [anon_sym_NULL] = ACTIONS(1294), - [anon_sym_nullptr] = ACTIONS(1294), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym___scanf] = ACTIONS(1298), + [anon_sym___printf] = ACTIONS(1298), + [anon_sym___read_mostly] = ACTIONS(1298), + [anon_sym___must_hold] = ACTIONS(1298), + [anon_sym___ro_after_init] = ACTIONS(1298), + [anon_sym___noreturn] = ACTIONS(1298), + [anon_sym___cold] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___init] = ACTIONS(1298), + [anon_sym___exit] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [anon_sym_alignas] = ACTIONS(1298), + [anon_sym__Alignas] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(5), }, - [273] = { - [sym_identifier] = ACTIONS(1294), + [253] = { + [sym_identifier] = ACTIONS(1350), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1294), - [aux_sym_preproc_def_token1] = ACTIONS(1294), - [aux_sym_preproc_if_token1] = ACTIONS(1294), - [aux_sym_preproc_if_token2] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), - [sym_preproc_directive] = ACTIONS(1294), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1296), - [anon_sym_TILDE] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym___extension__] = ACTIONS(1294), - [anon_sym_typedef] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym___attribute__] = ACTIONS(1294), - [anon_sym___scanf] = ACTIONS(1294), - [anon_sym___printf] = ACTIONS(1294), - [anon_sym___read_mostly] = ACTIONS(1294), - [anon_sym___must_hold] = ACTIONS(1294), - [anon_sym___ro_after_init] = ACTIONS(1294), - [anon_sym___noreturn] = ACTIONS(1294), - [anon_sym___cold] = ACTIONS(1294), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1296), - [anon_sym___declspec] = ACTIONS(1294), - [anon_sym___init] = ACTIONS(1294), - [anon_sym___exit] = ACTIONS(1294), - [anon_sym___cdecl] = ACTIONS(1294), - [anon_sym___clrcall] = ACTIONS(1294), - [anon_sym___stdcall] = ACTIONS(1294), - [anon_sym___fastcall] = ACTIONS(1294), - [anon_sym___thiscall] = ACTIONS(1294), - [anon_sym___vectorcall] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_signed] = ACTIONS(1294), - [anon_sym_unsigned] = ACTIONS(1294), - [anon_sym_long] = ACTIONS(1294), - [anon_sym_short] = ACTIONS(1294), - [anon_sym_static] = ACTIONS(1294), - [anon_sym_auto] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_inline] = ACTIONS(1294), - [anon_sym___inline] = ACTIONS(1294), - [anon_sym___inline__] = ACTIONS(1294), - [anon_sym___forceinline] = ACTIONS(1294), - [anon_sym_thread_local] = ACTIONS(1294), - [anon_sym___thread] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [anon_sym_constexpr] = ACTIONS(1294), - [anon_sym_volatile] = ACTIONS(1294), - [anon_sym_restrict] = ACTIONS(1294), - [anon_sym___restrict__] = ACTIONS(1294), - [anon_sym__Atomic] = ACTIONS(1294), - [anon_sym__Noreturn] = ACTIONS(1294), - [anon_sym_noreturn] = ACTIONS(1294), - [anon_sym_alignas] = ACTIONS(1294), - [anon_sym__Alignas] = ACTIONS(1294), - [sym_primitive_type] = ACTIONS(1294), - [anon_sym_enum] = ACTIONS(1294), - [anon_sym_struct] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1294), - [anon_sym_switch] = ACTIONS(1294), - [anon_sym_case] = ACTIONS(1294), - [anon_sym_default] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_goto] = ACTIONS(1294), - [anon_sym___try] = ACTIONS(1294), - [anon_sym___leave] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_sizeof] = ACTIONS(1294), - [anon_sym___alignof__] = ACTIONS(1294), - [anon_sym___alignof] = ACTIONS(1294), - [anon_sym__alignof] = ACTIONS(1294), - [anon_sym_alignof] = ACTIONS(1294), - [anon_sym__Alignof] = ACTIONS(1294), - [anon_sym_offsetof] = ACTIONS(1294), - [anon_sym__Generic] = ACTIONS(1294), - [anon_sym_asm] = ACTIONS(1294), - [anon_sym___asm__] = ACTIONS(1294), - [sym_number_literal] = ACTIONS(1296), - [anon_sym_L_SQUOTE] = ACTIONS(1296), - [anon_sym_u_SQUOTE] = ACTIONS(1296), - [anon_sym_U_SQUOTE] = ACTIONS(1296), - [anon_sym_u8_SQUOTE] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [anon_sym_L_DQUOTE] = ACTIONS(1296), - [anon_sym_u_DQUOTE] = ACTIONS(1296), - [anon_sym_U_DQUOTE] = ACTIONS(1296), - [anon_sym_u8_DQUOTE] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym_true] = ACTIONS(1294), - [sym_false] = ACTIONS(1294), - [anon_sym_NULL] = ACTIONS(1294), - [anon_sym_nullptr] = ACTIONS(1294), - [sym_comment] = ACTIONS(5), - }, - [274] = { - [sym_identifier] = ACTIONS(1274), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1274), - [aux_sym_preproc_def_token1] = ACTIONS(1274), - [aux_sym_preproc_if_token1] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), - [sym_preproc_directive] = ACTIONS(1274), - [anon_sym_LPAREN2] = ACTIONS(1276), - [anon_sym_BANG] = ACTIONS(1276), - [anon_sym_TILDE] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym___extension__] = ACTIONS(1274), - [anon_sym_typedef] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym___attribute__] = ACTIONS(1274), - [anon_sym___scanf] = ACTIONS(1274), - [anon_sym___printf] = ACTIONS(1274), - [anon_sym___read_mostly] = ACTIONS(1274), - [anon_sym___must_hold] = ACTIONS(1274), - [anon_sym___ro_after_init] = ACTIONS(1274), - [anon_sym___noreturn] = ACTIONS(1274), - [anon_sym___cold] = ACTIONS(1274), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1276), - [anon_sym___declspec] = ACTIONS(1274), - [anon_sym___init] = ACTIONS(1274), - [anon_sym___exit] = ACTIONS(1274), - [anon_sym___cdecl] = ACTIONS(1274), - [anon_sym___clrcall] = ACTIONS(1274), - [anon_sym___stdcall] = ACTIONS(1274), - [anon_sym___fastcall] = ACTIONS(1274), - [anon_sym___thiscall] = ACTIONS(1274), - [anon_sym___vectorcall] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_RBRACE] = ACTIONS(1276), - [anon_sym_signed] = ACTIONS(1274), - [anon_sym_unsigned] = ACTIONS(1274), - [anon_sym_long] = ACTIONS(1274), - [anon_sym_short] = ACTIONS(1274), - [anon_sym_static] = ACTIONS(1274), - [anon_sym_auto] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_inline] = ACTIONS(1274), - [anon_sym___inline] = ACTIONS(1274), - [anon_sym___inline__] = ACTIONS(1274), - [anon_sym___forceinline] = ACTIONS(1274), - [anon_sym_thread_local] = ACTIONS(1274), - [anon_sym___thread] = ACTIONS(1274), - [anon_sym_const] = ACTIONS(1274), - [anon_sym_constexpr] = ACTIONS(1274), - [anon_sym_volatile] = ACTIONS(1274), - [anon_sym_restrict] = ACTIONS(1274), - [anon_sym___restrict__] = ACTIONS(1274), - [anon_sym__Atomic] = ACTIONS(1274), - [anon_sym__Noreturn] = ACTIONS(1274), - [anon_sym_noreturn] = ACTIONS(1274), - [anon_sym_alignas] = ACTIONS(1274), - [anon_sym__Alignas] = ACTIONS(1274), - [sym_primitive_type] = ACTIONS(1274), - [anon_sym_enum] = ACTIONS(1274), - [anon_sym_struct] = ACTIONS(1274), - [anon_sym_union] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_else] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(1274), - [anon_sym_case] = ACTIONS(1274), - [anon_sym_default] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_do] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_goto] = ACTIONS(1274), - [anon_sym___try] = ACTIONS(1274), - [anon_sym___leave] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_sizeof] = ACTIONS(1274), - [anon_sym___alignof__] = ACTIONS(1274), - [anon_sym___alignof] = ACTIONS(1274), - [anon_sym__alignof] = ACTIONS(1274), - [anon_sym_alignof] = ACTIONS(1274), - [anon_sym__Alignof] = ACTIONS(1274), - [anon_sym_offsetof] = ACTIONS(1274), - [anon_sym__Generic] = ACTIONS(1274), - [anon_sym_asm] = ACTIONS(1274), - [anon_sym___asm__] = ACTIONS(1274), - [sym_number_literal] = ACTIONS(1276), - [anon_sym_L_SQUOTE] = ACTIONS(1276), - [anon_sym_u_SQUOTE] = ACTIONS(1276), - [anon_sym_U_SQUOTE] = ACTIONS(1276), - [anon_sym_u8_SQUOTE] = ACTIONS(1276), - [anon_sym_SQUOTE] = ACTIONS(1276), - [anon_sym_L_DQUOTE] = ACTIONS(1276), - [anon_sym_u_DQUOTE] = ACTIONS(1276), - [anon_sym_U_DQUOTE] = ACTIONS(1276), - [anon_sym_u8_DQUOTE] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym_true] = ACTIONS(1274), - [sym_false] = ACTIONS(1274), - [anon_sym_NULL] = ACTIONS(1274), - [anon_sym_nullptr] = ACTIONS(1274), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym___scanf] = ACTIONS(1350), + [anon_sym___printf] = ACTIONS(1350), + [anon_sym___read_mostly] = ACTIONS(1350), + [anon_sym___must_hold] = ACTIONS(1350), + [anon_sym___ro_after_init] = ACTIONS(1350), + [anon_sym___noreturn] = ACTIONS(1350), + [anon_sym___cold] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___init] = ACTIONS(1350), + [anon_sym___exit] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [anon_sym_alignas] = ACTIONS(1350), + [anon_sym__Alignas] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(5), }, - [275] = { - [sym_identifier] = ACTIONS(1274), + [254] = { + [ts_builtin_sym_end] = ACTIONS(1332), + [sym_identifier] = ACTIONS(1330), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1274), - [aux_sym_preproc_def_token1] = ACTIONS(1274), - [aux_sym_preproc_if_token1] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), - [sym_preproc_directive] = ACTIONS(1274), - [anon_sym_LPAREN2] = ACTIONS(1276), - [anon_sym_BANG] = ACTIONS(1276), - [anon_sym_TILDE] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym___extension__] = ACTIONS(1274), - [anon_sym_typedef] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym___attribute__] = ACTIONS(1274), - [anon_sym___scanf] = ACTIONS(1274), - [anon_sym___printf] = ACTIONS(1274), - [anon_sym___read_mostly] = ACTIONS(1274), - [anon_sym___must_hold] = ACTIONS(1274), - [anon_sym___ro_after_init] = ACTIONS(1274), - [anon_sym___noreturn] = ACTIONS(1274), - [anon_sym___cold] = ACTIONS(1274), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1276), - [anon_sym___declspec] = ACTIONS(1274), - [anon_sym___init] = ACTIONS(1274), - [anon_sym___exit] = ACTIONS(1274), - [anon_sym___cdecl] = ACTIONS(1274), - [anon_sym___clrcall] = ACTIONS(1274), - [anon_sym___stdcall] = ACTIONS(1274), - [anon_sym___fastcall] = ACTIONS(1274), - [anon_sym___thiscall] = ACTIONS(1274), - [anon_sym___vectorcall] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_RBRACE] = ACTIONS(1276), - [anon_sym_signed] = ACTIONS(1274), - [anon_sym_unsigned] = ACTIONS(1274), - [anon_sym_long] = ACTIONS(1274), - [anon_sym_short] = ACTIONS(1274), - [anon_sym_static] = ACTIONS(1274), - [anon_sym_auto] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_inline] = ACTIONS(1274), - [anon_sym___inline] = ACTIONS(1274), - [anon_sym___inline__] = ACTIONS(1274), - [anon_sym___forceinline] = ACTIONS(1274), - [anon_sym_thread_local] = ACTIONS(1274), - [anon_sym___thread] = ACTIONS(1274), - [anon_sym_const] = ACTIONS(1274), - [anon_sym_constexpr] = ACTIONS(1274), - [anon_sym_volatile] = ACTIONS(1274), - [anon_sym_restrict] = ACTIONS(1274), - [anon_sym___restrict__] = ACTIONS(1274), - [anon_sym__Atomic] = ACTIONS(1274), - [anon_sym__Noreturn] = ACTIONS(1274), - [anon_sym_noreturn] = ACTIONS(1274), - [anon_sym_alignas] = ACTIONS(1274), - [anon_sym__Alignas] = ACTIONS(1274), - [sym_primitive_type] = ACTIONS(1274), - [anon_sym_enum] = ACTIONS(1274), - [anon_sym_struct] = ACTIONS(1274), - [anon_sym_union] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_else] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(1274), - [anon_sym_case] = ACTIONS(1274), - [anon_sym_default] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_do] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_goto] = ACTIONS(1274), - [anon_sym___try] = ACTIONS(1274), - [anon_sym___leave] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_sizeof] = ACTIONS(1274), - [anon_sym___alignof__] = ACTIONS(1274), - [anon_sym___alignof] = ACTIONS(1274), - [anon_sym__alignof] = ACTIONS(1274), - [anon_sym_alignof] = ACTIONS(1274), - [anon_sym__Alignof] = ACTIONS(1274), - [anon_sym_offsetof] = ACTIONS(1274), - [anon_sym__Generic] = ACTIONS(1274), - [anon_sym_asm] = ACTIONS(1274), - [anon_sym___asm__] = ACTIONS(1274), - [sym_number_literal] = ACTIONS(1276), - [anon_sym_L_SQUOTE] = ACTIONS(1276), - [anon_sym_u_SQUOTE] = ACTIONS(1276), - [anon_sym_U_SQUOTE] = ACTIONS(1276), - [anon_sym_u8_SQUOTE] = ACTIONS(1276), - [anon_sym_SQUOTE] = ACTIONS(1276), - [anon_sym_L_DQUOTE] = ACTIONS(1276), - [anon_sym_u_DQUOTE] = ACTIONS(1276), - [anon_sym_U_DQUOTE] = ACTIONS(1276), - [anon_sym_u8_DQUOTE] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym_true] = ACTIONS(1274), - [sym_false] = ACTIONS(1274), - [anon_sym_NULL] = ACTIONS(1274), - [anon_sym_nullptr] = ACTIONS(1274), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym___scanf] = ACTIONS(1330), + [anon_sym___printf] = ACTIONS(1330), + [anon_sym___read_mostly] = ACTIONS(1330), + [anon_sym___must_hold] = ACTIONS(1330), + [anon_sym___ro_after_init] = ACTIONS(1330), + [anon_sym___noreturn] = ACTIONS(1330), + [anon_sym___cold] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___init] = ACTIONS(1330), + [anon_sym___exit] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [anon_sym_alignas] = ACTIONS(1330), + [anon_sym__Alignas] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_else] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), [sym_comment] = ACTIONS(5), }, - [276] = { - [sym_identifier] = ACTIONS(1294), + [255] = { + [ts_builtin_sym_end] = ACTIONS(1268), + [sym_identifier] = ACTIONS(1266), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1294), - [aux_sym_preproc_def_token1] = ACTIONS(1294), - [aux_sym_preproc_if_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), - [sym_preproc_directive] = ACTIONS(1294), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1296), - [anon_sym_TILDE] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym___extension__] = ACTIONS(1294), - [anon_sym_typedef] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym___attribute__] = ACTIONS(1294), - [anon_sym___scanf] = ACTIONS(1294), - [anon_sym___printf] = ACTIONS(1294), - [anon_sym___read_mostly] = ACTIONS(1294), - [anon_sym___must_hold] = ACTIONS(1294), - [anon_sym___ro_after_init] = ACTIONS(1294), - [anon_sym___noreturn] = ACTIONS(1294), - [anon_sym___cold] = ACTIONS(1294), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1296), - [anon_sym___declspec] = ACTIONS(1294), - [anon_sym___init] = ACTIONS(1294), - [anon_sym___exit] = ACTIONS(1294), - [anon_sym___cdecl] = ACTIONS(1294), - [anon_sym___clrcall] = ACTIONS(1294), - [anon_sym___stdcall] = ACTIONS(1294), - [anon_sym___fastcall] = ACTIONS(1294), - [anon_sym___thiscall] = ACTIONS(1294), - [anon_sym___vectorcall] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(1296), - [anon_sym_signed] = ACTIONS(1294), - [anon_sym_unsigned] = ACTIONS(1294), - [anon_sym_long] = ACTIONS(1294), - [anon_sym_short] = ACTIONS(1294), - [anon_sym_static] = ACTIONS(1294), - [anon_sym_auto] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_inline] = ACTIONS(1294), - [anon_sym___inline] = ACTIONS(1294), - [anon_sym___inline__] = ACTIONS(1294), - [anon_sym___forceinline] = ACTIONS(1294), - [anon_sym_thread_local] = ACTIONS(1294), - [anon_sym___thread] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [anon_sym_constexpr] = ACTIONS(1294), - [anon_sym_volatile] = ACTIONS(1294), - [anon_sym_restrict] = ACTIONS(1294), - [anon_sym___restrict__] = ACTIONS(1294), - [anon_sym__Atomic] = ACTIONS(1294), - [anon_sym__Noreturn] = ACTIONS(1294), - [anon_sym_noreturn] = ACTIONS(1294), - [anon_sym_alignas] = ACTIONS(1294), - [anon_sym__Alignas] = ACTIONS(1294), - [sym_primitive_type] = ACTIONS(1294), - [anon_sym_enum] = ACTIONS(1294), - [anon_sym_struct] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1294), - [anon_sym_switch] = ACTIONS(1294), - [anon_sym_case] = ACTIONS(1294), - [anon_sym_default] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_goto] = ACTIONS(1294), - [anon_sym___try] = ACTIONS(1294), - [anon_sym___leave] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_sizeof] = ACTIONS(1294), - [anon_sym___alignof__] = ACTIONS(1294), - [anon_sym___alignof] = ACTIONS(1294), - [anon_sym__alignof] = ACTIONS(1294), - [anon_sym_alignof] = ACTIONS(1294), - [anon_sym__Alignof] = ACTIONS(1294), - [anon_sym_offsetof] = ACTIONS(1294), - [anon_sym__Generic] = ACTIONS(1294), - [anon_sym_asm] = ACTIONS(1294), - [anon_sym___asm__] = ACTIONS(1294), - [sym_number_literal] = ACTIONS(1296), - [anon_sym_L_SQUOTE] = ACTIONS(1296), - [anon_sym_u_SQUOTE] = ACTIONS(1296), - [anon_sym_U_SQUOTE] = ACTIONS(1296), - [anon_sym_u8_SQUOTE] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [anon_sym_L_DQUOTE] = ACTIONS(1296), - [anon_sym_u_DQUOTE] = ACTIONS(1296), - [anon_sym_U_DQUOTE] = ACTIONS(1296), - [anon_sym_u8_DQUOTE] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym_true] = ACTIONS(1294), - [sym_false] = ACTIONS(1294), - [anon_sym_NULL] = ACTIONS(1294), - [anon_sym_nullptr] = ACTIONS(1294), - [sym_comment] = ACTIONS(5), - }, - [277] = { - [ts_builtin_sym_end] = ACTIONS(1324), - [sym_identifier] = ACTIONS(1322), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1322), - [aux_sym_preproc_def_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_LPAREN2] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym___extension__] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym___attribute__] = ACTIONS(1322), - [anon_sym___scanf] = ACTIONS(1322), - [anon_sym___printf] = ACTIONS(1322), - [anon_sym___read_mostly] = ACTIONS(1322), - [anon_sym___must_hold] = ACTIONS(1322), - [anon_sym___ro_after_init] = ACTIONS(1322), - [anon_sym___noreturn] = ACTIONS(1322), - [anon_sym___cold] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), - [anon_sym___declspec] = ACTIONS(1322), - [anon_sym___init] = ACTIONS(1322), - [anon_sym___exit] = ACTIONS(1322), - [anon_sym___cdecl] = ACTIONS(1322), - [anon_sym___clrcall] = ACTIONS(1322), - [anon_sym___stdcall] = ACTIONS(1322), - [anon_sym___fastcall] = ACTIONS(1322), - [anon_sym___thiscall] = ACTIONS(1322), - [anon_sym___vectorcall] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1322), - [anon_sym_unsigned] = ACTIONS(1322), - [anon_sym_long] = ACTIONS(1322), - [anon_sym_short] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_auto] = ACTIONS(1322), - [anon_sym_register] = ACTIONS(1322), - [anon_sym_inline] = ACTIONS(1322), - [anon_sym___inline] = ACTIONS(1322), - [anon_sym___inline__] = ACTIONS(1322), - [anon_sym___forceinline] = ACTIONS(1322), - [anon_sym_thread_local] = ACTIONS(1322), - [anon_sym___thread] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_constexpr] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(1322), - [anon_sym_restrict] = ACTIONS(1322), - [anon_sym___restrict__] = ACTIONS(1322), - [anon_sym__Atomic] = ACTIONS(1322), - [anon_sym__Noreturn] = ACTIONS(1322), - [anon_sym_noreturn] = ACTIONS(1322), - [anon_sym_alignas] = ACTIONS(1322), - [anon_sym__Alignas] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_goto] = ACTIONS(1322), - [anon_sym___try] = ACTIONS(1322), - [anon_sym___leave] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_sizeof] = ACTIONS(1322), - [anon_sym___alignof__] = ACTIONS(1322), - [anon_sym___alignof] = ACTIONS(1322), - [anon_sym__alignof] = ACTIONS(1322), - [anon_sym_alignof] = ACTIONS(1322), - [anon_sym__Alignof] = ACTIONS(1322), - [anon_sym_offsetof] = ACTIONS(1322), - [anon_sym__Generic] = ACTIONS(1322), - [anon_sym_asm] = ACTIONS(1322), - [anon_sym___asm__] = ACTIONS(1322), - [sym_number_literal] = ACTIONS(1324), - [anon_sym_L_SQUOTE] = ACTIONS(1324), - [anon_sym_u_SQUOTE] = ACTIONS(1324), - [anon_sym_U_SQUOTE] = ACTIONS(1324), - [anon_sym_u8_SQUOTE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_L_DQUOTE] = ACTIONS(1324), - [anon_sym_u_DQUOTE] = ACTIONS(1324), - [anon_sym_U_DQUOTE] = ACTIONS(1324), - [anon_sym_u8_DQUOTE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [anon_sym_NULL] = ACTIONS(1322), - [anon_sym_nullptr] = ACTIONS(1322), + [aux_sym_preproc_include_token1] = ACTIONS(1266), + [aux_sym_preproc_def_token1] = ACTIONS(1266), + [aux_sym_preproc_if_token1] = ACTIONS(1266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1266), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1266), + [sym_preproc_directive] = ACTIONS(1266), + [anon_sym_LPAREN2] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_TILDE] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_AMP] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1268), + [anon_sym___extension__] = ACTIONS(1266), + [anon_sym_typedef] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym___attribute__] = ACTIONS(1266), + [anon_sym___scanf] = ACTIONS(1266), + [anon_sym___printf] = ACTIONS(1266), + [anon_sym___read_mostly] = ACTIONS(1266), + [anon_sym___must_hold] = ACTIONS(1266), + [anon_sym___ro_after_init] = ACTIONS(1266), + [anon_sym___noreturn] = ACTIONS(1266), + [anon_sym___cold] = ACTIONS(1266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1268), + [anon_sym___declspec] = ACTIONS(1266), + [anon_sym___init] = ACTIONS(1266), + [anon_sym___exit] = ACTIONS(1266), + [anon_sym___cdecl] = ACTIONS(1266), + [anon_sym___clrcall] = ACTIONS(1266), + [anon_sym___stdcall] = ACTIONS(1266), + [anon_sym___fastcall] = ACTIONS(1266), + [anon_sym___thiscall] = ACTIONS(1266), + [anon_sym___vectorcall] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_signed] = ACTIONS(1266), + [anon_sym_unsigned] = ACTIONS(1266), + [anon_sym_long] = ACTIONS(1266), + [anon_sym_short] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(1266), + [anon_sym_auto] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_inline] = ACTIONS(1266), + [anon_sym___inline] = ACTIONS(1266), + [anon_sym___inline__] = ACTIONS(1266), + [anon_sym___forceinline] = ACTIONS(1266), + [anon_sym_thread_local] = ACTIONS(1266), + [anon_sym___thread] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_constexpr] = ACTIONS(1266), + [anon_sym_volatile] = ACTIONS(1266), + [anon_sym_restrict] = ACTIONS(1266), + [anon_sym___restrict__] = ACTIONS(1266), + [anon_sym__Atomic] = ACTIONS(1266), + [anon_sym__Noreturn] = ACTIONS(1266), + [anon_sym_noreturn] = ACTIONS(1266), + [anon_sym_alignas] = ACTIONS(1266), + [anon_sym__Alignas] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(1266), + [anon_sym_enum] = ACTIONS(1266), + [anon_sym_struct] = ACTIONS(1266), + [anon_sym_union] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_else] = ACTIONS(1266), + [anon_sym_switch] = ACTIONS(1266), + [anon_sym_case] = ACTIONS(1266), + [anon_sym_default] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_goto] = ACTIONS(1266), + [anon_sym___try] = ACTIONS(1266), + [anon_sym___leave] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1268), + [anon_sym_sizeof] = ACTIONS(1266), + [anon_sym___alignof__] = ACTIONS(1266), + [anon_sym___alignof] = ACTIONS(1266), + [anon_sym__alignof] = ACTIONS(1266), + [anon_sym_alignof] = ACTIONS(1266), + [anon_sym__Alignof] = ACTIONS(1266), + [anon_sym_offsetof] = ACTIONS(1266), + [anon_sym__Generic] = ACTIONS(1266), + [anon_sym_asm] = ACTIONS(1266), + [anon_sym___asm__] = ACTIONS(1266), + [sym_number_literal] = ACTIONS(1268), + [anon_sym_L_SQUOTE] = ACTIONS(1268), + [anon_sym_u_SQUOTE] = ACTIONS(1268), + [anon_sym_U_SQUOTE] = ACTIONS(1268), + [anon_sym_u8_SQUOTE] = ACTIONS(1268), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_L_DQUOTE] = ACTIONS(1268), + [anon_sym_u_DQUOTE] = ACTIONS(1268), + [anon_sym_U_DQUOTE] = ACTIONS(1268), + [anon_sym_u8_DQUOTE] = ACTIONS(1268), + [anon_sym_DQUOTE] = ACTIONS(1268), + [sym_true] = ACTIONS(1266), + [sym_false] = ACTIONS(1266), + [anon_sym_NULL] = ACTIONS(1266), + [anon_sym_nullptr] = ACTIONS(1266), [sym_comment] = ACTIONS(5), }, - [278] = { - [sym_identifier] = ACTIONS(1274), + [256] = { + [sym_identifier] = ACTIONS(1346), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1274), - [aux_sym_preproc_def_token1] = ACTIONS(1274), - [aux_sym_preproc_if_token1] = ACTIONS(1274), - [aux_sym_preproc_if_token2] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), - [sym_preproc_directive] = ACTIONS(1274), - [anon_sym_LPAREN2] = ACTIONS(1276), - [anon_sym_BANG] = ACTIONS(1276), - [anon_sym_TILDE] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym___extension__] = ACTIONS(1274), - [anon_sym_typedef] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym___attribute__] = ACTIONS(1274), - [anon_sym___scanf] = ACTIONS(1274), - [anon_sym___printf] = ACTIONS(1274), - [anon_sym___read_mostly] = ACTIONS(1274), - [anon_sym___must_hold] = ACTIONS(1274), - [anon_sym___ro_after_init] = ACTIONS(1274), - [anon_sym___noreturn] = ACTIONS(1274), - [anon_sym___cold] = ACTIONS(1274), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1276), - [anon_sym___declspec] = ACTIONS(1274), - [anon_sym___init] = ACTIONS(1274), - [anon_sym___exit] = ACTIONS(1274), - [anon_sym___cdecl] = ACTIONS(1274), - [anon_sym___clrcall] = ACTIONS(1274), - [anon_sym___stdcall] = ACTIONS(1274), - [anon_sym___fastcall] = ACTIONS(1274), - [anon_sym___thiscall] = ACTIONS(1274), - [anon_sym___vectorcall] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_signed] = ACTIONS(1274), - [anon_sym_unsigned] = ACTIONS(1274), - [anon_sym_long] = ACTIONS(1274), - [anon_sym_short] = ACTIONS(1274), - [anon_sym_static] = ACTIONS(1274), - [anon_sym_auto] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_inline] = ACTIONS(1274), - [anon_sym___inline] = ACTIONS(1274), - [anon_sym___inline__] = ACTIONS(1274), - [anon_sym___forceinline] = ACTIONS(1274), - [anon_sym_thread_local] = ACTIONS(1274), - [anon_sym___thread] = ACTIONS(1274), - [anon_sym_const] = ACTIONS(1274), - [anon_sym_constexpr] = ACTIONS(1274), - [anon_sym_volatile] = ACTIONS(1274), - [anon_sym_restrict] = ACTIONS(1274), - [anon_sym___restrict__] = ACTIONS(1274), - [anon_sym__Atomic] = ACTIONS(1274), - [anon_sym__Noreturn] = ACTIONS(1274), - [anon_sym_noreturn] = ACTIONS(1274), - [anon_sym_alignas] = ACTIONS(1274), - [anon_sym__Alignas] = ACTIONS(1274), - [sym_primitive_type] = ACTIONS(1274), - [anon_sym_enum] = ACTIONS(1274), - [anon_sym_struct] = ACTIONS(1274), - [anon_sym_union] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_else] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(1274), - [anon_sym_case] = ACTIONS(1274), - [anon_sym_default] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_do] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_goto] = ACTIONS(1274), - [anon_sym___try] = ACTIONS(1274), - [anon_sym___leave] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_sizeof] = ACTIONS(1274), - [anon_sym___alignof__] = ACTIONS(1274), - [anon_sym___alignof] = ACTIONS(1274), - [anon_sym__alignof] = ACTIONS(1274), - [anon_sym_alignof] = ACTIONS(1274), - [anon_sym__Alignof] = ACTIONS(1274), - [anon_sym_offsetof] = ACTIONS(1274), - [anon_sym__Generic] = ACTIONS(1274), - [anon_sym_asm] = ACTIONS(1274), - [anon_sym___asm__] = ACTIONS(1274), - [sym_number_literal] = ACTIONS(1276), - [anon_sym_L_SQUOTE] = ACTIONS(1276), - [anon_sym_u_SQUOTE] = ACTIONS(1276), - [anon_sym_U_SQUOTE] = ACTIONS(1276), - [anon_sym_u8_SQUOTE] = ACTIONS(1276), - [anon_sym_SQUOTE] = ACTIONS(1276), - [anon_sym_L_DQUOTE] = ACTIONS(1276), - [anon_sym_u_DQUOTE] = ACTIONS(1276), - [anon_sym_U_DQUOTE] = ACTIONS(1276), - [anon_sym_u8_DQUOTE] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym_true] = ACTIONS(1274), - [sym_false] = ACTIONS(1274), - [anon_sym_NULL] = ACTIONS(1274), - [anon_sym_nullptr] = ACTIONS(1274), + [aux_sym_preproc_include_token1] = ACTIONS(1346), + [aux_sym_preproc_def_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token2] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym___scanf] = ACTIONS(1346), + [anon_sym___printf] = ACTIONS(1346), + [anon_sym___read_mostly] = ACTIONS(1346), + [anon_sym___must_hold] = ACTIONS(1346), + [anon_sym___ro_after_init] = ACTIONS(1346), + [anon_sym___noreturn] = ACTIONS(1346), + [anon_sym___cold] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym___init] = ACTIONS(1346), + [anon_sym___exit] = ACTIONS(1346), + [anon_sym___cdecl] = ACTIONS(1346), + [anon_sym___clrcall] = ACTIONS(1346), + [anon_sym___stdcall] = ACTIONS(1346), + [anon_sym___fastcall] = ACTIONS(1346), + [anon_sym___thiscall] = ACTIONS(1346), + [anon_sym___vectorcall] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [anon_sym_alignas] = ACTIONS(1346), + [anon_sym__Alignas] = ACTIONS(1346), + [sym_primitive_type] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_else] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym___try] = ACTIONS(1346), + [anon_sym___leave] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), [sym_comment] = ACTIONS(5), }, - [279] = { - [sym_identifier] = ACTIONS(1294), + [257] = { + [sym_identifier] = ACTIONS(1282), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1294), - [aux_sym_preproc_def_token1] = ACTIONS(1294), - [aux_sym_preproc_if_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), - [sym_preproc_directive] = ACTIONS(1294), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1296), - [anon_sym_TILDE] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym___extension__] = ACTIONS(1294), - [anon_sym_typedef] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym___attribute__] = ACTIONS(1294), - [anon_sym___scanf] = ACTIONS(1294), - [anon_sym___printf] = ACTIONS(1294), - [anon_sym___read_mostly] = ACTIONS(1294), - [anon_sym___must_hold] = ACTIONS(1294), - [anon_sym___ro_after_init] = ACTIONS(1294), - [anon_sym___noreturn] = ACTIONS(1294), - [anon_sym___cold] = ACTIONS(1294), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1296), - [anon_sym___declspec] = ACTIONS(1294), - [anon_sym___init] = ACTIONS(1294), - [anon_sym___exit] = ACTIONS(1294), - [anon_sym___cdecl] = ACTIONS(1294), - [anon_sym___clrcall] = ACTIONS(1294), - [anon_sym___stdcall] = ACTIONS(1294), - [anon_sym___fastcall] = ACTIONS(1294), - [anon_sym___thiscall] = ACTIONS(1294), - [anon_sym___vectorcall] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(1296), - [anon_sym_signed] = ACTIONS(1294), - [anon_sym_unsigned] = ACTIONS(1294), - [anon_sym_long] = ACTIONS(1294), - [anon_sym_short] = ACTIONS(1294), - [anon_sym_static] = ACTIONS(1294), - [anon_sym_auto] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_inline] = ACTIONS(1294), - [anon_sym___inline] = ACTIONS(1294), - [anon_sym___inline__] = ACTIONS(1294), - [anon_sym___forceinline] = ACTIONS(1294), - [anon_sym_thread_local] = ACTIONS(1294), - [anon_sym___thread] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [anon_sym_constexpr] = ACTIONS(1294), - [anon_sym_volatile] = ACTIONS(1294), - [anon_sym_restrict] = ACTIONS(1294), - [anon_sym___restrict__] = ACTIONS(1294), - [anon_sym__Atomic] = ACTIONS(1294), - [anon_sym__Noreturn] = ACTIONS(1294), - [anon_sym_noreturn] = ACTIONS(1294), - [anon_sym_alignas] = ACTIONS(1294), - [anon_sym__Alignas] = ACTIONS(1294), - [sym_primitive_type] = ACTIONS(1294), - [anon_sym_enum] = ACTIONS(1294), - [anon_sym_struct] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1294), - [anon_sym_switch] = ACTIONS(1294), - [anon_sym_case] = ACTIONS(1294), - [anon_sym_default] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_goto] = ACTIONS(1294), - [anon_sym___try] = ACTIONS(1294), - [anon_sym___leave] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_sizeof] = ACTIONS(1294), - [anon_sym___alignof__] = ACTIONS(1294), - [anon_sym___alignof] = ACTIONS(1294), - [anon_sym__alignof] = ACTIONS(1294), - [anon_sym_alignof] = ACTIONS(1294), - [anon_sym__Alignof] = ACTIONS(1294), - [anon_sym_offsetof] = ACTIONS(1294), - [anon_sym__Generic] = ACTIONS(1294), - [anon_sym_asm] = ACTIONS(1294), - [anon_sym___asm__] = ACTIONS(1294), - [sym_number_literal] = ACTIONS(1296), - [anon_sym_L_SQUOTE] = ACTIONS(1296), - [anon_sym_u_SQUOTE] = ACTIONS(1296), - [anon_sym_U_SQUOTE] = ACTIONS(1296), - [anon_sym_u8_SQUOTE] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [anon_sym_L_DQUOTE] = ACTIONS(1296), - [anon_sym_u_DQUOTE] = ACTIONS(1296), - [anon_sym_U_DQUOTE] = ACTIONS(1296), - [anon_sym_u8_DQUOTE] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym_true] = ACTIONS(1294), - [sym_false] = ACTIONS(1294), - [anon_sym_NULL] = ACTIONS(1294), - [anon_sym_nullptr] = ACTIONS(1294), - [sym_comment] = ACTIONS(5), - }, - [280] = { - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1310), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym___scanf] = ACTIONS(1310), - [anon_sym___printf] = ACTIONS(1310), - [anon_sym___read_mostly] = ACTIONS(1310), - [anon_sym___must_hold] = ACTIONS(1310), - [anon_sym___ro_after_init] = ACTIONS(1310), - [anon_sym___noreturn] = ACTIONS(1310), - [anon_sym___cold] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___init] = ACTIONS(1310), - [anon_sym___exit] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [anon_sym_alignas] = ACTIONS(1310), - [anon_sym__Alignas] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [aux_sym_preproc_include_token1] = ACTIONS(1282), + [aux_sym_preproc_def_token1] = ACTIONS(1282), + [aux_sym_preproc_if_token1] = ACTIONS(1282), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1282), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1282), + [sym_preproc_directive] = ACTIONS(1282), + [anon_sym_LPAREN2] = ACTIONS(1284), + [anon_sym_BANG] = ACTIONS(1284), + [anon_sym_TILDE] = ACTIONS(1284), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_PLUS] = ACTIONS(1282), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1284), + [anon_sym___extension__] = ACTIONS(1282), + [anon_sym_typedef] = ACTIONS(1282), + [anon_sym_extern] = ACTIONS(1282), + [anon_sym___attribute__] = ACTIONS(1282), + [anon_sym___scanf] = ACTIONS(1282), + [anon_sym___printf] = ACTIONS(1282), + [anon_sym___read_mostly] = ACTIONS(1282), + [anon_sym___must_hold] = ACTIONS(1282), + [anon_sym___ro_after_init] = ACTIONS(1282), + [anon_sym___noreturn] = ACTIONS(1282), + [anon_sym___cold] = ACTIONS(1282), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1284), + [anon_sym___declspec] = ACTIONS(1282), + [anon_sym___init] = ACTIONS(1282), + [anon_sym___exit] = ACTIONS(1282), + [anon_sym___cdecl] = ACTIONS(1282), + [anon_sym___clrcall] = ACTIONS(1282), + [anon_sym___stdcall] = ACTIONS(1282), + [anon_sym___fastcall] = ACTIONS(1282), + [anon_sym___thiscall] = ACTIONS(1282), + [anon_sym___vectorcall] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE] = ACTIONS(1284), + [anon_sym_signed] = ACTIONS(1282), + [anon_sym_unsigned] = ACTIONS(1282), + [anon_sym_long] = ACTIONS(1282), + [anon_sym_short] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1282), + [anon_sym_auto] = ACTIONS(1282), + [anon_sym_register] = ACTIONS(1282), + [anon_sym_inline] = ACTIONS(1282), + [anon_sym___inline] = ACTIONS(1282), + [anon_sym___inline__] = ACTIONS(1282), + [anon_sym___forceinline] = ACTIONS(1282), + [anon_sym_thread_local] = ACTIONS(1282), + [anon_sym___thread] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(1282), + [anon_sym_constexpr] = ACTIONS(1282), + [anon_sym_volatile] = ACTIONS(1282), + [anon_sym_restrict] = ACTIONS(1282), + [anon_sym___restrict__] = ACTIONS(1282), + [anon_sym__Atomic] = ACTIONS(1282), + [anon_sym__Noreturn] = ACTIONS(1282), + [anon_sym_noreturn] = ACTIONS(1282), + [anon_sym_alignas] = ACTIONS(1282), + [anon_sym__Alignas] = ACTIONS(1282), + [sym_primitive_type] = ACTIONS(1282), + [anon_sym_enum] = ACTIONS(1282), + [anon_sym_struct] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_if] = ACTIONS(1282), + [anon_sym_else] = ACTIONS(1282), + [anon_sym_switch] = ACTIONS(1282), + [anon_sym_case] = ACTIONS(1282), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_while] = ACTIONS(1282), + [anon_sym_do] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(1282), + [anon_sym_break] = ACTIONS(1282), + [anon_sym_continue] = ACTIONS(1282), + [anon_sym_goto] = ACTIONS(1282), + [anon_sym___try] = ACTIONS(1282), + [anon_sym___leave] = ACTIONS(1282), + [anon_sym_DASH_DASH] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1284), + [anon_sym_sizeof] = ACTIONS(1282), + [anon_sym___alignof__] = ACTIONS(1282), + [anon_sym___alignof] = ACTIONS(1282), + [anon_sym__alignof] = ACTIONS(1282), + [anon_sym_alignof] = ACTIONS(1282), + [anon_sym__Alignof] = ACTIONS(1282), + [anon_sym_offsetof] = ACTIONS(1282), + [anon_sym__Generic] = ACTIONS(1282), + [anon_sym_asm] = ACTIONS(1282), + [anon_sym___asm__] = ACTIONS(1282), + [sym_number_literal] = ACTIONS(1284), + [anon_sym_L_SQUOTE] = ACTIONS(1284), + [anon_sym_u_SQUOTE] = ACTIONS(1284), + [anon_sym_U_SQUOTE] = ACTIONS(1284), + [anon_sym_u8_SQUOTE] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(1284), + [anon_sym_L_DQUOTE] = ACTIONS(1284), + [anon_sym_u_DQUOTE] = ACTIONS(1284), + [anon_sym_U_DQUOTE] = ACTIONS(1284), + [anon_sym_u8_DQUOTE] = ACTIONS(1284), + [anon_sym_DQUOTE] = ACTIONS(1284), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(1282), + [anon_sym_nullptr] = ACTIONS(1282), [sym_comment] = ACTIONS(5), }, - [281] = { - [sym_identifier] = ACTIONS(1274), + [258] = { + [sym_identifier] = ACTIONS(1318), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1274), - [aux_sym_preproc_def_token1] = ACTIONS(1274), - [aux_sym_preproc_if_token1] = ACTIONS(1274), - [aux_sym_preproc_if_token2] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), - [sym_preproc_directive] = ACTIONS(1274), - [anon_sym_LPAREN2] = ACTIONS(1276), - [anon_sym_BANG] = ACTIONS(1276), - [anon_sym_TILDE] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym___extension__] = ACTIONS(1274), - [anon_sym_typedef] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym___attribute__] = ACTIONS(1274), - [anon_sym___scanf] = ACTIONS(1274), - [anon_sym___printf] = ACTIONS(1274), - [anon_sym___read_mostly] = ACTIONS(1274), - [anon_sym___must_hold] = ACTIONS(1274), - [anon_sym___ro_after_init] = ACTIONS(1274), - [anon_sym___noreturn] = ACTIONS(1274), - [anon_sym___cold] = ACTIONS(1274), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1276), - [anon_sym___declspec] = ACTIONS(1274), - [anon_sym___init] = ACTIONS(1274), - [anon_sym___exit] = ACTIONS(1274), - [anon_sym___cdecl] = ACTIONS(1274), - [anon_sym___clrcall] = ACTIONS(1274), - [anon_sym___stdcall] = ACTIONS(1274), - [anon_sym___fastcall] = ACTIONS(1274), - [anon_sym___thiscall] = ACTIONS(1274), - [anon_sym___vectorcall] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_signed] = ACTIONS(1274), - [anon_sym_unsigned] = ACTIONS(1274), - [anon_sym_long] = ACTIONS(1274), - [anon_sym_short] = ACTIONS(1274), - [anon_sym_static] = ACTIONS(1274), - [anon_sym_auto] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_inline] = ACTIONS(1274), - [anon_sym___inline] = ACTIONS(1274), - [anon_sym___inline__] = ACTIONS(1274), - [anon_sym___forceinline] = ACTIONS(1274), - [anon_sym_thread_local] = ACTIONS(1274), - [anon_sym___thread] = ACTIONS(1274), - [anon_sym_const] = ACTIONS(1274), - [anon_sym_constexpr] = ACTIONS(1274), - [anon_sym_volatile] = ACTIONS(1274), - [anon_sym_restrict] = ACTIONS(1274), - [anon_sym___restrict__] = ACTIONS(1274), - [anon_sym__Atomic] = ACTIONS(1274), - [anon_sym__Noreturn] = ACTIONS(1274), - [anon_sym_noreturn] = ACTIONS(1274), - [anon_sym_alignas] = ACTIONS(1274), - [anon_sym__Alignas] = ACTIONS(1274), - [sym_primitive_type] = ACTIONS(1274), - [anon_sym_enum] = ACTIONS(1274), - [anon_sym_struct] = ACTIONS(1274), - [anon_sym_union] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_else] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(1274), - [anon_sym_case] = ACTIONS(1274), - [anon_sym_default] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_do] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_goto] = ACTIONS(1274), - [anon_sym___try] = ACTIONS(1274), - [anon_sym___leave] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_sizeof] = ACTIONS(1274), - [anon_sym___alignof__] = ACTIONS(1274), - [anon_sym___alignof] = ACTIONS(1274), - [anon_sym__alignof] = ACTIONS(1274), - [anon_sym_alignof] = ACTIONS(1274), - [anon_sym__Alignof] = ACTIONS(1274), - [anon_sym_offsetof] = ACTIONS(1274), - [anon_sym__Generic] = ACTIONS(1274), - [anon_sym_asm] = ACTIONS(1274), - [anon_sym___asm__] = ACTIONS(1274), - [sym_number_literal] = ACTIONS(1276), - [anon_sym_L_SQUOTE] = ACTIONS(1276), - [anon_sym_u_SQUOTE] = ACTIONS(1276), - [anon_sym_U_SQUOTE] = ACTIONS(1276), - [anon_sym_u8_SQUOTE] = ACTIONS(1276), - [anon_sym_SQUOTE] = ACTIONS(1276), - [anon_sym_L_DQUOTE] = ACTIONS(1276), - [anon_sym_u_DQUOTE] = ACTIONS(1276), - [anon_sym_U_DQUOTE] = ACTIONS(1276), - [anon_sym_u8_DQUOTE] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym_true] = ACTIONS(1274), - [sym_false] = ACTIONS(1274), - [anon_sym_NULL] = ACTIONS(1274), - [anon_sym_nullptr] = ACTIONS(1274), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token2] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym___scanf] = ACTIONS(1318), + [anon_sym___printf] = ACTIONS(1318), + [anon_sym___read_mostly] = ACTIONS(1318), + [anon_sym___must_hold] = ACTIONS(1318), + [anon_sym___ro_after_init] = ACTIONS(1318), + [anon_sym___noreturn] = ACTIONS(1318), + [anon_sym___cold] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___init] = ACTIONS(1318), + [anon_sym___exit] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [anon_sym_alignas] = ACTIONS(1318), + [anon_sym__Alignas] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(5), }, - [282] = { - [sym_identifier] = ACTIONS(1274), + [259] = { + [sym_identifier] = ACTIONS(1306), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1274), - [aux_sym_preproc_def_token1] = ACTIONS(1274), - [aux_sym_preproc_if_token1] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), - [sym_preproc_directive] = ACTIONS(1274), - [anon_sym_LPAREN2] = ACTIONS(1276), - [anon_sym_BANG] = ACTIONS(1276), - [anon_sym_TILDE] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym___extension__] = ACTIONS(1274), - [anon_sym_typedef] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym___attribute__] = ACTIONS(1274), - [anon_sym___scanf] = ACTIONS(1274), - [anon_sym___printf] = ACTIONS(1274), - [anon_sym___read_mostly] = ACTIONS(1274), - [anon_sym___must_hold] = ACTIONS(1274), - [anon_sym___ro_after_init] = ACTIONS(1274), - [anon_sym___noreturn] = ACTIONS(1274), - [anon_sym___cold] = ACTIONS(1274), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1276), - [anon_sym___declspec] = ACTIONS(1274), - [anon_sym___init] = ACTIONS(1274), - [anon_sym___exit] = ACTIONS(1274), - [anon_sym___cdecl] = ACTIONS(1274), - [anon_sym___clrcall] = ACTIONS(1274), - [anon_sym___stdcall] = ACTIONS(1274), - [anon_sym___fastcall] = ACTIONS(1274), - [anon_sym___thiscall] = ACTIONS(1274), - [anon_sym___vectorcall] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_RBRACE] = ACTIONS(1276), - [anon_sym_signed] = ACTIONS(1274), - [anon_sym_unsigned] = ACTIONS(1274), - [anon_sym_long] = ACTIONS(1274), - [anon_sym_short] = ACTIONS(1274), - [anon_sym_static] = ACTIONS(1274), - [anon_sym_auto] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_inline] = ACTIONS(1274), - [anon_sym___inline] = ACTIONS(1274), - [anon_sym___inline__] = ACTIONS(1274), - [anon_sym___forceinline] = ACTIONS(1274), - [anon_sym_thread_local] = ACTIONS(1274), - [anon_sym___thread] = ACTIONS(1274), - [anon_sym_const] = ACTIONS(1274), - [anon_sym_constexpr] = ACTIONS(1274), - [anon_sym_volatile] = ACTIONS(1274), - [anon_sym_restrict] = ACTIONS(1274), - [anon_sym___restrict__] = ACTIONS(1274), - [anon_sym__Atomic] = ACTIONS(1274), - [anon_sym__Noreturn] = ACTIONS(1274), - [anon_sym_noreturn] = ACTIONS(1274), - [anon_sym_alignas] = ACTIONS(1274), - [anon_sym__Alignas] = ACTIONS(1274), - [sym_primitive_type] = ACTIONS(1274), - [anon_sym_enum] = ACTIONS(1274), - [anon_sym_struct] = ACTIONS(1274), - [anon_sym_union] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_else] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(1274), - [anon_sym_case] = ACTIONS(1274), - [anon_sym_default] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_do] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_goto] = ACTIONS(1274), - [anon_sym___try] = ACTIONS(1274), - [anon_sym___leave] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_sizeof] = ACTIONS(1274), - [anon_sym___alignof__] = ACTIONS(1274), - [anon_sym___alignof] = ACTIONS(1274), - [anon_sym__alignof] = ACTIONS(1274), - [anon_sym_alignof] = ACTIONS(1274), - [anon_sym__Alignof] = ACTIONS(1274), - [anon_sym_offsetof] = ACTIONS(1274), - [anon_sym__Generic] = ACTIONS(1274), - [anon_sym_asm] = ACTIONS(1274), - [anon_sym___asm__] = ACTIONS(1274), - [sym_number_literal] = ACTIONS(1276), - [anon_sym_L_SQUOTE] = ACTIONS(1276), - [anon_sym_u_SQUOTE] = ACTIONS(1276), - [anon_sym_U_SQUOTE] = ACTIONS(1276), - [anon_sym_u8_SQUOTE] = ACTIONS(1276), - [anon_sym_SQUOTE] = ACTIONS(1276), - [anon_sym_L_DQUOTE] = ACTIONS(1276), - [anon_sym_u_DQUOTE] = ACTIONS(1276), - [anon_sym_U_DQUOTE] = ACTIONS(1276), - [anon_sym_u8_DQUOTE] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym_true] = ACTIONS(1274), - [sym_false] = ACTIONS(1274), - [anon_sym_NULL] = ACTIONS(1274), - [anon_sym_nullptr] = ACTIONS(1274), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym___scanf] = ACTIONS(1306), + [anon_sym___printf] = ACTIONS(1306), + [anon_sym___read_mostly] = ACTIONS(1306), + [anon_sym___must_hold] = ACTIONS(1306), + [anon_sym___ro_after_init] = ACTIONS(1306), + [anon_sym___noreturn] = ACTIONS(1306), + [anon_sym___cold] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___init] = ACTIONS(1306), + [anon_sym___exit] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [anon_sym_alignas] = ACTIONS(1306), + [anon_sym__Alignas] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(5), }, - [283] = { - [sym_identifier] = ACTIONS(1294), + [260] = { + [sym_identifier] = ACTIONS(1250), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1294), - [aux_sym_preproc_def_token1] = ACTIONS(1294), - [aux_sym_preproc_if_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), - [sym_preproc_directive] = ACTIONS(1294), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1296), - [anon_sym_TILDE] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym___extension__] = ACTIONS(1294), - [anon_sym_typedef] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym___attribute__] = ACTIONS(1294), - [anon_sym___scanf] = ACTIONS(1294), - [anon_sym___printf] = ACTIONS(1294), - [anon_sym___read_mostly] = ACTIONS(1294), - [anon_sym___must_hold] = ACTIONS(1294), - [anon_sym___ro_after_init] = ACTIONS(1294), - [anon_sym___noreturn] = ACTIONS(1294), - [anon_sym___cold] = ACTIONS(1294), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1296), - [anon_sym___declspec] = ACTIONS(1294), - [anon_sym___init] = ACTIONS(1294), - [anon_sym___exit] = ACTIONS(1294), - [anon_sym___cdecl] = ACTIONS(1294), - [anon_sym___clrcall] = ACTIONS(1294), - [anon_sym___stdcall] = ACTIONS(1294), - [anon_sym___fastcall] = ACTIONS(1294), - [anon_sym___thiscall] = ACTIONS(1294), - [anon_sym___vectorcall] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(1296), - [anon_sym_signed] = ACTIONS(1294), - [anon_sym_unsigned] = ACTIONS(1294), - [anon_sym_long] = ACTIONS(1294), - [anon_sym_short] = ACTIONS(1294), - [anon_sym_static] = ACTIONS(1294), - [anon_sym_auto] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_inline] = ACTIONS(1294), - [anon_sym___inline] = ACTIONS(1294), - [anon_sym___inline__] = ACTIONS(1294), - [anon_sym___forceinline] = ACTIONS(1294), - [anon_sym_thread_local] = ACTIONS(1294), - [anon_sym___thread] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [anon_sym_constexpr] = ACTIONS(1294), - [anon_sym_volatile] = ACTIONS(1294), - [anon_sym_restrict] = ACTIONS(1294), - [anon_sym___restrict__] = ACTIONS(1294), - [anon_sym__Atomic] = ACTIONS(1294), - [anon_sym__Noreturn] = ACTIONS(1294), - [anon_sym_noreturn] = ACTIONS(1294), - [anon_sym_alignas] = ACTIONS(1294), - [anon_sym__Alignas] = ACTIONS(1294), - [sym_primitive_type] = ACTIONS(1294), - [anon_sym_enum] = ACTIONS(1294), - [anon_sym_struct] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1294), - [anon_sym_switch] = ACTIONS(1294), - [anon_sym_case] = ACTIONS(1294), - [anon_sym_default] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_goto] = ACTIONS(1294), - [anon_sym___try] = ACTIONS(1294), - [anon_sym___leave] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_sizeof] = ACTIONS(1294), - [anon_sym___alignof__] = ACTIONS(1294), - [anon_sym___alignof] = ACTIONS(1294), - [anon_sym__alignof] = ACTIONS(1294), - [anon_sym_alignof] = ACTIONS(1294), - [anon_sym__Alignof] = ACTIONS(1294), - [anon_sym_offsetof] = ACTIONS(1294), - [anon_sym__Generic] = ACTIONS(1294), - [anon_sym_asm] = ACTIONS(1294), - [anon_sym___asm__] = ACTIONS(1294), - [sym_number_literal] = ACTIONS(1296), - [anon_sym_L_SQUOTE] = ACTIONS(1296), - [anon_sym_u_SQUOTE] = ACTIONS(1296), - [anon_sym_U_SQUOTE] = ACTIONS(1296), - [anon_sym_u8_SQUOTE] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [anon_sym_L_DQUOTE] = ACTIONS(1296), - [anon_sym_u_DQUOTE] = ACTIONS(1296), - [anon_sym_U_DQUOTE] = ACTIONS(1296), - [anon_sym_u8_DQUOTE] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym_true] = ACTIONS(1294), - [sym_false] = ACTIONS(1294), - [anon_sym_NULL] = ACTIONS(1294), - [anon_sym_nullptr] = ACTIONS(1294), + [aux_sym_preproc_include_token1] = ACTIONS(1250), + [aux_sym_preproc_def_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), + [sym_preproc_directive] = ACTIONS(1250), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym___extension__] = ACTIONS(1250), + [anon_sym_typedef] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1250), + [anon_sym___attribute__] = ACTIONS(1250), + [anon_sym___scanf] = ACTIONS(1250), + [anon_sym___printf] = ACTIONS(1250), + [anon_sym___read_mostly] = ACTIONS(1250), + [anon_sym___must_hold] = ACTIONS(1250), + [anon_sym___ro_after_init] = ACTIONS(1250), + [anon_sym___noreturn] = ACTIONS(1250), + [anon_sym___cold] = ACTIONS(1250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), + [anon_sym___declspec] = ACTIONS(1250), + [anon_sym___init] = ACTIONS(1250), + [anon_sym___exit] = ACTIONS(1250), + [anon_sym___cdecl] = ACTIONS(1250), + [anon_sym___clrcall] = ACTIONS(1250), + [anon_sym___stdcall] = ACTIONS(1250), + [anon_sym___fastcall] = ACTIONS(1250), + [anon_sym___thiscall] = ACTIONS(1250), + [anon_sym___vectorcall] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_signed] = ACTIONS(1250), + [anon_sym_unsigned] = ACTIONS(1250), + [anon_sym_long] = ACTIONS(1250), + [anon_sym_short] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_auto] = ACTIONS(1250), + [anon_sym_register] = ACTIONS(1250), + [anon_sym_inline] = ACTIONS(1250), + [anon_sym___inline] = ACTIONS(1250), + [anon_sym___inline__] = ACTIONS(1250), + [anon_sym___forceinline] = ACTIONS(1250), + [anon_sym_thread_local] = ACTIONS(1250), + [anon_sym___thread] = ACTIONS(1250), + [anon_sym_const] = ACTIONS(1250), + [anon_sym_constexpr] = ACTIONS(1250), + [anon_sym_volatile] = ACTIONS(1250), + [anon_sym_restrict] = ACTIONS(1250), + [anon_sym___restrict__] = ACTIONS(1250), + [anon_sym__Atomic] = ACTIONS(1250), + [anon_sym__Noreturn] = ACTIONS(1250), + [anon_sym_noreturn] = ACTIONS(1250), + [anon_sym_alignas] = ACTIONS(1250), + [anon_sym__Alignas] = ACTIONS(1250), + [sym_primitive_type] = ACTIONS(1250), + [anon_sym_enum] = ACTIONS(1250), + [anon_sym_struct] = ACTIONS(1250), + [anon_sym_union] = ACTIONS(1250), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_else] = ACTIONS(1250), + [anon_sym_switch] = ACTIONS(1250), + [anon_sym_case] = ACTIONS(1250), + [anon_sym_default] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [anon_sym_do] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_goto] = ACTIONS(1250), + [anon_sym___try] = ACTIONS(1250), + [anon_sym___leave] = ACTIONS(1250), + [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_sizeof] = ACTIONS(1250), + [anon_sym___alignof__] = ACTIONS(1250), + [anon_sym___alignof] = ACTIONS(1250), + [anon_sym__alignof] = ACTIONS(1250), + [anon_sym_alignof] = ACTIONS(1250), + [anon_sym__Alignof] = ACTIONS(1250), + [anon_sym_offsetof] = ACTIONS(1250), + [anon_sym__Generic] = ACTIONS(1250), + [anon_sym_asm] = ACTIONS(1250), + [anon_sym___asm__] = ACTIONS(1250), + [sym_number_literal] = ACTIONS(1252), + [anon_sym_L_SQUOTE] = ACTIONS(1252), + [anon_sym_u_SQUOTE] = ACTIONS(1252), + [anon_sym_U_SQUOTE] = ACTIONS(1252), + [anon_sym_u8_SQUOTE] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1252), + [anon_sym_L_DQUOTE] = ACTIONS(1252), + [anon_sym_u_DQUOTE] = ACTIONS(1252), + [anon_sym_U_DQUOTE] = ACTIONS(1252), + [anon_sym_u8_DQUOTE] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_true] = ACTIONS(1250), + [sym_false] = ACTIONS(1250), + [anon_sym_NULL] = ACTIONS(1250), + [anon_sym_nullptr] = ACTIONS(1250), [sym_comment] = ACTIONS(5), }, - [284] = { - [sym_identifier] = ACTIONS(1314), + [261] = { + [sym_identifier] = ACTIONS(1250), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym___extension__] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym___attribute__] = ACTIONS(1314), - [anon_sym___scanf] = ACTIONS(1314), - [anon_sym___printf] = ACTIONS(1314), - [anon_sym___read_mostly] = ACTIONS(1314), - [anon_sym___must_hold] = ACTIONS(1314), - [anon_sym___ro_after_init] = ACTIONS(1314), - [anon_sym___noreturn] = ACTIONS(1314), - [anon_sym___cold] = ACTIONS(1314), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), - [anon_sym___declspec] = ACTIONS(1314), - [anon_sym___init] = ACTIONS(1314), - [anon_sym___exit] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_RBRACE] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1314), - [anon_sym_unsigned] = ACTIONS(1314), - [anon_sym_long] = ACTIONS(1314), - [anon_sym_short] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_auto] = ACTIONS(1314), - [anon_sym_register] = ACTIONS(1314), - [anon_sym_inline] = ACTIONS(1314), - [anon_sym___inline] = ACTIONS(1314), - [anon_sym___inline__] = ACTIONS(1314), - [anon_sym___forceinline] = ACTIONS(1314), - [anon_sym_thread_local] = ACTIONS(1314), - [anon_sym___thread] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_constexpr] = ACTIONS(1314), - [anon_sym_volatile] = ACTIONS(1314), - [anon_sym_restrict] = ACTIONS(1314), - [anon_sym___restrict__] = ACTIONS(1314), - [anon_sym__Atomic] = ACTIONS(1314), - [anon_sym__Noreturn] = ACTIONS(1314), - [anon_sym_noreturn] = ACTIONS(1314), - [anon_sym_alignas] = ACTIONS(1314), - [anon_sym__Alignas] = ACTIONS(1314), - [sym_primitive_type] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_else] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_goto] = ACTIONS(1314), - [anon_sym___try] = ACTIONS(1314), - [anon_sym___leave] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1314), - [anon_sym___alignof__] = ACTIONS(1314), - [anon_sym___alignof] = ACTIONS(1314), - [anon_sym__alignof] = ACTIONS(1314), - [anon_sym_alignof] = ACTIONS(1314), - [anon_sym__Alignof] = ACTIONS(1314), - [anon_sym_offsetof] = ACTIONS(1314), - [anon_sym__Generic] = ACTIONS(1314), - [anon_sym_asm] = ACTIONS(1314), - [anon_sym___asm__] = ACTIONS(1314), - [sym_number_literal] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1316), - [anon_sym_u_SQUOTE] = ACTIONS(1316), - [anon_sym_U_SQUOTE] = ACTIONS(1316), - [anon_sym_u8_SQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_L_DQUOTE] = ACTIONS(1316), - [anon_sym_u_DQUOTE] = ACTIONS(1316), - [anon_sym_U_DQUOTE] = ACTIONS(1316), - [anon_sym_u8_DQUOTE] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [anon_sym_NULL] = ACTIONS(1314), - [anon_sym_nullptr] = ACTIONS(1314), - [sym_comment] = ACTIONS(5), - }, - [285] = { - [sym_identifier] = ACTIONS(1254), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1254), - [aux_sym_preproc_def_token1] = ACTIONS(1254), - [aux_sym_preproc_if_token1] = ACTIONS(1254), - [aux_sym_preproc_if_token2] = ACTIONS(1254), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1254), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1254), - [sym_preproc_directive] = ACTIONS(1254), - [anon_sym_LPAREN2] = ACTIONS(1256), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_SEMI] = ACTIONS(1256), - [anon_sym___extension__] = ACTIONS(1254), - [anon_sym_typedef] = ACTIONS(1254), - [anon_sym_extern] = ACTIONS(1254), - [anon_sym___attribute__] = ACTIONS(1254), - [anon_sym___scanf] = ACTIONS(1254), - [anon_sym___printf] = ACTIONS(1254), - [anon_sym___read_mostly] = ACTIONS(1254), - [anon_sym___must_hold] = ACTIONS(1254), - [anon_sym___ro_after_init] = ACTIONS(1254), - [anon_sym___noreturn] = ACTIONS(1254), - [anon_sym___cold] = ACTIONS(1254), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1256), - [anon_sym___declspec] = ACTIONS(1254), - [anon_sym___init] = ACTIONS(1254), - [anon_sym___exit] = ACTIONS(1254), - [anon_sym___cdecl] = ACTIONS(1254), - [anon_sym___clrcall] = ACTIONS(1254), - [anon_sym___stdcall] = ACTIONS(1254), - [anon_sym___fastcall] = ACTIONS(1254), - [anon_sym___thiscall] = ACTIONS(1254), - [anon_sym___vectorcall] = ACTIONS(1254), - [anon_sym_LBRACE] = ACTIONS(1256), - [anon_sym_signed] = ACTIONS(1254), - [anon_sym_unsigned] = ACTIONS(1254), - [anon_sym_long] = ACTIONS(1254), - [anon_sym_short] = ACTIONS(1254), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_auto] = ACTIONS(1254), - [anon_sym_register] = ACTIONS(1254), - [anon_sym_inline] = ACTIONS(1254), - [anon_sym___inline] = ACTIONS(1254), - [anon_sym___inline__] = ACTIONS(1254), - [anon_sym___forceinline] = ACTIONS(1254), - [anon_sym_thread_local] = ACTIONS(1254), - [anon_sym___thread] = ACTIONS(1254), - [anon_sym_const] = ACTIONS(1254), - [anon_sym_constexpr] = ACTIONS(1254), - [anon_sym_volatile] = ACTIONS(1254), - [anon_sym_restrict] = ACTIONS(1254), - [anon_sym___restrict__] = ACTIONS(1254), - [anon_sym__Atomic] = ACTIONS(1254), - [anon_sym__Noreturn] = ACTIONS(1254), - [anon_sym_noreturn] = ACTIONS(1254), - [anon_sym_alignas] = ACTIONS(1254), - [anon_sym__Alignas] = ACTIONS(1254), - [sym_primitive_type] = ACTIONS(1254), - [anon_sym_enum] = ACTIONS(1254), - [anon_sym_struct] = ACTIONS(1254), - [anon_sym_union] = ACTIONS(1254), - [anon_sym_if] = ACTIONS(1254), - [anon_sym_else] = ACTIONS(1254), - [anon_sym_switch] = ACTIONS(1254), - [anon_sym_case] = ACTIONS(1254), - [anon_sym_default] = ACTIONS(1254), - [anon_sym_while] = ACTIONS(1254), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_for] = ACTIONS(1254), - [anon_sym_return] = ACTIONS(1254), - [anon_sym_break] = ACTIONS(1254), - [anon_sym_continue] = ACTIONS(1254), - [anon_sym_goto] = ACTIONS(1254), - [anon_sym___try] = ACTIONS(1254), - [anon_sym___leave] = ACTIONS(1254), - [anon_sym_DASH_DASH] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1256), - [anon_sym_sizeof] = ACTIONS(1254), - [anon_sym___alignof__] = ACTIONS(1254), - [anon_sym___alignof] = ACTIONS(1254), - [anon_sym__alignof] = ACTIONS(1254), - [anon_sym_alignof] = ACTIONS(1254), - [anon_sym__Alignof] = ACTIONS(1254), - [anon_sym_offsetof] = ACTIONS(1254), - [anon_sym__Generic] = ACTIONS(1254), - [anon_sym_asm] = ACTIONS(1254), - [anon_sym___asm__] = ACTIONS(1254), - [sym_number_literal] = ACTIONS(1256), - [anon_sym_L_SQUOTE] = ACTIONS(1256), - [anon_sym_u_SQUOTE] = ACTIONS(1256), - [anon_sym_U_SQUOTE] = ACTIONS(1256), - [anon_sym_u8_SQUOTE] = ACTIONS(1256), - [anon_sym_SQUOTE] = ACTIONS(1256), - [anon_sym_L_DQUOTE] = ACTIONS(1256), - [anon_sym_u_DQUOTE] = ACTIONS(1256), - [anon_sym_U_DQUOTE] = ACTIONS(1256), - [anon_sym_u8_DQUOTE] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(1256), - [sym_true] = ACTIONS(1254), - [sym_false] = ACTIONS(1254), - [anon_sym_NULL] = ACTIONS(1254), - [anon_sym_nullptr] = ACTIONS(1254), - [sym_comment] = ACTIONS(5), - }, - [286] = { - [sym_identifier] = ACTIONS(1242), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1242), - [aux_sym_preproc_def_token1] = ACTIONS(1242), - [aux_sym_preproc_if_token1] = ACTIONS(1242), - [aux_sym_preproc_if_token2] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), - [sym_preproc_directive] = ACTIONS(1242), - [anon_sym_LPAREN2] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_TILDE] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym___extension__] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym___attribute__] = ACTIONS(1242), - [anon_sym___scanf] = ACTIONS(1242), - [anon_sym___printf] = ACTIONS(1242), - [anon_sym___read_mostly] = ACTIONS(1242), - [anon_sym___must_hold] = ACTIONS(1242), - [anon_sym___ro_after_init] = ACTIONS(1242), - [anon_sym___noreturn] = ACTIONS(1242), - [anon_sym___cold] = ACTIONS(1242), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1244), - [anon_sym___declspec] = ACTIONS(1242), - [anon_sym___init] = ACTIONS(1242), - [anon_sym___exit] = ACTIONS(1242), - [anon_sym___cdecl] = ACTIONS(1242), - [anon_sym___clrcall] = ACTIONS(1242), - [anon_sym___stdcall] = ACTIONS(1242), - [anon_sym___fastcall] = ACTIONS(1242), - [anon_sym___thiscall] = ACTIONS(1242), - [anon_sym___vectorcall] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_signed] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_long] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_register] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym___inline] = ACTIONS(1242), - [anon_sym___inline__] = ACTIONS(1242), - [anon_sym___forceinline] = ACTIONS(1242), - [anon_sym_thread_local] = ACTIONS(1242), - [anon_sym___thread] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_constexpr] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym___restrict__] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [anon_sym__Noreturn] = ACTIONS(1242), - [anon_sym_noreturn] = ACTIONS(1242), - [anon_sym_alignas] = ACTIONS(1242), - [anon_sym__Alignas] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_case] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [anon_sym___try] = ACTIONS(1242), - [anon_sym___leave] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym___alignof__] = ACTIONS(1242), - [anon_sym___alignof] = ACTIONS(1242), - [anon_sym__alignof] = ACTIONS(1242), - [anon_sym_alignof] = ACTIONS(1242), - [anon_sym__Alignof] = ACTIONS(1242), - [anon_sym_offsetof] = ACTIONS(1242), - [anon_sym__Generic] = ACTIONS(1242), - [anon_sym_asm] = ACTIONS(1242), - [anon_sym___asm__] = ACTIONS(1242), - [sym_number_literal] = ACTIONS(1244), - [anon_sym_L_SQUOTE] = ACTIONS(1244), - [anon_sym_u_SQUOTE] = ACTIONS(1244), - [anon_sym_U_SQUOTE] = ACTIONS(1244), - [anon_sym_u8_SQUOTE] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1244), - [anon_sym_L_DQUOTE] = ACTIONS(1244), - [anon_sym_u_DQUOTE] = ACTIONS(1244), - [anon_sym_U_DQUOTE] = ACTIONS(1244), - [anon_sym_u8_DQUOTE] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(1244), - [sym_true] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_NULL] = ACTIONS(1242), - [anon_sym_nullptr] = ACTIONS(1242), + [aux_sym_preproc_include_token1] = ACTIONS(1250), + [aux_sym_preproc_def_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), + [sym_preproc_directive] = ACTIONS(1250), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym___extension__] = ACTIONS(1250), + [anon_sym_typedef] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1250), + [anon_sym___attribute__] = ACTIONS(1250), + [anon_sym___scanf] = ACTIONS(1250), + [anon_sym___printf] = ACTIONS(1250), + [anon_sym___read_mostly] = ACTIONS(1250), + [anon_sym___must_hold] = ACTIONS(1250), + [anon_sym___ro_after_init] = ACTIONS(1250), + [anon_sym___noreturn] = ACTIONS(1250), + [anon_sym___cold] = ACTIONS(1250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), + [anon_sym___declspec] = ACTIONS(1250), + [anon_sym___init] = ACTIONS(1250), + [anon_sym___exit] = ACTIONS(1250), + [anon_sym___cdecl] = ACTIONS(1250), + [anon_sym___clrcall] = ACTIONS(1250), + [anon_sym___stdcall] = ACTIONS(1250), + [anon_sym___fastcall] = ACTIONS(1250), + [anon_sym___thiscall] = ACTIONS(1250), + [anon_sym___vectorcall] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_signed] = ACTIONS(1250), + [anon_sym_unsigned] = ACTIONS(1250), + [anon_sym_long] = ACTIONS(1250), + [anon_sym_short] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_auto] = ACTIONS(1250), + [anon_sym_register] = ACTIONS(1250), + [anon_sym_inline] = ACTIONS(1250), + [anon_sym___inline] = ACTIONS(1250), + [anon_sym___inline__] = ACTIONS(1250), + [anon_sym___forceinline] = ACTIONS(1250), + [anon_sym_thread_local] = ACTIONS(1250), + [anon_sym___thread] = ACTIONS(1250), + [anon_sym_const] = ACTIONS(1250), + [anon_sym_constexpr] = ACTIONS(1250), + [anon_sym_volatile] = ACTIONS(1250), + [anon_sym_restrict] = ACTIONS(1250), + [anon_sym___restrict__] = ACTIONS(1250), + [anon_sym__Atomic] = ACTIONS(1250), + [anon_sym__Noreturn] = ACTIONS(1250), + [anon_sym_noreturn] = ACTIONS(1250), + [anon_sym_alignas] = ACTIONS(1250), + [anon_sym__Alignas] = ACTIONS(1250), + [sym_primitive_type] = ACTIONS(1250), + [anon_sym_enum] = ACTIONS(1250), + [anon_sym_struct] = ACTIONS(1250), + [anon_sym_union] = ACTIONS(1250), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_else] = ACTIONS(1250), + [anon_sym_switch] = ACTIONS(1250), + [anon_sym_case] = ACTIONS(1250), + [anon_sym_default] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [anon_sym_do] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_goto] = ACTIONS(1250), + [anon_sym___try] = ACTIONS(1250), + [anon_sym___leave] = ACTIONS(1250), + [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_sizeof] = ACTIONS(1250), + [anon_sym___alignof__] = ACTIONS(1250), + [anon_sym___alignof] = ACTIONS(1250), + [anon_sym__alignof] = ACTIONS(1250), + [anon_sym_alignof] = ACTIONS(1250), + [anon_sym__Alignof] = ACTIONS(1250), + [anon_sym_offsetof] = ACTIONS(1250), + [anon_sym__Generic] = ACTIONS(1250), + [anon_sym_asm] = ACTIONS(1250), + [anon_sym___asm__] = ACTIONS(1250), + [sym_number_literal] = ACTIONS(1252), + [anon_sym_L_SQUOTE] = ACTIONS(1252), + [anon_sym_u_SQUOTE] = ACTIONS(1252), + [anon_sym_U_SQUOTE] = ACTIONS(1252), + [anon_sym_u8_SQUOTE] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1252), + [anon_sym_L_DQUOTE] = ACTIONS(1252), + [anon_sym_u_DQUOTE] = ACTIONS(1252), + [anon_sym_U_DQUOTE] = ACTIONS(1252), + [anon_sym_u8_DQUOTE] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_true] = ACTIONS(1250), + [sym_false] = ACTIONS(1250), + [anon_sym_NULL] = ACTIONS(1250), + [anon_sym_nullptr] = ACTIONS(1250), [sym_comment] = ACTIONS(5), }, - [287] = { - [sym_identifier] = ACTIONS(1330), + [262] = { + [sym_identifier] = ACTIONS(1334), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1330), - [aux_sym_preproc_def_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), - [sym_preproc_directive] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym___extension__] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym___attribute__] = ACTIONS(1330), - [anon_sym___scanf] = ACTIONS(1330), - [anon_sym___printf] = ACTIONS(1330), - [anon_sym___read_mostly] = ACTIONS(1330), - [anon_sym___must_hold] = ACTIONS(1330), - [anon_sym___ro_after_init] = ACTIONS(1330), - [anon_sym___noreturn] = ACTIONS(1330), - [anon_sym___cold] = ACTIONS(1330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), - [anon_sym___declspec] = ACTIONS(1330), - [anon_sym___init] = ACTIONS(1330), - [anon_sym___exit] = ACTIONS(1330), - [anon_sym___cdecl] = ACTIONS(1330), - [anon_sym___clrcall] = ACTIONS(1330), - [anon_sym___stdcall] = ACTIONS(1330), - [anon_sym___fastcall] = ACTIONS(1330), - [anon_sym___thiscall] = ACTIONS(1330), - [anon_sym___vectorcall] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_RBRACE] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1330), - [anon_sym_unsigned] = ACTIONS(1330), - [anon_sym_long] = ACTIONS(1330), - [anon_sym_short] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_auto] = ACTIONS(1330), - [anon_sym_register] = ACTIONS(1330), - [anon_sym_inline] = ACTIONS(1330), - [anon_sym___inline] = ACTIONS(1330), - [anon_sym___inline__] = ACTIONS(1330), - [anon_sym___forceinline] = ACTIONS(1330), - [anon_sym_thread_local] = ACTIONS(1330), - [anon_sym___thread] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_constexpr] = ACTIONS(1330), - [anon_sym_volatile] = ACTIONS(1330), - [anon_sym_restrict] = ACTIONS(1330), - [anon_sym___restrict__] = ACTIONS(1330), - [anon_sym__Atomic] = ACTIONS(1330), - [anon_sym__Noreturn] = ACTIONS(1330), - [anon_sym_noreturn] = ACTIONS(1330), - [anon_sym_alignas] = ACTIONS(1330), - [anon_sym__Alignas] = ACTIONS(1330), - [sym_primitive_type] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_do] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_goto] = ACTIONS(1330), - [anon_sym___try] = ACTIONS(1330), - [anon_sym___leave] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_sizeof] = ACTIONS(1330), - [anon_sym___alignof__] = ACTIONS(1330), - [anon_sym___alignof] = ACTIONS(1330), - [anon_sym__alignof] = ACTIONS(1330), - [anon_sym_alignof] = ACTIONS(1330), - [anon_sym__Alignof] = ACTIONS(1330), - [anon_sym_offsetof] = ACTIONS(1330), - [anon_sym__Generic] = ACTIONS(1330), - [anon_sym_asm] = ACTIONS(1330), - [anon_sym___asm__] = ACTIONS(1330), - [sym_number_literal] = ACTIONS(1332), - [anon_sym_L_SQUOTE] = ACTIONS(1332), - [anon_sym_u_SQUOTE] = ACTIONS(1332), - [anon_sym_U_SQUOTE] = ACTIONS(1332), - [anon_sym_u8_SQUOTE] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_L_DQUOTE] = ACTIONS(1332), - [anon_sym_u_DQUOTE] = ACTIONS(1332), - [anon_sym_U_DQUOTE] = ACTIONS(1332), - [anon_sym_u8_DQUOTE] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_true] = ACTIONS(1330), - [sym_false] = ACTIONS(1330), - [anon_sym_NULL] = ACTIONS(1330), - [anon_sym_nullptr] = ACTIONS(1330), - [sym_comment] = ACTIONS(5), - }, - [288] = { - [sym_identifier] = ACTIONS(1242), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1242), - [aux_sym_preproc_def_token1] = ACTIONS(1242), - [aux_sym_preproc_if_token1] = ACTIONS(1242), - [aux_sym_preproc_if_token2] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), - [sym_preproc_directive] = ACTIONS(1242), - [anon_sym_LPAREN2] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_TILDE] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym___extension__] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym___attribute__] = ACTIONS(1242), - [anon_sym___scanf] = ACTIONS(1242), - [anon_sym___printf] = ACTIONS(1242), - [anon_sym___read_mostly] = ACTIONS(1242), - [anon_sym___must_hold] = ACTIONS(1242), - [anon_sym___ro_after_init] = ACTIONS(1242), - [anon_sym___noreturn] = ACTIONS(1242), - [anon_sym___cold] = ACTIONS(1242), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1244), - [anon_sym___declspec] = ACTIONS(1242), - [anon_sym___init] = ACTIONS(1242), - [anon_sym___exit] = ACTIONS(1242), - [anon_sym___cdecl] = ACTIONS(1242), - [anon_sym___clrcall] = ACTIONS(1242), - [anon_sym___stdcall] = ACTIONS(1242), - [anon_sym___fastcall] = ACTIONS(1242), - [anon_sym___thiscall] = ACTIONS(1242), - [anon_sym___vectorcall] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_signed] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_long] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_register] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym___inline] = ACTIONS(1242), - [anon_sym___inline__] = ACTIONS(1242), - [anon_sym___forceinline] = ACTIONS(1242), - [anon_sym_thread_local] = ACTIONS(1242), - [anon_sym___thread] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_constexpr] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym___restrict__] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [anon_sym__Noreturn] = ACTIONS(1242), - [anon_sym_noreturn] = ACTIONS(1242), - [anon_sym_alignas] = ACTIONS(1242), - [anon_sym__Alignas] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_case] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [anon_sym___try] = ACTIONS(1242), - [anon_sym___leave] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym___alignof__] = ACTIONS(1242), - [anon_sym___alignof] = ACTIONS(1242), - [anon_sym__alignof] = ACTIONS(1242), - [anon_sym_alignof] = ACTIONS(1242), - [anon_sym__Alignof] = ACTIONS(1242), - [anon_sym_offsetof] = ACTIONS(1242), - [anon_sym__Generic] = ACTIONS(1242), - [anon_sym_asm] = ACTIONS(1242), - [anon_sym___asm__] = ACTIONS(1242), - [sym_number_literal] = ACTIONS(1244), - [anon_sym_L_SQUOTE] = ACTIONS(1244), - [anon_sym_u_SQUOTE] = ACTIONS(1244), - [anon_sym_U_SQUOTE] = ACTIONS(1244), - [anon_sym_u8_SQUOTE] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1244), - [anon_sym_L_DQUOTE] = ACTIONS(1244), - [anon_sym_u_DQUOTE] = ACTIONS(1244), - [anon_sym_U_DQUOTE] = ACTIONS(1244), - [anon_sym_u8_DQUOTE] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(1244), - [sym_true] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_NULL] = ACTIONS(1242), - [anon_sym_nullptr] = ACTIONS(1242), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym___scanf] = ACTIONS(1334), + [anon_sym___printf] = ACTIONS(1334), + [anon_sym___read_mostly] = ACTIONS(1334), + [anon_sym___must_hold] = ACTIONS(1334), + [anon_sym___ro_after_init] = ACTIONS(1334), + [anon_sym___noreturn] = ACTIONS(1334), + [anon_sym___cold] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___init] = ACTIONS(1334), + [anon_sym___exit] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_RBRACE] = ACTIONS(1336), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [anon_sym_alignas] = ACTIONS(1334), + [anon_sym__Alignas] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_L_SQUOTE] = ACTIONS(1336), + [anon_sym_u_SQUOTE] = ACTIONS(1336), + [anon_sym_U_SQUOTE] = ACTIONS(1336), + [anon_sym_u8_SQUOTE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_L_DQUOTE] = ACTIONS(1336), + [anon_sym_u_DQUOTE] = ACTIONS(1336), + [anon_sym_U_DQUOTE] = ACTIONS(1336), + [anon_sym_u8_DQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(5), }, - [289] = { - [sym_identifier] = ACTIONS(1246), + [263] = { + [sym_identifier] = ACTIONS(1250), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1246), - [aux_sym_preproc_def_token1] = ACTIONS(1246), - [aux_sym_preproc_if_token1] = ACTIONS(1246), - [aux_sym_preproc_if_token2] = ACTIONS(1246), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1246), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1246), - [sym_preproc_directive] = ACTIONS(1246), - [anon_sym_LPAREN2] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(1248), - [anon_sym_TILDE] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1248), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_SEMI] = ACTIONS(1248), - [anon_sym___extension__] = ACTIONS(1246), - [anon_sym_typedef] = ACTIONS(1246), - [anon_sym_extern] = ACTIONS(1246), - [anon_sym___attribute__] = ACTIONS(1246), - [anon_sym___scanf] = ACTIONS(1246), - [anon_sym___printf] = ACTIONS(1246), - [anon_sym___read_mostly] = ACTIONS(1246), - [anon_sym___must_hold] = ACTIONS(1246), - [anon_sym___ro_after_init] = ACTIONS(1246), - [anon_sym___noreturn] = ACTIONS(1246), - [anon_sym___cold] = ACTIONS(1246), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1248), - [anon_sym___declspec] = ACTIONS(1246), - [anon_sym___init] = ACTIONS(1246), - [anon_sym___exit] = ACTIONS(1246), - [anon_sym___cdecl] = ACTIONS(1246), - [anon_sym___clrcall] = ACTIONS(1246), - [anon_sym___stdcall] = ACTIONS(1246), - [anon_sym___fastcall] = ACTIONS(1246), - [anon_sym___thiscall] = ACTIONS(1246), - [anon_sym___vectorcall] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_signed] = ACTIONS(1246), - [anon_sym_unsigned] = ACTIONS(1246), - [anon_sym_long] = ACTIONS(1246), - [anon_sym_short] = ACTIONS(1246), - [anon_sym_static] = ACTIONS(1246), - [anon_sym_auto] = ACTIONS(1246), - [anon_sym_register] = ACTIONS(1246), - [anon_sym_inline] = ACTIONS(1246), - [anon_sym___inline] = ACTIONS(1246), - [anon_sym___inline__] = ACTIONS(1246), - [anon_sym___forceinline] = ACTIONS(1246), - [anon_sym_thread_local] = ACTIONS(1246), - [anon_sym___thread] = ACTIONS(1246), - [anon_sym_const] = ACTIONS(1246), - [anon_sym_constexpr] = ACTIONS(1246), - [anon_sym_volatile] = ACTIONS(1246), - [anon_sym_restrict] = ACTIONS(1246), - [anon_sym___restrict__] = ACTIONS(1246), - [anon_sym__Atomic] = ACTIONS(1246), - [anon_sym__Noreturn] = ACTIONS(1246), - [anon_sym_noreturn] = ACTIONS(1246), - [anon_sym_alignas] = ACTIONS(1246), - [anon_sym__Alignas] = ACTIONS(1246), - [sym_primitive_type] = ACTIONS(1246), - [anon_sym_enum] = ACTIONS(1246), - [anon_sym_struct] = ACTIONS(1246), - [anon_sym_union] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1246), - [anon_sym_else] = ACTIONS(1246), - [anon_sym_switch] = ACTIONS(1246), - [anon_sym_case] = ACTIONS(1246), - [anon_sym_default] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_do] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(1246), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1246), - [anon_sym_goto] = ACTIONS(1246), - [anon_sym___try] = ACTIONS(1246), - [anon_sym___leave] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1248), - [anon_sym_PLUS_PLUS] = ACTIONS(1248), - [anon_sym_sizeof] = ACTIONS(1246), - [anon_sym___alignof__] = ACTIONS(1246), - [anon_sym___alignof] = ACTIONS(1246), - [anon_sym__alignof] = ACTIONS(1246), - [anon_sym_alignof] = ACTIONS(1246), - [anon_sym__Alignof] = ACTIONS(1246), - [anon_sym_offsetof] = ACTIONS(1246), - [anon_sym__Generic] = ACTIONS(1246), - [anon_sym_asm] = ACTIONS(1246), - [anon_sym___asm__] = ACTIONS(1246), - [sym_number_literal] = ACTIONS(1248), - [anon_sym_L_SQUOTE] = ACTIONS(1248), - [anon_sym_u_SQUOTE] = ACTIONS(1248), - [anon_sym_U_SQUOTE] = ACTIONS(1248), - [anon_sym_u8_SQUOTE] = ACTIONS(1248), - [anon_sym_SQUOTE] = ACTIONS(1248), - [anon_sym_L_DQUOTE] = ACTIONS(1248), - [anon_sym_u_DQUOTE] = ACTIONS(1248), - [anon_sym_U_DQUOTE] = ACTIONS(1248), - [anon_sym_u8_DQUOTE] = ACTIONS(1248), - [anon_sym_DQUOTE] = ACTIONS(1248), - [sym_true] = ACTIONS(1246), - [sym_false] = ACTIONS(1246), - [anon_sym_NULL] = ACTIONS(1246), - [anon_sym_nullptr] = ACTIONS(1246), + [aux_sym_preproc_include_token1] = ACTIONS(1250), + [aux_sym_preproc_def_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), + [sym_preproc_directive] = ACTIONS(1250), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym___extension__] = ACTIONS(1250), + [anon_sym_typedef] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1250), + [anon_sym___attribute__] = ACTIONS(1250), + [anon_sym___scanf] = ACTIONS(1250), + [anon_sym___printf] = ACTIONS(1250), + [anon_sym___read_mostly] = ACTIONS(1250), + [anon_sym___must_hold] = ACTIONS(1250), + [anon_sym___ro_after_init] = ACTIONS(1250), + [anon_sym___noreturn] = ACTIONS(1250), + [anon_sym___cold] = ACTIONS(1250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), + [anon_sym___declspec] = ACTIONS(1250), + [anon_sym___init] = ACTIONS(1250), + [anon_sym___exit] = ACTIONS(1250), + [anon_sym___cdecl] = ACTIONS(1250), + [anon_sym___clrcall] = ACTIONS(1250), + [anon_sym___stdcall] = ACTIONS(1250), + [anon_sym___fastcall] = ACTIONS(1250), + [anon_sym___thiscall] = ACTIONS(1250), + [anon_sym___vectorcall] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_signed] = ACTIONS(1250), + [anon_sym_unsigned] = ACTIONS(1250), + [anon_sym_long] = ACTIONS(1250), + [anon_sym_short] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_auto] = ACTIONS(1250), + [anon_sym_register] = ACTIONS(1250), + [anon_sym_inline] = ACTIONS(1250), + [anon_sym___inline] = ACTIONS(1250), + [anon_sym___inline__] = ACTIONS(1250), + [anon_sym___forceinline] = ACTIONS(1250), + [anon_sym_thread_local] = ACTIONS(1250), + [anon_sym___thread] = ACTIONS(1250), + [anon_sym_const] = ACTIONS(1250), + [anon_sym_constexpr] = ACTIONS(1250), + [anon_sym_volatile] = ACTIONS(1250), + [anon_sym_restrict] = ACTIONS(1250), + [anon_sym___restrict__] = ACTIONS(1250), + [anon_sym__Atomic] = ACTIONS(1250), + [anon_sym__Noreturn] = ACTIONS(1250), + [anon_sym_noreturn] = ACTIONS(1250), + [anon_sym_alignas] = ACTIONS(1250), + [anon_sym__Alignas] = ACTIONS(1250), + [sym_primitive_type] = ACTIONS(1250), + [anon_sym_enum] = ACTIONS(1250), + [anon_sym_struct] = ACTIONS(1250), + [anon_sym_union] = ACTIONS(1250), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_else] = ACTIONS(1250), + [anon_sym_switch] = ACTIONS(1250), + [anon_sym_case] = ACTIONS(1250), + [anon_sym_default] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [anon_sym_do] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_goto] = ACTIONS(1250), + [anon_sym___try] = ACTIONS(1250), + [anon_sym___leave] = ACTIONS(1250), + [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_sizeof] = ACTIONS(1250), + [anon_sym___alignof__] = ACTIONS(1250), + [anon_sym___alignof] = ACTIONS(1250), + [anon_sym__alignof] = ACTIONS(1250), + [anon_sym_alignof] = ACTIONS(1250), + [anon_sym__Alignof] = ACTIONS(1250), + [anon_sym_offsetof] = ACTIONS(1250), + [anon_sym__Generic] = ACTIONS(1250), + [anon_sym_asm] = ACTIONS(1250), + [anon_sym___asm__] = ACTIONS(1250), + [sym_number_literal] = ACTIONS(1252), + [anon_sym_L_SQUOTE] = ACTIONS(1252), + [anon_sym_u_SQUOTE] = ACTIONS(1252), + [anon_sym_U_SQUOTE] = ACTIONS(1252), + [anon_sym_u8_SQUOTE] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1252), + [anon_sym_L_DQUOTE] = ACTIONS(1252), + [anon_sym_u_DQUOTE] = ACTIONS(1252), + [anon_sym_U_DQUOTE] = ACTIONS(1252), + [anon_sym_u8_DQUOTE] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_true] = ACTIONS(1250), + [sym_false] = ACTIONS(1250), + [anon_sym_NULL] = ACTIONS(1250), + [anon_sym_nullptr] = ACTIONS(1250), [sym_comment] = ACTIONS(5), }, - [290] = { - [sym_identifier] = ACTIONS(1242), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1242), - [aux_sym_preproc_def_token1] = ACTIONS(1242), - [aux_sym_preproc_if_token1] = ACTIONS(1242), - [aux_sym_preproc_if_token2] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), - [sym_preproc_directive] = ACTIONS(1242), - [anon_sym_LPAREN2] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_TILDE] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym___extension__] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym___attribute__] = ACTIONS(1242), - [anon_sym___scanf] = ACTIONS(1242), - [anon_sym___printf] = ACTIONS(1242), - [anon_sym___read_mostly] = ACTIONS(1242), - [anon_sym___must_hold] = ACTIONS(1242), - [anon_sym___ro_after_init] = ACTIONS(1242), - [anon_sym___noreturn] = ACTIONS(1242), - [anon_sym___cold] = ACTIONS(1242), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1244), - [anon_sym___declspec] = ACTIONS(1242), - [anon_sym___init] = ACTIONS(1242), - [anon_sym___exit] = ACTIONS(1242), - [anon_sym___cdecl] = ACTIONS(1242), - [anon_sym___clrcall] = ACTIONS(1242), - [anon_sym___stdcall] = ACTIONS(1242), - [anon_sym___fastcall] = ACTIONS(1242), - [anon_sym___thiscall] = ACTIONS(1242), - [anon_sym___vectorcall] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_signed] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_long] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_register] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym___inline] = ACTIONS(1242), - [anon_sym___inline__] = ACTIONS(1242), - [anon_sym___forceinline] = ACTIONS(1242), - [anon_sym_thread_local] = ACTIONS(1242), - [anon_sym___thread] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_constexpr] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym___restrict__] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [anon_sym__Noreturn] = ACTIONS(1242), - [anon_sym_noreturn] = ACTIONS(1242), - [anon_sym_alignas] = ACTIONS(1242), - [anon_sym__Alignas] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_case] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [anon_sym___try] = ACTIONS(1242), - [anon_sym___leave] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym___alignof__] = ACTIONS(1242), - [anon_sym___alignof] = ACTIONS(1242), - [anon_sym__alignof] = ACTIONS(1242), - [anon_sym_alignof] = ACTIONS(1242), - [anon_sym__Alignof] = ACTIONS(1242), - [anon_sym_offsetof] = ACTIONS(1242), - [anon_sym__Generic] = ACTIONS(1242), - [anon_sym_asm] = ACTIONS(1242), - [anon_sym___asm__] = ACTIONS(1242), - [sym_number_literal] = ACTIONS(1244), - [anon_sym_L_SQUOTE] = ACTIONS(1244), - [anon_sym_u_SQUOTE] = ACTIONS(1244), - [anon_sym_U_SQUOTE] = ACTIONS(1244), - [anon_sym_u8_SQUOTE] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1244), - [anon_sym_L_DQUOTE] = ACTIONS(1244), - [anon_sym_u_DQUOTE] = ACTIONS(1244), - [anon_sym_U_DQUOTE] = ACTIONS(1244), - [anon_sym_u8_DQUOTE] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(1244), - [sym_true] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_NULL] = ACTIONS(1242), - [anon_sym_nullptr] = ACTIONS(1242), + [264] = { + [sym_identifier] = ACTIONS(1338), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym___scanf] = ACTIONS(1338), + [anon_sym___printf] = ACTIONS(1338), + [anon_sym___read_mostly] = ACTIONS(1338), + [anon_sym___must_hold] = ACTIONS(1338), + [anon_sym___ro_after_init] = ACTIONS(1338), + [anon_sym___noreturn] = ACTIONS(1338), + [anon_sym___cold] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___init] = ACTIONS(1338), + [anon_sym___exit] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_RBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [anon_sym_alignas] = ACTIONS(1338), + [anon_sym__Alignas] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), [sym_comment] = ACTIONS(5), }, - [291] = { - [sym_identifier] = ACTIONS(1318), + [265] = { + [sym_identifier] = ACTIONS(1302), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1318), - [anon_sym___scanf] = ACTIONS(1318), - [anon_sym___printf] = ACTIONS(1318), - [anon_sym___read_mostly] = ACTIONS(1318), - [anon_sym___must_hold] = ACTIONS(1318), - [anon_sym___ro_after_init] = ACTIONS(1318), - [anon_sym___noreturn] = ACTIONS(1318), - [anon_sym___cold] = ACTIONS(1318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), - [anon_sym___declspec] = ACTIONS(1318), - [anon_sym___init] = ACTIONS(1318), - [anon_sym___exit] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1318), - [anon_sym_unsigned] = ACTIONS(1318), - [anon_sym_long] = ACTIONS(1318), - [anon_sym_short] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_auto] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1318), - [anon_sym_inline] = ACTIONS(1318), - [anon_sym___inline] = ACTIONS(1318), - [anon_sym___inline__] = ACTIONS(1318), - [anon_sym___forceinline] = ACTIONS(1318), - [anon_sym_thread_local] = ACTIONS(1318), - [anon_sym___thread] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_constexpr] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1318), - [anon_sym_restrict] = ACTIONS(1318), - [anon_sym___restrict__] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1318), - [anon_sym__Noreturn] = ACTIONS(1318), - [anon_sym_noreturn] = ACTIONS(1318), - [anon_sym_alignas] = ACTIONS(1318), - [anon_sym__Alignas] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1318), - [anon_sym___try] = ACTIONS(1318), - [anon_sym___leave] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1318), - [anon_sym___alignof__] = ACTIONS(1318), - [anon_sym___alignof] = ACTIONS(1318), - [anon_sym__alignof] = ACTIONS(1318), - [anon_sym_alignof] = ACTIONS(1318), - [anon_sym__Alignof] = ACTIONS(1318), - [anon_sym_offsetof] = ACTIONS(1318), - [anon_sym__Generic] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1318), - [anon_sym___asm__] = ACTIONS(1318), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_L_SQUOTE] = ACTIONS(1320), - [anon_sym_u_SQUOTE] = ACTIONS(1320), - [anon_sym_U_SQUOTE] = ACTIONS(1320), - [anon_sym_u8_SQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_L_DQUOTE] = ACTIONS(1320), - [anon_sym_u_DQUOTE] = ACTIONS(1320), - [anon_sym_U_DQUOTE] = ACTIONS(1320), - [anon_sym_u8_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [anon_sym_NULL] = ACTIONS(1318), - [anon_sym_nullptr] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym___scanf] = ACTIONS(1302), + [anon_sym___printf] = ACTIONS(1302), + [anon_sym___read_mostly] = ACTIONS(1302), + [anon_sym___must_hold] = ACTIONS(1302), + [anon_sym___ro_after_init] = ACTIONS(1302), + [anon_sym___noreturn] = ACTIONS(1302), + [anon_sym___cold] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___init] = ACTIONS(1302), + [anon_sym___exit] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [anon_sym_alignas] = ACTIONS(1302), + [anon_sym__Alignas] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(5), }, - [292] = { - [sym_identifier] = ACTIONS(1342), + [266] = { + [sym_identifier] = ACTIONS(1306), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1342), - [aux_sym_preproc_def_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), - [sym_preproc_directive] = ACTIONS(1342), - [anon_sym_LPAREN2] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym___extension__] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym___attribute__] = ACTIONS(1342), - [anon_sym___scanf] = ACTIONS(1342), - [anon_sym___printf] = ACTIONS(1342), - [anon_sym___read_mostly] = ACTIONS(1342), - [anon_sym___must_hold] = ACTIONS(1342), - [anon_sym___ro_after_init] = ACTIONS(1342), - [anon_sym___noreturn] = ACTIONS(1342), - [anon_sym___cold] = ACTIONS(1342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), - [anon_sym___declspec] = ACTIONS(1342), - [anon_sym___init] = ACTIONS(1342), - [anon_sym___exit] = ACTIONS(1342), - [anon_sym___cdecl] = ACTIONS(1342), - [anon_sym___clrcall] = ACTIONS(1342), - [anon_sym___stdcall] = ACTIONS(1342), - [anon_sym___fastcall] = ACTIONS(1342), - [anon_sym___thiscall] = ACTIONS(1342), - [anon_sym___vectorcall] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_RBRACE] = ACTIONS(1344), - [anon_sym_signed] = ACTIONS(1342), - [anon_sym_unsigned] = ACTIONS(1342), - [anon_sym_long] = ACTIONS(1342), - [anon_sym_short] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_auto] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_inline] = ACTIONS(1342), - [anon_sym___inline] = ACTIONS(1342), - [anon_sym___inline__] = ACTIONS(1342), - [anon_sym___forceinline] = ACTIONS(1342), - [anon_sym_thread_local] = ACTIONS(1342), - [anon_sym___thread] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_constexpr] = ACTIONS(1342), - [anon_sym_volatile] = ACTIONS(1342), - [anon_sym_restrict] = ACTIONS(1342), - [anon_sym___restrict__] = ACTIONS(1342), - [anon_sym__Atomic] = ACTIONS(1342), - [anon_sym__Noreturn] = ACTIONS(1342), - [anon_sym_noreturn] = ACTIONS(1342), - [anon_sym_alignas] = ACTIONS(1342), - [anon_sym__Alignas] = ACTIONS(1342), - [sym_primitive_type] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_goto] = ACTIONS(1342), - [anon_sym___try] = ACTIONS(1342), - [anon_sym___leave] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_sizeof] = ACTIONS(1342), - [anon_sym___alignof__] = ACTIONS(1342), - [anon_sym___alignof] = ACTIONS(1342), - [anon_sym__alignof] = ACTIONS(1342), - [anon_sym_alignof] = ACTIONS(1342), - [anon_sym__Alignof] = ACTIONS(1342), - [anon_sym_offsetof] = ACTIONS(1342), - [anon_sym__Generic] = ACTIONS(1342), - [anon_sym_asm] = ACTIONS(1342), - [anon_sym___asm__] = ACTIONS(1342), - [sym_number_literal] = ACTIONS(1344), - [anon_sym_L_SQUOTE] = ACTIONS(1344), - [anon_sym_u_SQUOTE] = ACTIONS(1344), - [anon_sym_U_SQUOTE] = ACTIONS(1344), - [anon_sym_u8_SQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_L_DQUOTE] = ACTIONS(1344), - [anon_sym_u_DQUOTE] = ACTIONS(1344), - [anon_sym_U_DQUOTE] = ACTIONS(1344), - [anon_sym_u8_DQUOTE] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [anon_sym_NULL] = ACTIONS(1342), - [anon_sym_nullptr] = ACTIONS(1342), - [sym_comment] = ACTIONS(5), - }, - [293] = { - [ts_builtin_sym_end] = ACTIONS(1244), - [sym_identifier] = ACTIONS(1242), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1242), - [aux_sym_preproc_def_token1] = ACTIONS(1242), - [aux_sym_preproc_if_token1] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), - [sym_preproc_directive] = ACTIONS(1242), - [anon_sym_LPAREN2] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_TILDE] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym___extension__] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym___attribute__] = ACTIONS(1242), - [anon_sym___scanf] = ACTIONS(1242), - [anon_sym___printf] = ACTIONS(1242), - [anon_sym___read_mostly] = ACTIONS(1242), - [anon_sym___must_hold] = ACTIONS(1242), - [anon_sym___ro_after_init] = ACTIONS(1242), - [anon_sym___noreturn] = ACTIONS(1242), - [anon_sym___cold] = ACTIONS(1242), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1244), - [anon_sym___declspec] = ACTIONS(1242), - [anon_sym___init] = ACTIONS(1242), - [anon_sym___exit] = ACTIONS(1242), - [anon_sym___cdecl] = ACTIONS(1242), - [anon_sym___clrcall] = ACTIONS(1242), - [anon_sym___stdcall] = ACTIONS(1242), - [anon_sym___fastcall] = ACTIONS(1242), - [anon_sym___thiscall] = ACTIONS(1242), - [anon_sym___vectorcall] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_signed] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_long] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_register] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym___inline] = ACTIONS(1242), - [anon_sym___inline__] = ACTIONS(1242), - [anon_sym___forceinline] = ACTIONS(1242), - [anon_sym_thread_local] = ACTIONS(1242), - [anon_sym___thread] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_constexpr] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym___restrict__] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [anon_sym__Noreturn] = ACTIONS(1242), - [anon_sym_noreturn] = ACTIONS(1242), - [anon_sym_alignas] = ACTIONS(1242), - [anon_sym__Alignas] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_case] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [anon_sym___try] = ACTIONS(1242), - [anon_sym___leave] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym___alignof__] = ACTIONS(1242), - [anon_sym___alignof] = ACTIONS(1242), - [anon_sym__alignof] = ACTIONS(1242), - [anon_sym_alignof] = ACTIONS(1242), - [anon_sym__Alignof] = ACTIONS(1242), - [anon_sym_offsetof] = ACTIONS(1242), - [anon_sym__Generic] = ACTIONS(1242), - [anon_sym_asm] = ACTIONS(1242), - [anon_sym___asm__] = ACTIONS(1242), - [sym_number_literal] = ACTIONS(1244), - [anon_sym_L_SQUOTE] = ACTIONS(1244), - [anon_sym_u_SQUOTE] = ACTIONS(1244), - [anon_sym_U_SQUOTE] = ACTIONS(1244), - [anon_sym_u8_SQUOTE] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1244), - [anon_sym_L_DQUOTE] = ACTIONS(1244), - [anon_sym_u_DQUOTE] = ACTIONS(1244), - [anon_sym_U_DQUOTE] = ACTIONS(1244), - [anon_sym_u8_DQUOTE] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(1244), - [sym_true] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_NULL] = ACTIONS(1242), - [anon_sym_nullptr] = ACTIONS(1242), - [sym_comment] = ACTIONS(5), - }, - [294] = { - [ts_builtin_sym_end] = ACTIONS(1244), - [sym_identifier] = ACTIONS(1242), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1242), - [aux_sym_preproc_def_token1] = ACTIONS(1242), - [aux_sym_preproc_if_token1] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), - [sym_preproc_directive] = ACTIONS(1242), - [anon_sym_LPAREN2] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_TILDE] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym___extension__] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym___attribute__] = ACTIONS(1242), - [anon_sym___scanf] = ACTIONS(1242), - [anon_sym___printf] = ACTIONS(1242), - [anon_sym___read_mostly] = ACTIONS(1242), - [anon_sym___must_hold] = ACTIONS(1242), - [anon_sym___ro_after_init] = ACTIONS(1242), - [anon_sym___noreturn] = ACTIONS(1242), - [anon_sym___cold] = ACTIONS(1242), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1244), - [anon_sym___declspec] = ACTIONS(1242), - [anon_sym___init] = ACTIONS(1242), - [anon_sym___exit] = ACTIONS(1242), - [anon_sym___cdecl] = ACTIONS(1242), - [anon_sym___clrcall] = ACTIONS(1242), - [anon_sym___stdcall] = ACTIONS(1242), - [anon_sym___fastcall] = ACTIONS(1242), - [anon_sym___thiscall] = ACTIONS(1242), - [anon_sym___vectorcall] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_signed] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_long] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_register] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym___inline] = ACTIONS(1242), - [anon_sym___inline__] = ACTIONS(1242), - [anon_sym___forceinline] = ACTIONS(1242), - [anon_sym_thread_local] = ACTIONS(1242), - [anon_sym___thread] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_constexpr] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym___restrict__] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [anon_sym__Noreturn] = ACTIONS(1242), - [anon_sym_noreturn] = ACTIONS(1242), - [anon_sym_alignas] = ACTIONS(1242), - [anon_sym__Alignas] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_case] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [anon_sym___try] = ACTIONS(1242), - [anon_sym___leave] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym___alignof__] = ACTIONS(1242), - [anon_sym___alignof] = ACTIONS(1242), - [anon_sym__alignof] = ACTIONS(1242), - [anon_sym_alignof] = ACTIONS(1242), - [anon_sym__Alignof] = ACTIONS(1242), - [anon_sym_offsetof] = ACTIONS(1242), - [anon_sym__Generic] = ACTIONS(1242), - [anon_sym_asm] = ACTIONS(1242), - [anon_sym___asm__] = ACTIONS(1242), - [sym_number_literal] = ACTIONS(1244), - [anon_sym_L_SQUOTE] = ACTIONS(1244), - [anon_sym_u_SQUOTE] = ACTIONS(1244), - [anon_sym_U_SQUOTE] = ACTIONS(1244), - [anon_sym_u8_SQUOTE] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1244), - [anon_sym_L_DQUOTE] = ACTIONS(1244), - [anon_sym_u_DQUOTE] = ACTIONS(1244), - [anon_sym_U_DQUOTE] = ACTIONS(1244), - [anon_sym_u8_DQUOTE] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(1244), - [sym_true] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_NULL] = ACTIONS(1242), - [anon_sym_nullptr] = ACTIONS(1242), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym___scanf] = ACTIONS(1306), + [anon_sym___printf] = ACTIONS(1306), + [anon_sym___read_mostly] = ACTIONS(1306), + [anon_sym___must_hold] = ACTIONS(1306), + [anon_sym___ro_after_init] = ACTIONS(1306), + [anon_sym___noreturn] = ACTIONS(1306), + [anon_sym___cold] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___init] = ACTIONS(1306), + [anon_sym___exit] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [anon_sym_alignas] = ACTIONS(1306), + [anon_sym__Alignas] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(5), }, - [295] = { - [ts_builtin_sym_end] = ACTIONS(1248), - [sym_identifier] = ACTIONS(1246), + [267] = { + [sym_identifier] = ACTIONS(1286), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1246), - [aux_sym_preproc_def_token1] = ACTIONS(1246), - [aux_sym_preproc_if_token1] = ACTIONS(1246), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1246), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1246), - [sym_preproc_directive] = ACTIONS(1246), - [anon_sym_LPAREN2] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(1248), - [anon_sym_TILDE] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1248), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_SEMI] = ACTIONS(1248), - [anon_sym___extension__] = ACTIONS(1246), - [anon_sym_typedef] = ACTIONS(1246), - [anon_sym_extern] = ACTIONS(1246), - [anon_sym___attribute__] = ACTIONS(1246), - [anon_sym___scanf] = ACTIONS(1246), - [anon_sym___printf] = ACTIONS(1246), - [anon_sym___read_mostly] = ACTIONS(1246), - [anon_sym___must_hold] = ACTIONS(1246), - [anon_sym___ro_after_init] = ACTIONS(1246), - [anon_sym___noreturn] = ACTIONS(1246), - [anon_sym___cold] = ACTIONS(1246), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1248), - [anon_sym___declspec] = ACTIONS(1246), - [anon_sym___init] = ACTIONS(1246), - [anon_sym___exit] = ACTIONS(1246), - [anon_sym___cdecl] = ACTIONS(1246), - [anon_sym___clrcall] = ACTIONS(1246), - [anon_sym___stdcall] = ACTIONS(1246), - [anon_sym___fastcall] = ACTIONS(1246), - [anon_sym___thiscall] = ACTIONS(1246), - [anon_sym___vectorcall] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_signed] = ACTIONS(1246), - [anon_sym_unsigned] = ACTIONS(1246), - [anon_sym_long] = ACTIONS(1246), - [anon_sym_short] = ACTIONS(1246), - [anon_sym_static] = ACTIONS(1246), - [anon_sym_auto] = ACTIONS(1246), - [anon_sym_register] = ACTIONS(1246), - [anon_sym_inline] = ACTIONS(1246), - [anon_sym___inline] = ACTIONS(1246), - [anon_sym___inline__] = ACTIONS(1246), - [anon_sym___forceinline] = ACTIONS(1246), - [anon_sym_thread_local] = ACTIONS(1246), - [anon_sym___thread] = ACTIONS(1246), - [anon_sym_const] = ACTIONS(1246), - [anon_sym_constexpr] = ACTIONS(1246), - [anon_sym_volatile] = ACTIONS(1246), - [anon_sym_restrict] = ACTIONS(1246), - [anon_sym___restrict__] = ACTIONS(1246), - [anon_sym__Atomic] = ACTIONS(1246), - [anon_sym__Noreturn] = ACTIONS(1246), - [anon_sym_noreturn] = ACTIONS(1246), - [anon_sym_alignas] = ACTIONS(1246), - [anon_sym__Alignas] = ACTIONS(1246), - [sym_primitive_type] = ACTIONS(1246), - [anon_sym_enum] = ACTIONS(1246), - [anon_sym_struct] = ACTIONS(1246), - [anon_sym_union] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1246), - [anon_sym_else] = ACTIONS(1246), - [anon_sym_switch] = ACTIONS(1246), - [anon_sym_case] = ACTIONS(1246), - [anon_sym_default] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_do] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(1246), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1246), - [anon_sym_goto] = ACTIONS(1246), - [anon_sym___try] = ACTIONS(1246), - [anon_sym___leave] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1248), - [anon_sym_PLUS_PLUS] = ACTIONS(1248), - [anon_sym_sizeof] = ACTIONS(1246), - [anon_sym___alignof__] = ACTIONS(1246), - [anon_sym___alignof] = ACTIONS(1246), - [anon_sym__alignof] = ACTIONS(1246), - [anon_sym_alignof] = ACTIONS(1246), - [anon_sym__Alignof] = ACTIONS(1246), - [anon_sym_offsetof] = ACTIONS(1246), - [anon_sym__Generic] = ACTIONS(1246), - [anon_sym_asm] = ACTIONS(1246), - [anon_sym___asm__] = ACTIONS(1246), - [sym_number_literal] = ACTIONS(1248), - [anon_sym_L_SQUOTE] = ACTIONS(1248), - [anon_sym_u_SQUOTE] = ACTIONS(1248), - [anon_sym_U_SQUOTE] = ACTIONS(1248), - [anon_sym_u8_SQUOTE] = ACTIONS(1248), - [anon_sym_SQUOTE] = ACTIONS(1248), - [anon_sym_L_DQUOTE] = ACTIONS(1248), - [anon_sym_u_DQUOTE] = ACTIONS(1248), - [anon_sym_U_DQUOTE] = ACTIONS(1248), - [anon_sym_u8_DQUOTE] = ACTIONS(1248), - [anon_sym_DQUOTE] = ACTIONS(1248), - [sym_true] = ACTIONS(1246), - [sym_false] = ACTIONS(1246), - [anon_sym_NULL] = ACTIONS(1246), - [anon_sym_nullptr] = ACTIONS(1246), - [sym_comment] = ACTIONS(5), - }, - [296] = { - [ts_builtin_sym_end] = ACTIONS(1244), - [sym_identifier] = ACTIONS(1242), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1242), - [aux_sym_preproc_def_token1] = ACTIONS(1242), - [aux_sym_preproc_if_token1] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), - [sym_preproc_directive] = ACTIONS(1242), - [anon_sym_LPAREN2] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_TILDE] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym___extension__] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym___attribute__] = ACTIONS(1242), - [anon_sym___scanf] = ACTIONS(1242), - [anon_sym___printf] = ACTIONS(1242), - [anon_sym___read_mostly] = ACTIONS(1242), - [anon_sym___must_hold] = ACTIONS(1242), - [anon_sym___ro_after_init] = ACTIONS(1242), - [anon_sym___noreturn] = ACTIONS(1242), - [anon_sym___cold] = ACTIONS(1242), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1244), - [anon_sym___declspec] = ACTIONS(1242), - [anon_sym___init] = ACTIONS(1242), - [anon_sym___exit] = ACTIONS(1242), - [anon_sym___cdecl] = ACTIONS(1242), - [anon_sym___clrcall] = ACTIONS(1242), - [anon_sym___stdcall] = ACTIONS(1242), - [anon_sym___fastcall] = ACTIONS(1242), - [anon_sym___thiscall] = ACTIONS(1242), - [anon_sym___vectorcall] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_signed] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_long] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_register] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym___inline] = ACTIONS(1242), - [anon_sym___inline__] = ACTIONS(1242), - [anon_sym___forceinline] = ACTIONS(1242), - [anon_sym_thread_local] = ACTIONS(1242), - [anon_sym___thread] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_constexpr] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym___restrict__] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [anon_sym__Noreturn] = ACTIONS(1242), - [anon_sym_noreturn] = ACTIONS(1242), - [anon_sym_alignas] = ACTIONS(1242), - [anon_sym__Alignas] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_case] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [anon_sym___try] = ACTIONS(1242), - [anon_sym___leave] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym___alignof__] = ACTIONS(1242), - [anon_sym___alignof] = ACTIONS(1242), - [anon_sym__alignof] = ACTIONS(1242), - [anon_sym_alignof] = ACTIONS(1242), - [anon_sym__Alignof] = ACTIONS(1242), - [anon_sym_offsetof] = ACTIONS(1242), - [anon_sym__Generic] = ACTIONS(1242), - [anon_sym_asm] = ACTIONS(1242), - [anon_sym___asm__] = ACTIONS(1242), - [sym_number_literal] = ACTIONS(1244), - [anon_sym_L_SQUOTE] = ACTIONS(1244), - [anon_sym_u_SQUOTE] = ACTIONS(1244), - [anon_sym_U_SQUOTE] = ACTIONS(1244), - [anon_sym_u8_SQUOTE] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1244), - [anon_sym_L_DQUOTE] = ACTIONS(1244), - [anon_sym_u_DQUOTE] = ACTIONS(1244), - [anon_sym_U_DQUOTE] = ACTIONS(1244), - [anon_sym_u8_DQUOTE] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(1244), - [sym_true] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_NULL] = ACTIONS(1242), - [anon_sym_nullptr] = ACTIONS(1242), - [sym_comment] = ACTIONS(5), - }, - [297] = { - [sym_identifier] = ACTIONS(1476), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1476), - [aux_sym_preproc_def_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token2] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), - [sym_preproc_directive] = ACTIONS(1476), - [anon_sym_LPAREN2] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym___extension__] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym___attribute__] = ACTIONS(1476), - [anon_sym___scanf] = ACTIONS(1476), - [anon_sym___printf] = ACTIONS(1476), - [anon_sym___read_mostly] = ACTIONS(1476), - [anon_sym___must_hold] = ACTIONS(1476), - [anon_sym___ro_after_init] = ACTIONS(1476), - [anon_sym___noreturn] = ACTIONS(1476), - [anon_sym___cold] = ACTIONS(1476), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), - [anon_sym___declspec] = ACTIONS(1476), - [anon_sym___init] = ACTIONS(1476), - [anon_sym___exit] = ACTIONS(1476), - [anon_sym___cdecl] = ACTIONS(1476), - [anon_sym___clrcall] = ACTIONS(1476), - [anon_sym___stdcall] = ACTIONS(1476), - [anon_sym___fastcall] = ACTIONS(1476), - [anon_sym___thiscall] = ACTIONS(1476), - [anon_sym___vectorcall] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_signed] = ACTIONS(1476), - [anon_sym_unsigned] = ACTIONS(1476), - [anon_sym_long] = ACTIONS(1476), - [anon_sym_short] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_auto] = ACTIONS(1476), - [anon_sym_register] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym___inline] = ACTIONS(1476), - [anon_sym___inline__] = ACTIONS(1476), - [anon_sym___forceinline] = ACTIONS(1476), - [anon_sym_thread_local] = ACTIONS(1476), - [anon_sym___thread] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1476), - [anon_sym_volatile] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1476), - [anon_sym___restrict__] = ACTIONS(1476), - [anon_sym__Atomic] = ACTIONS(1476), - [anon_sym__Noreturn] = ACTIONS(1476), - [anon_sym_noreturn] = ACTIONS(1476), - [anon_sym_alignas] = ACTIONS(1476), - [anon_sym__Alignas] = ACTIONS(1476), - [sym_primitive_type] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_union] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_case] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_goto] = ACTIONS(1476), - [anon_sym___try] = ACTIONS(1476), - [anon_sym___leave] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_sizeof] = ACTIONS(1476), - [anon_sym___alignof__] = ACTIONS(1476), - [anon_sym___alignof] = ACTIONS(1476), - [anon_sym__alignof] = ACTIONS(1476), - [anon_sym_alignof] = ACTIONS(1476), - [anon_sym__Alignof] = ACTIONS(1476), - [anon_sym_offsetof] = ACTIONS(1476), - [anon_sym__Generic] = ACTIONS(1476), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym___asm__] = ACTIONS(1476), - [sym_number_literal] = ACTIONS(1478), - [anon_sym_L_SQUOTE] = ACTIONS(1478), - [anon_sym_u_SQUOTE] = ACTIONS(1478), - [anon_sym_U_SQUOTE] = ACTIONS(1478), - [anon_sym_u8_SQUOTE] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_L_DQUOTE] = ACTIONS(1478), - [anon_sym_u_DQUOTE] = ACTIONS(1478), - [anon_sym_U_DQUOTE] = ACTIONS(1478), - [anon_sym_u8_DQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [anon_sym_NULL] = ACTIONS(1476), - [anon_sym_nullptr] = ACTIONS(1476), - [sym_comment] = ACTIONS(5), - }, - [298] = { - [sym_identifier] = ACTIONS(1424), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1424), - [aux_sym_preproc_def_token1] = ACTIONS(1424), - [aux_sym_preproc_if_token1] = ACTIONS(1424), - [aux_sym_preproc_if_token2] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), - [sym_preproc_directive] = ACTIONS(1424), - [anon_sym_LPAREN2] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_TILDE] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1424), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym___extension__] = ACTIONS(1424), - [anon_sym_typedef] = ACTIONS(1424), - [anon_sym_extern] = ACTIONS(1424), - [anon_sym___attribute__] = ACTIONS(1424), - [anon_sym___scanf] = ACTIONS(1424), - [anon_sym___printf] = ACTIONS(1424), - [anon_sym___read_mostly] = ACTIONS(1424), - [anon_sym___must_hold] = ACTIONS(1424), - [anon_sym___ro_after_init] = ACTIONS(1424), - [anon_sym___noreturn] = ACTIONS(1424), - [anon_sym___cold] = ACTIONS(1424), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), - [anon_sym___declspec] = ACTIONS(1424), - [anon_sym___init] = ACTIONS(1424), - [anon_sym___exit] = ACTIONS(1424), - [anon_sym___cdecl] = ACTIONS(1424), - [anon_sym___clrcall] = ACTIONS(1424), - [anon_sym___stdcall] = ACTIONS(1424), - [anon_sym___fastcall] = ACTIONS(1424), - [anon_sym___thiscall] = ACTIONS(1424), - [anon_sym___vectorcall] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_signed] = ACTIONS(1424), - [anon_sym_unsigned] = ACTIONS(1424), - [anon_sym_long] = ACTIONS(1424), - [anon_sym_short] = ACTIONS(1424), - [anon_sym_static] = ACTIONS(1424), - [anon_sym_auto] = ACTIONS(1424), - [anon_sym_register] = ACTIONS(1424), - [anon_sym_inline] = ACTIONS(1424), - [anon_sym___inline] = ACTIONS(1424), - [anon_sym___inline__] = ACTIONS(1424), - [anon_sym___forceinline] = ACTIONS(1424), - [anon_sym_thread_local] = ACTIONS(1424), - [anon_sym___thread] = ACTIONS(1424), - [anon_sym_const] = ACTIONS(1424), - [anon_sym_constexpr] = ACTIONS(1424), - [anon_sym_volatile] = ACTIONS(1424), - [anon_sym_restrict] = ACTIONS(1424), - [anon_sym___restrict__] = ACTIONS(1424), - [anon_sym__Atomic] = ACTIONS(1424), - [anon_sym__Noreturn] = ACTIONS(1424), - [anon_sym_noreturn] = ACTIONS(1424), - [anon_sym_alignas] = ACTIONS(1424), - [anon_sym__Alignas] = ACTIONS(1424), - [sym_primitive_type] = ACTIONS(1424), - [anon_sym_enum] = ACTIONS(1424), - [anon_sym_struct] = ACTIONS(1424), - [anon_sym_union] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1424), - [anon_sym_switch] = ACTIONS(1424), - [anon_sym_case] = ACTIONS(1424), - [anon_sym_default] = ACTIONS(1424), - [anon_sym_while] = ACTIONS(1424), - [anon_sym_do] = ACTIONS(1424), - [anon_sym_for] = ACTIONS(1424), - [anon_sym_return] = ACTIONS(1424), - [anon_sym_break] = ACTIONS(1424), - [anon_sym_continue] = ACTIONS(1424), - [anon_sym_goto] = ACTIONS(1424), - [anon_sym___try] = ACTIONS(1424), - [anon_sym___leave] = ACTIONS(1424), - [anon_sym_DASH_DASH] = ACTIONS(1426), - [anon_sym_PLUS_PLUS] = ACTIONS(1426), - [anon_sym_sizeof] = ACTIONS(1424), - [anon_sym___alignof__] = ACTIONS(1424), - [anon_sym___alignof] = ACTIONS(1424), - [anon_sym__alignof] = ACTIONS(1424), - [anon_sym_alignof] = ACTIONS(1424), - [anon_sym__Alignof] = ACTIONS(1424), - [anon_sym_offsetof] = ACTIONS(1424), - [anon_sym__Generic] = ACTIONS(1424), - [anon_sym_asm] = ACTIONS(1424), - [anon_sym___asm__] = ACTIONS(1424), - [sym_number_literal] = ACTIONS(1426), - [anon_sym_L_SQUOTE] = ACTIONS(1426), - [anon_sym_u_SQUOTE] = ACTIONS(1426), - [anon_sym_U_SQUOTE] = ACTIONS(1426), - [anon_sym_u8_SQUOTE] = ACTIONS(1426), - [anon_sym_SQUOTE] = ACTIONS(1426), - [anon_sym_L_DQUOTE] = ACTIONS(1426), - [anon_sym_u_DQUOTE] = ACTIONS(1426), - [anon_sym_U_DQUOTE] = ACTIONS(1426), - [anon_sym_u8_DQUOTE] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [sym_true] = ACTIONS(1424), - [sym_false] = ACTIONS(1424), - [anon_sym_NULL] = ACTIONS(1424), - [anon_sym_nullptr] = ACTIONS(1424), - [sym_comment] = ACTIONS(5), - }, - [299] = { - [sym_identifier] = ACTIONS(1404), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1404), - [aux_sym_preproc_def_token1] = ACTIONS(1404), - [aux_sym_preproc_if_token1] = ACTIONS(1404), - [aux_sym_preproc_if_token2] = ACTIONS(1404), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1404), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1404), - [sym_preproc_directive] = ACTIONS(1404), - [anon_sym_LPAREN2] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(1406), - [anon_sym_TILDE] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1404), - [anon_sym_STAR] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1406), - [anon_sym_SEMI] = ACTIONS(1406), - [anon_sym___extension__] = ACTIONS(1404), - [anon_sym_typedef] = ACTIONS(1404), - [anon_sym_extern] = ACTIONS(1404), - [anon_sym___attribute__] = ACTIONS(1404), - [anon_sym___scanf] = ACTIONS(1404), - [anon_sym___printf] = ACTIONS(1404), - [anon_sym___read_mostly] = ACTIONS(1404), - [anon_sym___must_hold] = ACTIONS(1404), - [anon_sym___ro_after_init] = ACTIONS(1404), - [anon_sym___noreturn] = ACTIONS(1404), - [anon_sym___cold] = ACTIONS(1404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), - [anon_sym___declspec] = ACTIONS(1404), - [anon_sym___init] = ACTIONS(1404), - [anon_sym___exit] = ACTIONS(1404), - [anon_sym___cdecl] = ACTIONS(1404), - [anon_sym___clrcall] = ACTIONS(1404), - [anon_sym___stdcall] = ACTIONS(1404), - [anon_sym___fastcall] = ACTIONS(1404), - [anon_sym___thiscall] = ACTIONS(1404), - [anon_sym___vectorcall] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_signed] = ACTIONS(1404), - [anon_sym_unsigned] = ACTIONS(1404), - [anon_sym_long] = ACTIONS(1404), - [anon_sym_short] = ACTIONS(1404), - [anon_sym_static] = ACTIONS(1404), - [anon_sym_auto] = ACTIONS(1404), - [anon_sym_register] = ACTIONS(1404), - [anon_sym_inline] = ACTIONS(1404), - [anon_sym___inline] = ACTIONS(1404), - [anon_sym___inline__] = ACTIONS(1404), - [anon_sym___forceinline] = ACTIONS(1404), - [anon_sym_thread_local] = ACTIONS(1404), - [anon_sym___thread] = ACTIONS(1404), - [anon_sym_const] = ACTIONS(1404), - [anon_sym_constexpr] = ACTIONS(1404), - [anon_sym_volatile] = ACTIONS(1404), - [anon_sym_restrict] = ACTIONS(1404), - [anon_sym___restrict__] = ACTIONS(1404), - [anon_sym__Atomic] = ACTIONS(1404), - [anon_sym__Noreturn] = ACTIONS(1404), - [anon_sym_noreturn] = ACTIONS(1404), - [anon_sym_alignas] = ACTIONS(1404), - [anon_sym__Alignas] = ACTIONS(1404), - [sym_primitive_type] = ACTIONS(1404), - [anon_sym_enum] = ACTIONS(1404), - [anon_sym_struct] = ACTIONS(1404), - [anon_sym_union] = ACTIONS(1404), - [anon_sym_if] = ACTIONS(1404), - [anon_sym_switch] = ACTIONS(1404), - [anon_sym_case] = ACTIONS(1404), - [anon_sym_default] = ACTIONS(1404), - [anon_sym_while] = ACTIONS(1404), - [anon_sym_do] = ACTIONS(1404), - [anon_sym_for] = ACTIONS(1404), - [anon_sym_return] = ACTIONS(1404), - [anon_sym_break] = ACTIONS(1404), - [anon_sym_continue] = ACTIONS(1404), - [anon_sym_goto] = ACTIONS(1404), - [anon_sym___try] = ACTIONS(1404), - [anon_sym___leave] = ACTIONS(1404), - [anon_sym_DASH_DASH] = ACTIONS(1406), - [anon_sym_PLUS_PLUS] = ACTIONS(1406), - [anon_sym_sizeof] = ACTIONS(1404), - [anon_sym___alignof__] = ACTIONS(1404), - [anon_sym___alignof] = ACTIONS(1404), - [anon_sym__alignof] = ACTIONS(1404), - [anon_sym_alignof] = ACTIONS(1404), - [anon_sym__Alignof] = ACTIONS(1404), - [anon_sym_offsetof] = ACTIONS(1404), - [anon_sym__Generic] = ACTIONS(1404), - [anon_sym_asm] = ACTIONS(1404), - [anon_sym___asm__] = ACTIONS(1404), - [sym_number_literal] = ACTIONS(1406), - [anon_sym_L_SQUOTE] = ACTIONS(1406), - [anon_sym_u_SQUOTE] = ACTIONS(1406), - [anon_sym_U_SQUOTE] = ACTIONS(1406), - [anon_sym_u8_SQUOTE] = ACTIONS(1406), - [anon_sym_SQUOTE] = ACTIONS(1406), - [anon_sym_L_DQUOTE] = ACTIONS(1406), - [anon_sym_u_DQUOTE] = ACTIONS(1406), - [anon_sym_U_DQUOTE] = ACTIONS(1406), - [anon_sym_u8_DQUOTE] = ACTIONS(1406), - [anon_sym_DQUOTE] = ACTIONS(1406), - [sym_true] = ACTIONS(1404), - [sym_false] = ACTIONS(1404), - [anon_sym_NULL] = ACTIONS(1404), - [anon_sym_nullptr] = ACTIONS(1404), + [aux_sym_preproc_include_token1] = ACTIONS(1286), + [aux_sym_preproc_def_token1] = ACTIONS(1286), + [aux_sym_preproc_if_token1] = ACTIONS(1286), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1286), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1286), + [sym_preproc_directive] = ACTIONS(1286), + [anon_sym_LPAREN2] = ACTIONS(1288), + [anon_sym_BANG] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_DASH] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1288), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym___extension__] = ACTIONS(1286), + [anon_sym_typedef] = ACTIONS(1286), + [anon_sym_extern] = ACTIONS(1286), + [anon_sym___attribute__] = ACTIONS(1286), + [anon_sym___scanf] = ACTIONS(1286), + [anon_sym___printf] = ACTIONS(1286), + [anon_sym___read_mostly] = ACTIONS(1286), + [anon_sym___must_hold] = ACTIONS(1286), + [anon_sym___ro_after_init] = ACTIONS(1286), + [anon_sym___noreturn] = ACTIONS(1286), + [anon_sym___cold] = ACTIONS(1286), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1288), + [anon_sym___declspec] = ACTIONS(1286), + [anon_sym___init] = ACTIONS(1286), + [anon_sym___exit] = ACTIONS(1286), + [anon_sym___cdecl] = ACTIONS(1286), + [anon_sym___clrcall] = ACTIONS(1286), + [anon_sym___stdcall] = ACTIONS(1286), + [anon_sym___fastcall] = ACTIONS(1286), + [anon_sym___thiscall] = ACTIONS(1286), + [anon_sym___vectorcall] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_RBRACE] = ACTIONS(1288), + [anon_sym_signed] = ACTIONS(1286), + [anon_sym_unsigned] = ACTIONS(1286), + [anon_sym_long] = ACTIONS(1286), + [anon_sym_short] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_auto] = ACTIONS(1286), + [anon_sym_register] = ACTIONS(1286), + [anon_sym_inline] = ACTIONS(1286), + [anon_sym___inline] = ACTIONS(1286), + [anon_sym___inline__] = ACTIONS(1286), + [anon_sym___forceinline] = ACTIONS(1286), + [anon_sym_thread_local] = ACTIONS(1286), + [anon_sym___thread] = ACTIONS(1286), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_constexpr] = ACTIONS(1286), + [anon_sym_volatile] = ACTIONS(1286), + [anon_sym_restrict] = ACTIONS(1286), + [anon_sym___restrict__] = ACTIONS(1286), + [anon_sym__Atomic] = ACTIONS(1286), + [anon_sym__Noreturn] = ACTIONS(1286), + [anon_sym_noreturn] = ACTIONS(1286), + [anon_sym_alignas] = ACTIONS(1286), + [anon_sym__Alignas] = ACTIONS(1286), + [sym_primitive_type] = ACTIONS(1286), + [anon_sym_enum] = ACTIONS(1286), + [anon_sym_struct] = ACTIONS(1286), + [anon_sym_union] = ACTIONS(1286), + [anon_sym_if] = ACTIONS(1286), + [anon_sym_else] = ACTIONS(1286), + [anon_sym_switch] = ACTIONS(1286), + [anon_sym_case] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1286), + [anon_sym_while] = ACTIONS(1286), + [anon_sym_do] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1286), + [anon_sym_return] = ACTIONS(1286), + [anon_sym_break] = ACTIONS(1286), + [anon_sym_continue] = ACTIONS(1286), + [anon_sym_goto] = ACTIONS(1286), + [anon_sym___try] = ACTIONS(1286), + [anon_sym___leave] = ACTIONS(1286), + [anon_sym_DASH_DASH] = ACTIONS(1288), + [anon_sym_PLUS_PLUS] = ACTIONS(1288), + [anon_sym_sizeof] = ACTIONS(1286), + [anon_sym___alignof__] = ACTIONS(1286), + [anon_sym___alignof] = ACTIONS(1286), + [anon_sym__alignof] = ACTIONS(1286), + [anon_sym_alignof] = ACTIONS(1286), + [anon_sym__Alignof] = ACTIONS(1286), + [anon_sym_offsetof] = ACTIONS(1286), + [anon_sym__Generic] = ACTIONS(1286), + [anon_sym_asm] = ACTIONS(1286), + [anon_sym___asm__] = ACTIONS(1286), + [sym_number_literal] = ACTIONS(1288), + [anon_sym_L_SQUOTE] = ACTIONS(1288), + [anon_sym_u_SQUOTE] = ACTIONS(1288), + [anon_sym_U_SQUOTE] = ACTIONS(1288), + [anon_sym_u8_SQUOTE] = ACTIONS(1288), + [anon_sym_SQUOTE] = ACTIONS(1288), + [anon_sym_L_DQUOTE] = ACTIONS(1288), + [anon_sym_u_DQUOTE] = ACTIONS(1288), + [anon_sym_U_DQUOTE] = ACTIONS(1288), + [anon_sym_u8_DQUOTE] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1288), + [sym_true] = ACTIONS(1286), + [sym_false] = ACTIONS(1286), + [anon_sym_NULL] = ACTIONS(1286), + [anon_sym_nullptr] = ACTIONS(1286), [sym_comment] = ACTIONS(5), }, - [300] = { - [sym_identifier] = ACTIONS(1476), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1476), - [aux_sym_preproc_def_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), - [sym_preproc_directive] = ACTIONS(1476), - [anon_sym_LPAREN2] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym___extension__] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym___attribute__] = ACTIONS(1476), - [anon_sym___scanf] = ACTIONS(1476), - [anon_sym___printf] = ACTIONS(1476), - [anon_sym___read_mostly] = ACTIONS(1476), - [anon_sym___must_hold] = ACTIONS(1476), - [anon_sym___ro_after_init] = ACTIONS(1476), - [anon_sym___noreturn] = ACTIONS(1476), - [anon_sym___cold] = ACTIONS(1476), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), - [anon_sym___declspec] = ACTIONS(1476), - [anon_sym___init] = ACTIONS(1476), - [anon_sym___exit] = ACTIONS(1476), - [anon_sym___cdecl] = ACTIONS(1476), - [anon_sym___clrcall] = ACTIONS(1476), - [anon_sym___stdcall] = ACTIONS(1476), - [anon_sym___fastcall] = ACTIONS(1476), - [anon_sym___thiscall] = ACTIONS(1476), - [anon_sym___vectorcall] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_signed] = ACTIONS(1476), - [anon_sym_unsigned] = ACTIONS(1476), - [anon_sym_long] = ACTIONS(1476), - [anon_sym_short] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_auto] = ACTIONS(1476), - [anon_sym_register] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym___inline] = ACTIONS(1476), - [anon_sym___inline__] = ACTIONS(1476), - [anon_sym___forceinline] = ACTIONS(1476), - [anon_sym_thread_local] = ACTIONS(1476), - [anon_sym___thread] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1476), - [anon_sym_volatile] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1476), - [anon_sym___restrict__] = ACTIONS(1476), - [anon_sym__Atomic] = ACTIONS(1476), - [anon_sym__Noreturn] = ACTIONS(1476), - [anon_sym_noreturn] = ACTIONS(1476), - [anon_sym_alignas] = ACTIONS(1476), - [anon_sym__Alignas] = ACTIONS(1476), - [sym_primitive_type] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_union] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_case] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_goto] = ACTIONS(1476), - [anon_sym___try] = ACTIONS(1476), - [anon_sym___leave] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_sizeof] = ACTIONS(1476), - [anon_sym___alignof__] = ACTIONS(1476), - [anon_sym___alignof] = ACTIONS(1476), - [anon_sym__alignof] = ACTIONS(1476), - [anon_sym_alignof] = ACTIONS(1476), - [anon_sym__Alignof] = ACTIONS(1476), - [anon_sym_offsetof] = ACTIONS(1476), - [anon_sym__Generic] = ACTIONS(1476), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym___asm__] = ACTIONS(1476), - [sym_number_literal] = ACTIONS(1478), - [anon_sym_L_SQUOTE] = ACTIONS(1478), - [anon_sym_u_SQUOTE] = ACTIONS(1478), - [anon_sym_U_SQUOTE] = ACTIONS(1478), - [anon_sym_u8_SQUOTE] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_L_DQUOTE] = ACTIONS(1478), - [anon_sym_u_DQUOTE] = ACTIONS(1478), - [anon_sym_U_DQUOTE] = ACTIONS(1478), - [anon_sym_u8_DQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [anon_sym_NULL] = ACTIONS(1476), - [anon_sym_nullptr] = ACTIONS(1476), + [268] = { + [sym_identifier] = ACTIONS(1290), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1290), + [aux_sym_preproc_def_token1] = ACTIONS(1290), + [aux_sym_preproc_if_token1] = ACTIONS(1290), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1290), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1290), + [sym_preproc_directive] = ACTIONS(1290), + [anon_sym_LPAREN2] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1290), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym___extension__] = ACTIONS(1290), + [anon_sym_typedef] = ACTIONS(1290), + [anon_sym_extern] = ACTIONS(1290), + [anon_sym___attribute__] = ACTIONS(1290), + [anon_sym___scanf] = ACTIONS(1290), + [anon_sym___printf] = ACTIONS(1290), + [anon_sym___read_mostly] = ACTIONS(1290), + [anon_sym___must_hold] = ACTIONS(1290), + [anon_sym___ro_after_init] = ACTIONS(1290), + [anon_sym___noreturn] = ACTIONS(1290), + [anon_sym___cold] = ACTIONS(1290), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1292), + [anon_sym___declspec] = ACTIONS(1290), + [anon_sym___init] = ACTIONS(1290), + [anon_sym___exit] = ACTIONS(1290), + [anon_sym___cdecl] = ACTIONS(1290), + [anon_sym___clrcall] = ACTIONS(1290), + [anon_sym___stdcall] = ACTIONS(1290), + [anon_sym___fastcall] = ACTIONS(1290), + [anon_sym___thiscall] = ACTIONS(1290), + [anon_sym___vectorcall] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_signed] = ACTIONS(1290), + [anon_sym_unsigned] = ACTIONS(1290), + [anon_sym_long] = ACTIONS(1290), + [anon_sym_short] = ACTIONS(1290), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_auto] = ACTIONS(1290), + [anon_sym_register] = ACTIONS(1290), + [anon_sym_inline] = ACTIONS(1290), + [anon_sym___inline] = ACTIONS(1290), + [anon_sym___inline__] = ACTIONS(1290), + [anon_sym___forceinline] = ACTIONS(1290), + [anon_sym_thread_local] = ACTIONS(1290), + [anon_sym___thread] = ACTIONS(1290), + [anon_sym_const] = ACTIONS(1290), + [anon_sym_constexpr] = ACTIONS(1290), + [anon_sym_volatile] = ACTIONS(1290), + [anon_sym_restrict] = ACTIONS(1290), + [anon_sym___restrict__] = ACTIONS(1290), + [anon_sym__Atomic] = ACTIONS(1290), + [anon_sym__Noreturn] = ACTIONS(1290), + [anon_sym_noreturn] = ACTIONS(1290), + [anon_sym_alignas] = ACTIONS(1290), + [anon_sym__Alignas] = ACTIONS(1290), + [sym_primitive_type] = ACTIONS(1290), + [anon_sym_enum] = ACTIONS(1290), + [anon_sym_struct] = ACTIONS(1290), + [anon_sym_union] = ACTIONS(1290), + [anon_sym_if] = ACTIONS(1290), + [anon_sym_else] = ACTIONS(1290), + [anon_sym_switch] = ACTIONS(1290), + [anon_sym_case] = ACTIONS(1290), + [anon_sym_default] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_do] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1290), + [anon_sym_return] = ACTIONS(1290), + [anon_sym_break] = ACTIONS(1290), + [anon_sym_continue] = ACTIONS(1290), + [anon_sym_goto] = ACTIONS(1290), + [anon_sym___try] = ACTIONS(1290), + [anon_sym___leave] = ACTIONS(1290), + [anon_sym_DASH_DASH] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [anon_sym_sizeof] = ACTIONS(1290), + [anon_sym___alignof__] = ACTIONS(1290), + [anon_sym___alignof] = ACTIONS(1290), + [anon_sym__alignof] = ACTIONS(1290), + [anon_sym_alignof] = ACTIONS(1290), + [anon_sym__Alignof] = ACTIONS(1290), + [anon_sym_offsetof] = ACTIONS(1290), + [anon_sym__Generic] = ACTIONS(1290), + [anon_sym_asm] = ACTIONS(1290), + [anon_sym___asm__] = ACTIONS(1290), + [sym_number_literal] = ACTIONS(1292), + [anon_sym_L_SQUOTE] = ACTIONS(1292), + [anon_sym_u_SQUOTE] = ACTIONS(1292), + [anon_sym_U_SQUOTE] = ACTIONS(1292), + [anon_sym_u8_SQUOTE] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1292), + [anon_sym_L_DQUOTE] = ACTIONS(1292), + [anon_sym_u_DQUOTE] = ACTIONS(1292), + [anon_sym_U_DQUOTE] = ACTIONS(1292), + [anon_sym_u8_DQUOTE] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(1292), + [sym_true] = ACTIONS(1290), + [sym_false] = ACTIONS(1290), + [anon_sym_NULL] = ACTIONS(1290), + [anon_sym_nullptr] = ACTIONS(1290), [sym_comment] = ACTIONS(5), }, - [301] = { - [sym_identifier] = ACTIONS(1374), + [269] = { + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1298), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1374), - [aux_sym_preproc_def_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), - [sym_preproc_directive] = ACTIONS(1374), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym___extension__] = ACTIONS(1374), - [anon_sym_typedef] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym___attribute__] = ACTIONS(1374), - [anon_sym___scanf] = ACTIONS(1374), - [anon_sym___printf] = ACTIONS(1374), - [anon_sym___read_mostly] = ACTIONS(1374), - [anon_sym___must_hold] = ACTIONS(1374), - [anon_sym___ro_after_init] = ACTIONS(1374), - [anon_sym___noreturn] = ACTIONS(1374), - [anon_sym___cold] = ACTIONS(1374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym___declspec] = ACTIONS(1374), - [anon_sym___init] = ACTIONS(1374), - [anon_sym___exit] = ACTIONS(1374), - [anon_sym___cdecl] = ACTIONS(1374), - [anon_sym___clrcall] = ACTIONS(1374), - [anon_sym___stdcall] = ACTIONS(1374), - [anon_sym___fastcall] = ACTIONS(1374), - [anon_sym___thiscall] = ACTIONS(1374), - [anon_sym___vectorcall] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_signed] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_inline] = ACTIONS(1374), - [anon_sym___inline] = ACTIONS(1374), - [anon_sym___inline__] = ACTIONS(1374), - [anon_sym___forceinline] = ACTIONS(1374), - [anon_sym_thread_local] = ACTIONS(1374), - [anon_sym___thread] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_constexpr] = ACTIONS(1374), - [anon_sym_volatile] = ACTIONS(1374), - [anon_sym_restrict] = ACTIONS(1374), - [anon_sym___restrict__] = ACTIONS(1374), - [anon_sym__Atomic] = ACTIONS(1374), - [anon_sym__Noreturn] = ACTIONS(1374), - [anon_sym_noreturn] = ACTIONS(1374), - [anon_sym_alignas] = ACTIONS(1374), - [anon_sym__Alignas] = ACTIONS(1374), - [sym_primitive_type] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1374), - [anon_sym_case] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_goto] = ACTIONS(1374), - [anon_sym___try] = ACTIONS(1374), - [anon_sym___leave] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1374), - [anon_sym___alignof__] = ACTIONS(1374), - [anon_sym___alignof] = ACTIONS(1374), - [anon_sym__alignof] = ACTIONS(1374), - [anon_sym_alignof] = ACTIONS(1374), - [anon_sym__Alignof] = ACTIONS(1374), - [anon_sym_offsetof] = ACTIONS(1374), - [anon_sym__Generic] = ACTIONS(1374), - [anon_sym_asm] = ACTIONS(1374), - [anon_sym___asm__] = ACTIONS(1374), - [sym_number_literal] = ACTIONS(1376), - [anon_sym_L_SQUOTE] = ACTIONS(1376), - [anon_sym_u_SQUOTE] = ACTIONS(1376), - [anon_sym_U_SQUOTE] = ACTIONS(1376), - [anon_sym_u8_SQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_L_DQUOTE] = ACTIONS(1376), - [anon_sym_u_DQUOTE] = ACTIONS(1376), - [anon_sym_U_DQUOTE] = ACTIONS(1376), - [anon_sym_u8_DQUOTE] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [anon_sym_NULL] = ACTIONS(1374), - [anon_sym_nullptr] = ACTIONS(1374), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym___scanf] = ACTIONS(1298), + [anon_sym___printf] = ACTIONS(1298), + [anon_sym___read_mostly] = ACTIONS(1298), + [anon_sym___must_hold] = ACTIONS(1298), + [anon_sym___ro_after_init] = ACTIONS(1298), + [anon_sym___noreturn] = ACTIONS(1298), + [anon_sym___cold] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___init] = ACTIONS(1298), + [anon_sym___exit] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [anon_sym_alignas] = ACTIONS(1298), + [anon_sym__Alignas] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(5), }, - [302] = { - [sym_identifier] = ACTIONS(1370), + [270] = { + [sym_identifier] = ACTIONS(1314), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym___extension__] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym___scanf] = ACTIONS(1370), - [anon_sym___printf] = ACTIONS(1370), - [anon_sym___read_mostly] = ACTIONS(1370), - [anon_sym___must_hold] = ACTIONS(1370), - [anon_sym___ro_after_init] = ACTIONS(1370), - [anon_sym___noreturn] = ACTIONS(1370), - [anon_sym___cold] = ACTIONS(1370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), - [anon_sym___declspec] = ACTIONS(1370), - [anon_sym___init] = ACTIONS(1370), - [anon_sym___exit] = ACTIONS(1370), - [anon_sym___cdecl] = ACTIONS(1370), - [anon_sym___clrcall] = ACTIONS(1370), - [anon_sym___stdcall] = ACTIONS(1370), - [anon_sym___fastcall] = ACTIONS(1370), - [anon_sym___thiscall] = ACTIONS(1370), - [anon_sym___vectorcall] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_RBRACE] = ACTIONS(1372), - [anon_sym_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym___inline] = ACTIONS(1370), - [anon_sym___inline__] = ACTIONS(1370), - [anon_sym___forceinline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym___thread] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_constexpr] = ACTIONS(1370), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [anon_sym___restrict__] = ACTIONS(1370), - [anon_sym__Atomic] = ACTIONS(1370), - [anon_sym__Noreturn] = ACTIONS(1370), - [anon_sym_noreturn] = ACTIONS(1370), - [anon_sym_alignas] = ACTIONS(1370), - [anon_sym__Alignas] = ACTIONS(1370), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [anon_sym___try] = ACTIONS(1370), - [anon_sym___leave] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym___alignof__] = ACTIONS(1370), - [anon_sym___alignof] = ACTIONS(1370), - [anon_sym__alignof] = ACTIONS(1370), - [anon_sym_alignof] = ACTIONS(1370), - [anon_sym__Alignof] = ACTIONS(1370), - [anon_sym_offsetof] = ACTIONS(1370), - [anon_sym__Generic] = ACTIONS(1370), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym___asm__] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym_u_SQUOTE] = ACTIONS(1372), - [anon_sym_U_SQUOTE] = ACTIONS(1372), - [anon_sym_u8_SQUOTE] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_u_DQUOTE] = ACTIONS(1372), - [anon_sym_U_DQUOTE] = ACTIONS(1372), - [anon_sym_u8_DQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym_true] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_NULL] = ACTIONS(1370), - [anon_sym_nullptr] = ACTIONS(1370), - [sym_comment] = ACTIONS(5), - }, - [303] = { - [sym_identifier] = ACTIONS(1472), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1472), - [aux_sym_preproc_def_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), - [sym_preproc_directive] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym___extension__] = ACTIONS(1472), - [anon_sym_typedef] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym___attribute__] = ACTIONS(1472), - [anon_sym___scanf] = ACTIONS(1472), - [anon_sym___printf] = ACTIONS(1472), - [anon_sym___read_mostly] = ACTIONS(1472), - [anon_sym___must_hold] = ACTIONS(1472), - [anon_sym___ro_after_init] = ACTIONS(1472), - [anon_sym___noreturn] = ACTIONS(1472), - [anon_sym___cold] = ACTIONS(1472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1472), - [anon_sym___init] = ACTIONS(1472), - [anon_sym___exit] = ACTIONS(1472), - [anon_sym___cdecl] = ACTIONS(1472), - [anon_sym___clrcall] = ACTIONS(1472), - [anon_sym___stdcall] = ACTIONS(1472), - [anon_sym___fastcall] = ACTIONS(1472), - [anon_sym___thiscall] = ACTIONS(1472), - [anon_sym___vectorcall] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_RBRACE] = ACTIONS(1474), - [anon_sym_signed] = ACTIONS(1472), - [anon_sym_unsigned] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_auto] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_inline] = ACTIONS(1472), - [anon_sym___inline] = ACTIONS(1472), - [anon_sym___inline__] = ACTIONS(1472), - [anon_sym___forceinline] = ACTIONS(1472), - [anon_sym_thread_local] = ACTIONS(1472), - [anon_sym___thread] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_constexpr] = ACTIONS(1472), - [anon_sym_volatile] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1472), - [anon_sym___restrict__] = ACTIONS(1472), - [anon_sym__Atomic] = ACTIONS(1472), - [anon_sym__Noreturn] = ACTIONS(1472), - [anon_sym_noreturn] = ACTIONS(1472), - [anon_sym_alignas] = ACTIONS(1472), - [anon_sym__Alignas] = ACTIONS(1472), - [sym_primitive_type] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_goto] = ACTIONS(1472), - [anon_sym___try] = ACTIONS(1472), - [anon_sym___leave] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_sizeof] = ACTIONS(1472), - [anon_sym___alignof__] = ACTIONS(1472), - [anon_sym___alignof] = ACTIONS(1472), - [anon_sym__alignof] = ACTIONS(1472), - [anon_sym_alignof] = ACTIONS(1472), - [anon_sym__Alignof] = ACTIONS(1472), - [anon_sym_offsetof] = ACTIONS(1472), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym___asm__] = ACTIONS(1472), - [sym_number_literal] = ACTIONS(1474), - [anon_sym_L_SQUOTE] = ACTIONS(1474), - [anon_sym_u_SQUOTE] = ACTIONS(1474), - [anon_sym_U_SQUOTE] = ACTIONS(1474), - [anon_sym_u8_SQUOTE] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_L_DQUOTE] = ACTIONS(1474), - [anon_sym_u_DQUOTE] = ACTIONS(1474), - [anon_sym_U_DQUOTE] = ACTIONS(1474), - [anon_sym_u8_DQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [anon_sym_NULL] = ACTIONS(1472), - [anon_sym_nullptr] = ACTIONS(1472), - [sym_comment] = ACTIONS(5), - }, - [304] = { - [sym_identifier] = ACTIONS(1468), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1468), - [aux_sym_preproc_def_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), - [sym_preproc_directive] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym___extension__] = ACTIONS(1468), - [anon_sym_typedef] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1468), - [anon_sym___attribute__] = ACTIONS(1468), - [anon_sym___scanf] = ACTIONS(1468), - [anon_sym___printf] = ACTIONS(1468), - [anon_sym___read_mostly] = ACTIONS(1468), - [anon_sym___must_hold] = ACTIONS(1468), - [anon_sym___ro_after_init] = ACTIONS(1468), - [anon_sym___noreturn] = ACTIONS(1468), - [anon_sym___cold] = ACTIONS(1468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), - [anon_sym___declspec] = ACTIONS(1468), - [anon_sym___init] = ACTIONS(1468), - [anon_sym___exit] = ACTIONS(1468), - [anon_sym___cdecl] = ACTIONS(1468), - [anon_sym___clrcall] = ACTIONS(1468), - [anon_sym___stdcall] = ACTIONS(1468), - [anon_sym___fastcall] = ACTIONS(1468), - [anon_sym___thiscall] = ACTIONS(1468), - [anon_sym___vectorcall] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_signed] = ACTIONS(1468), - [anon_sym_unsigned] = ACTIONS(1468), - [anon_sym_long] = ACTIONS(1468), - [anon_sym_short] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_auto] = ACTIONS(1468), - [anon_sym_register] = ACTIONS(1468), - [anon_sym_inline] = ACTIONS(1468), - [anon_sym___inline] = ACTIONS(1468), - [anon_sym___inline__] = ACTIONS(1468), - [anon_sym___forceinline] = ACTIONS(1468), - [anon_sym_thread_local] = ACTIONS(1468), - [anon_sym___thread] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_constexpr] = ACTIONS(1468), - [anon_sym_volatile] = ACTIONS(1468), - [anon_sym_restrict] = ACTIONS(1468), - [anon_sym___restrict__] = ACTIONS(1468), - [anon_sym__Atomic] = ACTIONS(1468), - [anon_sym__Noreturn] = ACTIONS(1468), - [anon_sym_noreturn] = ACTIONS(1468), - [anon_sym_alignas] = ACTIONS(1468), - [anon_sym__Alignas] = ACTIONS(1468), - [sym_primitive_type] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_case] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_goto] = ACTIONS(1468), - [anon_sym___try] = ACTIONS(1468), - [anon_sym___leave] = ACTIONS(1468), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_sizeof] = ACTIONS(1468), - [anon_sym___alignof__] = ACTIONS(1468), - [anon_sym___alignof] = ACTIONS(1468), - [anon_sym__alignof] = ACTIONS(1468), - [anon_sym_alignof] = ACTIONS(1468), - [anon_sym__Alignof] = ACTIONS(1468), - [anon_sym_offsetof] = ACTIONS(1468), - [anon_sym__Generic] = ACTIONS(1468), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym___asm__] = ACTIONS(1468), - [sym_number_literal] = ACTIONS(1470), - [anon_sym_L_SQUOTE] = ACTIONS(1470), - [anon_sym_u_SQUOTE] = ACTIONS(1470), - [anon_sym_U_SQUOTE] = ACTIONS(1470), - [anon_sym_u8_SQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_L_DQUOTE] = ACTIONS(1470), - [anon_sym_u_DQUOTE] = ACTIONS(1470), - [anon_sym_U_DQUOTE] = ACTIONS(1470), - [anon_sym_u8_DQUOTE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [anon_sym_NULL] = ACTIONS(1468), - [anon_sym_nullptr] = ACTIONS(1468), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token2] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym___scanf] = ACTIONS(1314), + [anon_sym___printf] = ACTIONS(1314), + [anon_sym___read_mostly] = ACTIONS(1314), + [anon_sym___must_hold] = ACTIONS(1314), + [anon_sym___ro_after_init] = ACTIONS(1314), + [anon_sym___noreturn] = ACTIONS(1314), + [anon_sym___cold] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___init] = ACTIONS(1314), + [anon_sym___exit] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [anon_sym_alignas] = ACTIONS(1314), + [anon_sym__Alignas] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), [sym_comment] = ACTIONS(5), }, - [305] = { - [sym_identifier] = ACTIONS(1382), + [271] = { + [sym_identifier] = ACTIONS(1310), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym___extension__] = ACTIONS(1382), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym___scanf] = ACTIONS(1382), - [anon_sym___printf] = ACTIONS(1382), - [anon_sym___read_mostly] = ACTIONS(1382), - [anon_sym___must_hold] = ACTIONS(1382), - [anon_sym___ro_after_init] = ACTIONS(1382), - [anon_sym___noreturn] = ACTIONS(1382), - [anon_sym___cold] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___init] = ACTIONS(1382), - [anon_sym___exit] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym___inline] = ACTIONS(1382), - [anon_sym___inline__] = ACTIONS(1382), - [anon_sym___forceinline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym___thread] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_constexpr] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1382), - [anon_sym_restrict] = ACTIONS(1382), - [anon_sym___restrict__] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1382), - [anon_sym__Noreturn] = ACTIONS(1382), - [anon_sym_noreturn] = ACTIONS(1382), - [anon_sym_alignas] = ACTIONS(1382), - [anon_sym__Alignas] = ACTIONS(1382), - [sym_primitive_type] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1382), - [anon_sym___try] = ACTIONS(1382), - [anon_sym___leave] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym___alignof__] = ACTIONS(1382), - [anon_sym___alignof] = ACTIONS(1382), - [anon_sym__alignof] = ACTIONS(1382), - [anon_sym_alignof] = ACTIONS(1382), - [anon_sym__Alignof] = ACTIONS(1382), - [anon_sym_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym___asm__] = ACTIONS(1382), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_L_SQUOTE] = ACTIONS(1384), - [anon_sym_u_SQUOTE] = ACTIONS(1384), - [anon_sym_U_SQUOTE] = ACTIONS(1384), - [anon_sym_u8_SQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_L_DQUOTE] = ACTIONS(1384), - [anon_sym_u_DQUOTE] = ACTIONS(1384), - [anon_sym_U_DQUOTE] = ACTIONS(1384), - [anon_sym_u8_DQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [anon_sym_NULL] = ACTIONS(1382), - [anon_sym_nullptr] = ACTIONS(1382), - [sym_comment] = ACTIONS(5), - }, - [306] = { - [sym_identifier] = ACTIONS(1420), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1420), - [aux_sym_preproc_def_token1] = ACTIONS(1420), - [aux_sym_preproc_if_token1] = ACTIONS(1420), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1420), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1420), - [sym_preproc_directive] = ACTIONS(1420), - [anon_sym_LPAREN2] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1422), - [anon_sym_TILDE] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1420), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1422), - [anon_sym___extension__] = ACTIONS(1420), - [anon_sym_typedef] = ACTIONS(1420), - [anon_sym_extern] = ACTIONS(1420), - [anon_sym___attribute__] = ACTIONS(1420), - [anon_sym___scanf] = ACTIONS(1420), - [anon_sym___printf] = ACTIONS(1420), - [anon_sym___read_mostly] = ACTIONS(1420), - [anon_sym___must_hold] = ACTIONS(1420), - [anon_sym___ro_after_init] = ACTIONS(1420), - [anon_sym___noreturn] = ACTIONS(1420), - [anon_sym___cold] = ACTIONS(1420), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1422), - [anon_sym___declspec] = ACTIONS(1420), - [anon_sym___init] = ACTIONS(1420), - [anon_sym___exit] = ACTIONS(1420), - [anon_sym___cdecl] = ACTIONS(1420), - [anon_sym___clrcall] = ACTIONS(1420), - [anon_sym___stdcall] = ACTIONS(1420), - [anon_sym___fastcall] = ACTIONS(1420), - [anon_sym___thiscall] = ACTIONS(1420), - [anon_sym___vectorcall] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_RBRACE] = ACTIONS(1422), - [anon_sym_signed] = ACTIONS(1420), - [anon_sym_unsigned] = ACTIONS(1420), - [anon_sym_long] = ACTIONS(1420), - [anon_sym_short] = ACTIONS(1420), - [anon_sym_static] = ACTIONS(1420), - [anon_sym_auto] = ACTIONS(1420), - [anon_sym_register] = ACTIONS(1420), - [anon_sym_inline] = ACTIONS(1420), - [anon_sym___inline] = ACTIONS(1420), - [anon_sym___inline__] = ACTIONS(1420), - [anon_sym___forceinline] = ACTIONS(1420), - [anon_sym_thread_local] = ACTIONS(1420), - [anon_sym___thread] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1420), - [anon_sym_constexpr] = ACTIONS(1420), - [anon_sym_volatile] = ACTIONS(1420), - [anon_sym_restrict] = ACTIONS(1420), - [anon_sym___restrict__] = ACTIONS(1420), - [anon_sym__Atomic] = ACTIONS(1420), - [anon_sym__Noreturn] = ACTIONS(1420), - [anon_sym_noreturn] = ACTIONS(1420), - [anon_sym_alignas] = ACTIONS(1420), - [anon_sym__Alignas] = ACTIONS(1420), - [sym_primitive_type] = ACTIONS(1420), - [anon_sym_enum] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1420), - [anon_sym_union] = ACTIONS(1420), - [anon_sym_if] = ACTIONS(1420), - [anon_sym_switch] = ACTIONS(1420), - [anon_sym_case] = ACTIONS(1420), - [anon_sym_default] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1420), - [anon_sym_do] = ACTIONS(1420), - [anon_sym_for] = ACTIONS(1420), - [anon_sym_return] = ACTIONS(1420), - [anon_sym_break] = ACTIONS(1420), - [anon_sym_continue] = ACTIONS(1420), - [anon_sym_goto] = ACTIONS(1420), - [anon_sym___try] = ACTIONS(1420), - [anon_sym___leave] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1422), - [anon_sym_PLUS_PLUS] = ACTIONS(1422), - [anon_sym_sizeof] = ACTIONS(1420), - [anon_sym___alignof__] = ACTIONS(1420), - [anon_sym___alignof] = ACTIONS(1420), - [anon_sym__alignof] = ACTIONS(1420), - [anon_sym_alignof] = ACTIONS(1420), - [anon_sym__Alignof] = ACTIONS(1420), - [anon_sym_offsetof] = ACTIONS(1420), - [anon_sym__Generic] = ACTIONS(1420), - [anon_sym_asm] = ACTIONS(1420), - [anon_sym___asm__] = ACTIONS(1420), - [sym_number_literal] = ACTIONS(1422), - [anon_sym_L_SQUOTE] = ACTIONS(1422), - [anon_sym_u_SQUOTE] = ACTIONS(1422), - [anon_sym_U_SQUOTE] = ACTIONS(1422), - [anon_sym_u8_SQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1422), - [anon_sym_L_DQUOTE] = ACTIONS(1422), - [anon_sym_u_DQUOTE] = ACTIONS(1422), - [anon_sym_U_DQUOTE] = ACTIONS(1422), - [anon_sym_u8_DQUOTE] = ACTIONS(1422), - [anon_sym_DQUOTE] = ACTIONS(1422), - [sym_true] = ACTIONS(1420), - [sym_false] = ACTIONS(1420), - [anon_sym_NULL] = ACTIONS(1420), - [anon_sym_nullptr] = ACTIONS(1420), - [sym_comment] = ACTIONS(5), - }, - [307] = { - [sym_identifier] = ACTIONS(1464), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1464), - [aux_sym_preproc_def_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), - [sym_preproc_directive] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym___extension__] = ACTIONS(1464), - [anon_sym_typedef] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym___attribute__] = ACTIONS(1464), - [anon_sym___scanf] = ACTIONS(1464), - [anon_sym___printf] = ACTIONS(1464), - [anon_sym___read_mostly] = ACTIONS(1464), - [anon_sym___must_hold] = ACTIONS(1464), - [anon_sym___ro_after_init] = ACTIONS(1464), - [anon_sym___noreturn] = ACTIONS(1464), - [anon_sym___cold] = ACTIONS(1464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), - [anon_sym___declspec] = ACTIONS(1464), - [anon_sym___init] = ACTIONS(1464), - [anon_sym___exit] = ACTIONS(1464), - [anon_sym___cdecl] = ACTIONS(1464), - [anon_sym___clrcall] = ACTIONS(1464), - [anon_sym___stdcall] = ACTIONS(1464), - [anon_sym___fastcall] = ACTIONS(1464), - [anon_sym___thiscall] = ACTIONS(1464), - [anon_sym___vectorcall] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_signed] = ACTIONS(1464), - [anon_sym_unsigned] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_auto] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_inline] = ACTIONS(1464), - [anon_sym___inline] = ACTIONS(1464), - [anon_sym___inline__] = ACTIONS(1464), - [anon_sym___forceinline] = ACTIONS(1464), - [anon_sym_thread_local] = ACTIONS(1464), - [anon_sym___thread] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_constexpr] = ACTIONS(1464), - [anon_sym_volatile] = ACTIONS(1464), - [anon_sym_restrict] = ACTIONS(1464), - [anon_sym___restrict__] = ACTIONS(1464), - [anon_sym__Atomic] = ACTIONS(1464), - [anon_sym__Noreturn] = ACTIONS(1464), - [anon_sym_noreturn] = ACTIONS(1464), - [anon_sym_alignas] = ACTIONS(1464), - [anon_sym__Alignas] = ACTIONS(1464), - [sym_primitive_type] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_case] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_goto] = ACTIONS(1464), - [anon_sym___try] = ACTIONS(1464), - [anon_sym___leave] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_sizeof] = ACTIONS(1464), - [anon_sym___alignof__] = ACTIONS(1464), - [anon_sym___alignof] = ACTIONS(1464), - [anon_sym__alignof] = ACTIONS(1464), - [anon_sym_alignof] = ACTIONS(1464), - [anon_sym__Alignof] = ACTIONS(1464), - [anon_sym_offsetof] = ACTIONS(1464), - [anon_sym__Generic] = ACTIONS(1464), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym___asm__] = ACTIONS(1464), - [sym_number_literal] = ACTIONS(1466), - [anon_sym_L_SQUOTE] = ACTIONS(1466), - [anon_sym_u_SQUOTE] = ACTIONS(1466), - [anon_sym_U_SQUOTE] = ACTIONS(1466), - [anon_sym_u8_SQUOTE] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_L_DQUOTE] = ACTIONS(1466), - [anon_sym_u_DQUOTE] = ACTIONS(1466), - [anon_sym_U_DQUOTE] = ACTIONS(1466), - [anon_sym_u8_DQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym_true] = ACTIONS(1464), - [sym_false] = ACTIONS(1464), - [anon_sym_NULL] = ACTIONS(1464), - [anon_sym_nullptr] = ACTIONS(1464), + [aux_sym_preproc_include_token1] = ACTIONS(1310), + [aux_sym_preproc_def_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), + [sym_preproc_directive] = ACTIONS(1310), + [anon_sym_LPAREN2] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym___extension__] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym___scanf] = ACTIONS(1310), + [anon_sym___printf] = ACTIONS(1310), + [anon_sym___read_mostly] = ACTIONS(1310), + [anon_sym___must_hold] = ACTIONS(1310), + [anon_sym___ro_after_init] = ACTIONS(1310), + [anon_sym___noreturn] = ACTIONS(1310), + [anon_sym___cold] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), + [anon_sym___declspec] = ACTIONS(1310), + [anon_sym___init] = ACTIONS(1310), + [anon_sym___exit] = ACTIONS(1310), + [anon_sym___cdecl] = ACTIONS(1310), + [anon_sym___clrcall] = ACTIONS(1310), + [anon_sym___stdcall] = ACTIONS(1310), + [anon_sym___fastcall] = ACTIONS(1310), + [anon_sym___thiscall] = ACTIONS(1310), + [anon_sym___vectorcall] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_RBRACE] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1310), + [anon_sym_unsigned] = ACTIONS(1310), + [anon_sym_long] = ACTIONS(1310), + [anon_sym_short] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_auto] = ACTIONS(1310), + [anon_sym_register] = ACTIONS(1310), + [anon_sym_inline] = ACTIONS(1310), + [anon_sym___inline] = ACTIONS(1310), + [anon_sym___inline__] = ACTIONS(1310), + [anon_sym___forceinline] = ACTIONS(1310), + [anon_sym_thread_local] = ACTIONS(1310), + [anon_sym___thread] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_constexpr] = ACTIONS(1310), + [anon_sym_volatile] = ACTIONS(1310), + [anon_sym_restrict] = ACTIONS(1310), + [anon_sym___restrict__] = ACTIONS(1310), + [anon_sym__Atomic] = ACTIONS(1310), + [anon_sym__Noreturn] = ACTIONS(1310), + [anon_sym_noreturn] = ACTIONS(1310), + [anon_sym_alignas] = ACTIONS(1310), + [anon_sym__Alignas] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_else] = ACTIONS(1310), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_case] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_goto] = ACTIONS(1310), + [anon_sym___try] = ACTIONS(1310), + [anon_sym___leave] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_sizeof] = ACTIONS(1310), + [anon_sym___alignof__] = ACTIONS(1310), + [anon_sym___alignof] = ACTIONS(1310), + [anon_sym__alignof] = ACTIONS(1310), + [anon_sym_alignof] = ACTIONS(1310), + [anon_sym__Alignof] = ACTIONS(1310), + [anon_sym_offsetof] = ACTIONS(1310), + [anon_sym__Generic] = ACTIONS(1310), + [anon_sym_asm] = ACTIONS(1310), + [anon_sym___asm__] = ACTIONS(1310), + [sym_number_literal] = ACTIONS(1312), + [anon_sym_L_SQUOTE] = ACTIONS(1312), + [anon_sym_u_SQUOTE] = ACTIONS(1312), + [anon_sym_U_SQUOTE] = ACTIONS(1312), + [anon_sym_u8_SQUOTE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_L_DQUOTE] = ACTIONS(1312), + [anon_sym_u_DQUOTE] = ACTIONS(1312), + [anon_sym_U_DQUOTE] = ACTIONS(1312), + [anon_sym_u8_DQUOTE] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [anon_sym_NULL] = ACTIONS(1310), + [anon_sym_nullptr] = ACTIONS(1310), [sym_comment] = ACTIONS(5), }, - [308] = { - [sym_identifier] = ACTIONS(1460), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1460), - [aux_sym_preproc_def_token1] = ACTIONS(1460), - [aux_sym_preproc_if_token1] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), - [sym_preproc_directive] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym___extension__] = ACTIONS(1460), - [anon_sym_typedef] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1460), - [anon_sym___attribute__] = ACTIONS(1460), - [anon_sym___scanf] = ACTIONS(1460), - [anon_sym___printf] = ACTIONS(1460), - [anon_sym___read_mostly] = ACTIONS(1460), - [anon_sym___must_hold] = ACTIONS(1460), - [anon_sym___ro_after_init] = ACTIONS(1460), - [anon_sym___noreturn] = ACTIONS(1460), - [anon_sym___cold] = ACTIONS(1460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym___declspec] = ACTIONS(1460), - [anon_sym___init] = ACTIONS(1460), - [anon_sym___exit] = ACTIONS(1460), - [anon_sym___cdecl] = ACTIONS(1460), - [anon_sym___clrcall] = ACTIONS(1460), - [anon_sym___stdcall] = ACTIONS(1460), - [anon_sym___fastcall] = ACTIONS(1460), - [anon_sym___thiscall] = ACTIONS(1460), - [anon_sym___vectorcall] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1462), - [anon_sym_signed] = ACTIONS(1460), - [anon_sym_unsigned] = ACTIONS(1460), - [anon_sym_long] = ACTIONS(1460), - [anon_sym_short] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_auto] = ACTIONS(1460), - [anon_sym_register] = ACTIONS(1460), - [anon_sym_inline] = ACTIONS(1460), - [anon_sym___inline] = ACTIONS(1460), - [anon_sym___inline__] = ACTIONS(1460), - [anon_sym___forceinline] = ACTIONS(1460), - [anon_sym_thread_local] = ACTIONS(1460), - [anon_sym___thread] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_constexpr] = ACTIONS(1460), - [anon_sym_volatile] = ACTIONS(1460), - [anon_sym_restrict] = ACTIONS(1460), - [anon_sym___restrict__] = ACTIONS(1460), - [anon_sym__Atomic] = ACTIONS(1460), - [anon_sym__Noreturn] = ACTIONS(1460), - [anon_sym_noreturn] = ACTIONS(1460), - [anon_sym_alignas] = ACTIONS(1460), - [anon_sym__Alignas] = ACTIONS(1460), - [sym_primitive_type] = ACTIONS(1460), - [anon_sym_enum] = ACTIONS(1460), - [anon_sym_struct] = ACTIONS(1460), - [anon_sym_union] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_switch] = ACTIONS(1460), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_do] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_goto] = ACTIONS(1460), - [anon_sym___try] = ACTIONS(1460), - [anon_sym___leave] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1462), - [anon_sym_sizeof] = ACTIONS(1460), - [anon_sym___alignof__] = ACTIONS(1460), - [anon_sym___alignof] = ACTIONS(1460), - [anon_sym__alignof] = ACTIONS(1460), - [anon_sym_alignof] = ACTIONS(1460), - [anon_sym__Alignof] = ACTIONS(1460), - [anon_sym_offsetof] = ACTIONS(1460), - [anon_sym__Generic] = ACTIONS(1460), - [anon_sym_asm] = ACTIONS(1460), - [anon_sym___asm__] = ACTIONS(1460), - [sym_number_literal] = ACTIONS(1462), - [anon_sym_L_SQUOTE] = ACTIONS(1462), - [anon_sym_u_SQUOTE] = ACTIONS(1462), - [anon_sym_U_SQUOTE] = ACTIONS(1462), - [anon_sym_u8_SQUOTE] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_L_DQUOTE] = ACTIONS(1462), - [anon_sym_u_DQUOTE] = ACTIONS(1462), - [anon_sym_U_DQUOTE] = ACTIONS(1462), - [anon_sym_u8_DQUOTE] = ACTIONS(1462), - [anon_sym_DQUOTE] = ACTIONS(1462), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [anon_sym_NULL] = ACTIONS(1460), - [anon_sym_nullptr] = ACTIONS(1460), + [272] = { + [sym_identifier] = ACTIONS(1322), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym___extension__] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym___attribute__] = ACTIONS(1322), + [anon_sym___scanf] = ACTIONS(1322), + [anon_sym___printf] = ACTIONS(1322), + [anon_sym___read_mostly] = ACTIONS(1322), + [anon_sym___must_hold] = ACTIONS(1322), + [anon_sym___ro_after_init] = ACTIONS(1322), + [anon_sym___noreturn] = ACTIONS(1322), + [anon_sym___cold] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym___init] = ACTIONS(1322), + [anon_sym___exit] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_RBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [anon_sym_alignas] = ACTIONS(1322), + [anon_sym__Alignas] = ACTIONS(1322), + [sym_primitive_type] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym___try] = ACTIONS(1322), + [anon_sym___leave] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), [sym_comment] = ACTIONS(5), }, - [309] = { - [sym_identifier] = ACTIONS(1456), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1456), - [aux_sym_preproc_def_token1] = ACTIONS(1456), - [aux_sym_preproc_if_token1] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), - [sym_preproc_directive] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym___extension__] = ACTIONS(1456), - [anon_sym_typedef] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1456), - [anon_sym___attribute__] = ACTIONS(1456), - [anon_sym___scanf] = ACTIONS(1456), - [anon_sym___printf] = ACTIONS(1456), - [anon_sym___read_mostly] = ACTIONS(1456), - [anon_sym___must_hold] = ACTIONS(1456), - [anon_sym___ro_after_init] = ACTIONS(1456), - [anon_sym___noreturn] = ACTIONS(1456), - [anon_sym___cold] = ACTIONS(1456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), - [anon_sym___declspec] = ACTIONS(1456), - [anon_sym___init] = ACTIONS(1456), - [anon_sym___exit] = ACTIONS(1456), - [anon_sym___cdecl] = ACTIONS(1456), - [anon_sym___clrcall] = ACTIONS(1456), - [anon_sym___stdcall] = ACTIONS(1456), - [anon_sym___fastcall] = ACTIONS(1456), - [anon_sym___thiscall] = ACTIONS(1456), - [anon_sym___vectorcall] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_signed] = ACTIONS(1456), - [anon_sym_unsigned] = ACTIONS(1456), - [anon_sym_long] = ACTIONS(1456), - [anon_sym_short] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_auto] = ACTIONS(1456), - [anon_sym_register] = ACTIONS(1456), - [anon_sym_inline] = ACTIONS(1456), - [anon_sym___inline] = ACTIONS(1456), - [anon_sym___inline__] = ACTIONS(1456), - [anon_sym___forceinline] = ACTIONS(1456), - [anon_sym_thread_local] = ACTIONS(1456), - [anon_sym___thread] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_constexpr] = ACTIONS(1456), - [anon_sym_volatile] = ACTIONS(1456), - [anon_sym_restrict] = ACTIONS(1456), - [anon_sym___restrict__] = ACTIONS(1456), - [anon_sym__Atomic] = ACTIONS(1456), - [anon_sym__Noreturn] = ACTIONS(1456), - [anon_sym_noreturn] = ACTIONS(1456), - [anon_sym_alignas] = ACTIONS(1456), - [anon_sym__Alignas] = ACTIONS(1456), - [sym_primitive_type] = ACTIONS(1456), - [anon_sym_enum] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1456), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_switch] = ACTIONS(1456), - [anon_sym_case] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_do] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_goto] = ACTIONS(1456), - [anon_sym___try] = ACTIONS(1456), - [anon_sym___leave] = ACTIONS(1456), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_sizeof] = ACTIONS(1456), - [anon_sym___alignof__] = ACTIONS(1456), - [anon_sym___alignof] = ACTIONS(1456), - [anon_sym__alignof] = ACTIONS(1456), - [anon_sym_alignof] = ACTIONS(1456), - [anon_sym__Alignof] = ACTIONS(1456), - [anon_sym_offsetof] = ACTIONS(1456), - [anon_sym__Generic] = ACTIONS(1456), - [anon_sym_asm] = ACTIONS(1456), - [anon_sym___asm__] = ACTIONS(1456), - [sym_number_literal] = ACTIONS(1458), - [anon_sym_L_SQUOTE] = ACTIONS(1458), - [anon_sym_u_SQUOTE] = ACTIONS(1458), - [anon_sym_U_SQUOTE] = ACTIONS(1458), - [anon_sym_u8_SQUOTE] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_L_DQUOTE] = ACTIONS(1458), - [anon_sym_u_DQUOTE] = ACTIONS(1458), - [anon_sym_U_DQUOTE] = ACTIONS(1458), - [anon_sym_u8_DQUOTE] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [anon_sym_NULL] = ACTIONS(1456), - [anon_sym_nullptr] = ACTIONS(1456), + [273] = { + [sym_identifier] = ACTIONS(1326), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym___scanf] = ACTIONS(1326), + [anon_sym___printf] = ACTIONS(1326), + [anon_sym___read_mostly] = ACTIONS(1326), + [anon_sym___must_hold] = ACTIONS(1326), + [anon_sym___ro_after_init] = ACTIONS(1326), + [anon_sym___noreturn] = ACTIONS(1326), + [anon_sym___cold] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___init] = ACTIONS(1326), + [anon_sym___exit] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_RBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [anon_sym_alignas] = ACTIONS(1326), + [anon_sym__Alignas] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), [sym_comment] = ACTIONS(5), }, - [310] = { - [sym_identifier] = ACTIONS(1444), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1444), - [aux_sym_preproc_def_token1] = ACTIONS(1444), - [aux_sym_preproc_if_token1] = ACTIONS(1444), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), - [sym_preproc_directive] = ACTIONS(1444), - [anon_sym_LPAREN2] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_TILDE] = ACTIONS(1446), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1446), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym___extension__] = ACTIONS(1444), - [anon_sym_typedef] = ACTIONS(1444), - [anon_sym_extern] = ACTIONS(1444), - [anon_sym___attribute__] = ACTIONS(1444), - [anon_sym___scanf] = ACTIONS(1444), - [anon_sym___printf] = ACTIONS(1444), - [anon_sym___read_mostly] = ACTIONS(1444), - [anon_sym___must_hold] = ACTIONS(1444), - [anon_sym___ro_after_init] = ACTIONS(1444), - [anon_sym___noreturn] = ACTIONS(1444), - [anon_sym___cold] = ACTIONS(1444), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), - [anon_sym___declspec] = ACTIONS(1444), - [anon_sym___init] = ACTIONS(1444), - [anon_sym___exit] = ACTIONS(1444), - [anon_sym___cdecl] = ACTIONS(1444), - [anon_sym___clrcall] = ACTIONS(1444), - [anon_sym___stdcall] = ACTIONS(1444), - [anon_sym___fastcall] = ACTIONS(1444), - [anon_sym___thiscall] = ACTIONS(1444), - [anon_sym___vectorcall] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_signed] = ACTIONS(1444), - [anon_sym_unsigned] = ACTIONS(1444), - [anon_sym_long] = ACTIONS(1444), - [anon_sym_short] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_auto] = ACTIONS(1444), - [anon_sym_register] = ACTIONS(1444), - [anon_sym_inline] = ACTIONS(1444), - [anon_sym___inline] = ACTIONS(1444), - [anon_sym___inline__] = ACTIONS(1444), - [anon_sym___forceinline] = ACTIONS(1444), - [anon_sym_thread_local] = ACTIONS(1444), - [anon_sym___thread] = ACTIONS(1444), - [anon_sym_const] = ACTIONS(1444), - [anon_sym_constexpr] = ACTIONS(1444), - [anon_sym_volatile] = ACTIONS(1444), - [anon_sym_restrict] = ACTIONS(1444), - [anon_sym___restrict__] = ACTIONS(1444), - [anon_sym__Atomic] = ACTIONS(1444), - [anon_sym__Noreturn] = ACTIONS(1444), - [anon_sym_noreturn] = ACTIONS(1444), - [anon_sym_alignas] = ACTIONS(1444), - [anon_sym__Alignas] = ACTIONS(1444), - [sym_primitive_type] = ACTIONS(1444), - [anon_sym_enum] = ACTIONS(1444), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_union] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_switch] = ACTIONS(1444), - [anon_sym_case] = ACTIONS(1444), - [anon_sym_default] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_do] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_goto] = ACTIONS(1444), - [anon_sym___try] = ACTIONS(1444), - [anon_sym___leave] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_sizeof] = ACTIONS(1444), - [anon_sym___alignof__] = ACTIONS(1444), - [anon_sym___alignof] = ACTIONS(1444), - [anon_sym__alignof] = ACTIONS(1444), - [anon_sym_alignof] = ACTIONS(1444), - [anon_sym__Alignof] = ACTIONS(1444), - [anon_sym_offsetof] = ACTIONS(1444), - [anon_sym__Generic] = ACTIONS(1444), - [anon_sym_asm] = ACTIONS(1444), - [anon_sym___asm__] = ACTIONS(1444), - [sym_number_literal] = ACTIONS(1446), - [anon_sym_L_SQUOTE] = ACTIONS(1446), - [anon_sym_u_SQUOTE] = ACTIONS(1446), - [anon_sym_U_SQUOTE] = ACTIONS(1446), - [anon_sym_u8_SQUOTE] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1446), - [anon_sym_L_DQUOTE] = ACTIONS(1446), - [anon_sym_u_DQUOTE] = ACTIONS(1446), - [anon_sym_U_DQUOTE] = ACTIONS(1446), - [anon_sym_u8_DQUOTE] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(1446), - [sym_true] = ACTIONS(1444), - [sym_false] = ACTIONS(1444), - [anon_sym_NULL] = ACTIONS(1444), - [anon_sym_nullptr] = ACTIONS(1444), + [274] = { + [sym_identifier] = ACTIONS(1330), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym___scanf] = ACTIONS(1330), + [anon_sym___printf] = ACTIONS(1330), + [anon_sym___read_mostly] = ACTIONS(1330), + [anon_sym___must_hold] = ACTIONS(1330), + [anon_sym___ro_after_init] = ACTIONS(1330), + [anon_sym___noreturn] = ACTIONS(1330), + [anon_sym___cold] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___init] = ACTIONS(1330), + [anon_sym___exit] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_RBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [anon_sym_alignas] = ACTIONS(1330), + [anon_sym__Alignas] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_else] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), [sym_comment] = ACTIONS(5), }, - [311] = { - [sym_identifier] = ACTIONS(1362), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1362), - [aux_sym_preproc_def_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), - [sym_preproc_directive] = ACTIONS(1362), - [anon_sym_LPAREN2] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1364), - [anon_sym___extension__] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym___attribute__] = ACTIONS(1362), - [anon_sym___scanf] = ACTIONS(1362), - [anon_sym___printf] = ACTIONS(1362), - [anon_sym___read_mostly] = ACTIONS(1362), - [anon_sym___must_hold] = ACTIONS(1362), - [anon_sym___ro_after_init] = ACTIONS(1362), - [anon_sym___noreturn] = ACTIONS(1362), - [anon_sym___cold] = ACTIONS(1362), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), - [anon_sym___declspec] = ACTIONS(1362), - [anon_sym___init] = ACTIONS(1362), - [anon_sym___exit] = ACTIONS(1362), - [anon_sym___cdecl] = ACTIONS(1362), - [anon_sym___clrcall] = ACTIONS(1362), - [anon_sym___stdcall] = ACTIONS(1362), - [anon_sym___fastcall] = ACTIONS(1362), - [anon_sym___thiscall] = ACTIONS(1362), - [anon_sym___vectorcall] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_RBRACE] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1362), - [anon_sym_unsigned] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_auto] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_inline] = ACTIONS(1362), - [anon_sym___inline] = ACTIONS(1362), - [anon_sym___inline__] = ACTIONS(1362), - [anon_sym___forceinline] = ACTIONS(1362), - [anon_sym_thread_local] = ACTIONS(1362), - [anon_sym___thread] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_constexpr] = ACTIONS(1362), - [anon_sym_volatile] = ACTIONS(1362), - [anon_sym_restrict] = ACTIONS(1362), - [anon_sym___restrict__] = ACTIONS(1362), - [anon_sym__Atomic] = ACTIONS(1362), - [anon_sym__Noreturn] = ACTIONS(1362), - [anon_sym_noreturn] = ACTIONS(1362), - [anon_sym_alignas] = ACTIONS(1362), - [anon_sym__Alignas] = ACTIONS(1362), - [sym_primitive_type] = ACTIONS(1362), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_switch] = ACTIONS(1362), - [anon_sym_case] = ACTIONS(1362), - [anon_sym_default] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_goto] = ACTIONS(1362), - [anon_sym___try] = ACTIONS(1362), - [anon_sym___leave] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_sizeof] = ACTIONS(1362), - [anon_sym___alignof__] = ACTIONS(1362), - [anon_sym___alignof] = ACTIONS(1362), - [anon_sym__alignof] = ACTIONS(1362), - [anon_sym_alignof] = ACTIONS(1362), - [anon_sym__Alignof] = ACTIONS(1362), - [anon_sym_offsetof] = ACTIONS(1362), - [anon_sym__Generic] = ACTIONS(1362), - [anon_sym_asm] = ACTIONS(1362), - [anon_sym___asm__] = ACTIONS(1362), - [sym_number_literal] = ACTIONS(1364), - [anon_sym_L_SQUOTE] = ACTIONS(1364), - [anon_sym_u_SQUOTE] = ACTIONS(1364), - [anon_sym_U_SQUOTE] = ACTIONS(1364), - [anon_sym_u8_SQUOTE] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_L_DQUOTE] = ACTIONS(1364), - [anon_sym_u_DQUOTE] = ACTIONS(1364), - [anon_sym_U_DQUOTE] = ACTIONS(1364), - [anon_sym_u8_DQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [anon_sym_NULL] = ACTIONS(1362), - [anon_sym_nullptr] = ACTIONS(1362), - [sym_comment] = ACTIONS(5), - }, - [312] = { - [sym_identifier] = ACTIONS(1448), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1448), - [aux_sym_preproc_def_token1] = ACTIONS(1448), - [aux_sym_preproc_if_token1] = ACTIONS(1448), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), - [sym_preproc_directive] = ACTIONS(1448), - [anon_sym_LPAREN2] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym___extension__] = ACTIONS(1448), - [anon_sym_typedef] = ACTIONS(1448), - [anon_sym_extern] = ACTIONS(1448), - [anon_sym___attribute__] = ACTIONS(1448), - [anon_sym___scanf] = ACTIONS(1448), - [anon_sym___printf] = ACTIONS(1448), - [anon_sym___read_mostly] = ACTIONS(1448), - [anon_sym___must_hold] = ACTIONS(1448), - [anon_sym___ro_after_init] = ACTIONS(1448), - [anon_sym___noreturn] = ACTIONS(1448), - [anon_sym___cold] = ACTIONS(1448), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), - [anon_sym___declspec] = ACTIONS(1448), - [anon_sym___init] = ACTIONS(1448), - [anon_sym___exit] = ACTIONS(1448), - [anon_sym___cdecl] = ACTIONS(1448), - [anon_sym___clrcall] = ACTIONS(1448), - [anon_sym___stdcall] = ACTIONS(1448), - [anon_sym___fastcall] = ACTIONS(1448), - [anon_sym___thiscall] = ACTIONS(1448), - [anon_sym___vectorcall] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_signed] = ACTIONS(1448), - [anon_sym_unsigned] = ACTIONS(1448), - [anon_sym_long] = ACTIONS(1448), - [anon_sym_short] = ACTIONS(1448), - [anon_sym_static] = ACTIONS(1448), - [anon_sym_auto] = ACTIONS(1448), - [anon_sym_register] = ACTIONS(1448), - [anon_sym_inline] = ACTIONS(1448), - [anon_sym___inline] = ACTIONS(1448), - [anon_sym___inline__] = ACTIONS(1448), - [anon_sym___forceinline] = ACTIONS(1448), - [anon_sym_thread_local] = ACTIONS(1448), - [anon_sym___thread] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_constexpr] = ACTIONS(1448), - [anon_sym_volatile] = ACTIONS(1448), - [anon_sym_restrict] = ACTIONS(1448), - [anon_sym___restrict__] = ACTIONS(1448), - [anon_sym__Atomic] = ACTIONS(1448), - [anon_sym__Noreturn] = ACTIONS(1448), - [anon_sym_noreturn] = ACTIONS(1448), - [anon_sym_alignas] = ACTIONS(1448), - [anon_sym__Alignas] = ACTIONS(1448), - [sym_primitive_type] = ACTIONS(1448), - [anon_sym_enum] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1448), - [anon_sym_union] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1448), - [anon_sym_case] = ACTIONS(1448), - [anon_sym_default] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_do] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_goto] = ACTIONS(1448), - [anon_sym___try] = ACTIONS(1448), - [anon_sym___leave] = ACTIONS(1448), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_sizeof] = ACTIONS(1448), - [anon_sym___alignof__] = ACTIONS(1448), - [anon_sym___alignof] = ACTIONS(1448), - [anon_sym__alignof] = ACTIONS(1448), - [anon_sym_alignof] = ACTIONS(1448), - [anon_sym__Alignof] = ACTIONS(1448), - [anon_sym_offsetof] = ACTIONS(1448), - [anon_sym__Generic] = ACTIONS(1448), - [anon_sym_asm] = ACTIONS(1448), - [anon_sym___asm__] = ACTIONS(1448), - [sym_number_literal] = ACTIONS(1450), - [anon_sym_L_SQUOTE] = ACTIONS(1450), - [anon_sym_u_SQUOTE] = ACTIONS(1450), - [anon_sym_U_SQUOTE] = ACTIONS(1450), - [anon_sym_u8_SQUOTE] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_L_DQUOTE] = ACTIONS(1450), - [anon_sym_u_DQUOTE] = ACTIONS(1450), - [anon_sym_U_DQUOTE] = ACTIONS(1450), - [anon_sym_u8_DQUOTE] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(1450), - [sym_true] = ACTIONS(1448), - [sym_false] = ACTIONS(1448), - [anon_sym_NULL] = ACTIONS(1448), - [anon_sym_nullptr] = ACTIONS(1448), - [sym_comment] = ACTIONS(5), - }, - [313] = { - [sym_identifier] = ACTIONS(1424), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1424), - [aux_sym_preproc_def_token1] = ACTIONS(1424), - [aux_sym_preproc_if_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), - [sym_preproc_directive] = ACTIONS(1424), - [anon_sym_LPAREN2] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_TILDE] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1424), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym___extension__] = ACTIONS(1424), - [anon_sym_typedef] = ACTIONS(1424), - [anon_sym_extern] = ACTIONS(1424), - [anon_sym___attribute__] = ACTIONS(1424), - [anon_sym___scanf] = ACTIONS(1424), - [anon_sym___printf] = ACTIONS(1424), - [anon_sym___read_mostly] = ACTIONS(1424), - [anon_sym___must_hold] = ACTIONS(1424), - [anon_sym___ro_after_init] = ACTIONS(1424), - [anon_sym___noreturn] = ACTIONS(1424), - [anon_sym___cold] = ACTIONS(1424), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), - [anon_sym___declspec] = ACTIONS(1424), - [anon_sym___init] = ACTIONS(1424), - [anon_sym___exit] = ACTIONS(1424), - [anon_sym___cdecl] = ACTIONS(1424), - [anon_sym___clrcall] = ACTIONS(1424), - [anon_sym___stdcall] = ACTIONS(1424), - [anon_sym___fastcall] = ACTIONS(1424), - [anon_sym___thiscall] = ACTIONS(1424), - [anon_sym___vectorcall] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_RBRACE] = ACTIONS(1426), - [anon_sym_signed] = ACTIONS(1424), - [anon_sym_unsigned] = ACTIONS(1424), - [anon_sym_long] = ACTIONS(1424), - [anon_sym_short] = ACTIONS(1424), - [anon_sym_static] = ACTIONS(1424), - [anon_sym_auto] = ACTIONS(1424), - [anon_sym_register] = ACTIONS(1424), - [anon_sym_inline] = ACTIONS(1424), - [anon_sym___inline] = ACTIONS(1424), - [anon_sym___inline__] = ACTIONS(1424), - [anon_sym___forceinline] = ACTIONS(1424), - [anon_sym_thread_local] = ACTIONS(1424), - [anon_sym___thread] = ACTIONS(1424), - [anon_sym_const] = ACTIONS(1424), - [anon_sym_constexpr] = ACTIONS(1424), - [anon_sym_volatile] = ACTIONS(1424), - [anon_sym_restrict] = ACTIONS(1424), - [anon_sym___restrict__] = ACTIONS(1424), - [anon_sym__Atomic] = ACTIONS(1424), - [anon_sym__Noreturn] = ACTIONS(1424), - [anon_sym_noreturn] = ACTIONS(1424), - [anon_sym_alignas] = ACTIONS(1424), - [anon_sym__Alignas] = ACTIONS(1424), - [sym_primitive_type] = ACTIONS(1424), - [anon_sym_enum] = ACTIONS(1424), - [anon_sym_struct] = ACTIONS(1424), - [anon_sym_union] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1424), - [anon_sym_switch] = ACTIONS(1424), - [anon_sym_case] = ACTIONS(1424), - [anon_sym_default] = ACTIONS(1424), - [anon_sym_while] = ACTIONS(1424), - [anon_sym_do] = ACTIONS(1424), - [anon_sym_for] = ACTIONS(1424), - [anon_sym_return] = ACTIONS(1424), - [anon_sym_break] = ACTIONS(1424), - [anon_sym_continue] = ACTIONS(1424), - [anon_sym_goto] = ACTIONS(1424), - [anon_sym___try] = ACTIONS(1424), - [anon_sym___leave] = ACTIONS(1424), - [anon_sym_DASH_DASH] = ACTIONS(1426), - [anon_sym_PLUS_PLUS] = ACTIONS(1426), - [anon_sym_sizeof] = ACTIONS(1424), - [anon_sym___alignof__] = ACTIONS(1424), - [anon_sym___alignof] = ACTIONS(1424), - [anon_sym__alignof] = ACTIONS(1424), - [anon_sym_alignof] = ACTIONS(1424), - [anon_sym__Alignof] = ACTIONS(1424), - [anon_sym_offsetof] = ACTIONS(1424), - [anon_sym__Generic] = ACTIONS(1424), - [anon_sym_asm] = ACTIONS(1424), - [anon_sym___asm__] = ACTIONS(1424), - [sym_number_literal] = ACTIONS(1426), - [anon_sym_L_SQUOTE] = ACTIONS(1426), - [anon_sym_u_SQUOTE] = ACTIONS(1426), - [anon_sym_U_SQUOTE] = ACTIONS(1426), - [anon_sym_u8_SQUOTE] = ACTIONS(1426), - [anon_sym_SQUOTE] = ACTIONS(1426), - [anon_sym_L_DQUOTE] = ACTIONS(1426), - [anon_sym_u_DQUOTE] = ACTIONS(1426), - [anon_sym_U_DQUOTE] = ACTIONS(1426), - [anon_sym_u8_DQUOTE] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [sym_true] = ACTIONS(1424), - [sym_false] = ACTIONS(1424), - [anon_sym_NULL] = ACTIONS(1424), - [anon_sym_nullptr] = ACTIONS(1424), - [sym_comment] = ACTIONS(5), - }, - [314] = { - [sym_identifier] = ACTIONS(1436), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1436), - [aux_sym_preproc_def_token1] = ACTIONS(1436), - [aux_sym_preproc_if_token1] = ACTIONS(1436), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), - [sym_preproc_directive] = ACTIONS(1436), - [anon_sym_LPAREN2] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1436), - [anon_sym_typedef] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym___attribute__] = ACTIONS(1436), - [anon_sym___scanf] = ACTIONS(1436), - [anon_sym___printf] = ACTIONS(1436), - [anon_sym___read_mostly] = ACTIONS(1436), - [anon_sym___must_hold] = ACTIONS(1436), - [anon_sym___ro_after_init] = ACTIONS(1436), - [anon_sym___noreturn] = ACTIONS(1436), - [anon_sym___cold] = ACTIONS(1436), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), - [anon_sym___declspec] = ACTIONS(1436), - [anon_sym___init] = ACTIONS(1436), - [anon_sym___exit] = ACTIONS(1436), - [anon_sym___cdecl] = ACTIONS(1436), - [anon_sym___clrcall] = ACTIONS(1436), - [anon_sym___stdcall] = ACTIONS(1436), - [anon_sym___fastcall] = ACTIONS(1436), - [anon_sym___thiscall] = ACTIONS(1436), - [anon_sym___vectorcall] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_signed] = ACTIONS(1436), - [anon_sym_unsigned] = ACTIONS(1436), - [anon_sym_long] = ACTIONS(1436), - [anon_sym_short] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_auto] = ACTIONS(1436), - [anon_sym_register] = ACTIONS(1436), - [anon_sym_inline] = ACTIONS(1436), - [anon_sym___inline] = ACTIONS(1436), - [anon_sym___inline__] = ACTIONS(1436), - [anon_sym___forceinline] = ACTIONS(1436), - [anon_sym_thread_local] = ACTIONS(1436), - [anon_sym___thread] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_constexpr] = ACTIONS(1436), - [anon_sym_volatile] = ACTIONS(1436), - [anon_sym_restrict] = ACTIONS(1436), - [anon_sym___restrict__] = ACTIONS(1436), - [anon_sym__Atomic] = ACTIONS(1436), - [anon_sym__Noreturn] = ACTIONS(1436), - [anon_sym_noreturn] = ACTIONS(1436), - [anon_sym_alignas] = ACTIONS(1436), - [anon_sym__Alignas] = ACTIONS(1436), - [sym_primitive_type] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1436), - [anon_sym_struct] = ACTIONS(1436), - [anon_sym_union] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1436), - [anon_sym_case] = ACTIONS(1436), - [anon_sym_default] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_goto] = ACTIONS(1436), - [anon_sym___try] = ACTIONS(1436), - [anon_sym___leave] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_sizeof] = ACTIONS(1436), - [anon_sym___alignof__] = ACTIONS(1436), - [anon_sym___alignof] = ACTIONS(1436), - [anon_sym__alignof] = ACTIONS(1436), - [anon_sym_alignof] = ACTIONS(1436), - [anon_sym__Alignof] = ACTIONS(1436), - [anon_sym_offsetof] = ACTIONS(1436), - [anon_sym__Generic] = ACTIONS(1436), - [anon_sym_asm] = ACTIONS(1436), - [anon_sym___asm__] = ACTIONS(1436), - [sym_number_literal] = ACTIONS(1438), - [anon_sym_L_SQUOTE] = ACTIONS(1438), - [anon_sym_u_SQUOTE] = ACTIONS(1438), - [anon_sym_U_SQUOTE] = ACTIONS(1438), - [anon_sym_u8_SQUOTE] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1438), - [anon_sym_L_DQUOTE] = ACTIONS(1438), - [anon_sym_u_DQUOTE] = ACTIONS(1438), - [anon_sym_U_DQUOTE] = ACTIONS(1438), - [anon_sym_u8_DQUOTE] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1438), - [sym_true] = ACTIONS(1436), - [sym_false] = ACTIONS(1436), - [anon_sym_NULL] = ACTIONS(1436), - [anon_sym_nullptr] = ACTIONS(1436), - [sym_comment] = ACTIONS(5), - }, - [315] = { - [sym_identifier] = ACTIONS(1412), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1412), - [aux_sym_preproc_def_token1] = ACTIONS(1412), - [aux_sym_preproc_if_token1] = ACTIONS(1412), - [aux_sym_preproc_if_token2] = ACTIONS(1412), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1412), - [sym_preproc_directive] = ACTIONS(1412), - [anon_sym_LPAREN2] = ACTIONS(1414), - [anon_sym_BANG] = ACTIONS(1414), - [anon_sym_TILDE] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1414), - [anon_sym___extension__] = ACTIONS(1412), - [anon_sym_typedef] = ACTIONS(1412), - [anon_sym_extern] = ACTIONS(1412), - [anon_sym___attribute__] = ACTIONS(1412), - [anon_sym___scanf] = ACTIONS(1412), - [anon_sym___printf] = ACTIONS(1412), - [anon_sym___read_mostly] = ACTIONS(1412), - [anon_sym___must_hold] = ACTIONS(1412), - [anon_sym___ro_after_init] = ACTIONS(1412), - [anon_sym___noreturn] = ACTIONS(1412), - [anon_sym___cold] = ACTIONS(1412), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1414), - [anon_sym___declspec] = ACTIONS(1412), - [anon_sym___init] = ACTIONS(1412), - [anon_sym___exit] = ACTIONS(1412), - [anon_sym___cdecl] = ACTIONS(1412), - [anon_sym___clrcall] = ACTIONS(1412), - [anon_sym___stdcall] = ACTIONS(1412), - [anon_sym___fastcall] = ACTIONS(1412), - [anon_sym___thiscall] = ACTIONS(1412), - [anon_sym___vectorcall] = ACTIONS(1412), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_signed] = ACTIONS(1412), - [anon_sym_unsigned] = ACTIONS(1412), - [anon_sym_long] = ACTIONS(1412), - [anon_sym_short] = ACTIONS(1412), - [anon_sym_static] = ACTIONS(1412), - [anon_sym_auto] = ACTIONS(1412), - [anon_sym_register] = ACTIONS(1412), - [anon_sym_inline] = ACTIONS(1412), - [anon_sym___inline] = ACTIONS(1412), - [anon_sym___inline__] = ACTIONS(1412), - [anon_sym___forceinline] = ACTIONS(1412), - [anon_sym_thread_local] = ACTIONS(1412), - [anon_sym___thread] = ACTIONS(1412), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_constexpr] = ACTIONS(1412), - [anon_sym_volatile] = ACTIONS(1412), - [anon_sym_restrict] = ACTIONS(1412), - [anon_sym___restrict__] = ACTIONS(1412), - [anon_sym__Atomic] = ACTIONS(1412), - [anon_sym__Noreturn] = ACTIONS(1412), - [anon_sym_noreturn] = ACTIONS(1412), - [anon_sym_alignas] = ACTIONS(1412), - [anon_sym__Alignas] = ACTIONS(1412), - [sym_primitive_type] = ACTIONS(1412), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_struct] = ACTIONS(1412), - [anon_sym_union] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1412), - [anon_sym_switch] = ACTIONS(1412), - [anon_sym_case] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1412), - [anon_sym_while] = ACTIONS(1412), - [anon_sym_do] = ACTIONS(1412), - [anon_sym_for] = ACTIONS(1412), - [anon_sym_return] = ACTIONS(1412), - [anon_sym_break] = ACTIONS(1412), - [anon_sym_continue] = ACTIONS(1412), - [anon_sym_goto] = ACTIONS(1412), - [anon_sym___try] = ACTIONS(1412), - [anon_sym___leave] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1414), - [anon_sym_PLUS_PLUS] = ACTIONS(1414), - [anon_sym_sizeof] = ACTIONS(1412), - [anon_sym___alignof__] = ACTIONS(1412), - [anon_sym___alignof] = ACTIONS(1412), - [anon_sym__alignof] = ACTIONS(1412), - [anon_sym_alignof] = ACTIONS(1412), - [anon_sym__Alignof] = ACTIONS(1412), - [anon_sym_offsetof] = ACTIONS(1412), - [anon_sym__Generic] = ACTIONS(1412), - [anon_sym_asm] = ACTIONS(1412), - [anon_sym___asm__] = ACTIONS(1412), - [sym_number_literal] = ACTIONS(1414), - [anon_sym_L_SQUOTE] = ACTIONS(1414), - [anon_sym_u_SQUOTE] = ACTIONS(1414), - [anon_sym_U_SQUOTE] = ACTIONS(1414), - [anon_sym_u8_SQUOTE] = ACTIONS(1414), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_L_DQUOTE] = ACTIONS(1414), - [anon_sym_u_DQUOTE] = ACTIONS(1414), - [anon_sym_U_DQUOTE] = ACTIONS(1414), - [anon_sym_u8_DQUOTE] = ACTIONS(1414), - [anon_sym_DQUOTE] = ACTIONS(1414), - [sym_true] = ACTIONS(1412), - [sym_false] = ACTIONS(1412), - [anon_sym_NULL] = ACTIONS(1412), - [anon_sym_nullptr] = ACTIONS(1412), - [sym_comment] = ACTIONS(5), - }, - [316] = { - [sym_identifier] = ACTIONS(1366), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), - [sym_preproc_directive] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_TILDE] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym___attribute__] = ACTIONS(1366), - [anon_sym___scanf] = ACTIONS(1366), - [anon_sym___printf] = ACTIONS(1366), - [anon_sym___read_mostly] = ACTIONS(1366), - [anon_sym___must_hold] = ACTIONS(1366), - [anon_sym___ro_after_init] = ACTIONS(1366), - [anon_sym___noreturn] = ACTIONS(1366), - [anon_sym___cold] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), - [anon_sym___declspec] = ACTIONS(1366), - [anon_sym___init] = ACTIONS(1366), - [anon_sym___exit] = ACTIONS(1366), - [anon_sym___cdecl] = ACTIONS(1366), - [anon_sym___clrcall] = ACTIONS(1366), - [anon_sym___stdcall] = ACTIONS(1366), - [anon_sym___fastcall] = ACTIONS(1366), - [anon_sym___thiscall] = ACTIONS(1366), - [anon_sym___vectorcall] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1366), - [anon_sym_unsigned] = ACTIONS(1366), - [anon_sym_long] = ACTIONS(1366), - [anon_sym_short] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_auto] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1366), - [anon_sym_inline] = ACTIONS(1366), - [anon_sym___inline] = ACTIONS(1366), - [anon_sym___inline__] = ACTIONS(1366), - [anon_sym___forceinline] = ACTIONS(1366), - [anon_sym_thread_local] = ACTIONS(1366), - [anon_sym___thread] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_constexpr] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1366), - [anon_sym_restrict] = ACTIONS(1366), - [anon_sym___restrict__] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1366), - [anon_sym__Noreturn] = ACTIONS(1366), - [anon_sym_noreturn] = ACTIONS(1366), - [anon_sym_alignas] = ACTIONS(1366), - [anon_sym__Alignas] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1366), - [anon_sym_case] = ACTIONS(1366), - [anon_sym_default] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_do] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_goto] = ACTIONS(1366), - [anon_sym___try] = ACTIONS(1366), - [anon_sym___leave] = ACTIONS(1366), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_sizeof] = ACTIONS(1366), - [anon_sym___alignof__] = ACTIONS(1366), - [anon_sym___alignof] = ACTIONS(1366), - [anon_sym__alignof] = ACTIONS(1366), - [anon_sym_alignof] = ACTIONS(1366), - [anon_sym__Alignof] = ACTIONS(1366), - [anon_sym_offsetof] = ACTIONS(1366), - [anon_sym__Generic] = ACTIONS(1366), - [anon_sym_asm] = ACTIONS(1366), - [anon_sym___asm__] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(1368), - [anon_sym_L_SQUOTE] = ACTIONS(1368), - [anon_sym_u_SQUOTE] = ACTIONS(1368), - [anon_sym_U_SQUOTE] = ACTIONS(1368), - [anon_sym_u8_SQUOTE] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_L_DQUOTE] = ACTIONS(1368), - [anon_sym_u_DQUOTE] = ACTIONS(1368), - [anon_sym_U_DQUOTE] = ACTIONS(1368), - [anon_sym_u8_DQUOTE] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [anon_sym_NULL] = ACTIONS(1366), - [anon_sym_nullptr] = ACTIONS(1366), - [sym_comment] = ACTIONS(5), - }, - [317] = { - [sym_identifier] = ACTIONS(1412), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1412), - [aux_sym_preproc_def_token1] = ACTIONS(1412), - [aux_sym_preproc_if_token1] = ACTIONS(1412), - [aux_sym_preproc_if_token2] = ACTIONS(1412), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1412), - [sym_preproc_directive] = ACTIONS(1412), - [anon_sym_LPAREN2] = ACTIONS(1414), - [anon_sym_BANG] = ACTIONS(1414), - [anon_sym_TILDE] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1414), - [anon_sym___extension__] = ACTIONS(1412), - [anon_sym_typedef] = ACTIONS(1412), - [anon_sym_extern] = ACTIONS(1412), - [anon_sym___attribute__] = ACTIONS(1412), - [anon_sym___scanf] = ACTIONS(1412), - [anon_sym___printf] = ACTIONS(1412), - [anon_sym___read_mostly] = ACTIONS(1412), - [anon_sym___must_hold] = ACTIONS(1412), - [anon_sym___ro_after_init] = ACTIONS(1412), - [anon_sym___noreturn] = ACTIONS(1412), - [anon_sym___cold] = ACTIONS(1412), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1414), - [anon_sym___declspec] = ACTIONS(1412), - [anon_sym___init] = ACTIONS(1412), - [anon_sym___exit] = ACTIONS(1412), - [anon_sym___cdecl] = ACTIONS(1412), - [anon_sym___clrcall] = ACTIONS(1412), - [anon_sym___stdcall] = ACTIONS(1412), - [anon_sym___fastcall] = ACTIONS(1412), - [anon_sym___thiscall] = ACTIONS(1412), - [anon_sym___vectorcall] = ACTIONS(1412), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_signed] = ACTIONS(1412), - [anon_sym_unsigned] = ACTIONS(1412), - [anon_sym_long] = ACTIONS(1412), - [anon_sym_short] = ACTIONS(1412), - [anon_sym_static] = ACTIONS(1412), - [anon_sym_auto] = ACTIONS(1412), - [anon_sym_register] = ACTIONS(1412), - [anon_sym_inline] = ACTIONS(1412), - [anon_sym___inline] = ACTIONS(1412), - [anon_sym___inline__] = ACTIONS(1412), - [anon_sym___forceinline] = ACTIONS(1412), - [anon_sym_thread_local] = ACTIONS(1412), - [anon_sym___thread] = ACTIONS(1412), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_constexpr] = ACTIONS(1412), - [anon_sym_volatile] = ACTIONS(1412), - [anon_sym_restrict] = ACTIONS(1412), - [anon_sym___restrict__] = ACTIONS(1412), - [anon_sym__Atomic] = ACTIONS(1412), - [anon_sym__Noreturn] = ACTIONS(1412), - [anon_sym_noreturn] = ACTIONS(1412), - [anon_sym_alignas] = ACTIONS(1412), - [anon_sym__Alignas] = ACTIONS(1412), - [sym_primitive_type] = ACTIONS(1412), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_struct] = ACTIONS(1412), - [anon_sym_union] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1412), - [anon_sym_switch] = ACTIONS(1412), - [anon_sym_case] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1412), - [anon_sym_while] = ACTIONS(1412), - [anon_sym_do] = ACTIONS(1412), - [anon_sym_for] = ACTIONS(1412), - [anon_sym_return] = ACTIONS(1412), - [anon_sym_break] = ACTIONS(1412), - [anon_sym_continue] = ACTIONS(1412), - [anon_sym_goto] = ACTIONS(1412), - [anon_sym___try] = ACTIONS(1412), - [anon_sym___leave] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1414), - [anon_sym_PLUS_PLUS] = ACTIONS(1414), - [anon_sym_sizeof] = ACTIONS(1412), - [anon_sym___alignof__] = ACTIONS(1412), - [anon_sym___alignof] = ACTIONS(1412), - [anon_sym__alignof] = ACTIONS(1412), - [anon_sym_alignof] = ACTIONS(1412), - [anon_sym__Alignof] = ACTIONS(1412), - [anon_sym_offsetof] = ACTIONS(1412), - [anon_sym__Generic] = ACTIONS(1412), - [anon_sym_asm] = ACTIONS(1412), - [anon_sym___asm__] = ACTIONS(1412), - [sym_number_literal] = ACTIONS(1414), - [anon_sym_L_SQUOTE] = ACTIONS(1414), - [anon_sym_u_SQUOTE] = ACTIONS(1414), - [anon_sym_U_SQUOTE] = ACTIONS(1414), - [anon_sym_u8_SQUOTE] = ACTIONS(1414), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_L_DQUOTE] = ACTIONS(1414), - [anon_sym_u_DQUOTE] = ACTIONS(1414), - [anon_sym_U_DQUOTE] = ACTIONS(1414), - [anon_sym_u8_DQUOTE] = ACTIONS(1414), - [anon_sym_DQUOTE] = ACTIONS(1414), - [sym_true] = ACTIONS(1412), - [sym_false] = ACTIONS(1412), - [anon_sym_NULL] = ACTIONS(1412), - [anon_sym_nullptr] = ACTIONS(1412), - [sym_comment] = ACTIONS(5), - }, - [318] = { - [sym_identifier] = ACTIONS(1392), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1392), - [aux_sym_preproc_def_token1] = ACTIONS(1392), - [aux_sym_preproc_if_token1] = ACTIONS(1392), - [aux_sym_preproc_if_token2] = ACTIONS(1392), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1392), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1392), - [sym_preproc_directive] = ACTIONS(1392), - [anon_sym_LPAREN2] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1392), - [anon_sym_PLUS] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1394), - [anon_sym___extension__] = ACTIONS(1392), - [anon_sym_typedef] = ACTIONS(1392), - [anon_sym_extern] = ACTIONS(1392), - [anon_sym___attribute__] = ACTIONS(1392), - [anon_sym___scanf] = ACTIONS(1392), - [anon_sym___printf] = ACTIONS(1392), - [anon_sym___read_mostly] = ACTIONS(1392), - [anon_sym___must_hold] = ACTIONS(1392), - [anon_sym___ro_after_init] = ACTIONS(1392), - [anon_sym___noreturn] = ACTIONS(1392), - [anon_sym___cold] = ACTIONS(1392), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1394), - [anon_sym___declspec] = ACTIONS(1392), - [anon_sym___init] = ACTIONS(1392), - [anon_sym___exit] = ACTIONS(1392), - [anon_sym___cdecl] = ACTIONS(1392), - [anon_sym___clrcall] = ACTIONS(1392), - [anon_sym___stdcall] = ACTIONS(1392), - [anon_sym___fastcall] = ACTIONS(1392), - [anon_sym___thiscall] = ACTIONS(1392), - [anon_sym___vectorcall] = ACTIONS(1392), - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_signed] = ACTIONS(1392), - [anon_sym_unsigned] = ACTIONS(1392), - [anon_sym_long] = ACTIONS(1392), - [anon_sym_short] = ACTIONS(1392), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_auto] = ACTIONS(1392), - [anon_sym_register] = ACTIONS(1392), - [anon_sym_inline] = ACTIONS(1392), - [anon_sym___inline] = ACTIONS(1392), - [anon_sym___inline__] = ACTIONS(1392), - [anon_sym___forceinline] = ACTIONS(1392), - [anon_sym_thread_local] = ACTIONS(1392), - [anon_sym___thread] = ACTIONS(1392), - [anon_sym_const] = ACTIONS(1392), - [anon_sym_constexpr] = ACTIONS(1392), - [anon_sym_volatile] = ACTIONS(1392), - [anon_sym_restrict] = ACTIONS(1392), - [anon_sym___restrict__] = ACTIONS(1392), - [anon_sym__Atomic] = ACTIONS(1392), - [anon_sym__Noreturn] = ACTIONS(1392), - [anon_sym_noreturn] = ACTIONS(1392), - [anon_sym_alignas] = ACTIONS(1392), - [anon_sym__Alignas] = ACTIONS(1392), - [sym_primitive_type] = ACTIONS(1392), - [anon_sym_enum] = ACTIONS(1392), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_union] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1392), - [anon_sym_switch] = ACTIONS(1392), - [anon_sym_case] = ACTIONS(1392), - [anon_sym_default] = ACTIONS(1392), - [anon_sym_while] = ACTIONS(1392), - [anon_sym_do] = ACTIONS(1392), - [anon_sym_for] = ACTIONS(1392), - [anon_sym_return] = ACTIONS(1392), - [anon_sym_break] = ACTIONS(1392), - [anon_sym_continue] = ACTIONS(1392), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym___try] = ACTIONS(1392), - [anon_sym___leave] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(1394), - [anon_sym_PLUS_PLUS] = ACTIONS(1394), - [anon_sym_sizeof] = ACTIONS(1392), - [anon_sym___alignof__] = ACTIONS(1392), - [anon_sym___alignof] = ACTIONS(1392), - [anon_sym__alignof] = ACTIONS(1392), - [anon_sym_alignof] = ACTIONS(1392), - [anon_sym__Alignof] = ACTIONS(1392), - [anon_sym_offsetof] = ACTIONS(1392), - [anon_sym__Generic] = ACTIONS(1392), - [anon_sym_asm] = ACTIONS(1392), - [anon_sym___asm__] = ACTIONS(1392), - [sym_number_literal] = ACTIONS(1394), - [anon_sym_L_SQUOTE] = ACTIONS(1394), - [anon_sym_u_SQUOTE] = ACTIONS(1394), - [anon_sym_U_SQUOTE] = ACTIONS(1394), - [anon_sym_u8_SQUOTE] = ACTIONS(1394), - [anon_sym_SQUOTE] = ACTIONS(1394), - [anon_sym_L_DQUOTE] = ACTIONS(1394), - [anon_sym_u_DQUOTE] = ACTIONS(1394), - [anon_sym_U_DQUOTE] = ACTIONS(1394), - [anon_sym_u8_DQUOTE] = ACTIONS(1394), - [anon_sym_DQUOTE] = ACTIONS(1394), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [anon_sym_NULL] = ACTIONS(1392), - [anon_sym_nullptr] = ACTIONS(1392), - [sym_comment] = ACTIONS(5), - }, - [319] = { - [sym_identifier] = ACTIONS(1378), + [275] = { + [sym_identifier] = ACTIONS(1378), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1378), [aux_sym_preproc_def_token1] = ACTIONS(1378), @@ -57435,6 +52734,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1378), [anon_sym_union] = ACTIONS(1378), [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), [anon_sym_switch] = ACTIONS(1378), [anon_sym_case] = ACTIONS(1378), [anon_sym_default] = ACTIONS(1378), @@ -57476,122 +52776,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(5), }, - [320] = { - [sym_identifier] = ACTIONS(1366), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token2] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), - [sym_preproc_directive] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_TILDE] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym___attribute__] = ACTIONS(1366), - [anon_sym___scanf] = ACTIONS(1366), - [anon_sym___printf] = ACTIONS(1366), - [anon_sym___read_mostly] = ACTIONS(1366), - [anon_sym___must_hold] = ACTIONS(1366), - [anon_sym___ro_after_init] = ACTIONS(1366), - [anon_sym___noreturn] = ACTIONS(1366), - [anon_sym___cold] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), - [anon_sym___declspec] = ACTIONS(1366), - [anon_sym___init] = ACTIONS(1366), - [anon_sym___exit] = ACTIONS(1366), - [anon_sym___cdecl] = ACTIONS(1366), - [anon_sym___clrcall] = ACTIONS(1366), - [anon_sym___stdcall] = ACTIONS(1366), - [anon_sym___fastcall] = ACTIONS(1366), - [anon_sym___thiscall] = ACTIONS(1366), - [anon_sym___vectorcall] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1366), - [anon_sym_unsigned] = ACTIONS(1366), - [anon_sym_long] = ACTIONS(1366), - [anon_sym_short] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_auto] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1366), - [anon_sym_inline] = ACTIONS(1366), - [anon_sym___inline] = ACTIONS(1366), - [anon_sym___inline__] = ACTIONS(1366), - [anon_sym___forceinline] = ACTIONS(1366), - [anon_sym_thread_local] = ACTIONS(1366), - [anon_sym___thread] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_constexpr] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1366), - [anon_sym_restrict] = ACTIONS(1366), - [anon_sym___restrict__] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1366), - [anon_sym__Noreturn] = ACTIONS(1366), - [anon_sym_noreturn] = ACTIONS(1366), - [anon_sym_alignas] = ACTIONS(1366), - [anon_sym__Alignas] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1366), - [anon_sym_case] = ACTIONS(1366), - [anon_sym_default] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_do] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_goto] = ACTIONS(1366), - [anon_sym___try] = ACTIONS(1366), - [anon_sym___leave] = ACTIONS(1366), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_sizeof] = ACTIONS(1366), - [anon_sym___alignof__] = ACTIONS(1366), - [anon_sym___alignof] = ACTIONS(1366), - [anon_sym__alignof] = ACTIONS(1366), - [anon_sym_alignof] = ACTIONS(1366), - [anon_sym__Alignof] = ACTIONS(1366), - [anon_sym_offsetof] = ACTIONS(1366), - [anon_sym__Generic] = ACTIONS(1366), - [anon_sym_asm] = ACTIONS(1366), - [anon_sym___asm__] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(1368), - [anon_sym_L_SQUOTE] = ACTIONS(1368), - [anon_sym_u_SQUOTE] = ACTIONS(1368), - [anon_sym_U_SQUOTE] = ACTIONS(1368), - [anon_sym_u8_SQUOTE] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_L_DQUOTE] = ACTIONS(1368), - [anon_sym_u_DQUOTE] = ACTIONS(1368), - [anon_sym_U_DQUOTE] = ACTIONS(1368), - [anon_sym_u8_DQUOTE] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [anon_sym_NULL] = ACTIONS(1366), - [anon_sym_nullptr] = ACTIONS(1366), - [sym_comment] = ACTIONS(5), - }, - [321] = { + [276] = { [sym_identifier] = ACTIONS(1378), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1378), [aux_sym_preproc_def_token1] = ACTIONS(1378), [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token2] = ACTIONS(1378), [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), [sym_preproc_directive] = ACTIONS(1378), @@ -57625,6 +52815,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1378), [anon_sym___vectorcall] = ACTIONS(1378), [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_RBRACE] = ACTIONS(1380), [anon_sym_signed] = ACTIONS(1378), [anon_sym_unsigned] = ACTIONS(1378), [anon_sym_long] = ACTIONS(1378), @@ -57653,6 +52844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1378), [anon_sym_union] = ACTIONS(1378), [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), [anon_sym_switch] = ACTIONS(1378), [anon_sym_case] = ACTIONS(1378), [anon_sym_default] = ACTIONS(1378), @@ -57694,1975 +52886,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(5), }, - [322] = { - [sym_identifier] = ACTIONS(1366), + [277] = { + [sym_identifier] = ACTIONS(1374), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token2] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), - [sym_preproc_directive] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_TILDE] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym___attribute__] = ACTIONS(1366), - [anon_sym___scanf] = ACTIONS(1366), - [anon_sym___printf] = ACTIONS(1366), - [anon_sym___read_mostly] = ACTIONS(1366), - [anon_sym___must_hold] = ACTIONS(1366), - [anon_sym___ro_after_init] = ACTIONS(1366), - [anon_sym___noreturn] = ACTIONS(1366), - [anon_sym___cold] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), - [anon_sym___declspec] = ACTIONS(1366), - [anon_sym___init] = ACTIONS(1366), - [anon_sym___exit] = ACTIONS(1366), - [anon_sym___cdecl] = ACTIONS(1366), - [anon_sym___clrcall] = ACTIONS(1366), - [anon_sym___stdcall] = ACTIONS(1366), - [anon_sym___fastcall] = ACTIONS(1366), - [anon_sym___thiscall] = ACTIONS(1366), - [anon_sym___vectorcall] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1366), - [anon_sym_unsigned] = ACTIONS(1366), - [anon_sym_long] = ACTIONS(1366), - [anon_sym_short] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_auto] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1366), - [anon_sym_inline] = ACTIONS(1366), - [anon_sym___inline] = ACTIONS(1366), - [anon_sym___inline__] = ACTIONS(1366), - [anon_sym___forceinline] = ACTIONS(1366), - [anon_sym_thread_local] = ACTIONS(1366), - [anon_sym___thread] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_constexpr] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1366), - [anon_sym_restrict] = ACTIONS(1366), - [anon_sym___restrict__] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1366), - [anon_sym__Noreturn] = ACTIONS(1366), - [anon_sym_noreturn] = ACTIONS(1366), - [anon_sym_alignas] = ACTIONS(1366), - [anon_sym__Alignas] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1366), - [anon_sym_case] = ACTIONS(1366), - [anon_sym_default] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_do] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_goto] = ACTIONS(1366), - [anon_sym___try] = ACTIONS(1366), - [anon_sym___leave] = ACTIONS(1366), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_sizeof] = ACTIONS(1366), - [anon_sym___alignof__] = ACTIONS(1366), - [anon_sym___alignof] = ACTIONS(1366), - [anon_sym__alignof] = ACTIONS(1366), - [anon_sym_alignof] = ACTIONS(1366), - [anon_sym__Alignof] = ACTIONS(1366), - [anon_sym_offsetof] = ACTIONS(1366), - [anon_sym__Generic] = ACTIONS(1366), - [anon_sym_asm] = ACTIONS(1366), - [anon_sym___asm__] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(1368), - [anon_sym_L_SQUOTE] = ACTIONS(1368), - [anon_sym_u_SQUOTE] = ACTIONS(1368), - [anon_sym_U_SQUOTE] = ACTIONS(1368), - [anon_sym_u8_SQUOTE] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_L_DQUOTE] = ACTIONS(1368), - [anon_sym_u_DQUOTE] = ACTIONS(1368), - [anon_sym_U_DQUOTE] = ACTIONS(1368), - [anon_sym_u8_DQUOTE] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [anon_sym_NULL] = ACTIONS(1366), - [anon_sym_nullptr] = ACTIONS(1366), - [sym_comment] = ACTIONS(5), - }, - [323] = { - [sym_identifier] = ACTIONS(1428), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1428), - [aux_sym_preproc_def_token1] = ACTIONS(1428), - [aux_sym_preproc_if_token1] = ACTIONS(1428), - [aux_sym_preproc_if_token2] = ACTIONS(1428), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1428), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1428), - [sym_preproc_directive] = ACTIONS(1428), - [anon_sym_LPAREN2] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym___extension__] = ACTIONS(1428), - [anon_sym_typedef] = ACTIONS(1428), - [anon_sym_extern] = ACTIONS(1428), - [anon_sym___attribute__] = ACTIONS(1428), - [anon_sym___scanf] = ACTIONS(1428), - [anon_sym___printf] = ACTIONS(1428), - [anon_sym___read_mostly] = ACTIONS(1428), - [anon_sym___must_hold] = ACTIONS(1428), - [anon_sym___ro_after_init] = ACTIONS(1428), - [anon_sym___noreturn] = ACTIONS(1428), - [anon_sym___cold] = ACTIONS(1428), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1430), - [anon_sym___declspec] = ACTIONS(1428), - [anon_sym___init] = ACTIONS(1428), - [anon_sym___exit] = ACTIONS(1428), - [anon_sym___cdecl] = ACTIONS(1428), - [anon_sym___clrcall] = ACTIONS(1428), - [anon_sym___stdcall] = ACTIONS(1428), - [anon_sym___fastcall] = ACTIONS(1428), - [anon_sym___thiscall] = ACTIONS(1428), - [anon_sym___vectorcall] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_signed] = ACTIONS(1428), - [anon_sym_unsigned] = ACTIONS(1428), - [anon_sym_long] = ACTIONS(1428), - [anon_sym_short] = ACTIONS(1428), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_auto] = ACTIONS(1428), - [anon_sym_register] = ACTIONS(1428), - [anon_sym_inline] = ACTIONS(1428), - [anon_sym___inline] = ACTIONS(1428), - [anon_sym___inline__] = ACTIONS(1428), - [anon_sym___forceinline] = ACTIONS(1428), - [anon_sym_thread_local] = ACTIONS(1428), - [anon_sym___thread] = ACTIONS(1428), - [anon_sym_const] = ACTIONS(1428), - [anon_sym_constexpr] = ACTIONS(1428), - [anon_sym_volatile] = ACTIONS(1428), - [anon_sym_restrict] = ACTIONS(1428), - [anon_sym___restrict__] = ACTIONS(1428), - [anon_sym__Atomic] = ACTIONS(1428), - [anon_sym__Noreturn] = ACTIONS(1428), - [anon_sym_noreturn] = ACTIONS(1428), - [anon_sym_alignas] = ACTIONS(1428), - [anon_sym__Alignas] = ACTIONS(1428), - [sym_primitive_type] = ACTIONS(1428), - [anon_sym_enum] = ACTIONS(1428), - [anon_sym_struct] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1428), - [anon_sym_if] = ACTIONS(1428), - [anon_sym_switch] = ACTIONS(1428), - [anon_sym_case] = ACTIONS(1428), - [anon_sym_default] = ACTIONS(1428), - [anon_sym_while] = ACTIONS(1428), - [anon_sym_do] = ACTIONS(1428), - [anon_sym_for] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1428), - [anon_sym_break] = ACTIONS(1428), - [anon_sym_continue] = ACTIONS(1428), - [anon_sym_goto] = ACTIONS(1428), - [anon_sym___try] = ACTIONS(1428), - [anon_sym___leave] = ACTIONS(1428), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_sizeof] = ACTIONS(1428), - [anon_sym___alignof__] = ACTIONS(1428), - [anon_sym___alignof] = ACTIONS(1428), - [anon_sym__alignof] = ACTIONS(1428), - [anon_sym_alignof] = ACTIONS(1428), - [anon_sym__Alignof] = ACTIONS(1428), - [anon_sym_offsetof] = ACTIONS(1428), - [anon_sym__Generic] = ACTIONS(1428), - [anon_sym_asm] = ACTIONS(1428), - [anon_sym___asm__] = ACTIONS(1428), - [sym_number_literal] = ACTIONS(1430), - [anon_sym_L_SQUOTE] = ACTIONS(1430), - [anon_sym_u_SQUOTE] = ACTIONS(1430), - [anon_sym_U_SQUOTE] = ACTIONS(1430), - [anon_sym_u8_SQUOTE] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_L_DQUOTE] = ACTIONS(1430), - [anon_sym_u_DQUOTE] = ACTIONS(1430), - [anon_sym_U_DQUOTE] = ACTIONS(1430), - [anon_sym_u8_DQUOTE] = ACTIONS(1430), - [anon_sym_DQUOTE] = ACTIONS(1430), - [sym_true] = ACTIONS(1428), - [sym_false] = ACTIONS(1428), - [anon_sym_NULL] = ACTIONS(1428), - [anon_sym_nullptr] = ACTIONS(1428), + [aux_sym_preproc_include_token1] = ACTIONS(1374), + [aux_sym_preproc_def_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), + [sym_preproc_directive] = ACTIONS(1374), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym___extension__] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym___attribute__] = ACTIONS(1374), + [anon_sym___scanf] = ACTIONS(1374), + [anon_sym___printf] = ACTIONS(1374), + [anon_sym___read_mostly] = ACTIONS(1374), + [anon_sym___must_hold] = ACTIONS(1374), + [anon_sym___ro_after_init] = ACTIONS(1374), + [anon_sym___noreturn] = ACTIONS(1374), + [anon_sym___cold] = ACTIONS(1374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym___declspec] = ACTIONS(1374), + [anon_sym___init] = ACTIONS(1374), + [anon_sym___exit] = ACTIONS(1374), + [anon_sym___cdecl] = ACTIONS(1374), + [anon_sym___clrcall] = ACTIONS(1374), + [anon_sym___stdcall] = ACTIONS(1374), + [anon_sym___fastcall] = ACTIONS(1374), + [anon_sym___thiscall] = ACTIONS(1374), + [anon_sym___vectorcall] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_constexpr] = ACTIONS(1374), + [anon_sym_volatile] = ACTIONS(1374), + [anon_sym_restrict] = ACTIONS(1374), + [anon_sym___restrict__] = ACTIONS(1374), + [anon_sym__Atomic] = ACTIONS(1374), + [anon_sym__Noreturn] = ACTIONS(1374), + [anon_sym_noreturn] = ACTIONS(1374), + [anon_sym_alignas] = ACTIONS(1374), + [anon_sym__Alignas] = ACTIONS(1374), + [sym_primitive_type] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_switch] = ACTIONS(1374), + [anon_sym_case] = ACTIONS(1374), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_goto] = ACTIONS(1374), + [anon_sym___try] = ACTIONS(1374), + [anon_sym___leave] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = ACTIONS(1374), + [anon_sym_offsetof] = ACTIONS(1374), + [anon_sym__Generic] = ACTIONS(1374), + [anon_sym_asm] = ACTIONS(1374), + [anon_sym___asm__] = ACTIONS(1374), + [sym_number_literal] = ACTIONS(1376), + [anon_sym_L_SQUOTE] = ACTIONS(1376), + [anon_sym_u_SQUOTE] = ACTIONS(1376), + [anon_sym_U_SQUOTE] = ACTIONS(1376), + [anon_sym_u8_SQUOTE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_L_DQUOTE] = ACTIONS(1376), + [anon_sym_u_DQUOTE] = ACTIONS(1376), + [anon_sym_U_DQUOTE] = ACTIONS(1376), + [anon_sym_u8_DQUOTE] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [anon_sym_NULL] = ACTIONS(1374), + [anon_sym_nullptr] = ACTIONS(1374), [sym_comment] = ACTIONS(5), }, - [324] = { - [sym_identifier] = ACTIONS(1432), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1432), - [aux_sym_preproc_def_token1] = ACTIONS(1432), - [aux_sym_preproc_if_token1] = ACTIONS(1432), - [aux_sym_preproc_if_token2] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), - [sym_preproc_directive] = ACTIONS(1432), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym___extension__] = ACTIONS(1432), - [anon_sym_typedef] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1432), - [anon_sym___attribute__] = ACTIONS(1432), - [anon_sym___scanf] = ACTIONS(1432), - [anon_sym___printf] = ACTIONS(1432), - [anon_sym___read_mostly] = ACTIONS(1432), - [anon_sym___must_hold] = ACTIONS(1432), - [anon_sym___ro_after_init] = ACTIONS(1432), - [anon_sym___noreturn] = ACTIONS(1432), - [anon_sym___cold] = ACTIONS(1432), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), - [anon_sym___declspec] = ACTIONS(1432), - [anon_sym___init] = ACTIONS(1432), - [anon_sym___exit] = ACTIONS(1432), - [anon_sym___cdecl] = ACTIONS(1432), - [anon_sym___clrcall] = ACTIONS(1432), - [anon_sym___stdcall] = ACTIONS(1432), - [anon_sym___fastcall] = ACTIONS(1432), - [anon_sym___thiscall] = ACTIONS(1432), - [anon_sym___vectorcall] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_signed] = ACTIONS(1432), - [anon_sym_unsigned] = ACTIONS(1432), - [anon_sym_long] = ACTIONS(1432), - [anon_sym_short] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_auto] = ACTIONS(1432), - [anon_sym_register] = ACTIONS(1432), - [anon_sym_inline] = ACTIONS(1432), - [anon_sym___inline] = ACTIONS(1432), - [anon_sym___inline__] = ACTIONS(1432), - [anon_sym___forceinline] = ACTIONS(1432), - [anon_sym_thread_local] = ACTIONS(1432), - [anon_sym___thread] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_constexpr] = ACTIONS(1432), - [anon_sym_volatile] = ACTIONS(1432), - [anon_sym_restrict] = ACTIONS(1432), - [anon_sym___restrict__] = ACTIONS(1432), - [anon_sym__Atomic] = ACTIONS(1432), - [anon_sym__Noreturn] = ACTIONS(1432), - [anon_sym_noreturn] = ACTIONS(1432), - [anon_sym_alignas] = ACTIONS(1432), - [anon_sym__Alignas] = ACTIONS(1432), - [sym_primitive_type] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_struct] = ACTIONS(1432), - [anon_sym_union] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_case] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_goto] = ACTIONS(1432), - [anon_sym___try] = ACTIONS(1432), - [anon_sym___leave] = ACTIONS(1432), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_sizeof] = ACTIONS(1432), - [anon_sym___alignof__] = ACTIONS(1432), - [anon_sym___alignof] = ACTIONS(1432), - [anon_sym__alignof] = ACTIONS(1432), - [anon_sym_alignof] = ACTIONS(1432), - [anon_sym__Alignof] = ACTIONS(1432), - [anon_sym_offsetof] = ACTIONS(1432), - [anon_sym__Generic] = ACTIONS(1432), - [anon_sym_asm] = ACTIONS(1432), - [anon_sym___asm__] = ACTIONS(1432), - [sym_number_literal] = ACTIONS(1434), - [anon_sym_L_SQUOTE] = ACTIONS(1434), - [anon_sym_u_SQUOTE] = ACTIONS(1434), - [anon_sym_U_SQUOTE] = ACTIONS(1434), - [anon_sym_u8_SQUOTE] = ACTIONS(1434), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_L_DQUOTE] = ACTIONS(1434), - [anon_sym_u_DQUOTE] = ACTIONS(1434), - [anon_sym_U_DQUOTE] = ACTIONS(1434), - [anon_sym_u8_DQUOTE] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(1434), - [sym_true] = ACTIONS(1432), - [sym_false] = ACTIONS(1432), - [anon_sym_NULL] = ACTIONS(1432), - [anon_sym_nullptr] = ACTIONS(1432), - [sym_comment] = ACTIONS(5), - }, - [325] = { - [sym_identifier] = ACTIONS(1436), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1436), - [aux_sym_preproc_def_token1] = ACTIONS(1436), - [aux_sym_preproc_if_token1] = ACTIONS(1436), - [aux_sym_preproc_if_token2] = ACTIONS(1436), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), - [sym_preproc_directive] = ACTIONS(1436), - [anon_sym_LPAREN2] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1436), - [anon_sym_typedef] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym___attribute__] = ACTIONS(1436), - [anon_sym___scanf] = ACTIONS(1436), - [anon_sym___printf] = ACTIONS(1436), - [anon_sym___read_mostly] = ACTIONS(1436), - [anon_sym___must_hold] = ACTIONS(1436), - [anon_sym___ro_after_init] = ACTIONS(1436), - [anon_sym___noreturn] = ACTIONS(1436), - [anon_sym___cold] = ACTIONS(1436), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), - [anon_sym___declspec] = ACTIONS(1436), - [anon_sym___init] = ACTIONS(1436), - [anon_sym___exit] = ACTIONS(1436), - [anon_sym___cdecl] = ACTIONS(1436), - [anon_sym___clrcall] = ACTIONS(1436), - [anon_sym___stdcall] = ACTIONS(1436), - [anon_sym___fastcall] = ACTIONS(1436), - [anon_sym___thiscall] = ACTIONS(1436), - [anon_sym___vectorcall] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1438), - [anon_sym_signed] = ACTIONS(1436), - [anon_sym_unsigned] = ACTIONS(1436), - [anon_sym_long] = ACTIONS(1436), - [anon_sym_short] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_auto] = ACTIONS(1436), - [anon_sym_register] = ACTIONS(1436), - [anon_sym_inline] = ACTIONS(1436), - [anon_sym___inline] = ACTIONS(1436), - [anon_sym___inline__] = ACTIONS(1436), - [anon_sym___forceinline] = ACTIONS(1436), - [anon_sym_thread_local] = ACTIONS(1436), - [anon_sym___thread] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_constexpr] = ACTIONS(1436), - [anon_sym_volatile] = ACTIONS(1436), - [anon_sym_restrict] = ACTIONS(1436), - [anon_sym___restrict__] = ACTIONS(1436), - [anon_sym__Atomic] = ACTIONS(1436), - [anon_sym__Noreturn] = ACTIONS(1436), - [anon_sym_noreturn] = ACTIONS(1436), - [anon_sym_alignas] = ACTIONS(1436), - [anon_sym__Alignas] = ACTIONS(1436), - [sym_primitive_type] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1436), - [anon_sym_struct] = ACTIONS(1436), - [anon_sym_union] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1436), - [anon_sym_case] = ACTIONS(1436), - [anon_sym_default] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_goto] = ACTIONS(1436), - [anon_sym___try] = ACTIONS(1436), - [anon_sym___leave] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_sizeof] = ACTIONS(1436), - [anon_sym___alignof__] = ACTIONS(1436), - [anon_sym___alignof] = ACTIONS(1436), - [anon_sym__alignof] = ACTIONS(1436), - [anon_sym_alignof] = ACTIONS(1436), - [anon_sym__Alignof] = ACTIONS(1436), - [anon_sym_offsetof] = ACTIONS(1436), - [anon_sym__Generic] = ACTIONS(1436), - [anon_sym_asm] = ACTIONS(1436), - [anon_sym___asm__] = ACTIONS(1436), - [sym_number_literal] = ACTIONS(1438), - [anon_sym_L_SQUOTE] = ACTIONS(1438), - [anon_sym_u_SQUOTE] = ACTIONS(1438), - [anon_sym_U_SQUOTE] = ACTIONS(1438), - [anon_sym_u8_SQUOTE] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1438), - [anon_sym_L_DQUOTE] = ACTIONS(1438), - [anon_sym_u_DQUOTE] = ACTIONS(1438), - [anon_sym_U_DQUOTE] = ACTIONS(1438), - [anon_sym_u8_DQUOTE] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1438), - [sym_true] = ACTIONS(1436), - [sym_false] = ACTIONS(1436), - [anon_sym_NULL] = ACTIONS(1436), - [anon_sym_nullptr] = ACTIONS(1436), - [sym_comment] = ACTIONS(5), - }, - [326] = { - [sym_identifier] = ACTIONS(1354), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [anon_sym_LPAREN2] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym___extension__] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym___attribute__] = ACTIONS(1354), - [anon_sym___scanf] = ACTIONS(1354), - [anon_sym___printf] = ACTIONS(1354), - [anon_sym___read_mostly] = ACTIONS(1354), - [anon_sym___must_hold] = ACTIONS(1354), - [anon_sym___ro_after_init] = ACTIONS(1354), - [anon_sym___noreturn] = ACTIONS(1354), - [anon_sym___cold] = ACTIONS(1354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), - [anon_sym___declspec] = ACTIONS(1354), - [anon_sym___init] = ACTIONS(1354), - [anon_sym___exit] = ACTIONS(1354), - [anon_sym___cdecl] = ACTIONS(1354), - [anon_sym___clrcall] = ACTIONS(1354), - [anon_sym___stdcall] = ACTIONS(1354), - [anon_sym___fastcall] = ACTIONS(1354), - [anon_sym___thiscall] = ACTIONS(1354), - [anon_sym___vectorcall] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_RBRACE] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym___inline] = ACTIONS(1354), - [anon_sym___inline__] = ACTIONS(1354), - [anon_sym___forceinline] = ACTIONS(1354), - [anon_sym_thread_local] = ACTIONS(1354), - [anon_sym___thread] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_constexpr] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym___restrict__] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [anon_sym__Noreturn] = ACTIONS(1354), - [anon_sym_noreturn] = ACTIONS(1354), - [anon_sym_alignas] = ACTIONS(1354), - [anon_sym__Alignas] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [anon_sym___try] = ACTIONS(1354), - [anon_sym___leave] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym___alignof__] = ACTIONS(1354), - [anon_sym___alignof] = ACTIONS(1354), - [anon_sym__alignof] = ACTIONS(1354), - [anon_sym_alignof] = ACTIONS(1354), - [anon_sym__Alignof] = ACTIONS(1354), - [anon_sym_offsetof] = ACTIONS(1354), - [anon_sym__Generic] = ACTIONS(1354), - [anon_sym_asm] = ACTIONS(1354), - [anon_sym___asm__] = ACTIONS(1354), - [sym_number_literal] = ACTIONS(1356), - [anon_sym_L_SQUOTE] = ACTIONS(1356), - [anon_sym_u_SQUOTE] = ACTIONS(1356), - [anon_sym_U_SQUOTE] = ACTIONS(1356), - [anon_sym_u8_SQUOTE] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_L_DQUOTE] = ACTIONS(1356), - [anon_sym_u_DQUOTE] = ACTIONS(1356), - [anon_sym_U_DQUOTE] = ACTIONS(1356), - [anon_sym_u8_DQUOTE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_NULL] = ACTIONS(1354), - [anon_sym_nullptr] = ACTIONS(1354), - [sym_comment] = ACTIONS(5), - }, - [327] = { - [sym_identifier] = ACTIONS(1452), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1452), - [aux_sym_preproc_def_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), - [sym_preproc_directive] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym___extension__] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym___attribute__] = ACTIONS(1452), - [anon_sym___scanf] = ACTIONS(1452), - [anon_sym___printf] = ACTIONS(1452), - [anon_sym___read_mostly] = ACTIONS(1452), - [anon_sym___must_hold] = ACTIONS(1452), - [anon_sym___ro_after_init] = ACTIONS(1452), - [anon_sym___noreturn] = ACTIONS(1452), - [anon_sym___cold] = ACTIONS(1452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym___declspec] = ACTIONS(1452), - [anon_sym___init] = ACTIONS(1452), - [anon_sym___exit] = ACTIONS(1452), - [anon_sym___cdecl] = ACTIONS(1452), - [anon_sym___clrcall] = ACTIONS(1452), - [anon_sym___stdcall] = ACTIONS(1452), - [anon_sym___fastcall] = ACTIONS(1452), - [anon_sym___thiscall] = ACTIONS(1452), - [anon_sym___vectorcall] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1454), - [anon_sym_signed] = ACTIONS(1452), - [anon_sym_unsigned] = ACTIONS(1452), - [anon_sym_long] = ACTIONS(1452), - [anon_sym_short] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_auto] = ACTIONS(1452), - [anon_sym_register] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym___inline] = ACTIONS(1452), - [anon_sym___inline__] = ACTIONS(1452), - [anon_sym___forceinline] = ACTIONS(1452), - [anon_sym_thread_local] = ACTIONS(1452), - [anon_sym___thread] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_constexpr] = ACTIONS(1452), - [anon_sym_volatile] = ACTIONS(1452), - [anon_sym_restrict] = ACTIONS(1452), - [anon_sym___restrict__] = ACTIONS(1452), - [anon_sym__Atomic] = ACTIONS(1452), - [anon_sym__Noreturn] = ACTIONS(1452), - [anon_sym_noreturn] = ACTIONS(1452), - [anon_sym_alignas] = ACTIONS(1452), - [anon_sym__Alignas] = ACTIONS(1452), - [sym_primitive_type] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_case] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_goto] = ACTIONS(1452), - [anon_sym___try] = ACTIONS(1452), - [anon_sym___leave] = ACTIONS(1452), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_sizeof] = ACTIONS(1452), - [anon_sym___alignof__] = ACTIONS(1452), - [anon_sym___alignof] = ACTIONS(1452), - [anon_sym__alignof] = ACTIONS(1452), - [anon_sym_alignof] = ACTIONS(1452), - [anon_sym__Alignof] = ACTIONS(1452), - [anon_sym_offsetof] = ACTIONS(1452), - [anon_sym__Generic] = ACTIONS(1452), - [anon_sym_asm] = ACTIONS(1452), - [anon_sym___asm__] = ACTIONS(1452), - [sym_number_literal] = ACTIONS(1454), - [anon_sym_L_SQUOTE] = ACTIONS(1454), - [anon_sym_u_SQUOTE] = ACTIONS(1454), - [anon_sym_U_SQUOTE] = ACTIONS(1454), - [anon_sym_u8_SQUOTE] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_L_DQUOTE] = ACTIONS(1454), - [anon_sym_u_DQUOTE] = ACTIONS(1454), - [anon_sym_U_DQUOTE] = ACTIONS(1454), - [anon_sym_u8_DQUOTE] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym_true] = ACTIONS(1452), - [sym_false] = ACTIONS(1452), - [anon_sym_NULL] = ACTIONS(1452), - [anon_sym_nullptr] = ACTIONS(1452), - [sym_comment] = ACTIONS(5), - }, - [328] = { - [sym_identifier] = ACTIONS(1452), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1452), - [aux_sym_preproc_def_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), - [sym_preproc_directive] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym___extension__] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym___attribute__] = ACTIONS(1452), - [anon_sym___scanf] = ACTIONS(1452), - [anon_sym___printf] = ACTIONS(1452), - [anon_sym___read_mostly] = ACTIONS(1452), - [anon_sym___must_hold] = ACTIONS(1452), - [anon_sym___ro_after_init] = ACTIONS(1452), - [anon_sym___noreturn] = ACTIONS(1452), - [anon_sym___cold] = ACTIONS(1452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym___declspec] = ACTIONS(1452), - [anon_sym___init] = ACTIONS(1452), - [anon_sym___exit] = ACTIONS(1452), - [anon_sym___cdecl] = ACTIONS(1452), - [anon_sym___clrcall] = ACTIONS(1452), - [anon_sym___stdcall] = ACTIONS(1452), - [anon_sym___fastcall] = ACTIONS(1452), - [anon_sym___thiscall] = ACTIONS(1452), - [anon_sym___vectorcall] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1454), - [anon_sym_signed] = ACTIONS(1452), - [anon_sym_unsigned] = ACTIONS(1452), - [anon_sym_long] = ACTIONS(1452), - [anon_sym_short] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_auto] = ACTIONS(1452), - [anon_sym_register] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym___inline] = ACTIONS(1452), - [anon_sym___inline__] = ACTIONS(1452), - [anon_sym___forceinline] = ACTIONS(1452), - [anon_sym_thread_local] = ACTIONS(1452), - [anon_sym___thread] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_constexpr] = ACTIONS(1452), - [anon_sym_volatile] = ACTIONS(1452), - [anon_sym_restrict] = ACTIONS(1452), - [anon_sym___restrict__] = ACTIONS(1452), - [anon_sym__Atomic] = ACTIONS(1452), - [anon_sym__Noreturn] = ACTIONS(1452), - [anon_sym_noreturn] = ACTIONS(1452), - [anon_sym_alignas] = ACTIONS(1452), - [anon_sym__Alignas] = ACTIONS(1452), - [sym_primitive_type] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_case] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_goto] = ACTIONS(1452), - [anon_sym___try] = ACTIONS(1452), - [anon_sym___leave] = ACTIONS(1452), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_sizeof] = ACTIONS(1452), - [anon_sym___alignof__] = ACTIONS(1452), - [anon_sym___alignof] = ACTIONS(1452), - [anon_sym__alignof] = ACTIONS(1452), - [anon_sym_alignof] = ACTIONS(1452), - [anon_sym__Alignof] = ACTIONS(1452), - [anon_sym_offsetof] = ACTIONS(1452), - [anon_sym__Generic] = ACTIONS(1452), - [anon_sym_asm] = ACTIONS(1452), - [anon_sym___asm__] = ACTIONS(1452), - [sym_number_literal] = ACTIONS(1454), - [anon_sym_L_SQUOTE] = ACTIONS(1454), - [anon_sym_u_SQUOTE] = ACTIONS(1454), - [anon_sym_U_SQUOTE] = ACTIONS(1454), - [anon_sym_u8_SQUOTE] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_L_DQUOTE] = ACTIONS(1454), - [anon_sym_u_DQUOTE] = ACTIONS(1454), - [anon_sym_U_DQUOTE] = ACTIONS(1454), - [anon_sym_u8_DQUOTE] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym_true] = ACTIONS(1452), - [sym_false] = ACTIONS(1452), - [anon_sym_NULL] = ACTIONS(1452), - [anon_sym_nullptr] = ACTIONS(1452), - [sym_comment] = ACTIONS(5), - }, - [329] = { - [sym_identifier] = ACTIONS(1354), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [anon_sym_LPAREN2] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym___extension__] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym___attribute__] = ACTIONS(1354), - [anon_sym___scanf] = ACTIONS(1354), - [anon_sym___printf] = ACTIONS(1354), - [anon_sym___read_mostly] = ACTIONS(1354), - [anon_sym___must_hold] = ACTIONS(1354), - [anon_sym___ro_after_init] = ACTIONS(1354), - [anon_sym___noreturn] = ACTIONS(1354), - [anon_sym___cold] = ACTIONS(1354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), - [anon_sym___declspec] = ACTIONS(1354), - [anon_sym___init] = ACTIONS(1354), - [anon_sym___exit] = ACTIONS(1354), - [anon_sym___cdecl] = ACTIONS(1354), - [anon_sym___clrcall] = ACTIONS(1354), - [anon_sym___stdcall] = ACTIONS(1354), - [anon_sym___fastcall] = ACTIONS(1354), - [anon_sym___thiscall] = ACTIONS(1354), - [anon_sym___vectorcall] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_RBRACE] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym___inline] = ACTIONS(1354), - [anon_sym___inline__] = ACTIONS(1354), - [anon_sym___forceinline] = ACTIONS(1354), - [anon_sym_thread_local] = ACTIONS(1354), - [anon_sym___thread] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_constexpr] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym___restrict__] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [anon_sym__Noreturn] = ACTIONS(1354), - [anon_sym_noreturn] = ACTIONS(1354), - [anon_sym_alignas] = ACTIONS(1354), - [anon_sym__Alignas] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [anon_sym___try] = ACTIONS(1354), - [anon_sym___leave] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym___alignof__] = ACTIONS(1354), - [anon_sym___alignof] = ACTIONS(1354), - [anon_sym__alignof] = ACTIONS(1354), - [anon_sym_alignof] = ACTIONS(1354), - [anon_sym__Alignof] = ACTIONS(1354), - [anon_sym_offsetof] = ACTIONS(1354), - [anon_sym__Generic] = ACTIONS(1354), - [anon_sym_asm] = ACTIONS(1354), - [anon_sym___asm__] = ACTIONS(1354), - [sym_number_literal] = ACTIONS(1356), - [anon_sym_L_SQUOTE] = ACTIONS(1356), - [anon_sym_u_SQUOTE] = ACTIONS(1356), - [anon_sym_U_SQUOTE] = ACTIONS(1356), - [anon_sym_u8_SQUOTE] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_L_DQUOTE] = ACTIONS(1356), - [anon_sym_u_DQUOTE] = ACTIONS(1356), - [anon_sym_U_DQUOTE] = ACTIONS(1356), - [anon_sym_u8_DQUOTE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_NULL] = ACTIONS(1354), - [anon_sym_nullptr] = ACTIONS(1354), - [sym_comment] = ACTIONS(5), - }, - [330] = { - [sym_identifier] = ACTIONS(1444), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1444), - [aux_sym_preproc_def_token1] = ACTIONS(1444), - [aux_sym_preproc_if_token1] = ACTIONS(1444), - [aux_sym_preproc_if_token2] = ACTIONS(1444), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), - [sym_preproc_directive] = ACTIONS(1444), - [anon_sym_LPAREN2] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_TILDE] = ACTIONS(1446), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1446), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym___extension__] = ACTIONS(1444), - [anon_sym_typedef] = ACTIONS(1444), - [anon_sym_extern] = ACTIONS(1444), - [anon_sym___attribute__] = ACTIONS(1444), - [anon_sym___scanf] = ACTIONS(1444), - [anon_sym___printf] = ACTIONS(1444), - [anon_sym___read_mostly] = ACTIONS(1444), - [anon_sym___must_hold] = ACTIONS(1444), - [anon_sym___ro_after_init] = ACTIONS(1444), - [anon_sym___noreturn] = ACTIONS(1444), - [anon_sym___cold] = ACTIONS(1444), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), - [anon_sym___declspec] = ACTIONS(1444), - [anon_sym___init] = ACTIONS(1444), - [anon_sym___exit] = ACTIONS(1444), - [anon_sym___cdecl] = ACTIONS(1444), - [anon_sym___clrcall] = ACTIONS(1444), - [anon_sym___stdcall] = ACTIONS(1444), - [anon_sym___fastcall] = ACTIONS(1444), - [anon_sym___thiscall] = ACTIONS(1444), - [anon_sym___vectorcall] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_signed] = ACTIONS(1444), - [anon_sym_unsigned] = ACTIONS(1444), - [anon_sym_long] = ACTIONS(1444), - [anon_sym_short] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_auto] = ACTIONS(1444), - [anon_sym_register] = ACTIONS(1444), - [anon_sym_inline] = ACTIONS(1444), - [anon_sym___inline] = ACTIONS(1444), - [anon_sym___inline__] = ACTIONS(1444), - [anon_sym___forceinline] = ACTIONS(1444), - [anon_sym_thread_local] = ACTIONS(1444), - [anon_sym___thread] = ACTIONS(1444), - [anon_sym_const] = ACTIONS(1444), - [anon_sym_constexpr] = ACTIONS(1444), - [anon_sym_volatile] = ACTIONS(1444), - [anon_sym_restrict] = ACTIONS(1444), - [anon_sym___restrict__] = ACTIONS(1444), - [anon_sym__Atomic] = ACTIONS(1444), - [anon_sym__Noreturn] = ACTIONS(1444), - [anon_sym_noreturn] = ACTIONS(1444), - [anon_sym_alignas] = ACTIONS(1444), - [anon_sym__Alignas] = ACTIONS(1444), - [sym_primitive_type] = ACTIONS(1444), - [anon_sym_enum] = ACTIONS(1444), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_union] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_switch] = ACTIONS(1444), - [anon_sym_case] = ACTIONS(1444), - [anon_sym_default] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_do] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_goto] = ACTIONS(1444), - [anon_sym___try] = ACTIONS(1444), - [anon_sym___leave] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_sizeof] = ACTIONS(1444), - [anon_sym___alignof__] = ACTIONS(1444), - [anon_sym___alignof] = ACTIONS(1444), - [anon_sym__alignof] = ACTIONS(1444), - [anon_sym_alignof] = ACTIONS(1444), - [anon_sym__Alignof] = ACTIONS(1444), - [anon_sym_offsetof] = ACTIONS(1444), - [anon_sym__Generic] = ACTIONS(1444), - [anon_sym_asm] = ACTIONS(1444), - [anon_sym___asm__] = ACTIONS(1444), - [sym_number_literal] = ACTIONS(1446), - [anon_sym_L_SQUOTE] = ACTIONS(1446), - [anon_sym_u_SQUOTE] = ACTIONS(1446), - [anon_sym_U_SQUOTE] = ACTIONS(1446), - [anon_sym_u8_SQUOTE] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1446), - [anon_sym_L_DQUOTE] = ACTIONS(1446), - [anon_sym_u_DQUOTE] = ACTIONS(1446), - [anon_sym_U_DQUOTE] = ACTIONS(1446), - [anon_sym_u8_DQUOTE] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(1446), - [sym_true] = ACTIONS(1444), - [sym_false] = ACTIONS(1444), - [anon_sym_NULL] = ACTIONS(1444), - [anon_sym_nullptr] = ACTIONS(1444), - [sym_comment] = ACTIONS(5), - }, - [331] = { - [sym_identifier] = ACTIONS(1366), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), - [sym_preproc_directive] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_TILDE] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym___attribute__] = ACTIONS(1366), - [anon_sym___scanf] = ACTIONS(1366), - [anon_sym___printf] = ACTIONS(1366), - [anon_sym___read_mostly] = ACTIONS(1366), - [anon_sym___must_hold] = ACTIONS(1366), - [anon_sym___ro_after_init] = ACTIONS(1366), - [anon_sym___noreturn] = ACTIONS(1366), - [anon_sym___cold] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), - [anon_sym___declspec] = ACTIONS(1366), - [anon_sym___init] = ACTIONS(1366), - [anon_sym___exit] = ACTIONS(1366), - [anon_sym___cdecl] = ACTIONS(1366), - [anon_sym___clrcall] = ACTIONS(1366), - [anon_sym___stdcall] = ACTIONS(1366), - [anon_sym___fastcall] = ACTIONS(1366), - [anon_sym___thiscall] = ACTIONS(1366), - [anon_sym___vectorcall] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1366), - [anon_sym_unsigned] = ACTIONS(1366), - [anon_sym_long] = ACTIONS(1366), - [anon_sym_short] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_auto] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1366), - [anon_sym_inline] = ACTIONS(1366), - [anon_sym___inline] = ACTIONS(1366), - [anon_sym___inline__] = ACTIONS(1366), - [anon_sym___forceinline] = ACTIONS(1366), - [anon_sym_thread_local] = ACTIONS(1366), - [anon_sym___thread] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_constexpr] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1366), - [anon_sym_restrict] = ACTIONS(1366), - [anon_sym___restrict__] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1366), - [anon_sym__Noreturn] = ACTIONS(1366), - [anon_sym_noreturn] = ACTIONS(1366), - [anon_sym_alignas] = ACTIONS(1366), - [anon_sym__Alignas] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1366), - [anon_sym_case] = ACTIONS(1366), - [anon_sym_default] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_do] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_goto] = ACTIONS(1366), - [anon_sym___try] = ACTIONS(1366), - [anon_sym___leave] = ACTIONS(1366), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_sizeof] = ACTIONS(1366), - [anon_sym___alignof__] = ACTIONS(1366), - [anon_sym___alignof] = ACTIONS(1366), - [anon_sym__alignof] = ACTIONS(1366), - [anon_sym_alignof] = ACTIONS(1366), - [anon_sym__Alignof] = ACTIONS(1366), - [anon_sym_offsetof] = ACTIONS(1366), - [anon_sym__Generic] = ACTIONS(1366), - [anon_sym_asm] = ACTIONS(1366), - [anon_sym___asm__] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(1368), - [anon_sym_L_SQUOTE] = ACTIONS(1368), - [anon_sym_u_SQUOTE] = ACTIONS(1368), - [anon_sym_U_SQUOTE] = ACTIONS(1368), - [anon_sym_u8_SQUOTE] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_L_DQUOTE] = ACTIONS(1368), - [anon_sym_u_DQUOTE] = ACTIONS(1368), - [anon_sym_U_DQUOTE] = ACTIONS(1368), - [anon_sym_u8_DQUOTE] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [anon_sym_NULL] = ACTIONS(1366), - [anon_sym_nullptr] = ACTIONS(1366), - [sym_comment] = ACTIONS(5), - }, - [332] = { - [sym_identifier] = ACTIONS(1420), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1420), - [aux_sym_preproc_def_token1] = ACTIONS(1420), - [aux_sym_preproc_if_token1] = ACTIONS(1420), - [aux_sym_preproc_if_token2] = ACTIONS(1420), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1420), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1420), - [sym_preproc_directive] = ACTIONS(1420), - [anon_sym_LPAREN2] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1422), - [anon_sym_TILDE] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1420), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1422), - [anon_sym___extension__] = ACTIONS(1420), - [anon_sym_typedef] = ACTIONS(1420), - [anon_sym_extern] = ACTIONS(1420), - [anon_sym___attribute__] = ACTIONS(1420), - [anon_sym___scanf] = ACTIONS(1420), - [anon_sym___printf] = ACTIONS(1420), - [anon_sym___read_mostly] = ACTIONS(1420), - [anon_sym___must_hold] = ACTIONS(1420), - [anon_sym___ro_after_init] = ACTIONS(1420), - [anon_sym___noreturn] = ACTIONS(1420), - [anon_sym___cold] = ACTIONS(1420), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1422), - [anon_sym___declspec] = ACTIONS(1420), - [anon_sym___init] = ACTIONS(1420), - [anon_sym___exit] = ACTIONS(1420), - [anon_sym___cdecl] = ACTIONS(1420), - [anon_sym___clrcall] = ACTIONS(1420), - [anon_sym___stdcall] = ACTIONS(1420), - [anon_sym___fastcall] = ACTIONS(1420), - [anon_sym___thiscall] = ACTIONS(1420), - [anon_sym___vectorcall] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_signed] = ACTIONS(1420), - [anon_sym_unsigned] = ACTIONS(1420), - [anon_sym_long] = ACTIONS(1420), - [anon_sym_short] = ACTIONS(1420), - [anon_sym_static] = ACTIONS(1420), - [anon_sym_auto] = ACTIONS(1420), - [anon_sym_register] = ACTIONS(1420), - [anon_sym_inline] = ACTIONS(1420), - [anon_sym___inline] = ACTIONS(1420), - [anon_sym___inline__] = ACTIONS(1420), - [anon_sym___forceinline] = ACTIONS(1420), - [anon_sym_thread_local] = ACTIONS(1420), - [anon_sym___thread] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1420), - [anon_sym_constexpr] = ACTIONS(1420), - [anon_sym_volatile] = ACTIONS(1420), - [anon_sym_restrict] = ACTIONS(1420), - [anon_sym___restrict__] = ACTIONS(1420), - [anon_sym__Atomic] = ACTIONS(1420), - [anon_sym__Noreturn] = ACTIONS(1420), - [anon_sym_noreturn] = ACTIONS(1420), - [anon_sym_alignas] = ACTIONS(1420), - [anon_sym__Alignas] = ACTIONS(1420), - [sym_primitive_type] = ACTIONS(1420), - [anon_sym_enum] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1420), - [anon_sym_union] = ACTIONS(1420), - [anon_sym_if] = ACTIONS(1420), - [anon_sym_switch] = ACTIONS(1420), - [anon_sym_case] = ACTIONS(1420), - [anon_sym_default] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1420), - [anon_sym_do] = ACTIONS(1420), - [anon_sym_for] = ACTIONS(1420), - [anon_sym_return] = ACTIONS(1420), - [anon_sym_break] = ACTIONS(1420), - [anon_sym_continue] = ACTIONS(1420), - [anon_sym_goto] = ACTIONS(1420), - [anon_sym___try] = ACTIONS(1420), - [anon_sym___leave] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1422), - [anon_sym_PLUS_PLUS] = ACTIONS(1422), - [anon_sym_sizeof] = ACTIONS(1420), - [anon_sym___alignof__] = ACTIONS(1420), - [anon_sym___alignof] = ACTIONS(1420), - [anon_sym__alignof] = ACTIONS(1420), - [anon_sym_alignof] = ACTIONS(1420), - [anon_sym__Alignof] = ACTIONS(1420), - [anon_sym_offsetof] = ACTIONS(1420), - [anon_sym__Generic] = ACTIONS(1420), - [anon_sym_asm] = ACTIONS(1420), - [anon_sym___asm__] = ACTIONS(1420), - [sym_number_literal] = ACTIONS(1422), - [anon_sym_L_SQUOTE] = ACTIONS(1422), - [anon_sym_u_SQUOTE] = ACTIONS(1422), - [anon_sym_U_SQUOTE] = ACTIONS(1422), - [anon_sym_u8_SQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1422), - [anon_sym_L_DQUOTE] = ACTIONS(1422), - [anon_sym_u_DQUOTE] = ACTIONS(1422), - [anon_sym_U_DQUOTE] = ACTIONS(1422), - [anon_sym_u8_DQUOTE] = ACTIONS(1422), - [anon_sym_DQUOTE] = ACTIONS(1422), - [sym_true] = ACTIONS(1420), - [sym_false] = ACTIONS(1420), - [anon_sym_NULL] = ACTIONS(1420), - [anon_sym_nullptr] = ACTIONS(1420), - [sym_comment] = ACTIONS(5), - }, - [333] = { - [sym_identifier] = ACTIONS(1392), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1392), - [aux_sym_preproc_def_token1] = ACTIONS(1392), - [aux_sym_preproc_if_token1] = ACTIONS(1392), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1392), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1392), - [sym_preproc_directive] = ACTIONS(1392), - [anon_sym_LPAREN2] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1392), - [anon_sym_PLUS] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1394), - [anon_sym___extension__] = ACTIONS(1392), - [anon_sym_typedef] = ACTIONS(1392), - [anon_sym_extern] = ACTIONS(1392), - [anon_sym___attribute__] = ACTIONS(1392), - [anon_sym___scanf] = ACTIONS(1392), - [anon_sym___printf] = ACTIONS(1392), - [anon_sym___read_mostly] = ACTIONS(1392), - [anon_sym___must_hold] = ACTIONS(1392), - [anon_sym___ro_after_init] = ACTIONS(1392), - [anon_sym___noreturn] = ACTIONS(1392), - [anon_sym___cold] = ACTIONS(1392), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1394), - [anon_sym___declspec] = ACTIONS(1392), - [anon_sym___init] = ACTIONS(1392), - [anon_sym___exit] = ACTIONS(1392), - [anon_sym___cdecl] = ACTIONS(1392), - [anon_sym___clrcall] = ACTIONS(1392), - [anon_sym___stdcall] = ACTIONS(1392), - [anon_sym___fastcall] = ACTIONS(1392), - [anon_sym___thiscall] = ACTIONS(1392), - [anon_sym___vectorcall] = ACTIONS(1392), - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_RBRACE] = ACTIONS(1394), - [anon_sym_signed] = ACTIONS(1392), - [anon_sym_unsigned] = ACTIONS(1392), - [anon_sym_long] = ACTIONS(1392), - [anon_sym_short] = ACTIONS(1392), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_auto] = ACTIONS(1392), - [anon_sym_register] = ACTIONS(1392), - [anon_sym_inline] = ACTIONS(1392), - [anon_sym___inline] = ACTIONS(1392), - [anon_sym___inline__] = ACTIONS(1392), - [anon_sym___forceinline] = ACTIONS(1392), - [anon_sym_thread_local] = ACTIONS(1392), - [anon_sym___thread] = ACTIONS(1392), - [anon_sym_const] = ACTIONS(1392), - [anon_sym_constexpr] = ACTIONS(1392), - [anon_sym_volatile] = ACTIONS(1392), - [anon_sym_restrict] = ACTIONS(1392), - [anon_sym___restrict__] = ACTIONS(1392), - [anon_sym__Atomic] = ACTIONS(1392), - [anon_sym__Noreturn] = ACTIONS(1392), - [anon_sym_noreturn] = ACTIONS(1392), - [anon_sym_alignas] = ACTIONS(1392), - [anon_sym__Alignas] = ACTIONS(1392), - [sym_primitive_type] = ACTIONS(1392), - [anon_sym_enum] = ACTIONS(1392), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_union] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1392), - [anon_sym_switch] = ACTIONS(1392), - [anon_sym_case] = ACTIONS(1392), - [anon_sym_default] = ACTIONS(1392), - [anon_sym_while] = ACTIONS(1392), - [anon_sym_do] = ACTIONS(1392), - [anon_sym_for] = ACTIONS(1392), - [anon_sym_return] = ACTIONS(1392), - [anon_sym_break] = ACTIONS(1392), - [anon_sym_continue] = ACTIONS(1392), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym___try] = ACTIONS(1392), - [anon_sym___leave] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(1394), - [anon_sym_PLUS_PLUS] = ACTIONS(1394), - [anon_sym_sizeof] = ACTIONS(1392), - [anon_sym___alignof__] = ACTIONS(1392), - [anon_sym___alignof] = ACTIONS(1392), - [anon_sym__alignof] = ACTIONS(1392), - [anon_sym_alignof] = ACTIONS(1392), - [anon_sym__Alignof] = ACTIONS(1392), - [anon_sym_offsetof] = ACTIONS(1392), - [anon_sym__Generic] = ACTIONS(1392), - [anon_sym_asm] = ACTIONS(1392), - [anon_sym___asm__] = ACTIONS(1392), - [sym_number_literal] = ACTIONS(1394), - [anon_sym_L_SQUOTE] = ACTIONS(1394), - [anon_sym_u_SQUOTE] = ACTIONS(1394), - [anon_sym_U_SQUOTE] = ACTIONS(1394), - [anon_sym_u8_SQUOTE] = ACTIONS(1394), - [anon_sym_SQUOTE] = ACTIONS(1394), - [anon_sym_L_DQUOTE] = ACTIONS(1394), - [anon_sym_u_DQUOTE] = ACTIONS(1394), - [anon_sym_U_DQUOTE] = ACTIONS(1394), - [anon_sym_u8_DQUOTE] = ACTIONS(1394), - [anon_sym_DQUOTE] = ACTIONS(1394), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [anon_sym_NULL] = ACTIONS(1392), - [anon_sym_nullptr] = ACTIONS(1392), - [sym_comment] = ACTIONS(5), - }, - [334] = { - [sym_identifier] = ACTIONS(1416), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1416), - [aux_sym_preproc_def_token1] = ACTIONS(1416), - [aux_sym_preproc_if_token1] = ACTIONS(1416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1416), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1416), - [sym_preproc_directive] = ACTIONS(1416), - [anon_sym_LPAREN2] = ACTIONS(1418), - [anon_sym_BANG] = ACTIONS(1418), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_typedef] = ACTIONS(1416), - [anon_sym_extern] = ACTIONS(1416), - [anon_sym___attribute__] = ACTIONS(1416), - [anon_sym___scanf] = ACTIONS(1416), - [anon_sym___printf] = ACTIONS(1416), - [anon_sym___read_mostly] = ACTIONS(1416), - [anon_sym___must_hold] = ACTIONS(1416), - [anon_sym___ro_after_init] = ACTIONS(1416), - [anon_sym___noreturn] = ACTIONS(1416), - [anon_sym___cold] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym___declspec] = ACTIONS(1416), - [anon_sym___init] = ACTIONS(1416), - [anon_sym___exit] = ACTIONS(1416), - [anon_sym___cdecl] = ACTIONS(1416), - [anon_sym___clrcall] = ACTIONS(1416), - [anon_sym___stdcall] = ACTIONS(1416), - [anon_sym___fastcall] = ACTIONS(1416), - [anon_sym___thiscall] = ACTIONS(1416), - [anon_sym___vectorcall] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_signed] = ACTIONS(1416), - [anon_sym_unsigned] = ACTIONS(1416), - [anon_sym_long] = ACTIONS(1416), - [anon_sym_short] = ACTIONS(1416), - [anon_sym_static] = ACTIONS(1416), - [anon_sym_auto] = ACTIONS(1416), - [anon_sym_register] = ACTIONS(1416), - [anon_sym_inline] = ACTIONS(1416), - [anon_sym___inline] = ACTIONS(1416), - [anon_sym___inline__] = ACTIONS(1416), - [anon_sym___forceinline] = ACTIONS(1416), - [anon_sym_thread_local] = ACTIONS(1416), - [anon_sym___thread] = ACTIONS(1416), - [anon_sym_const] = ACTIONS(1416), - [anon_sym_constexpr] = ACTIONS(1416), - [anon_sym_volatile] = ACTIONS(1416), - [anon_sym_restrict] = ACTIONS(1416), - [anon_sym___restrict__] = ACTIONS(1416), - [anon_sym__Atomic] = ACTIONS(1416), - [anon_sym__Noreturn] = ACTIONS(1416), - [anon_sym_noreturn] = ACTIONS(1416), - [anon_sym_alignas] = ACTIONS(1416), - [anon_sym__Alignas] = ACTIONS(1416), - [sym_primitive_type] = ACTIONS(1416), - [anon_sym_enum] = ACTIONS(1416), - [anon_sym_struct] = ACTIONS(1416), - [anon_sym_union] = ACTIONS(1416), - [anon_sym_if] = ACTIONS(1416), - [anon_sym_switch] = ACTIONS(1416), - [anon_sym_case] = ACTIONS(1416), - [anon_sym_default] = ACTIONS(1416), - [anon_sym_while] = ACTIONS(1416), - [anon_sym_do] = ACTIONS(1416), - [anon_sym_for] = ACTIONS(1416), - [anon_sym_return] = ACTIONS(1416), - [anon_sym_break] = ACTIONS(1416), - [anon_sym_continue] = ACTIONS(1416), - [anon_sym_goto] = ACTIONS(1416), - [anon_sym___try] = ACTIONS(1416), - [anon_sym___leave] = ACTIONS(1416), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_sizeof] = ACTIONS(1416), - [anon_sym___alignof__] = ACTIONS(1416), - [anon_sym___alignof] = ACTIONS(1416), - [anon_sym__alignof] = ACTIONS(1416), - [anon_sym_alignof] = ACTIONS(1416), - [anon_sym__Alignof] = ACTIONS(1416), - [anon_sym_offsetof] = ACTIONS(1416), - [anon_sym__Generic] = ACTIONS(1416), - [anon_sym_asm] = ACTIONS(1416), - [anon_sym___asm__] = ACTIONS(1416), - [sym_number_literal] = ACTIONS(1418), - [anon_sym_L_SQUOTE] = ACTIONS(1418), - [anon_sym_u_SQUOTE] = ACTIONS(1418), - [anon_sym_U_SQUOTE] = ACTIONS(1418), - [anon_sym_u8_SQUOTE] = ACTIONS(1418), - [anon_sym_SQUOTE] = ACTIONS(1418), - [anon_sym_L_DQUOTE] = ACTIONS(1418), - [anon_sym_u_DQUOTE] = ACTIONS(1418), - [anon_sym_U_DQUOTE] = ACTIONS(1418), - [anon_sym_u8_DQUOTE] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym_true] = ACTIONS(1416), - [sym_false] = ACTIONS(1416), - [anon_sym_NULL] = ACTIONS(1416), - [anon_sym_nullptr] = ACTIONS(1416), - [sym_comment] = ACTIONS(5), - }, - [335] = { - [sym_identifier] = ACTIONS(1370), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token2] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym___extension__] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym___scanf] = ACTIONS(1370), - [anon_sym___printf] = ACTIONS(1370), - [anon_sym___read_mostly] = ACTIONS(1370), - [anon_sym___must_hold] = ACTIONS(1370), - [anon_sym___ro_after_init] = ACTIONS(1370), - [anon_sym___noreturn] = ACTIONS(1370), - [anon_sym___cold] = ACTIONS(1370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), - [anon_sym___declspec] = ACTIONS(1370), - [anon_sym___init] = ACTIONS(1370), - [anon_sym___exit] = ACTIONS(1370), - [anon_sym___cdecl] = ACTIONS(1370), - [anon_sym___clrcall] = ACTIONS(1370), - [anon_sym___stdcall] = ACTIONS(1370), - [anon_sym___fastcall] = ACTIONS(1370), - [anon_sym___thiscall] = ACTIONS(1370), - [anon_sym___vectorcall] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym___inline] = ACTIONS(1370), - [anon_sym___inline__] = ACTIONS(1370), - [anon_sym___forceinline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym___thread] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_constexpr] = ACTIONS(1370), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [anon_sym___restrict__] = ACTIONS(1370), - [anon_sym__Atomic] = ACTIONS(1370), - [anon_sym__Noreturn] = ACTIONS(1370), - [anon_sym_noreturn] = ACTIONS(1370), - [anon_sym_alignas] = ACTIONS(1370), - [anon_sym__Alignas] = ACTIONS(1370), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [anon_sym___try] = ACTIONS(1370), - [anon_sym___leave] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym___alignof__] = ACTIONS(1370), - [anon_sym___alignof] = ACTIONS(1370), - [anon_sym__alignof] = ACTIONS(1370), - [anon_sym_alignof] = ACTIONS(1370), - [anon_sym__Alignof] = ACTIONS(1370), - [anon_sym_offsetof] = ACTIONS(1370), - [anon_sym__Generic] = ACTIONS(1370), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym___asm__] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym_u_SQUOTE] = ACTIONS(1372), - [anon_sym_U_SQUOTE] = ACTIONS(1372), - [anon_sym_u8_SQUOTE] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_u_DQUOTE] = ACTIONS(1372), - [anon_sym_U_DQUOTE] = ACTIONS(1372), - [anon_sym_u8_DQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym_true] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_NULL] = ACTIONS(1370), - [anon_sym_nullptr] = ACTIONS(1370), - [sym_comment] = ACTIONS(5), - }, - [336] = { - [sym_identifier] = ACTIONS(1412), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1412), - [aux_sym_preproc_def_token1] = ACTIONS(1412), - [aux_sym_preproc_if_token1] = ACTIONS(1412), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1412), - [sym_preproc_directive] = ACTIONS(1412), - [anon_sym_LPAREN2] = ACTIONS(1414), - [anon_sym_BANG] = ACTIONS(1414), - [anon_sym_TILDE] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1414), - [anon_sym___extension__] = ACTIONS(1412), - [anon_sym_typedef] = ACTIONS(1412), - [anon_sym_extern] = ACTIONS(1412), - [anon_sym___attribute__] = ACTIONS(1412), - [anon_sym___scanf] = ACTIONS(1412), - [anon_sym___printf] = ACTIONS(1412), - [anon_sym___read_mostly] = ACTIONS(1412), - [anon_sym___must_hold] = ACTIONS(1412), - [anon_sym___ro_after_init] = ACTIONS(1412), - [anon_sym___noreturn] = ACTIONS(1412), - [anon_sym___cold] = ACTIONS(1412), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1414), - [anon_sym___declspec] = ACTIONS(1412), - [anon_sym___init] = ACTIONS(1412), - [anon_sym___exit] = ACTIONS(1412), - [anon_sym___cdecl] = ACTIONS(1412), - [anon_sym___clrcall] = ACTIONS(1412), - [anon_sym___stdcall] = ACTIONS(1412), - [anon_sym___fastcall] = ACTIONS(1412), - [anon_sym___thiscall] = ACTIONS(1412), - [anon_sym___vectorcall] = ACTIONS(1412), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1414), - [anon_sym_signed] = ACTIONS(1412), - [anon_sym_unsigned] = ACTIONS(1412), - [anon_sym_long] = ACTIONS(1412), - [anon_sym_short] = ACTIONS(1412), - [anon_sym_static] = ACTIONS(1412), - [anon_sym_auto] = ACTIONS(1412), - [anon_sym_register] = ACTIONS(1412), - [anon_sym_inline] = ACTIONS(1412), - [anon_sym___inline] = ACTIONS(1412), - [anon_sym___inline__] = ACTIONS(1412), - [anon_sym___forceinline] = ACTIONS(1412), - [anon_sym_thread_local] = ACTIONS(1412), - [anon_sym___thread] = ACTIONS(1412), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_constexpr] = ACTIONS(1412), - [anon_sym_volatile] = ACTIONS(1412), - [anon_sym_restrict] = ACTIONS(1412), - [anon_sym___restrict__] = ACTIONS(1412), - [anon_sym__Atomic] = ACTIONS(1412), - [anon_sym__Noreturn] = ACTIONS(1412), - [anon_sym_noreturn] = ACTIONS(1412), - [anon_sym_alignas] = ACTIONS(1412), - [anon_sym__Alignas] = ACTIONS(1412), - [sym_primitive_type] = ACTIONS(1412), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_struct] = ACTIONS(1412), - [anon_sym_union] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1412), - [anon_sym_switch] = ACTIONS(1412), - [anon_sym_case] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1412), - [anon_sym_while] = ACTIONS(1412), - [anon_sym_do] = ACTIONS(1412), - [anon_sym_for] = ACTIONS(1412), - [anon_sym_return] = ACTIONS(1412), - [anon_sym_break] = ACTIONS(1412), - [anon_sym_continue] = ACTIONS(1412), - [anon_sym_goto] = ACTIONS(1412), - [anon_sym___try] = ACTIONS(1412), - [anon_sym___leave] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1414), - [anon_sym_PLUS_PLUS] = ACTIONS(1414), - [anon_sym_sizeof] = ACTIONS(1412), - [anon_sym___alignof__] = ACTIONS(1412), - [anon_sym___alignof] = ACTIONS(1412), - [anon_sym__alignof] = ACTIONS(1412), - [anon_sym_alignof] = ACTIONS(1412), - [anon_sym__Alignof] = ACTIONS(1412), - [anon_sym_offsetof] = ACTIONS(1412), - [anon_sym__Generic] = ACTIONS(1412), - [anon_sym_asm] = ACTIONS(1412), - [anon_sym___asm__] = ACTIONS(1412), - [sym_number_literal] = ACTIONS(1414), - [anon_sym_L_SQUOTE] = ACTIONS(1414), - [anon_sym_u_SQUOTE] = ACTIONS(1414), - [anon_sym_U_SQUOTE] = ACTIONS(1414), - [anon_sym_u8_SQUOTE] = ACTIONS(1414), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_L_DQUOTE] = ACTIONS(1414), - [anon_sym_u_DQUOTE] = ACTIONS(1414), - [anon_sym_U_DQUOTE] = ACTIONS(1414), - [anon_sym_u8_DQUOTE] = ACTIONS(1414), - [anon_sym_DQUOTE] = ACTIONS(1414), - [sym_true] = ACTIONS(1412), - [sym_false] = ACTIONS(1412), - [anon_sym_NULL] = ACTIONS(1412), - [anon_sym_nullptr] = ACTIONS(1412), - [sym_comment] = ACTIONS(5), - }, - [337] = { - [sym_identifier] = ACTIONS(1456), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1456), - [aux_sym_preproc_def_token1] = ACTIONS(1456), - [aux_sym_preproc_if_token1] = ACTIONS(1456), - [aux_sym_preproc_if_token2] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), - [sym_preproc_directive] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym___extension__] = ACTIONS(1456), - [anon_sym_typedef] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1456), - [anon_sym___attribute__] = ACTIONS(1456), - [anon_sym___scanf] = ACTIONS(1456), - [anon_sym___printf] = ACTIONS(1456), - [anon_sym___read_mostly] = ACTIONS(1456), - [anon_sym___must_hold] = ACTIONS(1456), - [anon_sym___ro_after_init] = ACTIONS(1456), - [anon_sym___noreturn] = ACTIONS(1456), - [anon_sym___cold] = ACTIONS(1456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), - [anon_sym___declspec] = ACTIONS(1456), - [anon_sym___init] = ACTIONS(1456), - [anon_sym___exit] = ACTIONS(1456), - [anon_sym___cdecl] = ACTIONS(1456), - [anon_sym___clrcall] = ACTIONS(1456), - [anon_sym___stdcall] = ACTIONS(1456), - [anon_sym___fastcall] = ACTIONS(1456), - [anon_sym___thiscall] = ACTIONS(1456), - [anon_sym___vectorcall] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_signed] = ACTIONS(1456), - [anon_sym_unsigned] = ACTIONS(1456), - [anon_sym_long] = ACTIONS(1456), - [anon_sym_short] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_auto] = ACTIONS(1456), - [anon_sym_register] = ACTIONS(1456), - [anon_sym_inline] = ACTIONS(1456), - [anon_sym___inline] = ACTIONS(1456), - [anon_sym___inline__] = ACTIONS(1456), - [anon_sym___forceinline] = ACTIONS(1456), - [anon_sym_thread_local] = ACTIONS(1456), - [anon_sym___thread] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_constexpr] = ACTIONS(1456), - [anon_sym_volatile] = ACTIONS(1456), - [anon_sym_restrict] = ACTIONS(1456), - [anon_sym___restrict__] = ACTIONS(1456), - [anon_sym__Atomic] = ACTIONS(1456), - [anon_sym__Noreturn] = ACTIONS(1456), - [anon_sym_noreturn] = ACTIONS(1456), - [anon_sym_alignas] = ACTIONS(1456), - [anon_sym__Alignas] = ACTIONS(1456), - [sym_primitive_type] = ACTIONS(1456), - [anon_sym_enum] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1456), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_switch] = ACTIONS(1456), - [anon_sym_case] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_do] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_goto] = ACTIONS(1456), - [anon_sym___try] = ACTIONS(1456), - [anon_sym___leave] = ACTIONS(1456), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_sizeof] = ACTIONS(1456), - [anon_sym___alignof__] = ACTIONS(1456), - [anon_sym___alignof] = ACTIONS(1456), - [anon_sym__alignof] = ACTIONS(1456), - [anon_sym_alignof] = ACTIONS(1456), - [anon_sym__Alignof] = ACTIONS(1456), - [anon_sym_offsetof] = ACTIONS(1456), - [anon_sym__Generic] = ACTIONS(1456), - [anon_sym_asm] = ACTIONS(1456), - [anon_sym___asm__] = ACTIONS(1456), - [sym_number_literal] = ACTIONS(1458), - [anon_sym_L_SQUOTE] = ACTIONS(1458), - [anon_sym_u_SQUOTE] = ACTIONS(1458), - [anon_sym_U_SQUOTE] = ACTIONS(1458), - [anon_sym_u8_SQUOTE] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_L_DQUOTE] = ACTIONS(1458), - [anon_sym_u_DQUOTE] = ACTIONS(1458), - [anon_sym_U_DQUOTE] = ACTIONS(1458), - [anon_sym_u8_DQUOTE] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [anon_sym_NULL] = ACTIONS(1456), - [anon_sym_nullptr] = ACTIONS(1456), - [sym_comment] = ACTIONS(5), - }, - [338] = { - [sym_identifier] = ACTIONS(1448), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1448), - [aux_sym_preproc_def_token1] = ACTIONS(1448), - [aux_sym_preproc_if_token1] = ACTIONS(1448), - [aux_sym_preproc_if_token2] = ACTIONS(1448), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), - [sym_preproc_directive] = ACTIONS(1448), - [anon_sym_LPAREN2] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym___extension__] = ACTIONS(1448), - [anon_sym_typedef] = ACTIONS(1448), - [anon_sym_extern] = ACTIONS(1448), - [anon_sym___attribute__] = ACTIONS(1448), - [anon_sym___scanf] = ACTIONS(1448), - [anon_sym___printf] = ACTIONS(1448), - [anon_sym___read_mostly] = ACTIONS(1448), - [anon_sym___must_hold] = ACTIONS(1448), - [anon_sym___ro_after_init] = ACTIONS(1448), - [anon_sym___noreturn] = ACTIONS(1448), - [anon_sym___cold] = ACTIONS(1448), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), - [anon_sym___declspec] = ACTIONS(1448), - [anon_sym___init] = ACTIONS(1448), - [anon_sym___exit] = ACTIONS(1448), - [anon_sym___cdecl] = ACTIONS(1448), - [anon_sym___clrcall] = ACTIONS(1448), - [anon_sym___stdcall] = ACTIONS(1448), - [anon_sym___fastcall] = ACTIONS(1448), - [anon_sym___thiscall] = ACTIONS(1448), - [anon_sym___vectorcall] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_signed] = ACTIONS(1448), - [anon_sym_unsigned] = ACTIONS(1448), - [anon_sym_long] = ACTIONS(1448), - [anon_sym_short] = ACTIONS(1448), - [anon_sym_static] = ACTIONS(1448), - [anon_sym_auto] = ACTIONS(1448), - [anon_sym_register] = ACTIONS(1448), - [anon_sym_inline] = ACTIONS(1448), - [anon_sym___inline] = ACTIONS(1448), - [anon_sym___inline__] = ACTIONS(1448), - [anon_sym___forceinline] = ACTIONS(1448), - [anon_sym_thread_local] = ACTIONS(1448), - [anon_sym___thread] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_constexpr] = ACTIONS(1448), - [anon_sym_volatile] = ACTIONS(1448), - [anon_sym_restrict] = ACTIONS(1448), - [anon_sym___restrict__] = ACTIONS(1448), - [anon_sym__Atomic] = ACTIONS(1448), - [anon_sym__Noreturn] = ACTIONS(1448), - [anon_sym_noreturn] = ACTIONS(1448), - [anon_sym_alignas] = ACTIONS(1448), - [anon_sym__Alignas] = ACTIONS(1448), - [sym_primitive_type] = ACTIONS(1448), - [anon_sym_enum] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1448), - [anon_sym_union] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1448), - [anon_sym_case] = ACTIONS(1448), - [anon_sym_default] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_do] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_goto] = ACTIONS(1448), - [anon_sym___try] = ACTIONS(1448), - [anon_sym___leave] = ACTIONS(1448), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_sizeof] = ACTIONS(1448), - [anon_sym___alignof__] = ACTIONS(1448), - [anon_sym___alignof] = ACTIONS(1448), - [anon_sym__alignof] = ACTIONS(1448), - [anon_sym_alignof] = ACTIONS(1448), - [anon_sym__Alignof] = ACTIONS(1448), - [anon_sym_offsetof] = ACTIONS(1448), - [anon_sym__Generic] = ACTIONS(1448), - [anon_sym_asm] = ACTIONS(1448), - [anon_sym___asm__] = ACTIONS(1448), - [sym_number_literal] = ACTIONS(1450), - [anon_sym_L_SQUOTE] = ACTIONS(1450), - [anon_sym_u_SQUOTE] = ACTIONS(1450), - [anon_sym_U_SQUOTE] = ACTIONS(1450), - [anon_sym_u8_SQUOTE] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_L_DQUOTE] = ACTIONS(1450), - [anon_sym_u_DQUOTE] = ACTIONS(1450), - [anon_sym_U_DQUOTE] = ACTIONS(1450), - [anon_sym_u8_DQUOTE] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(1450), - [sym_true] = ACTIONS(1448), - [sym_false] = ACTIONS(1448), - [anon_sym_NULL] = ACTIONS(1448), - [anon_sym_nullptr] = ACTIONS(1448), - [sym_comment] = ACTIONS(5), - }, - [339] = { - [sym_identifier] = ACTIONS(1408), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1408), - [aux_sym_preproc_def_token1] = ACTIONS(1408), - [aux_sym_preproc_if_token1] = ACTIONS(1408), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1408), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1408), - [sym_preproc_directive] = ACTIONS(1408), - [anon_sym_LPAREN2] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1410), - [anon_sym_TILDE] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_STAR] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym___extension__] = ACTIONS(1408), - [anon_sym_typedef] = ACTIONS(1408), - [anon_sym_extern] = ACTIONS(1408), - [anon_sym___attribute__] = ACTIONS(1408), - [anon_sym___scanf] = ACTIONS(1408), - [anon_sym___printf] = ACTIONS(1408), - [anon_sym___read_mostly] = ACTIONS(1408), - [anon_sym___must_hold] = ACTIONS(1408), - [anon_sym___ro_after_init] = ACTIONS(1408), - [anon_sym___noreturn] = ACTIONS(1408), - [anon_sym___cold] = ACTIONS(1408), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1410), - [anon_sym___declspec] = ACTIONS(1408), - [anon_sym___init] = ACTIONS(1408), - [anon_sym___exit] = ACTIONS(1408), - [anon_sym___cdecl] = ACTIONS(1408), - [anon_sym___clrcall] = ACTIONS(1408), - [anon_sym___stdcall] = ACTIONS(1408), - [anon_sym___fastcall] = ACTIONS(1408), - [anon_sym___thiscall] = ACTIONS(1408), - [anon_sym___vectorcall] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1410), - [anon_sym_signed] = ACTIONS(1408), - [anon_sym_unsigned] = ACTIONS(1408), - [anon_sym_long] = ACTIONS(1408), - [anon_sym_short] = ACTIONS(1408), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_auto] = ACTIONS(1408), - [anon_sym_register] = ACTIONS(1408), - [anon_sym_inline] = ACTIONS(1408), - [anon_sym___inline] = ACTIONS(1408), - [anon_sym___inline__] = ACTIONS(1408), - [anon_sym___forceinline] = ACTIONS(1408), - [anon_sym_thread_local] = ACTIONS(1408), - [anon_sym___thread] = ACTIONS(1408), - [anon_sym_const] = ACTIONS(1408), - [anon_sym_constexpr] = ACTIONS(1408), - [anon_sym_volatile] = ACTIONS(1408), - [anon_sym_restrict] = ACTIONS(1408), - [anon_sym___restrict__] = ACTIONS(1408), - [anon_sym__Atomic] = ACTIONS(1408), - [anon_sym__Noreturn] = ACTIONS(1408), - [anon_sym_noreturn] = ACTIONS(1408), - [anon_sym_alignas] = ACTIONS(1408), - [anon_sym__Alignas] = ACTIONS(1408), - [sym_primitive_type] = ACTIONS(1408), - [anon_sym_enum] = ACTIONS(1408), - [anon_sym_struct] = ACTIONS(1408), - [anon_sym_union] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1408), - [anon_sym_switch] = ACTIONS(1408), - [anon_sym_case] = ACTIONS(1408), - [anon_sym_default] = ACTIONS(1408), - [anon_sym_while] = ACTIONS(1408), - [anon_sym_do] = ACTIONS(1408), - [anon_sym_for] = ACTIONS(1408), - [anon_sym_return] = ACTIONS(1408), - [anon_sym_break] = ACTIONS(1408), - [anon_sym_continue] = ACTIONS(1408), - [anon_sym_goto] = ACTIONS(1408), - [anon_sym___try] = ACTIONS(1408), - [anon_sym___leave] = ACTIONS(1408), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_sizeof] = ACTIONS(1408), - [anon_sym___alignof__] = ACTIONS(1408), - [anon_sym___alignof] = ACTIONS(1408), - [anon_sym__alignof] = ACTIONS(1408), - [anon_sym_alignof] = ACTIONS(1408), - [anon_sym__Alignof] = ACTIONS(1408), - [anon_sym_offsetof] = ACTIONS(1408), - [anon_sym__Generic] = ACTIONS(1408), - [anon_sym_asm] = ACTIONS(1408), - [anon_sym___asm__] = ACTIONS(1408), - [sym_number_literal] = ACTIONS(1410), - [anon_sym_L_SQUOTE] = ACTIONS(1410), - [anon_sym_u_SQUOTE] = ACTIONS(1410), - [anon_sym_U_SQUOTE] = ACTIONS(1410), - [anon_sym_u8_SQUOTE] = ACTIONS(1410), - [anon_sym_SQUOTE] = ACTIONS(1410), - [anon_sym_L_DQUOTE] = ACTIONS(1410), - [anon_sym_u_DQUOTE] = ACTIONS(1410), - [anon_sym_U_DQUOTE] = ACTIONS(1410), - [anon_sym_u8_DQUOTE] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [anon_sym_NULL] = ACTIONS(1408), - [anon_sym_nullptr] = ACTIONS(1408), - [sym_comment] = ACTIONS(5), - }, - [340] = { + [278] = { [sym_identifier] = ACTIONS(1374), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1374), [aux_sym_preproc_def_token1] = ACTIONS(1374), [aux_sym_preproc_if_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token2] = ACTIONS(1374), [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), [sym_preproc_directive] = ACTIONS(1374), @@ -59696,6 +53035,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1374), [anon_sym___vectorcall] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1376), [anon_sym_signed] = ACTIONS(1374), [anon_sym_unsigned] = ACTIONS(1374), [anon_sym_long] = ACTIONS(1374), @@ -59724,6 +53064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1374), [anon_sym_union] = ACTIONS(1374), [anon_sym_if] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), [anon_sym_switch] = ACTIONS(1374), [anon_sym_case] = ACTIONS(1374), [anon_sym_default] = ACTIONS(1374), @@ -59765,1103 +53106,562 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1374), [sym_comment] = ACTIONS(5), }, - [341] = { - [sym_identifier] = ACTIONS(1460), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1460), - [aux_sym_preproc_def_token1] = ACTIONS(1460), - [aux_sym_preproc_if_token1] = ACTIONS(1460), - [aux_sym_preproc_if_token2] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), - [sym_preproc_directive] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym___extension__] = ACTIONS(1460), - [anon_sym_typedef] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1460), - [anon_sym___attribute__] = ACTIONS(1460), - [anon_sym___scanf] = ACTIONS(1460), - [anon_sym___printf] = ACTIONS(1460), - [anon_sym___read_mostly] = ACTIONS(1460), - [anon_sym___must_hold] = ACTIONS(1460), - [anon_sym___ro_after_init] = ACTIONS(1460), - [anon_sym___noreturn] = ACTIONS(1460), - [anon_sym___cold] = ACTIONS(1460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym___declspec] = ACTIONS(1460), - [anon_sym___init] = ACTIONS(1460), - [anon_sym___exit] = ACTIONS(1460), - [anon_sym___cdecl] = ACTIONS(1460), - [anon_sym___clrcall] = ACTIONS(1460), - [anon_sym___stdcall] = ACTIONS(1460), - [anon_sym___fastcall] = ACTIONS(1460), - [anon_sym___thiscall] = ACTIONS(1460), - [anon_sym___vectorcall] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1462), - [anon_sym_signed] = ACTIONS(1460), - [anon_sym_unsigned] = ACTIONS(1460), - [anon_sym_long] = ACTIONS(1460), - [anon_sym_short] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_auto] = ACTIONS(1460), - [anon_sym_register] = ACTIONS(1460), - [anon_sym_inline] = ACTIONS(1460), - [anon_sym___inline] = ACTIONS(1460), - [anon_sym___inline__] = ACTIONS(1460), - [anon_sym___forceinline] = ACTIONS(1460), - [anon_sym_thread_local] = ACTIONS(1460), - [anon_sym___thread] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_constexpr] = ACTIONS(1460), - [anon_sym_volatile] = ACTIONS(1460), - [anon_sym_restrict] = ACTIONS(1460), - [anon_sym___restrict__] = ACTIONS(1460), - [anon_sym__Atomic] = ACTIONS(1460), - [anon_sym__Noreturn] = ACTIONS(1460), - [anon_sym_noreturn] = ACTIONS(1460), - [anon_sym_alignas] = ACTIONS(1460), - [anon_sym__Alignas] = ACTIONS(1460), - [sym_primitive_type] = ACTIONS(1460), - [anon_sym_enum] = ACTIONS(1460), - [anon_sym_struct] = ACTIONS(1460), - [anon_sym_union] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_switch] = ACTIONS(1460), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_do] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_goto] = ACTIONS(1460), - [anon_sym___try] = ACTIONS(1460), - [anon_sym___leave] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1462), - [anon_sym_sizeof] = ACTIONS(1460), - [anon_sym___alignof__] = ACTIONS(1460), - [anon_sym___alignof] = ACTIONS(1460), - [anon_sym__alignof] = ACTIONS(1460), - [anon_sym_alignof] = ACTIONS(1460), - [anon_sym__Alignof] = ACTIONS(1460), - [anon_sym_offsetof] = ACTIONS(1460), - [anon_sym__Generic] = ACTIONS(1460), - [anon_sym_asm] = ACTIONS(1460), - [anon_sym___asm__] = ACTIONS(1460), - [sym_number_literal] = ACTIONS(1462), - [anon_sym_L_SQUOTE] = ACTIONS(1462), - [anon_sym_u_SQUOTE] = ACTIONS(1462), - [anon_sym_U_SQUOTE] = ACTIONS(1462), - [anon_sym_u8_SQUOTE] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_L_DQUOTE] = ACTIONS(1462), - [anon_sym_u_DQUOTE] = ACTIONS(1462), - [anon_sym_U_DQUOTE] = ACTIONS(1462), - [anon_sym_u8_DQUOTE] = ACTIONS(1462), - [anon_sym_DQUOTE] = ACTIONS(1462), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [anon_sym_NULL] = ACTIONS(1460), - [anon_sym_nullptr] = ACTIONS(1460), - [sym_comment] = ACTIONS(5), - }, - [342] = { - [sym_identifier] = ACTIONS(1480), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1480), - [aux_sym_preproc_def_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), - [sym_preproc_directive] = ACTIONS(1480), - [anon_sym_LPAREN2] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym___extension__] = ACTIONS(1480), - [anon_sym_typedef] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1480), - [anon_sym___attribute__] = ACTIONS(1480), - [anon_sym___scanf] = ACTIONS(1480), - [anon_sym___printf] = ACTIONS(1480), - [anon_sym___read_mostly] = ACTIONS(1480), - [anon_sym___must_hold] = ACTIONS(1480), - [anon_sym___ro_after_init] = ACTIONS(1480), - [anon_sym___noreturn] = ACTIONS(1480), - [anon_sym___cold] = ACTIONS(1480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), - [anon_sym___declspec] = ACTIONS(1480), - [anon_sym___init] = ACTIONS(1480), - [anon_sym___exit] = ACTIONS(1480), - [anon_sym___cdecl] = ACTIONS(1480), - [anon_sym___clrcall] = ACTIONS(1480), - [anon_sym___stdcall] = ACTIONS(1480), - [anon_sym___fastcall] = ACTIONS(1480), - [anon_sym___thiscall] = ACTIONS(1480), - [anon_sym___vectorcall] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_RBRACE] = ACTIONS(1482), - [anon_sym_signed] = ACTIONS(1480), - [anon_sym_unsigned] = ACTIONS(1480), - [anon_sym_long] = ACTIONS(1480), - [anon_sym_short] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_auto] = ACTIONS(1480), - [anon_sym_register] = ACTIONS(1480), - [anon_sym_inline] = ACTIONS(1480), - [anon_sym___inline] = ACTIONS(1480), - [anon_sym___inline__] = ACTIONS(1480), - [anon_sym___forceinline] = ACTIONS(1480), - [anon_sym_thread_local] = ACTIONS(1480), - [anon_sym___thread] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_constexpr] = ACTIONS(1480), - [anon_sym_volatile] = ACTIONS(1480), - [anon_sym_restrict] = ACTIONS(1480), - [anon_sym___restrict__] = ACTIONS(1480), - [anon_sym__Atomic] = ACTIONS(1480), - [anon_sym__Noreturn] = ACTIONS(1480), - [anon_sym_noreturn] = ACTIONS(1480), - [anon_sym_alignas] = ACTIONS(1480), - [anon_sym__Alignas] = ACTIONS(1480), - [sym_primitive_type] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_struct] = ACTIONS(1480), - [anon_sym_union] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_do] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_goto] = ACTIONS(1480), - [anon_sym___try] = ACTIONS(1480), - [anon_sym___leave] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1480), - [anon_sym___alignof__] = ACTIONS(1480), - [anon_sym___alignof] = ACTIONS(1480), - [anon_sym__alignof] = ACTIONS(1480), - [anon_sym_alignof] = ACTIONS(1480), - [anon_sym__Alignof] = ACTIONS(1480), - [anon_sym_offsetof] = ACTIONS(1480), - [anon_sym__Generic] = ACTIONS(1480), - [anon_sym_asm] = ACTIONS(1480), - [anon_sym___asm__] = ACTIONS(1480), - [sym_number_literal] = ACTIONS(1482), - [anon_sym_L_SQUOTE] = ACTIONS(1482), - [anon_sym_u_SQUOTE] = ACTIONS(1482), - [anon_sym_U_SQUOTE] = ACTIONS(1482), - [anon_sym_u8_SQUOTE] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_L_DQUOTE] = ACTIONS(1482), - [anon_sym_u_DQUOTE] = ACTIONS(1482), - [anon_sym_U_DQUOTE] = ACTIONS(1482), - [anon_sym_u8_DQUOTE] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym_true] = ACTIONS(1480), - [sym_false] = ACTIONS(1480), - [anon_sym_NULL] = ACTIONS(1480), - [anon_sym_nullptr] = ACTIONS(1480), - [sym_comment] = ACTIONS(5), - }, - [343] = { - [sym_identifier] = ACTIONS(1432), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1432), - [aux_sym_preproc_def_token1] = ACTIONS(1432), - [aux_sym_preproc_if_token1] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), - [sym_preproc_directive] = ACTIONS(1432), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym___extension__] = ACTIONS(1432), - [anon_sym_typedef] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1432), - [anon_sym___attribute__] = ACTIONS(1432), - [anon_sym___scanf] = ACTIONS(1432), - [anon_sym___printf] = ACTIONS(1432), - [anon_sym___read_mostly] = ACTIONS(1432), - [anon_sym___must_hold] = ACTIONS(1432), - [anon_sym___ro_after_init] = ACTIONS(1432), - [anon_sym___noreturn] = ACTIONS(1432), - [anon_sym___cold] = ACTIONS(1432), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), - [anon_sym___declspec] = ACTIONS(1432), - [anon_sym___init] = ACTIONS(1432), - [anon_sym___exit] = ACTIONS(1432), - [anon_sym___cdecl] = ACTIONS(1432), - [anon_sym___clrcall] = ACTIONS(1432), - [anon_sym___stdcall] = ACTIONS(1432), - [anon_sym___fastcall] = ACTIONS(1432), - [anon_sym___thiscall] = ACTIONS(1432), - [anon_sym___vectorcall] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_RBRACE] = ACTIONS(1434), - [anon_sym_signed] = ACTIONS(1432), - [anon_sym_unsigned] = ACTIONS(1432), - [anon_sym_long] = ACTIONS(1432), - [anon_sym_short] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_auto] = ACTIONS(1432), - [anon_sym_register] = ACTIONS(1432), - [anon_sym_inline] = ACTIONS(1432), - [anon_sym___inline] = ACTIONS(1432), - [anon_sym___inline__] = ACTIONS(1432), - [anon_sym___forceinline] = ACTIONS(1432), - [anon_sym_thread_local] = ACTIONS(1432), - [anon_sym___thread] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_constexpr] = ACTIONS(1432), - [anon_sym_volatile] = ACTIONS(1432), - [anon_sym_restrict] = ACTIONS(1432), - [anon_sym___restrict__] = ACTIONS(1432), - [anon_sym__Atomic] = ACTIONS(1432), - [anon_sym__Noreturn] = ACTIONS(1432), - [anon_sym_noreturn] = ACTIONS(1432), - [anon_sym_alignas] = ACTIONS(1432), - [anon_sym__Alignas] = ACTIONS(1432), - [sym_primitive_type] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_struct] = ACTIONS(1432), - [anon_sym_union] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_case] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_goto] = ACTIONS(1432), - [anon_sym___try] = ACTIONS(1432), - [anon_sym___leave] = ACTIONS(1432), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_sizeof] = ACTIONS(1432), - [anon_sym___alignof__] = ACTIONS(1432), - [anon_sym___alignof] = ACTIONS(1432), - [anon_sym__alignof] = ACTIONS(1432), - [anon_sym_alignof] = ACTIONS(1432), - [anon_sym__Alignof] = ACTIONS(1432), - [anon_sym_offsetof] = ACTIONS(1432), - [anon_sym__Generic] = ACTIONS(1432), - [anon_sym_asm] = ACTIONS(1432), - [anon_sym___asm__] = ACTIONS(1432), - [sym_number_literal] = ACTIONS(1434), - [anon_sym_L_SQUOTE] = ACTIONS(1434), - [anon_sym_u_SQUOTE] = ACTIONS(1434), - [anon_sym_U_SQUOTE] = ACTIONS(1434), - [anon_sym_u8_SQUOTE] = ACTIONS(1434), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_L_DQUOTE] = ACTIONS(1434), - [anon_sym_u_DQUOTE] = ACTIONS(1434), - [anon_sym_U_DQUOTE] = ACTIONS(1434), - [anon_sym_u8_DQUOTE] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(1434), - [sym_true] = ACTIONS(1432), - [sym_false] = ACTIONS(1432), - [anon_sym_NULL] = ACTIONS(1432), - [anon_sym_nullptr] = ACTIONS(1432), - [sym_comment] = ACTIONS(5), - }, - [344] = { - [sym_identifier] = ACTIONS(1484), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1484), - [aux_sym_preproc_def_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), - [sym_preproc_directive] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym___extension__] = ACTIONS(1484), - [anon_sym_typedef] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym___attribute__] = ACTIONS(1484), - [anon_sym___scanf] = ACTIONS(1484), - [anon_sym___printf] = ACTIONS(1484), - [anon_sym___read_mostly] = ACTIONS(1484), - [anon_sym___must_hold] = ACTIONS(1484), - [anon_sym___ro_after_init] = ACTIONS(1484), - [anon_sym___noreturn] = ACTIONS(1484), - [anon_sym___cold] = ACTIONS(1484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym___declspec] = ACTIONS(1484), - [anon_sym___init] = ACTIONS(1484), - [anon_sym___exit] = ACTIONS(1484), - [anon_sym___cdecl] = ACTIONS(1484), - [anon_sym___clrcall] = ACTIONS(1484), - [anon_sym___stdcall] = ACTIONS(1484), - [anon_sym___fastcall] = ACTIONS(1484), - [anon_sym___thiscall] = ACTIONS(1484), - [anon_sym___vectorcall] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_RBRACE] = ACTIONS(1486), - [anon_sym_signed] = ACTIONS(1484), - [anon_sym_unsigned] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_auto] = ACTIONS(1484), - [anon_sym_register] = ACTIONS(1484), - [anon_sym_inline] = ACTIONS(1484), - [anon_sym___inline] = ACTIONS(1484), - [anon_sym___inline__] = ACTIONS(1484), - [anon_sym___forceinline] = ACTIONS(1484), - [anon_sym_thread_local] = ACTIONS(1484), - [anon_sym___thread] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_constexpr] = ACTIONS(1484), - [anon_sym_volatile] = ACTIONS(1484), - [anon_sym_restrict] = ACTIONS(1484), - [anon_sym___restrict__] = ACTIONS(1484), - [anon_sym__Atomic] = ACTIONS(1484), - [anon_sym__Noreturn] = ACTIONS(1484), - [anon_sym_noreturn] = ACTIONS(1484), - [anon_sym_alignas] = ACTIONS(1484), - [anon_sym__Alignas] = ACTIONS(1484), - [sym_primitive_type] = ACTIONS(1484), - [anon_sym_enum] = ACTIONS(1484), - [anon_sym_struct] = ACTIONS(1484), - [anon_sym_union] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_goto] = ACTIONS(1484), - [anon_sym___try] = ACTIONS(1484), - [anon_sym___leave] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1484), - [anon_sym___alignof__] = ACTIONS(1484), - [anon_sym___alignof] = ACTIONS(1484), - [anon_sym__alignof] = ACTIONS(1484), - [anon_sym_alignof] = ACTIONS(1484), - [anon_sym__Alignof] = ACTIONS(1484), - [anon_sym_offsetof] = ACTIONS(1484), - [anon_sym__Generic] = ACTIONS(1484), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym___asm__] = ACTIONS(1484), - [sym_number_literal] = ACTIONS(1486), - [anon_sym_L_SQUOTE] = ACTIONS(1486), - [anon_sym_u_SQUOTE] = ACTIONS(1486), - [anon_sym_U_SQUOTE] = ACTIONS(1486), - [anon_sym_u8_SQUOTE] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_L_DQUOTE] = ACTIONS(1486), - [anon_sym_u_DQUOTE] = ACTIONS(1486), - [anon_sym_U_DQUOTE] = ACTIONS(1486), - [anon_sym_u8_DQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym_true] = ACTIONS(1484), - [sym_false] = ACTIONS(1484), - [anon_sym_NULL] = ACTIONS(1484), - [anon_sym_nullptr] = ACTIONS(1484), - [sym_comment] = ACTIONS(5), - }, - [345] = { - [sym_identifier] = ACTIONS(1428), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1428), - [aux_sym_preproc_def_token1] = ACTIONS(1428), - [aux_sym_preproc_if_token1] = ACTIONS(1428), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1428), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1428), - [sym_preproc_directive] = ACTIONS(1428), - [anon_sym_LPAREN2] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym___extension__] = ACTIONS(1428), - [anon_sym_typedef] = ACTIONS(1428), - [anon_sym_extern] = ACTIONS(1428), - [anon_sym___attribute__] = ACTIONS(1428), - [anon_sym___scanf] = ACTIONS(1428), - [anon_sym___printf] = ACTIONS(1428), - [anon_sym___read_mostly] = ACTIONS(1428), - [anon_sym___must_hold] = ACTIONS(1428), - [anon_sym___ro_after_init] = ACTIONS(1428), - [anon_sym___noreturn] = ACTIONS(1428), - [anon_sym___cold] = ACTIONS(1428), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1430), - [anon_sym___declspec] = ACTIONS(1428), - [anon_sym___init] = ACTIONS(1428), - [anon_sym___exit] = ACTIONS(1428), - [anon_sym___cdecl] = ACTIONS(1428), - [anon_sym___clrcall] = ACTIONS(1428), - [anon_sym___stdcall] = ACTIONS(1428), - [anon_sym___fastcall] = ACTIONS(1428), - [anon_sym___thiscall] = ACTIONS(1428), - [anon_sym___vectorcall] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_signed] = ACTIONS(1428), - [anon_sym_unsigned] = ACTIONS(1428), - [anon_sym_long] = ACTIONS(1428), - [anon_sym_short] = ACTIONS(1428), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_auto] = ACTIONS(1428), - [anon_sym_register] = ACTIONS(1428), - [anon_sym_inline] = ACTIONS(1428), - [anon_sym___inline] = ACTIONS(1428), - [anon_sym___inline__] = ACTIONS(1428), - [anon_sym___forceinline] = ACTIONS(1428), - [anon_sym_thread_local] = ACTIONS(1428), - [anon_sym___thread] = ACTIONS(1428), - [anon_sym_const] = ACTIONS(1428), - [anon_sym_constexpr] = ACTIONS(1428), - [anon_sym_volatile] = ACTIONS(1428), - [anon_sym_restrict] = ACTIONS(1428), - [anon_sym___restrict__] = ACTIONS(1428), - [anon_sym__Atomic] = ACTIONS(1428), - [anon_sym__Noreturn] = ACTIONS(1428), - [anon_sym_noreturn] = ACTIONS(1428), - [anon_sym_alignas] = ACTIONS(1428), - [anon_sym__Alignas] = ACTIONS(1428), - [sym_primitive_type] = ACTIONS(1428), - [anon_sym_enum] = ACTIONS(1428), - [anon_sym_struct] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1428), - [anon_sym_if] = ACTIONS(1428), - [anon_sym_switch] = ACTIONS(1428), - [anon_sym_case] = ACTIONS(1428), - [anon_sym_default] = ACTIONS(1428), - [anon_sym_while] = ACTIONS(1428), - [anon_sym_do] = ACTIONS(1428), - [anon_sym_for] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1428), - [anon_sym_break] = ACTIONS(1428), - [anon_sym_continue] = ACTIONS(1428), - [anon_sym_goto] = ACTIONS(1428), - [anon_sym___try] = ACTIONS(1428), - [anon_sym___leave] = ACTIONS(1428), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_sizeof] = ACTIONS(1428), - [anon_sym___alignof__] = ACTIONS(1428), - [anon_sym___alignof] = ACTIONS(1428), - [anon_sym__alignof] = ACTIONS(1428), - [anon_sym_alignof] = ACTIONS(1428), - [anon_sym__Alignof] = ACTIONS(1428), - [anon_sym_offsetof] = ACTIONS(1428), - [anon_sym__Generic] = ACTIONS(1428), - [anon_sym_asm] = ACTIONS(1428), - [anon_sym___asm__] = ACTIONS(1428), - [sym_number_literal] = ACTIONS(1430), - [anon_sym_L_SQUOTE] = ACTIONS(1430), - [anon_sym_u_SQUOTE] = ACTIONS(1430), - [anon_sym_U_SQUOTE] = ACTIONS(1430), - [anon_sym_u8_SQUOTE] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_L_DQUOTE] = ACTIONS(1430), - [anon_sym_u_DQUOTE] = ACTIONS(1430), - [anon_sym_U_DQUOTE] = ACTIONS(1430), - [anon_sym_u8_DQUOTE] = ACTIONS(1430), - [anon_sym_DQUOTE] = ACTIONS(1430), - [sym_true] = ACTIONS(1428), - [sym_false] = ACTIONS(1428), - [anon_sym_NULL] = ACTIONS(1428), - [anon_sym_nullptr] = ACTIONS(1428), - [sym_comment] = ACTIONS(5), - }, - [346] = { - [sym_identifier] = ACTIONS(1362), + [279] = { + [sym_identifier] = ACTIONS(1246), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1362), - [aux_sym_preproc_def_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token2] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), - [sym_preproc_directive] = ACTIONS(1362), - [anon_sym_LPAREN2] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1364), - [anon_sym___extension__] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym___attribute__] = ACTIONS(1362), - [anon_sym___scanf] = ACTIONS(1362), - [anon_sym___printf] = ACTIONS(1362), - [anon_sym___read_mostly] = ACTIONS(1362), - [anon_sym___must_hold] = ACTIONS(1362), - [anon_sym___ro_after_init] = ACTIONS(1362), - [anon_sym___noreturn] = ACTIONS(1362), - [anon_sym___cold] = ACTIONS(1362), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), - [anon_sym___declspec] = ACTIONS(1362), - [anon_sym___init] = ACTIONS(1362), - [anon_sym___exit] = ACTIONS(1362), - [anon_sym___cdecl] = ACTIONS(1362), - [anon_sym___clrcall] = ACTIONS(1362), - [anon_sym___stdcall] = ACTIONS(1362), - [anon_sym___fastcall] = ACTIONS(1362), - [anon_sym___thiscall] = ACTIONS(1362), - [anon_sym___vectorcall] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1362), - [anon_sym_unsigned] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_auto] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_inline] = ACTIONS(1362), - [anon_sym___inline] = ACTIONS(1362), - [anon_sym___inline__] = ACTIONS(1362), - [anon_sym___forceinline] = ACTIONS(1362), - [anon_sym_thread_local] = ACTIONS(1362), - [anon_sym___thread] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_constexpr] = ACTIONS(1362), - [anon_sym_volatile] = ACTIONS(1362), - [anon_sym_restrict] = ACTIONS(1362), - [anon_sym___restrict__] = ACTIONS(1362), - [anon_sym__Atomic] = ACTIONS(1362), - [anon_sym__Noreturn] = ACTIONS(1362), - [anon_sym_noreturn] = ACTIONS(1362), - [anon_sym_alignas] = ACTIONS(1362), - [anon_sym__Alignas] = ACTIONS(1362), - [sym_primitive_type] = ACTIONS(1362), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_switch] = ACTIONS(1362), - [anon_sym_case] = ACTIONS(1362), - [anon_sym_default] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_goto] = ACTIONS(1362), - [anon_sym___try] = ACTIONS(1362), - [anon_sym___leave] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_sizeof] = ACTIONS(1362), - [anon_sym___alignof__] = ACTIONS(1362), - [anon_sym___alignof] = ACTIONS(1362), - [anon_sym__alignof] = ACTIONS(1362), - [anon_sym_alignof] = ACTIONS(1362), - [anon_sym__Alignof] = ACTIONS(1362), - [anon_sym_offsetof] = ACTIONS(1362), - [anon_sym__Generic] = ACTIONS(1362), - [anon_sym_asm] = ACTIONS(1362), - [anon_sym___asm__] = ACTIONS(1362), - [sym_number_literal] = ACTIONS(1364), - [anon_sym_L_SQUOTE] = ACTIONS(1364), - [anon_sym_u_SQUOTE] = ACTIONS(1364), - [anon_sym_U_SQUOTE] = ACTIONS(1364), - [anon_sym_u8_SQUOTE] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_L_DQUOTE] = ACTIONS(1364), - [anon_sym_u_DQUOTE] = ACTIONS(1364), - [anon_sym_U_DQUOTE] = ACTIONS(1364), - [anon_sym_u8_DQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [anon_sym_NULL] = ACTIONS(1362), - [anon_sym_nullptr] = ACTIONS(1362), - [sym_comment] = ACTIONS(5), - }, - [347] = { - [sym_identifier] = ACTIONS(1404), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1404), - [aux_sym_preproc_def_token1] = ACTIONS(1404), - [aux_sym_preproc_if_token1] = ACTIONS(1404), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1404), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1404), - [sym_preproc_directive] = ACTIONS(1404), - [anon_sym_LPAREN2] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(1406), - [anon_sym_TILDE] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1404), - [anon_sym_STAR] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1406), - [anon_sym_SEMI] = ACTIONS(1406), - [anon_sym___extension__] = ACTIONS(1404), - [anon_sym_typedef] = ACTIONS(1404), - [anon_sym_extern] = ACTIONS(1404), - [anon_sym___attribute__] = ACTIONS(1404), - [anon_sym___scanf] = ACTIONS(1404), - [anon_sym___printf] = ACTIONS(1404), - [anon_sym___read_mostly] = ACTIONS(1404), - [anon_sym___must_hold] = ACTIONS(1404), - [anon_sym___ro_after_init] = ACTIONS(1404), - [anon_sym___noreturn] = ACTIONS(1404), - [anon_sym___cold] = ACTIONS(1404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), - [anon_sym___declspec] = ACTIONS(1404), - [anon_sym___init] = ACTIONS(1404), - [anon_sym___exit] = ACTIONS(1404), - [anon_sym___cdecl] = ACTIONS(1404), - [anon_sym___clrcall] = ACTIONS(1404), - [anon_sym___stdcall] = ACTIONS(1404), - [anon_sym___fastcall] = ACTIONS(1404), - [anon_sym___thiscall] = ACTIONS(1404), - [anon_sym___vectorcall] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_RBRACE] = ACTIONS(1406), - [anon_sym_signed] = ACTIONS(1404), - [anon_sym_unsigned] = ACTIONS(1404), - [anon_sym_long] = ACTIONS(1404), - [anon_sym_short] = ACTIONS(1404), - [anon_sym_static] = ACTIONS(1404), - [anon_sym_auto] = ACTIONS(1404), - [anon_sym_register] = ACTIONS(1404), - [anon_sym_inline] = ACTIONS(1404), - [anon_sym___inline] = ACTIONS(1404), - [anon_sym___inline__] = ACTIONS(1404), - [anon_sym___forceinline] = ACTIONS(1404), - [anon_sym_thread_local] = ACTIONS(1404), - [anon_sym___thread] = ACTIONS(1404), - [anon_sym_const] = ACTIONS(1404), - [anon_sym_constexpr] = ACTIONS(1404), - [anon_sym_volatile] = ACTIONS(1404), - [anon_sym_restrict] = ACTIONS(1404), - [anon_sym___restrict__] = ACTIONS(1404), - [anon_sym__Atomic] = ACTIONS(1404), - [anon_sym__Noreturn] = ACTIONS(1404), - [anon_sym_noreturn] = ACTIONS(1404), - [anon_sym_alignas] = ACTIONS(1404), - [anon_sym__Alignas] = ACTIONS(1404), - [sym_primitive_type] = ACTIONS(1404), - [anon_sym_enum] = ACTIONS(1404), - [anon_sym_struct] = ACTIONS(1404), - [anon_sym_union] = ACTIONS(1404), - [anon_sym_if] = ACTIONS(1404), - [anon_sym_switch] = ACTIONS(1404), - [anon_sym_case] = ACTIONS(1404), - [anon_sym_default] = ACTIONS(1404), - [anon_sym_while] = ACTIONS(1404), - [anon_sym_do] = ACTIONS(1404), - [anon_sym_for] = ACTIONS(1404), - [anon_sym_return] = ACTIONS(1404), - [anon_sym_break] = ACTIONS(1404), - [anon_sym_continue] = ACTIONS(1404), - [anon_sym_goto] = ACTIONS(1404), - [anon_sym___try] = ACTIONS(1404), - [anon_sym___leave] = ACTIONS(1404), - [anon_sym_DASH_DASH] = ACTIONS(1406), - [anon_sym_PLUS_PLUS] = ACTIONS(1406), - [anon_sym_sizeof] = ACTIONS(1404), - [anon_sym___alignof__] = ACTIONS(1404), - [anon_sym___alignof] = ACTIONS(1404), - [anon_sym__alignof] = ACTIONS(1404), - [anon_sym_alignof] = ACTIONS(1404), - [anon_sym__Alignof] = ACTIONS(1404), - [anon_sym_offsetof] = ACTIONS(1404), - [anon_sym__Generic] = ACTIONS(1404), - [anon_sym_asm] = ACTIONS(1404), - [anon_sym___asm__] = ACTIONS(1404), - [sym_number_literal] = ACTIONS(1406), - [anon_sym_L_SQUOTE] = ACTIONS(1406), - [anon_sym_u_SQUOTE] = ACTIONS(1406), - [anon_sym_U_SQUOTE] = ACTIONS(1406), - [anon_sym_u8_SQUOTE] = ACTIONS(1406), - [anon_sym_SQUOTE] = ACTIONS(1406), - [anon_sym_L_DQUOTE] = ACTIONS(1406), - [anon_sym_u_DQUOTE] = ACTIONS(1406), - [anon_sym_U_DQUOTE] = ACTIONS(1406), - [anon_sym_u8_DQUOTE] = ACTIONS(1406), - [anon_sym_DQUOTE] = ACTIONS(1406), - [sym_true] = ACTIONS(1404), - [sym_false] = ACTIONS(1404), - [anon_sym_NULL] = ACTIONS(1404), - [anon_sym_nullptr] = ACTIONS(1404), + [aux_sym_preproc_include_token1] = ACTIONS(1246), + [aux_sym_preproc_def_token1] = ACTIONS(1246), + [aux_sym_preproc_if_token1] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1246), + [sym_preproc_directive] = ACTIONS(1246), + [anon_sym_LPAREN2] = ACTIONS(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_TILDE] = ACTIONS(1248), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_PLUS] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1248), + [anon_sym___extension__] = ACTIONS(1246), + [anon_sym_typedef] = ACTIONS(1246), + [anon_sym_extern] = ACTIONS(1246), + [anon_sym___attribute__] = ACTIONS(1246), + [anon_sym___scanf] = ACTIONS(1246), + [anon_sym___printf] = ACTIONS(1246), + [anon_sym___read_mostly] = ACTIONS(1246), + [anon_sym___must_hold] = ACTIONS(1246), + [anon_sym___ro_after_init] = ACTIONS(1246), + [anon_sym___noreturn] = ACTIONS(1246), + [anon_sym___cold] = ACTIONS(1246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1248), + [anon_sym___declspec] = ACTIONS(1246), + [anon_sym___init] = ACTIONS(1246), + [anon_sym___exit] = ACTIONS(1246), + [anon_sym___cdecl] = ACTIONS(1246), + [anon_sym___clrcall] = ACTIONS(1246), + [anon_sym___stdcall] = ACTIONS(1246), + [anon_sym___fastcall] = ACTIONS(1246), + [anon_sym___thiscall] = ACTIONS(1246), + [anon_sym___vectorcall] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_RBRACE] = ACTIONS(1248), + [anon_sym_signed] = ACTIONS(1246), + [anon_sym_unsigned] = ACTIONS(1246), + [anon_sym_long] = ACTIONS(1246), + [anon_sym_short] = ACTIONS(1246), + [anon_sym_static] = ACTIONS(1246), + [anon_sym_auto] = ACTIONS(1246), + [anon_sym_register] = ACTIONS(1246), + [anon_sym_inline] = ACTIONS(1246), + [anon_sym___inline] = ACTIONS(1246), + [anon_sym___inline__] = ACTIONS(1246), + [anon_sym___forceinline] = ACTIONS(1246), + [anon_sym_thread_local] = ACTIONS(1246), + [anon_sym___thread] = ACTIONS(1246), + [anon_sym_const] = ACTIONS(1246), + [anon_sym_constexpr] = ACTIONS(1246), + [anon_sym_volatile] = ACTIONS(1246), + [anon_sym_restrict] = ACTIONS(1246), + [anon_sym___restrict__] = ACTIONS(1246), + [anon_sym__Atomic] = ACTIONS(1246), + [anon_sym__Noreturn] = ACTIONS(1246), + [anon_sym_noreturn] = ACTIONS(1246), + [anon_sym_alignas] = ACTIONS(1246), + [anon_sym__Alignas] = ACTIONS(1246), + [sym_primitive_type] = ACTIONS(1246), + [anon_sym_enum] = ACTIONS(1246), + [anon_sym_struct] = ACTIONS(1246), + [anon_sym_union] = ACTIONS(1246), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_else] = ACTIONS(1246), + [anon_sym_switch] = ACTIONS(1246), + [anon_sym_case] = ACTIONS(1246), + [anon_sym_default] = ACTIONS(1246), + [anon_sym_while] = ACTIONS(1246), + [anon_sym_do] = ACTIONS(1246), + [anon_sym_for] = ACTIONS(1246), + [anon_sym_return] = ACTIONS(1246), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1246), + [anon_sym_goto] = ACTIONS(1246), + [anon_sym___try] = ACTIONS(1246), + [anon_sym___leave] = ACTIONS(1246), + [anon_sym_DASH_DASH] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_sizeof] = ACTIONS(1246), + [anon_sym___alignof__] = ACTIONS(1246), + [anon_sym___alignof] = ACTIONS(1246), + [anon_sym__alignof] = ACTIONS(1246), + [anon_sym_alignof] = ACTIONS(1246), + [anon_sym__Alignof] = ACTIONS(1246), + [anon_sym_offsetof] = ACTIONS(1246), + [anon_sym__Generic] = ACTIONS(1246), + [anon_sym_asm] = ACTIONS(1246), + [anon_sym___asm__] = ACTIONS(1246), + [sym_number_literal] = ACTIONS(1248), + [anon_sym_L_SQUOTE] = ACTIONS(1248), + [anon_sym_u_SQUOTE] = ACTIONS(1248), + [anon_sym_U_SQUOTE] = ACTIONS(1248), + [anon_sym_u8_SQUOTE] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1248), + [anon_sym_L_DQUOTE] = ACTIONS(1248), + [anon_sym_u_DQUOTE] = ACTIONS(1248), + [anon_sym_U_DQUOTE] = ACTIONS(1248), + [anon_sym_u8_DQUOTE] = ACTIONS(1248), + [anon_sym_DQUOTE] = ACTIONS(1248), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), + [anon_sym_NULL] = ACTIONS(1246), + [anon_sym_nullptr] = ACTIONS(1246), [sym_comment] = ACTIONS(5), }, - [348] = { - [sym_identifier] = ACTIONS(1440), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1440), - [aux_sym_preproc_def_token1] = ACTIONS(1440), - [aux_sym_preproc_if_token1] = ACTIONS(1440), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), - [sym_preproc_directive] = ACTIONS(1440), - [anon_sym_LPAREN2] = ACTIONS(1442), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym___extension__] = ACTIONS(1440), - [anon_sym_typedef] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym___attribute__] = ACTIONS(1440), - [anon_sym___scanf] = ACTIONS(1440), - [anon_sym___printf] = ACTIONS(1440), - [anon_sym___read_mostly] = ACTIONS(1440), - [anon_sym___must_hold] = ACTIONS(1440), - [anon_sym___ro_after_init] = ACTIONS(1440), - [anon_sym___noreturn] = ACTIONS(1440), - [anon_sym___cold] = ACTIONS(1440), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), - [anon_sym___declspec] = ACTIONS(1440), - [anon_sym___init] = ACTIONS(1440), - [anon_sym___exit] = ACTIONS(1440), - [anon_sym___cdecl] = ACTIONS(1440), - [anon_sym___clrcall] = ACTIONS(1440), - [anon_sym___stdcall] = ACTIONS(1440), - [anon_sym___fastcall] = ACTIONS(1440), - [anon_sym___thiscall] = ACTIONS(1440), - [anon_sym___vectorcall] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1442), - [anon_sym_RBRACE] = ACTIONS(1442), - [anon_sym_signed] = ACTIONS(1440), - [anon_sym_unsigned] = ACTIONS(1440), - [anon_sym_long] = ACTIONS(1440), - [anon_sym_short] = ACTIONS(1440), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_auto] = ACTIONS(1440), - [anon_sym_register] = ACTIONS(1440), - [anon_sym_inline] = ACTIONS(1440), - [anon_sym___inline] = ACTIONS(1440), - [anon_sym___inline__] = ACTIONS(1440), - [anon_sym___forceinline] = ACTIONS(1440), - [anon_sym_thread_local] = ACTIONS(1440), - [anon_sym___thread] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_constexpr] = ACTIONS(1440), - [anon_sym_volatile] = ACTIONS(1440), - [anon_sym_restrict] = ACTIONS(1440), - [anon_sym___restrict__] = ACTIONS(1440), - [anon_sym__Atomic] = ACTIONS(1440), - [anon_sym__Noreturn] = ACTIONS(1440), - [anon_sym_noreturn] = ACTIONS(1440), - [anon_sym_alignas] = ACTIONS(1440), - [anon_sym__Alignas] = ACTIONS(1440), - [sym_primitive_type] = ACTIONS(1440), - [anon_sym_enum] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_union] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1440), - [anon_sym_case] = ACTIONS(1440), - [anon_sym_default] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_goto] = ACTIONS(1440), - [anon_sym___try] = ACTIONS(1440), - [anon_sym___leave] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_sizeof] = ACTIONS(1440), - [anon_sym___alignof__] = ACTIONS(1440), - [anon_sym___alignof] = ACTIONS(1440), - [anon_sym__alignof] = ACTIONS(1440), - [anon_sym_alignof] = ACTIONS(1440), - [anon_sym__Alignof] = ACTIONS(1440), - [anon_sym_offsetof] = ACTIONS(1440), - [anon_sym__Generic] = ACTIONS(1440), - [anon_sym_asm] = ACTIONS(1440), - [anon_sym___asm__] = ACTIONS(1440), - [sym_number_literal] = ACTIONS(1442), - [anon_sym_L_SQUOTE] = ACTIONS(1442), - [anon_sym_u_SQUOTE] = ACTIONS(1442), - [anon_sym_U_SQUOTE] = ACTIONS(1442), - [anon_sym_u8_SQUOTE] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_L_DQUOTE] = ACTIONS(1442), - [anon_sym_u_DQUOTE] = ACTIONS(1442), - [anon_sym_U_DQUOTE] = ACTIONS(1442), - [anon_sym_u8_DQUOTE] = ACTIONS(1442), - [anon_sym_DQUOTE] = ACTIONS(1442), - [sym_true] = ACTIONS(1440), - [sym_false] = ACTIONS(1440), - [anon_sym_NULL] = ACTIONS(1440), - [anon_sym_nullptr] = ACTIONS(1440), + [280] = { + [sym_identifier] = ACTIONS(1378), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym___scanf] = ACTIONS(1378), + [anon_sym___printf] = ACTIONS(1378), + [anon_sym___read_mostly] = ACTIONS(1378), + [anon_sym___must_hold] = ACTIONS(1378), + [anon_sym___ro_after_init] = ACTIONS(1378), + [anon_sym___noreturn] = ACTIONS(1378), + [anon_sym___cold] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___init] = ACTIONS(1378), + [anon_sym___exit] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_RBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [anon_sym_alignas] = ACTIONS(1378), + [anon_sym__Alignas] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(5), }, - [349] = { - [sym_identifier] = ACTIONS(1484), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1484), - [aux_sym_preproc_def_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token2] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), - [sym_preproc_directive] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym___extension__] = ACTIONS(1484), - [anon_sym_typedef] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym___attribute__] = ACTIONS(1484), - [anon_sym___scanf] = ACTIONS(1484), - [anon_sym___printf] = ACTIONS(1484), - [anon_sym___read_mostly] = ACTIONS(1484), - [anon_sym___must_hold] = ACTIONS(1484), - [anon_sym___ro_after_init] = ACTIONS(1484), - [anon_sym___noreturn] = ACTIONS(1484), - [anon_sym___cold] = ACTIONS(1484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym___declspec] = ACTIONS(1484), - [anon_sym___init] = ACTIONS(1484), - [anon_sym___exit] = ACTIONS(1484), - [anon_sym___cdecl] = ACTIONS(1484), - [anon_sym___clrcall] = ACTIONS(1484), - [anon_sym___stdcall] = ACTIONS(1484), - [anon_sym___fastcall] = ACTIONS(1484), - [anon_sym___thiscall] = ACTIONS(1484), - [anon_sym___vectorcall] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_signed] = ACTIONS(1484), - [anon_sym_unsigned] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_auto] = ACTIONS(1484), - [anon_sym_register] = ACTIONS(1484), - [anon_sym_inline] = ACTIONS(1484), - [anon_sym___inline] = ACTIONS(1484), - [anon_sym___inline__] = ACTIONS(1484), - [anon_sym___forceinline] = ACTIONS(1484), - [anon_sym_thread_local] = ACTIONS(1484), - [anon_sym___thread] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_constexpr] = ACTIONS(1484), - [anon_sym_volatile] = ACTIONS(1484), - [anon_sym_restrict] = ACTIONS(1484), - [anon_sym___restrict__] = ACTIONS(1484), - [anon_sym__Atomic] = ACTIONS(1484), - [anon_sym__Noreturn] = ACTIONS(1484), - [anon_sym_noreturn] = ACTIONS(1484), - [anon_sym_alignas] = ACTIONS(1484), - [anon_sym__Alignas] = ACTIONS(1484), - [sym_primitive_type] = ACTIONS(1484), - [anon_sym_enum] = ACTIONS(1484), - [anon_sym_struct] = ACTIONS(1484), - [anon_sym_union] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_goto] = ACTIONS(1484), - [anon_sym___try] = ACTIONS(1484), - [anon_sym___leave] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1484), - [anon_sym___alignof__] = ACTIONS(1484), - [anon_sym___alignof] = ACTIONS(1484), - [anon_sym__alignof] = ACTIONS(1484), - [anon_sym_alignof] = ACTIONS(1484), - [anon_sym__Alignof] = ACTIONS(1484), - [anon_sym_offsetof] = ACTIONS(1484), - [anon_sym__Generic] = ACTIONS(1484), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym___asm__] = ACTIONS(1484), - [sym_number_literal] = ACTIONS(1486), - [anon_sym_L_SQUOTE] = ACTIONS(1486), - [anon_sym_u_SQUOTE] = ACTIONS(1486), - [anon_sym_U_SQUOTE] = ACTIONS(1486), - [anon_sym_u8_SQUOTE] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_L_DQUOTE] = ACTIONS(1486), - [anon_sym_u_DQUOTE] = ACTIONS(1486), - [anon_sym_U_DQUOTE] = ACTIONS(1486), - [anon_sym_u8_DQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym_true] = ACTIONS(1484), - [sym_false] = ACTIONS(1484), - [anon_sym_NULL] = ACTIONS(1484), - [anon_sym_nullptr] = ACTIONS(1484), + [281] = { + [sym_identifier] = ACTIONS(1374), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1374), + [aux_sym_preproc_def_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), + [sym_preproc_directive] = ACTIONS(1374), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym___extension__] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym___attribute__] = ACTIONS(1374), + [anon_sym___scanf] = ACTIONS(1374), + [anon_sym___printf] = ACTIONS(1374), + [anon_sym___read_mostly] = ACTIONS(1374), + [anon_sym___must_hold] = ACTIONS(1374), + [anon_sym___ro_after_init] = ACTIONS(1374), + [anon_sym___noreturn] = ACTIONS(1374), + [anon_sym___cold] = ACTIONS(1374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym___declspec] = ACTIONS(1374), + [anon_sym___init] = ACTIONS(1374), + [anon_sym___exit] = ACTIONS(1374), + [anon_sym___cdecl] = ACTIONS(1374), + [anon_sym___clrcall] = ACTIONS(1374), + [anon_sym___stdcall] = ACTIONS(1374), + [anon_sym___fastcall] = ACTIONS(1374), + [anon_sym___thiscall] = ACTIONS(1374), + [anon_sym___vectorcall] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_constexpr] = ACTIONS(1374), + [anon_sym_volatile] = ACTIONS(1374), + [anon_sym_restrict] = ACTIONS(1374), + [anon_sym___restrict__] = ACTIONS(1374), + [anon_sym__Atomic] = ACTIONS(1374), + [anon_sym__Noreturn] = ACTIONS(1374), + [anon_sym_noreturn] = ACTIONS(1374), + [anon_sym_alignas] = ACTIONS(1374), + [anon_sym__Alignas] = ACTIONS(1374), + [sym_primitive_type] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_switch] = ACTIONS(1374), + [anon_sym_case] = ACTIONS(1374), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_goto] = ACTIONS(1374), + [anon_sym___try] = ACTIONS(1374), + [anon_sym___leave] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = ACTIONS(1374), + [anon_sym_offsetof] = ACTIONS(1374), + [anon_sym__Generic] = ACTIONS(1374), + [anon_sym_asm] = ACTIONS(1374), + [anon_sym___asm__] = ACTIONS(1374), + [sym_number_literal] = ACTIONS(1376), + [anon_sym_L_SQUOTE] = ACTIONS(1376), + [anon_sym_u_SQUOTE] = ACTIONS(1376), + [anon_sym_U_SQUOTE] = ACTIONS(1376), + [anon_sym_u8_SQUOTE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_L_DQUOTE] = ACTIONS(1376), + [anon_sym_u_DQUOTE] = ACTIONS(1376), + [anon_sym_U_DQUOTE] = ACTIONS(1376), + [anon_sym_u8_DQUOTE] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [anon_sym_NULL] = ACTIONS(1374), + [anon_sym_nullptr] = ACTIONS(1374), [sym_comment] = ACTIONS(5), }, - [350] = { - [sym_identifier] = ACTIONS(1382), + [282] = { + [sym_identifier] = ACTIONS(1346), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token2] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym___extension__] = ACTIONS(1382), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym___scanf] = ACTIONS(1382), - [anon_sym___printf] = ACTIONS(1382), - [anon_sym___read_mostly] = ACTIONS(1382), - [anon_sym___must_hold] = ACTIONS(1382), - [anon_sym___ro_after_init] = ACTIONS(1382), - [anon_sym___noreturn] = ACTIONS(1382), - [anon_sym___cold] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___init] = ACTIONS(1382), - [anon_sym___exit] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym___inline] = ACTIONS(1382), - [anon_sym___inline__] = ACTIONS(1382), - [anon_sym___forceinline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym___thread] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_constexpr] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1382), - [anon_sym_restrict] = ACTIONS(1382), - [anon_sym___restrict__] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1382), - [anon_sym__Noreturn] = ACTIONS(1382), - [anon_sym_noreturn] = ACTIONS(1382), - [anon_sym_alignas] = ACTIONS(1382), - [anon_sym__Alignas] = ACTIONS(1382), - [sym_primitive_type] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1382), - [anon_sym___try] = ACTIONS(1382), - [anon_sym___leave] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym___alignof__] = ACTIONS(1382), - [anon_sym___alignof] = ACTIONS(1382), - [anon_sym__alignof] = ACTIONS(1382), - [anon_sym_alignof] = ACTIONS(1382), - [anon_sym__Alignof] = ACTIONS(1382), - [anon_sym_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym___asm__] = ACTIONS(1382), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_L_SQUOTE] = ACTIONS(1384), - [anon_sym_u_SQUOTE] = ACTIONS(1384), - [anon_sym_U_SQUOTE] = ACTIONS(1384), - [anon_sym_u8_SQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_L_DQUOTE] = ACTIONS(1384), - [anon_sym_u_DQUOTE] = ACTIONS(1384), - [anon_sym_U_DQUOTE] = ACTIONS(1384), - [anon_sym_u8_DQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [anon_sym_NULL] = ACTIONS(1382), - [anon_sym_nullptr] = ACTIONS(1382), + [aux_sym_preproc_include_token1] = ACTIONS(1346), + [aux_sym_preproc_def_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym___scanf] = ACTIONS(1346), + [anon_sym___printf] = ACTIONS(1346), + [anon_sym___read_mostly] = ACTIONS(1346), + [anon_sym___must_hold] = ACTIONS(1346), + [anon_sym___ro_after_init] = ACTIONS(1346), + [anon_sym___noreturn] = ACTIONS(1346), + [anon_sym___cold] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym___init] = ACTIONS(1346), + [anon_sym___exit] = ACTIONS(1346), + [anon_sym___cdecl] = ACTIONS(1346), + [anon_sym___clrcall] = ACTIONS(1346), + [anon_sym___stdcall] = ACTIONS(1346), + [anon_sym___fastcall] = ACTIONS(1346), + [anon_sym___thiscall] = ACTIONS(1346), + [anon_sym___vectorcall] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [anon_sym_alignas] = ACTIONS(1346), + [anon_sym__Alignas] = ACTIONS(1346), + [sym_primitive_type] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_else] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym___try] = ACTIONS(1346), + [anon_sym___leave] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), [sym_comment] = ACTIONS(5), }, - [351] = { + [283] = { + [sym_identifier] = ACTIONS(1350), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym___scanf] = ACTIONS(1350), + [anon_sym___printf] = ACTIONS(1350), + [anon_sym___read_mostly] = ACTIONS(1350), + [anon_sym___must_hold] = ACTIONS(1350), + [anon_sym___ro_after_init] = ACTIONS(1350), + [anon_sym___noreturn] = ACTIONS(1350), + [anon_sym___cold] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___init] = ACTIONS(1350), + [anon_sym___exit] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [anon_sym_alignas] = ACTIONS(1350), + [anon_sym__Alignas] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(5), + }, + [284] = { [sym_identifier] = ACTIONS(1354), [sym__linux_kernel_annotations] = ACTIONS(3), [aux_sym_preproc_include_token1] = ACTIONS(1354), [aux_sym_preproc_def_token1] = ACTIONS(1354), [aux_sym_preproc_if_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token2] = ACTIONS(1354), [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), [sym_preproc_directive] = ACTIONS(1354), @@ -60895,6 +53695,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1354), [anon_sym___vectorcall] = ACTIONS(1354), [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1356), [anon_sym_signed] = ACTIONS(1354), [anon_sym_unsigned] = ACTIONS(1354), [anon_sym_long] = ACTIONS(1354), @@ -60923,6 +53724,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1354), [anon_sym_union] = ACTIONS(1354), [anon_sym_if] = ACTIONS(1354), + [anon_sym_else] = ACTIONS(1354), [anon_sym_switch] = ACTIONS(1354), [anon_sym_case] = ACTIONS(1354), [anon_sym_default] = ACTIONS(1354), @@ -60964,8728 +53766,14145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1354), [sym_comment] = ACTIONS(5), }, - [352] = { - [sym_identifier] = ACTIONS(1452), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1452), - [aux_sym_preproc_def_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token2] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), - [sym_preproc_directive] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym___extension__] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym___attribute__] = ACTIONS(1452), - [anon_sym___scanf] = ACTIONS(1452), - [anon_sym___printf] = ACTIONS(1452), - [anon_sym___read_mostly] = ACTIONS(1452), - [anon_sym___must_hold] = ACTIONS(1452), - [anon_sym___ro_after_init] = ACTIONS(1452), - [anon_sym___noreturn] = ACTIONS(1452), - [anon_sym___cold] = ACTIONS(1452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym___declspec] = ACTIONS(1452), - [anon_sym___init] = ACTIONS(1452), - [anon_sym___exit] = ACTIONS(1452), - [anon_sym___cdecl] = ACTIONS(1452), - [anon_sym___clrcall] = ACTIONS(1452), - [anon_sym___stdcall] = ACTIONS(1452), - [anon_sym___fastcall] = ACTIONS(1452), - [anon_sym___thiscall] = ACTIONS(1452), - [anon_sym___vectorcall] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_signed] = ACTIONS(1452), - [anon_sym_unsigned] = ACTIONS(1452), - [anon_sym_long] = ACTIONS(1452), - [anon_sym_short] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_auto] = ACTIONS(1452), - [anon_sym_register] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym___inline] = ACTIONS(1452), - [anon_sym___inline__] = ACTIONS(1452), - [anon_sym___forceinline] = ACTIONS(1452), - [anon_sym_thread_local] = ACTIONS(1452), - [anon_sym___thread] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_constexpr] = ACTIONS(1452), - [anon_sym_volatile] = ACTIONS(1452), - [anon_sym_restrict] = ACTIONS(1452), - [anon_sym___restrict__] = ACTIONS(1452), - [anon_sym__Atomic] = ACTIONS(1452), - [anon_sym__Noreturn] = ACTIONS(1452), - [anon_sym_noreturn] = ACTIONS(1452), - [anon_sym_alignas] = ACTIONS(1452), - [anon_sym__Alignas] = ACTIONS(1452), - [sym_primitive_type] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_case] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_goto] = ACTIONS(1452), - [anon_sym___try] = ACTIONS(1452), - [anon_sym___leave] = ACTIONS(1452), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_sizeof] = ACTIONS(1452), - [anon_sym___alignof__] = ACTIONS(1452), - [anon_sym___alignof] = ACTIONS(1452), - [anon_sym__alignof] = ACTIONS(1452), - [anon_sym_alignof] = ACTIONS(1452), - [anon_sym__Alignof] = ACTIONS(1452), - [anon_sym_offsetof] = ACTIONS(1452), - [anon_sym__Generic] = ACTIONS(1452), - [anon_sym_asm] = ACTIONS(1452), - [anon_sym___asm__] = ACTIONS(1452), - [sym_number_literal] = ACTIONS(1454), - [anon_sym_L_SQUOTE] = ACTIONS(1454), - [anon_sym_u_SQUOTE] = ACTIONS(1454), - [anon_sym_U_SQUOTE] = ACTIONS(1454), - [anon_sym_u8_SQUOTE] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_L_DQUOTE] = ACTIONS(1454), - [anon_sym_u_DQUOTE] = ACTIONS(1454), - [anon_sym_U_DQUOTE] = ACTIONS(1454), - [anon_sym_u8_DQUOTE] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym_true] = ACTIONS(1452), - [sym_false] = ACTIONS(1452), - [anon_sym_NULL] = ACTIONS(1452), - [anon_sym_nullptr] = ACTIONS(1452), - [sym_comment] = ACTIONS(5), - }, - [353] = { - [sym_identifier] = ACTIONS(1400), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1400), - [aux_sym_preproc_def_token1] = ACTIONS(1400), - [aux_sym_preproc_if_token1] = ACTIONS(1400), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1400), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1400), - [sym_preproc_directive] = ACTIONS(1400), - [anon_sym_LPAREN2] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1402), - [anon_sym___extension__] = ACTIONS(1400), - [anon_sym_typedef] = ACTIONS(1400), - [anon_sym_extern] = ACTIONS(1400), - [anon_sym___attribute__] = ACTIONS(1400), - [anon_sym___scanf] = ACTIONS(1400), - [anon_sym___printf] = ACTIONS(1400), - [anon_sym___read_mostly] = ACTIONS(1400), - [anon_sym___must_hold] = ACTIONS(1400), - [anon_sym___ro_after_init] = ACTIONS(1400), - [anon_sym___noreturn] = ACTIONS(1400), - [anon_sym___cold] = ACTIONS(1400), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1402), - [anon_sym___declspec] = ACTIONS(1400), - [anon_sym___init] = ACTIONS(1400), - [anon_sym___exit] = ACTIONS(1400), - [anon_sym___cdecl] = ACTIONS(1400), - [anon_sym___clrcall] = ACTIONS(1400), - [anon_sym___stdcall] = ACTIONS(1400), - [anon_sym___fastcall] = ACTIONS(1400), - [anon_sym___thiscall] = ACTIONS(1400), - [anon_sym___vectorcall] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_RBRACE] = ACTIONS(1402), - [anon_sym_signed] = ACTIONS(1400), - [anon_sym_unsigned] = ACTIONS(1400), - [anon_sym_long] = ACTIONS(1400), - [anon_sym_short] = ACTIONS(1400), - [anon_sym_static] = ACTIONS(1400), - [anon_sym_auto] = ACTIONS(1400), - [anon_sym_register] = ACTIONS(1400), - [anon_sym_inline] = ACTIONS(1400), - [anon_sym___inline] = ACTIONS(1400), - [anon_sym___inline__] = ACTIONS(1400), - [anon_sym___forceinline] = ACTIONS(1400), - [anon_sym_thread_local] = ACTIONS(1400), - [anon_sym___thread] = ACTIONS(1400), - [anon_sym_const] = ACTIONS(1400), - [anon_sym_constexpr] = ACTIONS(1400), - [anon_sym_volatile] = ACTIONS(1400), - [anon_sym_restrict] = ACTIONS(1400), - [anon_sym___restrict__] = ACTIONS(1400), - [anon_sym__Atomic] = ACTIONS(1400), - [anon_sym__Noreturn] = ACTIONS(1400), - [anon_sym_noreturn] = ACTIONS(1400), - [anon_sym_alignas] = ACTIONS(1400), - [anon_sym__Alignas] = ACTIONS(1400), - [sym_primitive_type] = ACTIONS(1400), - [anon_sym_enum] = ACTIONS(1400), - [anon_sym_struct] = ACTIONS(1400), - [anon_sym_union] = ACTIONS(1400), - [anon_sym_if] = ACTIONS(1400), - [anon_sym_switch] = ACTIONS(1400), - [anon_sym_case] = ACTIONS(1400), - [anon_sym_default] = ACTIONS(1400), - [anon_sym_while] = ACTIONS(1400), - [anon_sym_do] = ACTIONS(1400), - [anon_sym_for] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(1400), - [anon_sym_break] = ACTIONS(1400), - [anon_sym_continue] = ACTIONS(1400), - [anon_sym_goto] = ACTIONS(1400), - [anon_sym___try] = ACTIONS(1400), - [anon_sym___leave] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1402), - [anon_sym_PLUS_PLUS] = ACTIONS(1402), - [anon_sym_sizeof] = ACTIONS(1400), - [anon_sym___alignof__] = ACTIONS(1400), - [anon_sym___alignof] = ACTIONS(1400), - [anon_sym__alignof] = ACTIONS(1400), - [anon_sym_alignof] = ACTIONS(1400), - [anon_sym__Alignof] = ACTIONS(1400), - [anon_sym_offsetof] = ACTIONS(1400), - [anon_sym__Generic] = ACTIONS(1400), - [anon_sym_asm] = ACTIONS(1400), - [anon_sym___asm__] = ACTIONS(1400), - [sym_number_literal] = ACTIONS(1402), - [anon_sym_L_SQUOTE] = ACTIONS(1402), - [anon_sym_u_SQUOTE] = ACTIONS(1402), - [anon_sym_U_SQUOTE] = ACTIONS(1402), - [anon_sym_u8_SQUOTE] = ACTIONS(1402), - [anon_sym_SQUOTE] = ACTIONS(1402), - [anon_sym_L_DQUOTE] = ACTIONS(1402), - [anon_sym_u_DQUOTE] = ACTIONS(1402), - [anon_sym_U_DQUOTE] = ACTIONS(1402), - [anon_sym_u8_DQUOTE] = ACTIONS(1402), - [anon_sym_DQUOTE] = ACTIONS(1402), - [sym_true] = ACTIONS(1400), - [sym_false] = ACTIONS(1400), - [anon_sym_NULL] = ACTIONS(1400), - [anon_sym_nullptr] = ACTIONS(1400), - [sym_comment] = ACTIONS(5), - }, - [354] = { - [sym_identifier] = ACTIONS(1440), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1440), - [aux_sym_preproc_def_token1] = ACTIONS(1440), - [aux_sym_preproc_if_token1] = ACTIONS(1440), - [aux_sym_preproc_if_token2] = ACTIONS(1440), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), - [sym_preproc_directive] = ACTIONS(1440), - [anon_sym_LPAREN2] = ACTIONS(1442), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym___extension__] = ACTIONS(1440), - [anon_sym_typedef] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym___attribute__] = ACTIONS(1440), - [anon_sym___scanf] = ACTIONS(1440), - [anon_sym___printf] = ACTIONS(1440), - [anon_sym___read_mostly] = ACTIONS(1440), - [anon_sym___must_hold] = ACTIONS(1440), - [anon_sym___ro_after_init] = ACTIONS(1440), - [anon_sym___noreturn] = ACTIONS(1440), - [anon_sym___cold] = ACTIONS(1440), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), - [anon_sym___declspec] = ACTIONS(1440), - [anon_sym___init] = ACTIONS(1440), - [anon_sym___exit] = ACTIONS(1440), - [anon_sym___cdecl] = ACTIONS(1440), - [anon_sym___clrcall] = ACTIONS(1440), - [anon_sym___stdcall] = ACTIONS(1440), - [anon_sym___fastcall] = ACTIONS(1440), - [anon_sym___thiscall] = ACTIONS(1440), - [anon_sym___vectorcall] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1442), - [anon_sym_signed] = ACTIONS(1440), - [anon_sym_unsigned] = ACTIONS(1440), - [anon_sym_long] = ACTIONS(1440), - [anon_sym_short] = ACTIONS(1440), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_auto] = ACTIONS(1440), - [anon_sym_register] = ACTIONS(1440), - [anon_sym_inline] = ACTIONS(1440), - [anon_sym___inline] = ACTIONS(1440), - [anon_sym___inline__] = ACTIONS(1440), - [anon_sym___forceinline] = ACTIONS(1440), - [anon_sym_thread_local] = ACTIONS(1440), - [anon_sym___thread] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_constexpr] = ACTIONS(1440), - [anon_sym_volatile] = ACTIONS(1440), - [anon_sym_restrict] = ACTIONS(1440), - [anon_sym___restrict__] = ACTIONS(1440), - [anon_sym__Atomic] = ACTIONS(1440), - [anon_sym__Noreturn] = ACTIONS(1440), - [anon_sym_noreturn] = ACTIONS(1440), - [anon_sym_alignas] = ACTIONS(1440), - [anon_sym__Alignas] = ACTIONS(1440), - [sym_primitive_type] = ACTIONS(1440), - [anon_sym_enum] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_union] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1440), - [anon_sym_case] = ACTIONS(1440), - [anon_sym_default] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_goto] = ACTIONS(1440), - [anon_sym___try] = ACTIONS(1440), - [anon_sym___leave] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_sizeof] = ACTIONS(1440), - [anon_sym___alignof__] = ACTIONS(1440), - [anon_sym___alignof] = ACTIONS(1440), - [anon_sym__alignof] = ACTIONS(1440), - [anon_sym_alignof] = ACTIONS(1440), - [anon_sym__Alignof] = ACTIONS(1440), - [anon_sym_offsetof] = ACTIONS(1440), - [anon_sym__Generic] = ACTIONS(1440), - [anon_sym_asm] = ACTIONS(1440), - [anon_sym___asm__] = ACTIONS(1440), - [sym_number_literal] = ACTIONS(1442), - [anon_sym_L_SQUOTE] = ACTIONS(1442), - [anon_sym_u_SQUOTE] = ACTIONS(1442), - [anon_sym_U_SQUOTE] = ACTIONS(1442), - [anon_sym_u8_SQUOTE] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_L_DQUOTE] = ACTIONS(1442), - [anon_sym_u_DQUOTE] = ACTIONS(1442), - [anon_sym_U_DQUOTE] = ACTIONS(1442), - [anon_sym_u8_DQUOTE] = ACTIONS(1442), - [anon_sym_DQUOTE] = ACTIONS(1442), - [sym_true] = ACTIONS(1440), - [sym_false] = ACTIONS(1440), - [anon_sym_NULL] = ACTIONS(1440), - [anon_sym_nullptr] = ACTIONS(1440), - [sym_comment] = ACTIONS(5), - }, - [355] = { - [sym_identifier] = ACTIONS(1480), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1480), - [aux_sym_preproc_def_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token2] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), - [sym_preproc_directive] = ACTIONS(1480), - [anon_sym_LPAREN2] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym___extension__] = ACTIONS(1480), - [anon_sym_typedef] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1480), - [anon_sym___attribute__] = ACTIONS(1480), - [anon_sym___scanf] = ACTIONS(1480), - [anon_sym___printf] = ACTIONS(1480), - [anon_sym___read_mostly] = ACTIONS(1480), - [anon_sym___must_hold] = ACTIONS(1480), - [anon_sym___ro_after_init] = ACTIONS(1480), - [anon_sym___noreturn] = ACTIONS(1480), - [anon_sym___cold] = ACTIONS(1480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), - [anon_sym___declspec] = ACTIONS(1480), - [anon_sym___init] = ACTIONS(1480), - [anon_sym___exit] = ACTIONS(1480), - [anon_sym___cdecl] = ACTIONS(1480), - [anon_sym___clrcall] = ACTIONS(1480), - [anon_sym___stdcall] = ACTIONS(1480), - [anon_sym___fastcall] = ACTIONS(1480), - [anon_sym___thiscall] = ACTIONS(1480), - [anon_sym___vectorcall] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_signed] = ACTIONS(1480), - [anon_sym_unsigned] = ACTIONS(1480), - [anon_sym_long] = ACTIONS(1480), - [anon_sym_short] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_auto] = ACTIONS(1480), - [anon_sym_register] = ACTIONS(1480), - [anon_sym_inline] = ACTIONS(1480), - [anon_sym___inline] = ACTIONS(1480), - [anon_sym___inline__] = ACTIONS(1480), - [anon_sym___forceinline] = ACTIONS(1480), - [anon_sym_thread_local] = ACTIONS(1480), - [anon_sym___thread] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_constexpr] = ACTIONS(1480), - [anon_sym_volatile] = ACTIONS(1480), - [anon_sym_restrict] = ACTIONS(1480), - [anon_sym___restrict__] = ACTIONS(1480), - [anon_sym__Atomic] = ACTIONS(1480), - [anon_sym__Noreturn] = ACTIONS(1480), - [anon_sym_noreturn] = ACTIONS(1480), - [anon_sym_alignas] = ACTIONS(1480), - [anon_sym__Alignas] = ACTIONS(1480), - [sym_primitive_type] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_struct] = ACTIONS(1480), - [anon_sym_union] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_do] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_goto] = ACTIONS(1480), - [anon_sym___try] = ACTIONS(1480), - [anon_sym___leave] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1480), - [anon_sym___alignof__] = ACTIONS(1480), - [anon_sym___alignof] = ACTIONS(1480), - [anon_sym__alignof] = ACTIONS(1480), - [anon_sym_alignof] = ACTIONS(1480), - [anon_sym__Alignof] = ACTIONS(1480), - [anon_sym_offsetof] = ACTIONS(1480), - [anon_sym__Generic] = ACTIONS(1480), - [anon_sym_asm] = ACTIONS(1480), - [anon_sym___asm__] = ACTIONS(1480), - [sym_number_literal] = ACTIONS(1482), - [anon_sym_L_SQUOTE] = ACTIONS(1482), - [anon_sym_u_SQUOTE] = ACTIONS(1482), - [anon_sym_U_SQUOTE] = ACTIONS(1482), - [anon_sym_u8_SQUOTE] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_L_DQUOTE] = ACTIONS(1482), - [anon_sym_u_DQUOTE] = ACTIONS(1482), - [anon_sym_U_DQUOTE] = ACTIONS(1482), - [anon_sym_u8_DQUOTE] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym_true] = ACTIONS(1480), - [sym_false] = ACTIONS(1480), - [anon_sym_NULL] = ACTIONS(1480), - [anon_sym_nullptr] = ACTIONS(1480), - [sym_comment] = ACTIONS(5), - }, - [356] = { - [sym_identifier] = ACTIONS(1396), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1396), - [aux_sym_preproc_def_token1] = ACTIONS(1396), - [aux_sym_preproc_if_token1] = ACTIONS(1396), - [aux_sym_preproc_if_token2] = ACTIONS(1396), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1396), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1396), - [sym_preproc_directive] = ACTIONS(1396), - [anon_sym_LPAREN2] = ACTIONS(1398), - [anon_sym_BANG] = ACTIONS(1398), - [anon_sym_TILDE] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1398), - [anon_sym___extension__] = ACTIONS(1396), - [anon_sym_typedef] = ACTIONS(1396), - [anon_sym_extern] = ACTIONS(1396), - [anon_sym___attribute__] = ACTIONS(1396), - [anon_sym___scanf] = ACTIONS(1396), - [anon_sym___printf] = ACTIONS(1396), - [anon_sym___read_mostly] = ACTIONS(1396), - [anon_sym___must_hold] = ACTIONS(1396), - [anon_sym___ro_after_init] = ACTIONS(1396), - [anon_sym___noreturn] = ACTIONS(1396), - [anon_sym___cold] = ACTIONS(1396), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1398), - [anon_sym___declspec] = ACTIONS(1396), - [anon_sym___init] = ACTIONS(1396), - [anon_sym___exit] = ACTIONS(1396), - [anon_sym___cdecl] = ACTIONS(1396), - [anon_sym___clrcall] = ACTIONS(1396), - [anon_sym___stdcall] = ACTIONS(1396), - [anon_sym___fastcall] = ACTIONS(1396), - [anon_sym___thiscall] = ACTIONS(1396), - [anon_sym___vectorcall] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_signed] = ACTIONS(1396), - [anon_sym_unsigned] = ACTIONS(1396), - [anon_sym_long] = ACTIONS(1396), - [anon_sym_short] = ACTIONS(1396), - [anon_sym_static] = ACTIONS(1396), - [anon_sym_auto] = ACTIONS(1396), - [anon_sym_register] = ACTIONS(1396), - [anon_sym_inline] = ACTIONS(1396), - [anon_sym___inline] = ACTIONS(1396), - [anon_sym___inline__] = ACTIONS(1396), - [anon_sym___forceinline] = ACTIONS(1396), - [anon_sym_thread_local] = ACTIONS(1396), - [anon_sym___thread] = ACTIONS(1396), - [anon_sym_const] = ACTIONS(1396), - [anon_sym_constexpr] = ACTIONS(1396), - [anon_sym_volatile] = ACTIONS(1396), - [anon_sym_restrict] = ACTIONS(1396), - [anon_sym___restrict__] = ACTIONS(1396), - [anon_sym__Atomic] = ACTIONS(1396), - [anon_sym__Noreturn] = ACTIONS(1396), - [anon_sym_noreturn] = ACTIONS(1396), - [anon_sym_alignas] = ACTIONS(1396), - [anon_sym__Alignas] = ACTIONS(1396), - [sym_primitive_type] = ACTIONS(1396), - [anon_sym_enum] = ACTIONS(1396), - [anon_sym_struct] = ACTIONS(1396), - [anon_sym_union] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1396), - [anon_sym_switch] = ACTIONS(1396), - [anon_sym_case] = ACTIONS(1396), - [anon_sym_default] = ACTIONS(1396), - [anon_sym_while] = ACTIONS(1396), - [anon_sym_do] = ACTIONS(1396), - [anon_sym_for] = ACTIONS(1396), - [anon_sym_return] = ACTIONS(1396), - [anon_sym_break] = ACTIONS(1396), - [anon_sym_continue] = ACTIONS(1396), - [anon_sym_goto] = ACTIONS(1396), - [anon_sym___try] = ACTIONS(1396), - [anon_sym___leave] = ACTIONS(1396), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_sizeof] = ACTIONS(1396), - [anon_sym___alignof__] = ACTIONS(1396), - [anon_sym___alignof] = ACTIONS(1396), - [anon_sym__alignof] = ACTIONS(1396), - [anon_sym_alignof] = ACTIONS(1396), - [anon_sym__Alignof] = ACTIONS(1396), - [anon_sym_offsetof] = ACTIONS(1396), - [anon_sym__Generic] = ACTIONS(1396), - [anon_sym_asm] = ACTIONS(1396), - [anon_sym___asm__] = ACTIONS(1396), - [sym_number_literal] = ACTIONS(1398), - [anon_sym_L_SQUOTE] = ACTIONS(1398), - [anon_sym_u_SQUOTE] = ACTIONS(1398), - [anon_sym_U_SQUOTE] = ACTIONS(1398), - [anon_sym_u8_SQUOTE] = ACTIONS(1398), - [anon_sym_SQUOTE] = ACTIONS(1398), - [anon_sym_L_DQUOTE] = ACTIONS(1398), - [anon_sym_u_DQUOTE] = ACTIONS(1398), - [anon_sym_U_DQUOTE] = ACTIONS(1398), - [anon_sym_u8_DQUOTE] = ACTIONS(1398), - [anon_sym_DQUOTE] = ACTIONS(1398), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [anon_sym_NULL] = ACTIONS(1396), - [anon_sym_nullptr] = ACTIONS(1396), + [285] = { + [sym_identifier] = ACTIONS(1246), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1246), + [aux_sym_preproc_def_token1] = ACTIONS(1246), + [aux_sym_preproc_if_token1] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1246), + [sym_preproc_directive] = ACTIONS(1246), + [anon_sym_LPAREN2] = ACTIONS(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_TILDE] = ACTIONS(1248), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_PLUS] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1248), + [anon_sym___extension__] = ACTIONS(1246), + [anon_sym_typedef] = ACTIONS(1246), + [anon_sym_extern] = ACTIONS(1246), + [anon_sym___attribute__] = ACTIONS(1246), + [anon_sym___scanf] = ACTIONS(1246), + [anon_sym___printf] = ACTIONS(1246), + [anon_sym___read_mostly] = ACTIONS(1246), + [anon_sym___must_hold] = ACTIONS(1246), + [anon_sym___ro_after_init] = ACTIONS(1246), + [anon_sym___noreturn] = ACTIONS(1246), + [anon_sym___cold] = ACTIONS(1246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1248), + [anon_sym___declspec] = ACTIONS(1246), + [anon_sym___init] = ACTIONS(1246), + [anon_sym___exit] = ACTIONS(1246), + [anon_sym___cdecl] = ACTIONS(1246), + [anon_sym___clrcall] = ACTIONS(1246), + [anon_sym___stdcall] = ACTIONS(1246), + [anon_sym___fastcall] = ACTIONS(1246), + [anon_sym___thiscall] = ACTIONS(1246), + [anon_sym___vectorcall] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_RBRACE] = ACTIONS(1248), + [anon_sym_signed] = ACTIONS(1246), + [anon_sym_unsigned] = ACTIONS(1246), + [anon_sym_long] = ACTIONS(1246), + [anon_sym_short] = ACTIONS(1246), + [anon_sym_static] = ACTIONS(1246), + [anon_sym_auto] = ACTIONS(1246), + [anon_sym_register] = ACTIONS(1246), + [anon_sym_inline] = ACTIONS(1246), + [anon_sym___inline] = ACTIONS(1246), + [anon_sym___inline__] = ACTIONS(1246), + [anon_sym___forceinline] = ACTIONS(1246), + [anon_sym_thread_local] = ACTIONS(1246), + [anon_sym___thread] = ACTIONS(1246), + [anon_sym_const] = ACTIONS(1246), + [anon_sym_constexpr] = ACTIONS(1246), + [anon_sym_volatile] = ACTIONS(1246), + [anon_sym_restrict] = ACTIONS(1246), + [anon_sym___restrict__] = ACTIONS(1246), + [anon_sym__Atomic] = ACTIONS(1246), + [anon_sym__Noreturn] = ACTIONS(1246), + [anon_sym_noreturn] = ACTIONS(1246), + [anon_sym_alignas] = ACTIONS(1246), + [anon_sym__Alignas] = ACTIONS(1246), + [sym_primitive_type] = ACTIONS(1246), + [anon_sym_enum] = ACTIONS(1246), + [anon_sym_struct] = ACTIONS(1246), + [anon_sym_union] = ACTIONS(1246), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_else] = ACTIONS(1246), + [anon_sym_switch] = ACTIONS(1246), + [anon_sym_case] = ACTIONS(1246), + [anon_sym_default] = ACTIONS(1246), + [anon_sym_while] = ACTIONS(1246), + [anon_sym_do] = ACTIONS(1246), + [anon_sym_for] = ACTIONS(1246), + [anon_sym_return] = ACTIONS(1246), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1246), + [anon_sym_goto] = ACTIONS(1246), + [anon_sym___try] = ACTIONS(1246), + [anon_sym___leave] = ACTIONS(1246), + [anon_sym_DASH_DASH] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_sizeof] = ACTIONS(1246), + [anon_sym___alignof__] = ACTIONS(1246), + [anon_sym___alignof] = ACTIONS(1246), + [anon_sym__alignof] = ACTIONS(1246), + [anon_sym_alignof] = ACTIONS(1246), + [anon_sym__Alignof] = ACTIONS(1246), + [anon_sym_offsetof] = ACTIONS(1246), + [anon_sym__Generic] = ACTIONS(1246), + [anon_sym_asm] = ACTIONS(1246), + [anon_sym___asm__] = ACTIONS(1246), + [sym_number_literal] = ACTIONS(1248), + [anon_sym_L_SQUOTE] = ACTIONS(1248), + [anon_sym_u_SQUOTE] = ACTIONS(1248), + [anon_sym_U_SQUOTE] = ACTIONS(1248), + [anon_sym_u8_SQUOTE] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1248), + [anon_sym_L_DQUOTE] = ACTIONS(1248), + [anon_sym_u_DQUOTE] = ACTIONS(1248), + [anon_sym_U_DQUOTE] = ACTIONS(1248), + [anon_sym_u8_DQUOTE] = ACTIONS(1248), + [anon_sym_DQUOTE] = ACTIONS(1248), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), + [anon_sym_NULL] = ACTIONS(1246), + [anon_sym_nullptr] = ACTIONS(1246), [sym_comment] = ACTIONS(5), }, - [357] = { - [sym_identifier] = ACTIONS(1452), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1452), - [aux_sym_preproc_def_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token2] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), - [sym_preproc_directive] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym___extension__] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym___attribute__] = ACTIONS(1452), - [anon_sym___scanf] = ACTIONS(1452), - [anon_sym___printf] = ACTIONS(1452), - [anon_sym___read_mostly] = ACTIONS(1452), - [anon_sym___must_hold] = ACTIONS(1452), - [anon_sym___ro_after_init] = ACTIONS(1452), - [anon_sym___noreturn] = ACTIONS(1452), - [anon_sym___cold] = ACTIONS(1452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym___declspec] = ACTIONS(1452), - [anon_sym___init] = ACTIONS(1452), - [anon_sym___exit] = ACTIONS(1452), - [anon_sym___cdecl] = ACTIONS(1452), - [anon_sym___clrcall] = ACTIONS(1452), - [anon_sym___stdcall] = ACTIONS(1452), - [anon_sym___fastcall] = ACTIONS(1452), - [anon_sym___thiscall] = ACTIONS(1452), - [anon_sym___vectorcall] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_signed] = ACTIONS(1452), - [anon_sym_unsigned] = ACTIONS(1452), - [anon_sym_long] = ACTIONS(1452), - [anon_sym_short] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_auto] = ACTIONS(1452), - [anon_sym_register] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym___inline] = ACTIONS(1452), - [anon_sym___inline__] = ACTIONS(1452), - [anon_sym___forceinline] = ACTIONS(1452), - [anon_sym_thread_local] = ACTIONS(1452), - [anon_sym___thread] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_constexpr] = ACTIONS(1452), - [anon_sym_volatile] = ACTIONS(1452), - [anon_sym_restrict] = ACTIONS(1452), - [anon_sym___restrict__] = ACTIONS(1452), - [anon_sym__Atomic] = ACTIONS(1452), - [anon_sym__Noreturn] = ACTIONS(1452), - [anon_sym_noreturn] = ACTIONS(1452), - [anon_sym_alignas] = ACTIONS(1452), - [anon_sym__Alignas] = ACTIONS(1452), - [sym_primitive_type] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_case] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_goto] = ACTIONS(1452), - [anon_sym___try] = ACTIONS(1452), - [anon_sym___leave] = ACTIONS(1452), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_sizeof] = ACTIONS(1452), - [anon_sym___alignof__] = ACTIONS(1452), - [anon_sym___alignof] = ACTIONS(1452), - [anon_sym__alignof] = ACTIONS(1452), - [anon_sym_alignof] = ACTIONS(1452), - [anon_sym__Alignof] = ACTIONS(1452), - [anon_sym_offsetof] = ACTIONS(1452), - [anon_sym__Generic] = ACTIONS(1452), - [anon_sym_asm] = ACTIONS(1452), - [anon_sym___asm__] = ACTIONS(1452), - [sym_number_literal] = ACTIONS(1454), - [anon_sym_L_SQUOTE] = ACTIONS(1454), - [anon_sym_u_SQUOTE] = ACTIONS(1454), - [anon_sym_U_SQUOTE] = ACTIONS(1454), - [anon_sym_u8_SQUOTE] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_L_DQUOTE] = ACTIONS(1454), - [anon_sym_u_DQUOTE] = ACTIONS(1454), - [anon_sym_U_DQUOTE] = ACTIONS(1454), - [anon_sym_u8_DQUOTE] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym_true] = ACTIONS(1452), - [sym_false] = ACTIONS(1452), - [anon_sym_NULL] = ACTIONS(1452), - [anon_sym_nullptr] = ACTIONS(1452), + [286] = { + [sym_identifier] = ACTIONS(1366), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1366), + [aux_sym_preproc_def_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), + [sym_preproc_directive] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym___scanf] = ACTIONS(1366), + [anon_sym___printf] = ACTIONS(1366), + [anon_sym___read_mostly] = ACTIONS(1366), + [anon_sym___must_hold] = ACTIONS(1366), + [anon_sym___ro_after_init] = ACTIONS(1366), + [anon_sym___noreturn] = ACTIONS(1366), + [anon_sym___cold] = ACTIONS(1366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), + [anon_sym___declspec] = ACTIONS(1366), + [anon_sym___init] = ACTIONS(1366), + [anon_sym___exit] = ACTIONS(1366), + [anon_sym___cdecl] = ACTIONS(1366), + [anon_sym___clrcall] = ACTIONS(1366), + [anon_sym___stdcall] = ACTIONS(1366), + [anon_sym___fastcall] = ACTIONS(1366), + [anon_sym___thiscall] = ACTIONS(1366), + [anon_sym___vectorcall] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1368), + [anon_sym_signed] = ACTIONS(1366), + [anon_sym_unsigned] = ACTIONS(1366), + [anon_sym_long] = ACTIONS(1366), + [anon_sym_short] = ACTIONS(1366), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_auto] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1366), + [anon_sym_inline] = ACTIONS(1366), + [anon_sym___inline] = ACTIONS(1366), + [anon_sym___inline__] = ACTIONS(1366), + [anon_sym___forceinline] = ACTIONS(1366), + [anon_sym_thread_local] = ACTIONS(1366), + [anon_sym___thread] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_constexpr] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1366), + [anon_sym_restrict] = ACTIONS(1366), + [anon_sym___restrict__] = ACTIONS(1366), + [anon_sym__Atomic] = ACTIONS(1366), + [anon_sym__Noreturn] = ACTIONS(1366), + [anon_sym_noreturn] = ACTIONS(1366), + [anon_sym_alignas] = ACTIONS(1366), + [anon_sym__Alignas] = ACTIONS(1366), + [sym_primitive_type] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_else] = ACTIONS(1366), + [anon_sym_switch] = ACTIONS(1366), + [anon_sym_case] = ACTIONS(1366), + [anon_sym_default] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_goto] = ACTIONS(1366), + [anon_sym___try] = ACTIONS(1366), + [anon_sym___leave] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_sizeof] = ACTIONS(1366), + [anon_sym___alignof__] = ACTIONS(1366), + [anon_sym___alignof] = ACTIONS(1366), + [anon_sym__alignof] = ACTIONS(1366), + [anon_sym_alignof] = ACTIONS(1366), + [anon_sym__Alignof] = ACTIONS(1366), + [anon_sym_offsetof] = ACTIONS(1366), + [anon_sym__Generic] = ACTIONS(1366), + [anon_sym_asm] = ACTIONS(1366), + [anon_sym___asm__] = ACTIONS(1366), + [sym_number_literal] = ACTIONS(1368), + [anon_sym_L_SQUOTE] = ACTIONS(1368), + [anon_sym_u_SQUOTE] = ACTIONS(1368), + [anon_sym_U_SQUOTE] = ACTIONS(1368), + [anon_sym_u8_SQUOTE] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_L_DQUOTE] = ACTIONS(1368), + [anon_sym_u_DQUOTE] = ACTIONS(1368), + [anon_sym_U_DQUOTE] = ACTIONS(1368), + [anon_sym_u8_DQUOTE] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [anon_sym_NULL] = ACTIONS(1366), + [anon_sym_nullptr] = ACTIONS(1366), [sym_comment] = ACTIONS(5), }, - [358] = { - [sym_identifier] = ACTIONS(1358), + [287] = { + [sym_identifier] = ACTIONS(1362), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1358), - [aux_sym_preproc_def_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token2] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), - [sym_preproc_directive] = ACTIONS(1358), - [anon_sym_LPAREN2] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym___extension__] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym___attribute__] = ACTIONS(1358), - [anon_sym___scanf] = ACTIONS(1358), - [anon_sym___printf] = ACTIONS(1358), - [anon_sym___read_mostly] = ACTIONS(1358), - [anon_sym___must_hold] = ACTIONS(1358), - [anon_sym___ro_after_init] = ACTIONS(1358), - [anon_sym___noreturn] = ACTIONS(1358), - [anon_sym___cold] = ACTIONS(1358), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), - [anon_sym___declspec] = ACTIONS(1358), - [anon_sym___init] = ACTIONS(1358), - [anon_sym___exit] = ACTIONS(1358), - [anon_sym___cdecl] = ACTIONS(1358), - [anon_sym___clrcall] = ACTIONS(1358), - [anon_sym___stdcall] = ACTIONS(1358), - [anon_sym___fastcall] = ACTIONS(1358), - [anon_sym___thiscall] = ACTIONS(1358), - [anon_sym___vectorcall] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1358), - [anon_sym_unsigned] = ACTIONS(1358), - [anon_sym_long] = ACTIONS(1358), - [anon_sym_short] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_auto] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_inline] = ACTIONS(1358), - [anon_sym___inline] = ACTIONS(1358), - [anon_sym___inline__] = ACTIONS(1358), - [anon_sym___forceinline] = ACTIONS(1358), - [anon_sym_thread_local] = ACTIONS(1358), - [anon_sym___thread] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_constexpr] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_restrict] = ACTIONS(1358), - [anon_sym___restrict__] = ACTIONS(1358), - [anon_sym__Atomic] = ACTIONS(1358), - [anon_sym__Noreturn] = ACTIONS(1358), - [anon_sym_noreturn] = ACTIONS(1358), - [anon_sym_alignas] = ACTIONS(1358), - [anon_sym__Alignas] = ACTIONS(1358), - [sym_primitive_type] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_goto] = ACTIONS(1358), - [anon_sym___try] = ACTIONS(1358), - [anon_sym___leave] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1358), - [anon_sym___alignof__] = ACTIONS(1358), - [anon_sym___alignof] = ACTIONS(1358), - [anon_sym__alignof] = ACTIONS(1358), - [anon_sym_alignof] = ACTIONS(1358), - [anon_sym__Alignof] = ACTIONS(1358), - [anon_sym_offsetof] = ACTIONS(1358), - [anon_sym__Generic] = ACTIONS(1358), - [anon_sym_asm] = ACTIONS(1358), - [anon_sym___asm__] = ACTIONS(1358), - [sym_number_literal] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1360), - [anon_sym_u_SQUOTE] = ACTIONS(1360), - [anon_sym_U_SQUOTE] = ACTIONS(1360), - [anon_sym_u8_SQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_L_DQUOTE] = ACTIONS(1360), - [anon_sym_u_DQUOTE] = ACTIONS(1360), - [anon_sym_U_DQUOTE] = ACTIONS(1360), - [anon_sym_u8_DQUOTE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [anon_sym_NULL] = ACTIONS(1358), - [anon_sym_nullptr] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - }, - [359] = { - [sym_identifier] = ACTIONS(1358), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1358), - [aux_sym_preproc_def_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), - [sym_preproc_directive] = ACTIONS(1358), - [anon_sym_LPAREN2] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym___extension__] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym___attribute__] = ACTIONS(1358), - [anon_sym___scanf] = ACTIONS(1358), - [anon_sym___printf] = ACTIONS(1358), - [anon_sym___read_mostly] = ACTIONS(1358), - [anon_sym___must_hold] = ACTIONS(1358), - [anon_sym___ro_after_init] = ACTIONS(1358), - [anon_sym___noreturn] = ACTIONS(1358), - [anon_sym___cold] = ACTIONS(1358), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), - [anon_sym___declspec] = ACTIONS(1358), - [anon_sym___init] = ACTIONS(1358), - [anon_sym___exit] = ACTIONS(1358), - [anon_sym___cdecl] = ACTIONS(1358), - [anon_sym___clrcall] = ACTIONS(1358), - [anon_sym___stdcall] = ACTIONS(1358), - [anon_sym___fastcall] = ACTIONS(1358), - [anon_sym___thiscall] = ACTIONS(1358), - [anon_sym___vectorcall] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_RBRACE] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1358), - [anon_sym_unsigned] = ACTIONS(1358), - [anon_sym_long] = ACTIONS(1358), - [anon_sym_short] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_auto] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_inline] = ACTIONS(1358), - [anon_sym___inline] = ACTIONS(1358), - [anon_sym___inline__] = ACTIONS(1358), - [anon_sym___forceinline] = ACTIONS(1358), - [anon_sym_thread_local] = ACTIONS(1358), - [anon_sym___thread] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_constexpr] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_restrict] = ACTIONS(1358), - [anon_sym___restrict__] = ACTIONS(1358), - [anon_sym__Atomic] = ACTIONS(1358), - [anon_sym__Noreturn] = ACTIONS(1358), - [anon_sym_noreturn] = ACTIONS(1358), - [anon_sym_alignas] = ACTIONS(1358), - [anon_sym__Alignas] = ACTIONS(1358), - [sym_primitive_type] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_goto] = ACTIONS(1358), - [anon_sym___try] = ACTIONS(1358), - [anon_sym___leave] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1358), - [anon_sym___alignof__] = ACTIONS(1358), - [anon_sym___alignof] = ACTIONS(1358), - [anon_sym__alignof] = ACTIONS(1358), - [anon_sym_alignof] = ACTIONS(1358), - [anon_sym__Alignof] = ACTIONS(1358), - [anon_sym_offsetof] = ACTIONS(1358), - [anon_sym__Generic] = ACTIONS(1358), - [anon_sym_asm] = ACTIONS(1358), - [anon_sym___asm__] = ACTIONS(1358), - [sym_number_literal] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1360), - [anon_sym_u_SQUOTE] = ACTIONS(1360), - [anon_sym_U_SQUOTE] = ACTIONS(1360), - [anon_sym_u8_SQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_L_DQUOTE] = ACTIONS(1360), - [anon_sym_u_DQUOTE] = ACTIONS(1360), - [anon_sym_U_DQUOTE] = ACTIONS(1360), - [anon_sym_u8_DQUOTE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [anon_sym_NULL] = ACTIONS(1358), - [anon_sym_nullptr] = ACTIONS(1358), + [aux_sym_preproc_include_token1] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), + [sym_preproc_directive] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym___extension__] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1362), + [anon_sym___scanf] = ACTIONS(1362), + [anon_sym___printf] = ACTIONS(1362), + [anon_sym___read_mostly] = ACTIONS(1362), + [anon_sym___must_hold] = ACTIONS(1362), + [anon_sym___ro_after_init] = ACTIONS(1362), + [anon_sym___noreturn] = ACTIONS(1362), + [anon_sym___cold] = ACTIONS(1362), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), + [anon_sym___declspec] = ACTIONS(1362), + [anon_sym___init] = ACTIONS(1362), + [anon_sym___exit] = ACTIONS(1362), + [anon_sym___cdecl] = ACTIONS(1362), + [anon_sym___clrcall] = ACTIONS(1362), + [anon_sym___stdcall] = ACTIONS(1362), + [anon_sym___fastcall] = ACTIONS(1362), + [anon_sym___thiscall] = ACTIONS(1362), + [anon_sym___vectorcall] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym___inline] = ACTIONS(1362), + [anon_sym___inline__] = ACTIONS(1362), + [anon_sym___forceinline] = ACTIONS(1362), + [anon_sym_thread_local] = ACTIONS(1362), + [anon_sym___thread] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_constexpr] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym___restrict__] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym__Noreturn] = ACTIONS(1362), + [anon_sym_noreturn] = ACTIONS(1362), + [anon_sym_alignas] = ACTIONS(1362), + [anon_sym__Alignas] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_else] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym___try] = ACTIONS(1362), + [anon_sym___leave] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1362), + [anon_sym___alignof__] = ACTIONS(1362), + [anon_sym___alignof] = ACTIONS(1362), + [anon_sym__alignof] = ACTIONS(1362), + [anon_sym_alignof] = ACTIONS(1362), + [anon_sym__Alignof] = ACTIONS(1362), + [anon_sym_offsetof] = ACTIONS(1362), + [anon_sym__Generic] = ACTIONS(1362), + [anon_sym_asm] = ACTIONS(1362), + [anon_sym___asm__] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1364), + [anon_sym_u_SQUOTE] = ACTIONS(1364), + [anon_sym_U_SQUOTE] = ACTIONS(1364), + [anon_sym_u8_SQUOTE] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_L_DQUOTE] = ACTIONS(1364), + [anon_sym_u_DQUOTE] = ACTIONS(1364), + [anon_sym_U_DQUOTE] = ACTIONS(1364), + [anon_sym_u8_DQUOTE] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [anon_sym_NULL] = ACTIONS(1362), + [anon_sym_nullptr] = ACTIONS(1362), [sym_comment] = ACTIONS(5), }, - [360] = { - [sym_identifier] = ACTIONS(1354), + [288] = { + [ts_builtin_sym_end] = ACTIONS(1328), + [sym_identifier] = ACTIONS(1326), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token2] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [anon_sym_LPAREN2] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym___extension__] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym___attribute__] = ACTIONS(1354), - [anon_sym___scanf] = ACTIONS(1354), - [anon_sym___printf] = ACTIONS(1354), - [anon_sym___read_mostly] = ACTIONS(1354), - [anon_sym___must_hold] = ACTIONS(1354), - [anon_sym___ro_after_init] = ACTIONS(1354), - [anon_sym___noreturn] = ACTIONS(1354), - [anon_sym___cold] = ACTIONS(1354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), - [anon_sym___declspec] = ACTIONS(1354), - [anon_sym___init] = ACTIONS(1354), - [anon_sym___exit] = ACTIONS(1354), - [anon_sym___cdecl] = ACTIONS(1354), - [anon_sym___clrcall] = ACTIONS(1354), - [anon_sym___stdcall] = ACTIONS(1354), - [anon_sym___fastcall] = ACTIONS(1354), - [anon_sym___thiscall] = ACTIONS(1354), - [anon_sym___vectorcall] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym___inline] = ACTIONS(1354), - [anon_sym___inline__] = ACTIONS(1354), - [anon_sym___forceinline] = ACTIONS(1354), - [anon_sym_thread_local] = ACTIONS(1354), - [anon_sym___thread] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_constexpr] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym___restrict__] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [anon_sym__Noreturn] = ACTIONS(1354), - [anon_sym_noreturn] = ACTIONS(1354), - [anon_sym_alignas] = ACTIONS(1354), - [anon_sym__Alignas] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [anon_sym___try] = ACTIONS(1354), - [anon_sym___leave] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym___alignof__] = ACTIONS(1354), - [anon_sym___alignof] = ACTIONS(1354), - [anon_sym__alignof] = ACTIONS(1354), - [anon_sym_alignof] = ACTIONS(1354), - [anon_sym__Alignof] = ACTIONS(1354), - [anon_sym_offsetof] = ACTIONS(1354), - [anon_sym__Generic] = ACTIONS(1354), - [anon_sym_asm] = ACTIONS(1354), - [anon_sym___asm__] = ACTIONS(1354), - [sym_number_literal] = ACTIONS(1356), - [anon_sym_L_SQUOTE] = ACTIONS(1356), - [anon_sym_u_SQUOTE] = ACTIONS(1356), - [anon_sym_U_SQUOTE] = ACTIONS(1356), - [anon_sym_u8_SQUOTE] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_L_DQUOTE] = ACTIONS(1356), - [anon_sym_u_DQUOTE] = ACTIONS(1356), - [anon_sym_U_DQUOTE] = ACTIONS(1356), - [anon_sym_u8_DQUOTE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_NULL] = ACTIONS(1354), - [anon_sym_nullptr] = ACTIONS(1354), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym___scanf] = ACTIONS(1326), + [anon_sym___printf] = ACTIONS(1326), + [anon_sym___read_mostly] = ACTIONS(1326), + [anon_sym___must_hold] = ACTIONS(1326), + [anon_sym___ro_after_init] = ACTIONS(1326), + [anon_sym___noreturn] = ACTIONS(1326), + [anon_sym___cold] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___init] = ACTIONS(1326), + [anon_sym___exit] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [anon_sym_alignas] = ACTIONS(1326), + [anon_sym__Alignas] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), [sym_comment] = ACTIONS(5), }, - [361] = { - [sym_identifier] = ACTIONS(1386), + [289] = { + [ts_builtin_sym_end] = ACTIONS(1324), + [sym_identifier] = ACTIONS(1322), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1389), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym___extension__] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym___scanf] = ACTIONS(1386), - [anon_sym___printf] = ACTIONS(1386), - [anon_sym___read_mostly] = ACTIONS(1386), - [anon_sym___must_hold] = ACTIONS(1386), - [anon_sym___ro_after_init] = ACTIONS(1386), - [anon_sym___noreturn] = ACTIONS(1386), - [anon_sym___cold] = ACTIONS(1386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(1386), - [anon_sym___init] = ACTIONS(1386), - [anon_sym___exit] = ACTIONS(1386), - [anon_sym___cdecl] = ACTIONS(1386), - [anon_sym___clrcall] = ACTIONS(1386), - [anon_sym___stdcall] = ACTIONS(1386), - [anon_sym___fastcall] = ACTIONS(1386), - [anon_sym___thiscall] = ACTIONS(1386), - [anon_sym___vectorcall] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_RBRACE] = ACTIONS(1389), - [anon_sym_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym___inline] = ACTIONS(1386), - [anon_sym___inline__] = ACTIONS(1386), - [anon_sym___forceinline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym___thread] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_constexpr] = ACTIONS(1386), - [anon_sym_volatile] = ACTIONS(1386), - [anon_sym_restrict] = ACTIONS(1386), - [anon_sym___restrict__] = ACTIONS(1386), - [anon_sym__Atomic] = ACTIONS(1386), - [anon_sym__Noreturn] = ACTIONS(1386), - [anon_sym_noreturn] = ACTIONS(1386), - [anon_sym_alignas] = ACTIONS(1386), - [anon_sym__Alignas] = ACTIONS(1386), - [sym_primitive_type] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_goto] = ACTIONS(1386), - [anon_sym___try] = ACTIONS(1386), - [anon_sym___leave] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1389), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym___alignof__] = ACTIONS(1386), - [anon_sym___alignof] = ACTIONS(1386), - [anon_sym__alignof] = ACTIONS(1386), - [anon_sym_alignof] = ACTIONS(1386), - [anon_sym__Alignof] = ACTIONS(1386), - [anon_sym_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = ACTIONS(1386), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym___asm__] = ACTIONS(1386), - [sym_number_literal] = ACTIONS(1389), - [anon_sym_L_SQUOTE] = ACTIONS(1389), - [anon_sym_u_SQUOTE] = ACTIONS(1389), - [anon_sym_U_SQUOTE] = ACTIONS(1389), - [anon_sym_u8_SQUOTE] = ACTIONS(1389), - [anon_sym_SQUOTE] = ACTIONS(1389), - [anon_sym_L_DQUOTE] = ACTIONS(1389), - [anon_sym_u_DQUOTE] = ACTIONS(1389), - [anon_sym_U_DQUOTE] = ACTIONS(1389), - [anon_sym_u8_DQUOTE] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1389), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [anon_sym_NULL] = ACTIONS(1386), - [anon_sym_nullptr] = ACTIONS(1386), - [sym_comment] = ACTIONS(5), - }, - [362] = { - [sym_identifier] = ACTIONS(1396), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1396), - [aux_sym_preproc_def_token1] = ACTIONS(1396), - [aux_sym_preproc_if_token1] = ACTIONS(1396), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1396), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1396), - [sym_preproc_directive] = ACTIONS(1396), - [anon_sym_LPAREN2] = ACTIONS(1398), - [anon_sym_BANG] = ACTIONS(1398), - [anon_sym_TILDE] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1398), - [anon_sym___extension__] = ACTIONS(1396), - [anon_sym_typedef] = ACTIONS(1396), - [anon_sym_extern] = ACTIONS(1396), - [anon_sym___attribute__] = ACTIONS(1396), - [anon_sym___scanf] = ACTIONS(1396), - [anon_sym___printf] = ACTIONS(1396), - [anon_sym___read_mostly] = ACTIONS(1396), - [anon_sym___must_hold] = ACTIONS(1396), - [anon_sym___ro_after_init] = ACTIONS(1396), - [anon_sym___noreturn] = ACTIONS(1396), - [anon_sym___cold] = ACTIONS(1396), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1398), - [anon_sym___declspec] = ACTIONS(1396), - [anon_sym___init] = ACTIONS(1396), - [anon_sym___exit] = ACTIONS(1396), - [anon_sym___cdecl] = ACTIONS(1396), - [anon_sym___clrcall] = ACTIONS(1396), - [anon_sym___stdcall] = ACTIONS(1396), - [anon_sym___fastcall] = ACTIONS(1396), - [anon_sym___thiscall] = ACTIONS(1396), - [anon_sym___vectorcall] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1398), - [anon_sym_signed] = ACTIONS(1396), - [anon_sym_unsigned] = ACTIONS(1396), - [anon_sym_long] = ACTIONS(1396), - [anon_sym_short] = ACTIONS(1396), - [anon_sym_static] = ACTIONS(1396), - [anon_sym_auto] = ACTIONS(1396), - [anon_sym_register] = ACTIONS(1396), - [anon_sym_inline] = ACTIONS(1396), - [anon_sym___inline] = ACTIONS(1396), - [anon_sym___inline__] = ACTIONS(1396), - [anon_sym___forceinline] = ACTIONS(1396), - [anon_sym_thread_local] = ACTIONS(1396), - [anon_sym___thread] = ACTIONS(1396), - [anon_sym_const] = ACTIONS(1396), - [anon_sym_constexpr] = ACTIONS(1396), - [anon_sym_volatile] = ACTIONS(1396), - [anon_sym_restrict] = ACTIONS(1396), - [anon_sym___restrict__] = ACTIONS(1396), - [anon_sym__Atomic] = ACTIONS(1396), - [anon_sym__Noreturn] = ACTIONS(1396), - [anon_sym_noreturn] = ACTIONS(1396), - [anon_sym_alignas] = ACTIONS(1396), - [anon_sym__Alignas] = ACTIONS(1396), - [sym_primitive_type] = ACTIONS(1396), - [anon_sym_enum] = ACTIONS(1396), - [anon_sym_struct] = ACTIONS(1396), - [anon_sym_union] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1396), - [anon_sym_switch] = ACTIONS(1396), - [anon_sym_case] = ACTIONS(1396), - [anon_sym_default] = ACTIONS(1396), - [anon_sym_while] = ACTIONS(1396), - [anon_sym_do] = ACTIONS(1396), - [anon_sym_for] = ACTIONS(1396), - [anon_sym_return] = ACTIONS(1396), - [anon_sym_break] = ACTIONS(1396), - [anon_sym_continue] = ACTIONS(1396), - [anon_sym_goto] = ACTIONS(1396), - [anon_sym___try] = ACTIONS(1396), - [anon_sym___leave] = ACTIONS(1396), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_sizeof] = ACTIONS(1396), - [anon_sym___alignof__] = ACTIONS(1396), - [anon_sym___alignof] = ACTIONS(1396), - [anon_sym__alignof] = ACTIONS(1396), - [anon_sym_alignof] = ACTIONS(1396), - [anon_sym__Alignof] = ACTIONS(1396), - [anon_sym_offsetof] = ACTIONS(1396), - [anon_sym__Generic] = ACTIONS(1396), - [anon_sym_asm] = ACTIONS(1396), - [anon_sym___asm__] = ACTIONS(1396), - [sym_number_literal] = ACTIONS(1398), - [anon_sym_L_SQUOTE] = ACTIONS(1398), - [anon_sym_u_SQUOTE] = ACTIONS(1398), - [anon_sym_U_SQUOTE] = ACTIONS(1398), - [anon_sym_u8_SQUOTE] = ACTIONS(1398), - [anon_sym_SQUOTE] = ACTIONS(1398), - [anon_sym_L_DQUOTE] = ACTIONS(1398), - [anon_sym_u_DQUOTE] = ACTIONS(1398), - [anon_sym_U_DQUOTE] = ACTIONS(1398), - [anon_sym_u8_DQUOTE] = ACTIONS(1398), - [anon_sym_DQUOTE] = ACTIONS(1398), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [anon_sym_NULL] = ACTIONS(1396), - [anon_sym_nullptr] = ACTIONS(1396), - [sym_comment] = ACTIONS(5), - }, - [363] = { - [sym_identifier] = ACTIONS(1416), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1416), - [aux_sym_preproc_def_token1] = ACTIONS(1416), - [aux_sym_preproc_if_token1] = ACTIONS(1416), - [aux_sym_preproc_if_token2] = ACTIONS(1416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1416), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1416), - [sym_preproc_directive] = ACTIONS(1416), - [anon_sym_LPAREN2] = ACTIONS(1418), - [anon_sym_BANG] = ACTIONS(1418), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_typedef] = ACTIONS(1416), - [anon_sym_extern] = ACTIONS(1416), - [anon_sym___attribute__] = ACTIONS(1416), - [anon_sym___scanf] = ACTIONS(1416), - [anon_sym___printf] = ACTIONS(1416), - [anon_sym___read_mostly] = ACTIONS(1416), - [anon_sym___must_hold] = ACTIONS(1416), - [anon_sym___ro_after_init] = ACTIONS(1416), - [anon_sym___noreturn] = ACTIONS(1416), - [anon_sym___cold] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym___declspec] = ACTIONS(1416), - [anon_sym___init] = ACTIONS(1416), - [anon_sym___exit] = ACTIONS(1416), - [anon_sym___cdecl] = ACTIONS(1416), - [anon_sym___clrcall] = ACTIONS(1416), - [anon_sym___stdcall] = ACTIONS(1416), - [anon_sym___fastcall] = ACTIONS(1416), - [anon_sym___thiscall] = ACTIONS(1416), - [anon_sym___vectorcall] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_signed] = ACTIONS(1416), - [anon_sym_unsigned] = ACTIONS(1416), - [anon_sym_long] = ACTIONS(1416), - [anon_sym_short] = ACTIONS(1416), - [anon_sym_static] = ACTIONS(1416), - [anon_sym_auto] = ACTIONS(1416), - [anon_sym_register] = ACTIONS(1416), - [anon_sym_inline] = ACTIONS(1416), - [anon_sym___inline] = ACTIONS(1416), - [anon_sym___inline__] = ACTIONS(1416), - [anon_sym___forceinline] = ACTIONS(1416), - [anon_sym_thread_local] = ACTIONS(1416), - [anon_sym___thread] = ACTIONS(1416), - [anon_sym_const] = ACTIONS(1416), - [anon_sym_constexpr] = ACTIONS(1416), - [anon_sym_volatile] = ACTIONS(1416), - [anon_sym_restrict] = ACTIONS(1416), - [anon_sym___restrict__] = ACTIONS(1416), - [anon_sym__Atomic] = ACTIONS(1416), - [anon_sym__Noreturn] = ACTIONS(1416), - [anon_sym_noreturn] = ACTIONS(1416), - [anon_sym_alignas] = ACTIONS(1416), - [anon_sym__Alignas] = ACTIONS(1416), - [sym_primitive_type] = ACTIONS(1416), - [anon_sym_enum] = ACTIONS(1416), - [anon_sym_struct] = ACTIONS(1416), - [anon_sym_union] = ACTIONS(1416), - [anon_sym_if] = ACTIONS(1416), - [anon_sym_switch] = ACTIONS(1416), - [anon_sym_case] = ACTIONS(1416), - [anon_sym_default] = ACTIONS(1416), - [anon_sym_while] = ACTIONS(1416), - [anon_sym_do] = ACTIONS(1416), - [anon_sym_for] = ACTIONS(1416), - [anon_sym_return] = ACTIONS(1416), - [anon_sym_break] = ACTIONS(1416), - [anon_sym_continue] = ACTIONS(1416), - [anon_sym_goto] = ACTIONS(1416), - [anon_sym___try] = ACTIONS(1416), - [anon_sym___leave] = ACTIONS(1416), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_sizeof] = ACTIONS(1416), - [anon_sym___alignof__] = ACTIONS(1416), - [anon_sym___alignof] = ACTIONS(1416), - [anon_sym__alignof] = ACTIONS(1416), - [anon_sym_alignof] = ACTIONS(1416), - [anon_sym__Alignof] = ACTIONS(1416), - [anon_sym_offsetof] = ACTIONS(1416), - [anon_sym__Generic] = ACTIONS(1416), - [anon_sym_asm] = ACTIONS(1416), - [anon_sym___asm__] = ACTIONS(1416), - [sym_number_literal] = ACTIONS(1418), - [anon_sym_L_SQUOTE] = ACTIONS(1418), - [anon_sym_u_SQUOTE] = ACTIONS(1418), - [anon_sym_U_SQUOTE] = ACTIONS(1418), - [anon_sym_u8_SQUOTE] = ACTIONS(1418), - [anon_sym_SQUOTE] = ACTIONS(1418), - [anon_sym_L_DQUOTE] = ACTIONS(1418), - [anon_sym_u_DQUOTE] = ACTIONS(1418), - [anon_sym_U_DQUOTE] = ACTIONS(1418), - [anon_sym_u8_DQUOTE] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym_true] = ACTIONS(1416), - [sym_false] = ACTIONS(1416), - [anon_sym_NULL] = ACTIONS(1416), - [anon_sym_nullptr] = ACTIONS(1416), - [sym_comment] = ACTIONS(5), - }, - [364] = { - [sym_identifier] = ACTIONS(1408), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1408), - [aux_sym_preproc_def_token1] = ACTIONS(1408), - [aux_sym_preproc_if_token1] = ACTIONS(1408), - [aux_sym_preproc_if_token2] = ACTIONS(1408), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1408), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1408), - [sym_preproc_directive] = ACTIONS(1408), - [anon_sym_LPAREN2] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1410), - [anon_sym_TILDE] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_STAR] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym___extension__] = ACTIONS(1408), - [anon_sym_typedef] = ACTIONS(1408), - [anon_sym_extern] = ACTIONS(1408), - [anon_sym___attribute__] = ACTIONS(1408), - [anon_sym___scanf] = ACTIONS(1408), - [anon_sym___printf] = ACTIONS(1408), - [anon_sym___read_mostly] = ACTIONS(1408), - [anon_sym___must_hold] = ACTIONS(1408), - [anon_sym___ro_after_init] = ACTIONS(1408), - [anon_sym___noreturn] = ACTIONS(1408), - [anon_sym___cold] = ACTIONS(1408), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1410), - [anon_sym___declspec] = ACTIONS(1408), - [anon_sym___init] = ACTIONS(1408), - [anon_sym___exit] = ACTIONS(1408), - [anon_sym___cdecl] = ACTIONS(1408), - [anon_sym___clrcall] = ACTIONS(1408), - [anon_sym___stdcall] = ACTIONS(1408), - [anon_sym___fastcall] = ACTIONS(1408), - [anon_sym___thiscall] = ACTIONS(1408), - [anon_sym___vectorcall] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_signed] = ACTIONS(1408), - [anon_sym_unsigned] = ACTIONS(1408), - [anon_sym_long] = ACTIONS(1408), - [anon_sym_short] = ACTIONS(1408), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_auto] = ACTIONS(1408), - [anon_sym_register] = ACTIONS(1408), - [anon_sym_inline] = ACTIONS(1408), - [anon_sym___inline] = ACTIONS(1408), - [anon_sym___inline__] = ACTIONS(1408), - [anon_sym___forceinline] = ACTIONS(1408), - [anon_sym_thread_local] = ACTIONS(1408), - [anon_sym___thread] = ACTIONS(1408), - [anon_sym_const] = ACTIONS(1408), - [anon_sym_constexpr] = ACTIONS(1408), - [anon_sym_volatile] = ACTIONS(1408), - [anon_sym_restrict] = ACTIONS(1408), - [anon_sym___restrict__] = ACTIONS(1408), - [anon_sym__Atomic] = ACTIONS(1408), - [anon_sym__Noreturn] = ACTIONS(1408), - [anon_sym_noreturn] = ACTIONS(1408), - [anon_sym_alignas] = ACTIONS(1408), - [anon_sym__Alignas] = ACTIONS(1408), - [sym_primitive_type] = ACTIONS(1408), - [anon_sym_enum] = ACTIONS(1408), - [anon_sym_struct] = ACTIONS(1408), - [anon_sym_union] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1408), - [anon_sym_switch] = ACTIONS(1408), - [anon_sym_case] = ACTIONS(1408), - [anon_sym_default] = ACTIONS(1408), - [anon_sym_while] = ACTIONS(1408), - [anon_sym_do] = ACTIONS(1408), - [anon_sym_for] = ACTIONS(1408), - [anon_sym_return] = ACTIONS(1408), - [anon_sym_break] = ACTIONS(1408), - [anon_sym_continue] = ACTIONS(1408), - [anon_sym_goto] = ACTIONS(1408), - [anon_sym___try] = ACTIONS(1408), - [anon_sym___leave] = ACTIONS(1408), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_sizeof] = ACTIONS(1408), - [anon_sym___alignof__] = ACTIONS(1408), - [anon_sym___alignof] = ACTIONS(1408), - [anon_sym__alignof] = ACTIONS(1408), - [anon_sym_alignof] = ACTIONS(1408), - [anon_sym__Alignof] = ACTIONS(1408), - [anon_sym_offsetof] = ACTIONS(1408), - [anon_sym__Generic] = ACTIONS(1408), - [anon_sym_asm] = ACTIONS(1408), - [anon_sym___asm__] = ACTIONS(1408), - [sym_number_literal] = ACTIONS(1410), - [anon_sym_L_SQUOTE] = ACTIONS(1410), - [anon_sym_u_SQUOTE] = ACTIONS(1410), - [anon_sym_U_SQUOTE] = ACTIONS(1410), - [anon_sym_u8_SQUOTE] = ACTIONS(1410), - [anon_sym_SQUOTE] = ACTIONS(1410), - [anon_sym_L_DQUOTE] = ACTIONS(1410), - [anon_sym_u_DQUOTE] = ACTIONS(1410), - [anon_sym_U_DQUOTE] = ACTIONS(1410), - [anon_sym_u8_DQUOTE] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [anon_sym_NULL] = ACTIONS(1408), - [anon_sym_nullptr] = ACTIONS(1408), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym___extension__] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym___attribute__] = ACTIONS(1322), + [anon_sym___scanf] = ACTIONS(1322), + [anon_sym___printf] = ACTIONS(1322), + [anon_sym___read_mostly] = ACTIONS(1322), + [anon_sym___must_hold] = ACTIONS(1322), + [anon_sym___ro_after_init] = ACTIONS(1322), + [anon_sym___noreturn] = ACTIONS(1322), + [anon_sym___cold] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym___init] = ACTIONS(1322), + [anon_sym___exit] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [anon_sym_alignas] = ACTIONS(1322), + [anon_sym__Alignas] = ACTIONS(1322), + [sym_primitive_type] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym___try] = ACTIONS(1322), + [anon_sym___leave] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), [sym_comment] = ACTIONS(5), }, - [365] = { - [sym_identifier] = ACTIONS(1468), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1468), - [aux_sym_preproc_def_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token2] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), - [sym_preproc_directive] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym___extension__] = ACTIONS(1468), - [anon_sym_typedef] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1468), - [anon_sym___attribute__] = ACTIONS(1468), - [anon_sym___scanf] = ACTIONS(1468), - [anon_sym___printf] = ACTIONS(1468), - [anon_sym___read_mostly] = ACTIONS(1468), - [anon_sym___must_hold] = ACTIONS(1468), - [anon_sym___ro_after_init] = ACTIONS(1468), - [anon_sym___noreturn] = ACTIONS(1468), - [anon_sym___cold] = ACTIONS(1468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), - [anon_sym___declspec] = ACTIONS(1468), - [anon_sym___init] = ACTIONS(1468), - [anon_sym___exit] = ACTIONS(1468), - [anon_sym___cdecl] = ACTIONS(1468), - [anon_sym___clrcall] = ACTIONS(1468), - [anon_sym___stdcall] = ACTIONS(1468), - [anon_sym___fastcall] = ACTIONS(1468), - [anon_sym___thiscall] = ACTIONS(1468), - [anon_sym___vectorcall] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_signed] = ACTIONS(1468), - [anon_sym_unsigned] = ACTIONS(1468), - [anon_sym_long] = ACTIONS(1468), - [anon_sym_short] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_auto] = ACTIONS(1468), - [anon_sym_register] = ACTIONS(1468), - [anon_sym_inline] = ACTIONS(1468), - [anon_sym___inline] = ACTIONS(1468), - [anon_sym___inline__] = ACTIONS(1468), - [anon_sym___forceinline] = ACTIONS(1468), - [anon_sym_thread_local] = ACTIONS(1468), - [anon_sym___thread] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_constexpr] = ACTIONS(1468), - [anon_sym_volatile] = ACTIONS(1468), - [anon_sym_restrict] = ACTIONS(1468), - [anon_sym___restrict__] = ACTIONS(1468), - [anon_sym__Atomic] = ACTIONS(1468), - [anon_sym__Noreturn] = ACTIONS(1468), - [anon_sym_noreturn] = ACTIONS(1468), - [anon_sym_alignas] = ACTIONS(1468), - [anon_sym__Alignas] = ACTIONS(1468), - [sym_primitive_type] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_case] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_goto] = ACTIONS(1468), - [anon_sym___try] = ACTIONS(1468), - [anon_sym___leave] = ACTIONS(1468), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_sizeof] = ACTIONS(1468), - [anon_sym___alignof__] = ACTIONS(1468), - [anon_sym___alignof] = ACTIONS(1468), - [anon_sym__alignof] = ACTIONS(1468), - [anon_sym_alignof] = ACTIONS(1468), - [anon_sym__Alignof] = ACTIONS(1468), - [anon_sym_offsetof] = ACTIONS(1468), - [anon_sym__Generic] = ACTIONS(1468), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym___asm__] = ACTIONS(1468), - [sym_number_literal] = ACTIONS(1470), - [anon_sym_L_SQUOTE] = ACTIONS(1470), - [anon_sym_u_SQUOTE] = ACTIONS(1470), - [anon_sym_U_SQUOTE] = ACTIONS(1470), - [anon_sym_u8_SQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_L_DQUOTE] = ACTIONS(1470), - [anon_sym_u_DQUOTE] = ACTIONS(1470), - [anon_sym_U_DQUOTE] = ACTIONS(1470), - [anon_sym_u8_DQUOTE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [anon_sym_NULL] = ACTIONS(1468), - [anon_sym_nullptr] = ACTIONS(1468), + [290] = { + [sym_identifier] = ACTIONS(1294), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1294), + [aux_sym_preproc_def_token1] = ACTIONS(1294), + [aux_sym_preproc_if_token1] = ACTIONS(1294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), + [sym_preproc_directive] = ACTIONS(1294), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(1296), + [anon_sym_TILDE] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_PLUS] = ACTIONS(1294), + [anon_sym_STAR] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym___extension__] = ACTIONS(1294), + [anon_sym_typedef] = ACTIONS(1294), + [anon_sym_extern] = ACTIONS(1294), + [anon_sym___attribute__] = ACTIONS(1294), + [anon_sym___scanf] = ACTIONS(1294), + [anon_sym___printf] = ACTIONS(1294), + [anon_sym___read_mostly] = ACTIONS(1294), + [anon_sym___must_hold] = ACTIONS(1294), + [anon_sym___ro_after_init] = ACTIONS(1294), + [anon_sym___noreturn] = ACTIONS(1294), + [anon_sym___cold] = ACTIONS(1294), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1296), + [anon_sym___declspec] = ACTIONS(1294), + [anon_sym___init] = ACTIONS(1294), + [anon_sym___exit] = ACTIONS(1294), + [anon_sym___cdecl] = ACTIONS(1294), + [anon_sym___clrcall] = ACTIONS(1294), + [anon_sym___stdcall] = ACTIONS(1294), + [anon_sym___fastcall] = ACTIONS(1294), + [anon_sym___thiscall] = ACTIONS(1294), + [anon_sym___vectorcall] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(1296), + [anon_sym_signed] = ACTIONS(1294), + [anon_sym_unsigned] = ACTIONS(1294), + [anon_sym_long] = ACTIONS(1294), + [anon_sym_short] = ACTIONS(1294), + [anon_sym_static] = ACTIONS(1294), + [anon_sym_auto] = ACTIONS(1294), + [anon_sym_register] = ACTIONS(1294), + [anon_sym_inline] = ACTIONS(1294), + [anon_sym___inline] = ACTIONS(1294), + [anon_sym___inline__] = ACTIONS(1294), + [anon_sym___forceinline] = ACTIONS(1294), + [anon_sym_thread_local] = ACTIONS(1294), + [anon_sym___thread] = ACTIONS(1294), + [anon_sym_const] = ACTIONS(1294), + [anon_sym_constexpr] = ACTIONS(1294), + [anon_sym_volatile] = ACTIONS(1294), + [anon_sym_restrict] = ACTIONS(1294), + [anon_sym___restrict__] = ACTIONS(1294), + [anon_sym__Atomic] = ACTIONS(1294), + [anon_sym__Noreturn] = ACTIONS(1294), + [anon_sym_noreturn] = ACTIONS(1294), + [anon_sym_alignas] = ACTIONS(1294), + [anon_sym__Alignas] = ACTIONS(1294), + [sym_primitive_type] = ACTIONS(1294), + [anon_sym_enum] = ACTIONS(1294), + [anon_sym_struct] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1294), + [anon_sym_if] = ACTIONS(1294), + [anon_sym_else] = ACTIONS(1294), + [anon_sym_switch] = ACTIONS(1294), + [anon_sym_case] = ACTIONS(1294), + [anon_sym_default] = ACTIONS(1294), + [anon_sym_while] = ACTIONS(1294), + [anon_sym_do] = ACTIONS(1294), + [anon_sym_for] = ACTIONS(1294), + [anon_sym_return] = ACTIONS(1294), + [anon_sym_break] = ACTIONS(1294), + [anon_sym_continue] = ACTIONS(1294), + [anon_sym_goto] = ACTIONS(1294), + [anon_sym___try] = ACTIONS(1294), + [anon_sym___leave] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [anon_sym_sizeof] = ACTIONS(1294), + [anon_sym___alignof__] = ACTIONS(1294), + [anon_sym___alignof] = ACTIONS(1294), + [anon_sym__alignof] = ACTIONS(1294), + [anon_sym_alignof] = ACTIONS(1294), + [anon_sym__Alignof] = ACTIONS(1294), + [anon_sym_offsetof] = ACTIONS(1294), + [anon_sym__Generic] = ACTIONS(1294), + [anon_sym_asm] = ACTIONS(1294), + [anon_sym___asm__] = ACTIONS(1294), + [sym_number_literal] = ACTIONS(1296), + [anon_sym_L_SQUOTE] = ACTIONS(1296), + [anon_sym_u_SQUOTE] = ACTIONS(1296), + [anon_sym_U_SQUOTE] = ACTIONS(1296), + [anon_sym_u8_SQUOTE] = ACTIONS(1296), + [anon_sym_SQUOTE] = ACTIONS(1296), + [anon_sym_L_DQUOTE] = ACTIONS(1296), + [anon_sym_u_DQUOTE] = ACTIONS(1296), + [anon_sym_U_DQUOTE] = ACTIONS(1296), + [anon_sym_u8_DQUOTE] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [sym_true] = ACTIONS(1294), + [sym_false] = ACTIONS(1294), + [anon_sym_NULL] = ACTIONS(1294), + [anon_sym_nullptr] = ACTIONS(1294), [sym_comment] = ACTIONS(5), }, - [366] = { - [sym_identifier] = ACTIONS(1464), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1464), - [aux_sym_preproc_def_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token2] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), - [sym_preproc_directive] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym___extension__] = ACTIONS(1464), - [anon_sym_typedef] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym___attribute__] = ACTIONS(1464), - [anon_sym___scanf] = ACTIONS(1464), - [anon_sym___printf] = ACTIONS(1464), - [anon_sym___read_mostly] = ACTIONS(1464), - [anon_sym___must_hold] = ACTIONS(1464), - [anon_sym___ro_after_init] = ACTIONS(1464), - [anon_sym___noreturn] = ACTIONS(1464), - [anon_sym___cold] = ACTIONS(1464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), - [anon_sym___declspec] = ACTIONS(1464), - [anon_sym___init] = ACTIONS(1464), - [anon_sym___exit] = ACTIONS(1464), - [anon_sym___cdecl] = ACTIONS(1464), - [anon_sym___clrcall] = ACTIONS(1464), - [anon_sym___stdcall] = ACTIONS(1464), - [anon_sym___fastcall] = ACTIONS(1464), - [anon_sym___thiscall] = ACTIONS(1464), - [anon_sym___vectorcall] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_signed] = ACTIONS(1464), - [anon_sym_unsigned] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_auto] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_inline] = ACTIONS(1464), - [anon_sym___inline] = ACTIONS(1464), - [anon_sym___inline__] = ACTIONS(1464), - [anon_sym___forceinline] = ACTIONS(1464), - [anon_sym_thread_local] = ACTIONS(1464), - [anon_sym___thread] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_constexpr] = ACTIONS(1464), - [anon_sym_volatile] = ACTIONS(1464), - [anon_sym_restrict] = ACTIONS(1464), - [anon_sym___restrict__] = ACTIONS(1464), - [anon_sym__Atomic] = ACTIONS(1464), - [anon_sym__Noreturn] = ACTIONS(1464), - [anon_sym_noreturn] = ACTIONS(1464), - [anon_sym_alignas] = ACTIONS(1464), - [anon_sym__Alignas] = ACTIONS(1464), - [sym_primitive_type] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_case] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_goto] = ACTIONS(1464), - [anon_sym___try] = ACTIONS(1464), - [anon_sym___leave] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_sizeof] = ACTIONS(1464), - [anon_sym___alignof__] = ACTIONS(1464), - [anon_sym___alignof] = ACTIONS(1464), - [anon_sym__alignof] = ACTIONS(1464), - [anon_sym_alignof] = ACTIONS(1464), - [anon_sym__Alignof] = ACTIONS(1464), - [anon_sym_offsetof] = ACTIONS(1464), - [anon_sym__Generic] = ACTIONS(1464), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym___asm__] = ACTIONS(1464), - [sym_number_literal] = ACTIONS(1466), - [anon_sym_L_SQUOTE] = ACTIONS(1466), - [anon_sym_u_SQUOTE] = ACTIONS(1466), - [anon_sym_U_SQUOTE] = ACTIONS(1466), - [anon_sym_u8_SQUOTE] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_L_DQUOTE] = ACTIONS(1466), - [anon_sym_u_DQUOTE] = ACTIONS(1466), - [anon_sym_U_DQUOTE] = ACTIONS(1466), - [anon_sym_u8_DQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym_true] = ACTIONS(1464), - [sym_false] = ACTIONS(1464), - [anon_sym_NULL] = ACTIONS(1464), - [anon_sym_nullptr] = ACTIONS(1464), + [291] = { + [ts_builtin_sym_end] = ACTIONS(1312), + [sym_identifier] = ACTIONS(1310), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1310), + [aux_sym_preproc_def_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), + [sym_preproc_directive] = ACTIONS(1310), + [anon_sym_LPAREN2] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym___extension__] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym___scanf] = ACTIONS(1310), + [anon_sym___printf] = ACTIONS(1310), + [anon_sym___read_mostly] = ACTIONS(1310), + [anon_sym___must_hold] = ACTIONS(1310), + [anon_sym___ro_after_init] = ACTIONS(1310), + [anon_sym___noreturn] = ACTIONS(1310), + [anon_sym___cold] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), + [anon_sym___declspec] = ACTIONS(1310), + [anon_sym___init] = ACTIONS(1310), + [anon_sym___exit] = ACTIONS(1310), + [anon_sym___cdecl] = ACTIONS(1310), + [anon_sym___clrcall] = ACTIONS(1310), + [anon_sym___stdcall] = ACTIONS(1310), + [anon_sym___fastcall] = ACTIONS(1310), + [anon_sym___thiscall] = ACTIONS(1310), + [anon_sym___vectorcall] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1310), + [anon_sym_unsigned] = ACTIONS(1310), + [anon_sym_long] = ACTIONS(1310), + [anon_sym_short] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_auto] = ACTIONS(1310), + [anon_sym_register] = ACTIONS(1310), + [anon_sym_inline] = ACTIONS(1310), + [anon_sym___inline] = ACTIONS(1310), + [anon_sym___inline__] = ACTIONS(1310), + [anon_sym___forceinline] = ACTIONS(1310), + [anon_sym_thread_local] = ACTIONS(1310), + [anon_sym___thread] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_constexpr] = ACTIONS(1310), + [anon_sym_volatile] = ACTIONS(1310), + [anon_sym_restrict] = ACTIONS(1310), + [anon_sym___restrict__] = ACTIONS(1310), + [anon_sym__Atomic] = ACTIONS(1310), + [anon_sym__Noreturn] = ACTIONS(1310), + [anon_sym_noreturn] = ACTIONS(1310), + [anon_sym_alignas] = ACTIONS(1310), + [anon_sym__Alignas] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_else] = ACTIONS(1310), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_case] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_goto] = ACTIONS(1310), + [anon_sym___try] = ACTIONS(1310), + [anon_sym___leave] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_sizeof] = ACTIONS(1310), + [anon_sym___alignof__] = ACTIONS(1310), + [anon_sym___alignof] = ACTIONS(1310), + [anon_sym__alignof] = ACTIONS(1310), + [anon_sym_alignof] = ACTIONS(1310), + [anon_sym__Alignof] = ACTIONS(1310), + [anon_sym_offsetof] = ACTIONS(1310), + [anon_sym__Generic] = ACTIONS(1310), + [anon_sym_asm] = ACTIONS(1310), + [anon_sym___asm__] = ACTIONS(1310), + [sym_number_literal] = ACTIONS(1312), + [anon_sym_L_SQUOTE] = ACTIONS(1312), + [anon_sym_u_SQUOTE] = ACTIONS(1312), + [anon_sym_U_SQUOTE] = ACTIONS(1312), + [anon_sym_u8_SQUOTE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_L_DQUOTE] = ACTIONS(1312), + [anon_sym_u_DQUOTE] = ACTIONS(1312), + [anon_sym_U_DQUOTE] = ACTIONS(1312), + [anon_sym_u8_DQUOTE] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [anon_sym_NULL] = ACTIONS(1310), + [anon_sym_nullptr] = ACTIONS(1310), [sym_comment] = ACTIONS(5), }, - [367] = { - [sym_identifier] = ACTIONS(1472), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1472), - [aux_sym_preproc_def_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token2] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), - [sym_preproc_directive] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym___extension__] = ACTIONS(1472), - [anon_sym_typedef] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym___attribute__] = ACTIONS(1472), - [anon_sym___scanf] = ACTIONS(1472), - [anon_sym___printf] = ACTIONS(1472), - [anon_sym___read_mostly] = ACTIONS(1472), - [anon_sym___must_hold] = ACTIONS(1472), - [anon_sym___ro_after_init] = ACTIONS(1472), - [anon_sym___noreturn] = ACTIONS(1472), - [anon_sym___cold] = ACTIONS(1472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1472), - [anon_sym___init] = ACTIONS(1472), - [anon_sym___exit] = ACTIONS(1472), - [anon_sym___cdecl] = ACTIONS(1472), - [anon_sym___clrcall] = ACTIONS(1472), - [anon_sym___stdcall] = ACTIONS(1472), - [anon_sym___fastcall] = ACTIONS(1472), - [anon_sym___thiscall] = ACTIONS(1472), - [anon_sym___vectorcall] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_signed] = ACTIONS(1472), - [anon_sym_unsigned] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_auto] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_inline] = ACTIONS(1472), - [anon_sym___inline] = ACTIONS(1472), - [anon_sym___inline__] = ACTIONS(1472), - [anon_sym___forceinline] = ACTIONS(1472), - [anon_sym_thread_local] = ACTIONS(1472), - [anon_sym___thread] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_constexpr] = ACTIONS(1472), - [anon_sym_volatile] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1472), - [anon_sym___restrict__] = ACTIONS(1472), - [anon_sym__Atomic] = ACTIONS(1472), - [anon_sym__Noreturn] = ACTIONS(1472), - [anon_sym_noreturn] = ACTIONS(1472), - [anon_sym_alignas] = ACTIONS(1472), - [anon_sym__Alignas] = ACTIONS(1472), - [sym_primitive_type] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_goto] = ACTIONS(1472), - [anon_sym___try] = ACTIONS(1472), - [anon_sym___leave] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_sizeof] = ACTIONS(1472), - [anon_sym___alignof__] = ACTIONS(1472), - [anon_sym___alignof] = ACTIONS(1472), - [anon_sym__alignof] = ACTIONS(1472), - [anon_sym_alignof] = ACTIONS(1472), - [anon_sym__Alignof] = ACTIONS(1472), - [anon_sym_offsetof] = ACTIONS(1472), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym___asm__] = ACTIONS(1472), - [sym_number_literal] = ACTIONS(1474), - [anon_sym_L_SQUOTE] = ACTIONS(1474), - [anon_sym_u_SQUOTE] = ACTIONS(1474), - [anon_sym_U_SQUOTE] = ACTIONS(1474), - [anon_sym_u8_SQUOTE] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_L_DQUOTE] = ACTIONS(1474), - [anon_sym_u_DQUOTE] = ACTIONS(1474), - [anon_sym_U_DQUOTE] = ACTIONS(1474), - [anon_sym_u8_DQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [anon_sym_NULL] = ACTIONS(1472), - [anon_sym_nullptr] = ACTIONS(1472), + [292] = { + [sym_identifier] = ACTIONS(1306), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym___scanf] = ACTIONS(1306), + [anon_sym___printf] = ACTIONS(1306), + [anon_sym___read_mostly] = ACTIONS(1306), + [anon_sym___must_hold] = ACTIONS(1306), + [anon_sym___ro_after_init] = ACTIONS(1306), + [anon_sym___noreturn] = ACTIONS(1306), + [anon_sym___cold] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___init] = ACTIONS(1306), + [anon_sym___exit] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [anon_sym_alignas] = ACTIONS(1306), + [anon_sym__Alignas] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(5), }, - [368] = { - [sym_identifier] = ACTIONS(1386), + [293] = { + [sym_identifier] = ACTIONS(1370), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token2] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1389), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym___extension__] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym___scanf] = ACTIONS(1386), - [anon_sym___printf] = ACTIONS(1386), - [anon_sym___read_mostly] = ACTIONS(1386), - [anon_sym___must_hold] = ACTIONS(1386), - [anon_sym___ro_after_init] = ACTIONS(1386), - [anon_sym___noreturn] = ACTIONS(1386), - [anon_sym___cold] = ACTIONS(1386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(1386), - [anon_sym___init] = ACTIONS(1386), - [anon_sym___exit] = ACTIONS(1386), - [anon_sym___cdecl] = ACTIONS(1386), - [anon_sym___clrcall] = ACTIONS(1386), - [anon_sym___stdcall] = ACTIONS(1386), - [anon_sym___fastcall] = ACTIONS(1386), - [anon_sym___thiscall] = ACTIONS(1386), - [anon_sym___vectorcall] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym___inline] = ACTIONS(1386), - [anon_sym___inline__] = ACTIONS(1386), - [anon_sym___forceinline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym___thread] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_constexpr] = ACTIONS(1386), - [anon_sym_volatile] = ACTIONS(1386), - [anon_sym_restrict] = ACTIONS(1386), - [anon_sym___restrict__] = ACTIONS(1386), - [anon_sym__Atomic] = ACTIONS(1386), - [anon_sym__Noreturn] = ACTIONS(1386), - [anon_sym_noreturn] = ACTIONS(1386), - [anon_sym_alignas] = ACTIONS(1386), - [anon_sym__Alignas] = ACTIONS(1386), - [sym_primitive_type] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_goto] = ACTIONS(1386), - [anon_sym___try] = ACTIONS(1386), - [anon_sym___leave] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1389), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym___alignof__] = ACTIONS(1386), - [anon_sym___alignof] = ACTIONS(1386), - [anon_sym__alignof] = ACTIONS(1386), - [anon_sym_alignof] = ACTIONS(1386), - [anon_sym__Alignof] = ACTIONS(1386), - [anon_sym_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = ACTIONS(1386), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym___asm__] = ACTIONS(1386), - [sym_number_literal] = ACTIONS(1389), - [anon_sym_L_SQUOTE] = ACTIONS(1389), - [anon_sym_u_SQUOTE] = ACTIONS(1389), - [anon_sym_U_SQUOTE] = ACTIONS(1389), - [anon_sym_u8_SQUOTE] = ACTIONS(1389), - [anon_sym_SQUOTE] = ACTIONS(1389), - [anon_sym_L_DQUOTE] = ACTIONS(1389), - [anon_sym_u_DQUOTE] = ACTIONS(1389), - [anon_sym_U_DQUOTE] = ACTIONS(1389), - [anon_sym_u8_DQUOTE] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1389), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [anon_sym_NULL] = ACTIONS(1386), - [anon_sym_nullptr] = ACTIONS(1386), + [aux_sym_preproc_include_token1] = ACTIONS(1370), + [aux_sym_preproc_def_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), + [sym_preproc_directive] = ACTIONS(1370), + [anon_sym_LPAREN2] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym___extension__] = ACTIONS(1370), + [anon_sym_typedef] = ACTIONS(1370), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym___attribute__] = ACTIONS(1370), + [anon_sym___scanf] = ACTIONS(1370), + [anon_sym___printf] = ACTIONS(1370), + [anon_sym___read_mostly] = ACTIONS(1370), + [anon_sym___must_hold] = ACTIONS(1370), + [anon_sym___ro_after_init] = ACTIONS(1370), + [anon_sym___noreturn] = ACTIONS(1370), + [anon_sym___cold] = ACTIONS(1370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), + [anon_sym___declspec] = ACTIONS(1370), + [anon_sym___init] = ACTIONS(1370), + [anon_sym___exit] = ACTIONS(1370), + [anon_sym___cdecl] = ACTIONS(1370), + [anon_sym___clrcall] = ACTIONS(1370), + [anon_sym___stdcall] = ACTIONS(1370), + [anon_sym___fastcall] = ACTIONS(1370), + [anon_sym___thiscall] = ACTIONS(1370), + [anon_sym___vectorcall] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_RBRACE] = ACTIONS(1372), + [anon_sym_signed] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), + [anon_sym___inline] = ACTIONS(1370), + [anon_sym___inline__] = ACTIONS(1370), + [anon_sym___forceinline] = ACTIONS(1370), + [anon_sym_thread_local] = ACTIONS(1370), + [anon_sym___thread] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_constexpr] = ACTIONS(1370), + [anon_sym_volatile] = ACTIONS(1370), + [anon_sym_restrict] = ACTIONS(1370), + [anon_sym___restrict__] = ACTIONS(1370), + [anon_sym__Atomic] = ACTIONS(1370), + [anon_sym__Noreturn] = ACTIONS(1370), + [anon_sym_noreturn] = ACTIONS(1370), + [anon_sym_alignas] = ACTIONS(1370), + [anon_sym__Alignas] = ACTIONS(1370), + [sym_primitive_type] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_else] = ACTIONS(1370), + [anon_sym_switch] = ACTIONS(1370), + [anon_sym_case] = ACTIONS(1370), + [anon_sym_default] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_goto] = ACTIONS(1370), + [anon_sym___try] = ACTIONS(1370), + [anon_sym___leave] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_sizeof] = ACTIONS(1370), + [anon_sym___alignof__] = ACTIONS(1370), + [anon_sym___alignof] = ACTIONS(1370), + [anon_sym__alignof] = ACTIONS(1370), + [anon_sym_alignof] = ACTIONS(1370), + [anon_sym__Alignof] = ACTIONS(1370), + [anon_sym_offsetof] = ACTIONS(1370), + [anon_sym__Generic] = ACTIONS(1370), + [anon_sym_asm] = ACTIONS(1370), + [anon_sym___asm__] = ACTIONS(1370), + [sym_number_literal] = ACTIONS(1372), + [anon_sym_L_SQUOTE] = ACTIONS(1372), + [anon_sym_u_SQUOTE] = ACTIONS(1372), + [anon_sym_U_SQUOTE] = ACTIONS(1372), + [anon_sym_u8_SQUOTE] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_L_DQUOTE] = ACTIONS(1372), + [anon_sym_u_DQUOTE] = ACTIONS(1372), + [anon_sym_U_DQUOTE] = ACTIONS(1372), + [anon_sym_u8_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [sym_true] = ACTIONS(1370), + [sym_false] = ACTIONS(1370), + [anon_sym_NULL] = ACTIONS(1370), + [anon_sym_nullptr] = ACTIONS(1370), [sym_comment] = ACTIONS(5), }, - [369] = { - [sym_identifier] = ACTIONS(1412), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1412), - [aux_sym_preproc_def_token1] = ACTIONS(1412), - [aux_sym_preproc_if_token1] = ACTIONS(1412), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1412), - [sym_preproc_directive] = ACTIONS(1412), - [anon_sym_LPAREN2] = ACTIONS(1414), - [anon_sym_BANG] = ACTIONS(1414), - [anon_sym_TILDE] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1414), - [anon_sym___extension__] = ACTIONS(1412), - [anon_sym_typedef] = ACTIONS(1412), - [anon_sym_extern] = ACTIONS(1412), - [anon_sym___attribute__] = ACTIONS(1412), - [anon_sym___scanf] = ACTIONS(1412), - [anon_sym___printf] = ACTIONS(1412), - [anon_sym___read_mostly] = ACTIONS(1412), - [anon_sym___must_hold] = ACTIONS(1412), - [anon_sym___ro_after_init] = ACTIONS(1412), - [anon_sym___noreturn] = ACTIONS(1412), - [anon_sym___cold] = ACTIONS(1412), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1414), - [anon_sym___declspec] = ACTIONS(1412), - [anon_sym___init] = ACTIONS(1412), - [anon_sym___exit] = ACTIONS(1412), - [anon_sym___cdecl] = ACTIONS(1412), - [anon_sym___clrcall] = ACTIONS(1412), - [anon_sym___stdcall] = ACTIONS(1412), - [anon_sym___fastcall] = ACTIONS(1412), - [anon_sym___thiscall] = ACTIONS(1412), - [anon_sym___vectorcall] = ACTIONS(1412), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1414), - [anon_sym_signed] = ACTIONS(1412), - [anon_sym_unsigned] = ACTIONS(1412), - [anon_sym_long] = ACTIONS(1412), - [anon_sym_short] = ACTIONS(1412), - [anon_sym_static] = ACTIONS(1412), - [anon_sym_auto] = ACTIONS(1412), - [anon_sym_register] = ACTIONS(1412), - [anon_sym_inline] = ACTIONS(1412), - [anon_sym___inline] = ACTIONS(1412), - [anon_sym___inline__] = ACTIONS(1412), - [anon_sym___forceinline] = ACTIONS(1412), - [anon_sym_thread_local] = ACTIONS(1412), - [anon_sym___thread] = ACTIONS(1412), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_constexpr] = ACTIONS(1412), - [anon_sym_volatile] = ACTIONS(1412), - [anon_sym_restrict] = ACTIONS(1412), - [anon_sym___restrict__] = ACTIONS(1412), - [anon_sym__Atomic] = ACTIONS(1412), - [anon_sym__Noreturn] = ACTIONS(1412), - [anon_sym_noreturn] = ACTIONS(1412), - [anon_sym_alignas] = ACTIONS(1412), - [anon_sym__Alignas] = ACTIONS(1412), - [sym_primitive_type] = ACTIONS(1412), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_struct] = ACTIONS(1412), - [anon_sym_union] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1412), - [anon_sym_switch] = ACTIONS(1412), - [anon_sym_case] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1412), - [anon_sym_while] = ACTIONS(1412), - [anon_sym_do] = ACTIONS(1412), - [anon_sym_for] = ACTIONS(1412), - [anon_sym_return] = ACTIONS(1412), - [anon_sym_break] = ACTIONS(1412), - [anon_sym_continue] = ACTIONS(1412), - [anon_sym_goto] = ACTIONS(1412), - [anon_sym___try] = ACTIONS(1412), - [anon_sym___leave] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1414), - [anon_sym_PLUS_PLUS] = ACTIONS(1414), - [anon_sym_sizeof] = ACTIONS(1412), - [anon_sym___alignof__] = ACTIONS(1412), - [anon_sym___alignof] = ACTIONS(1412), - [anon_sym__alignof] = ACTIONS(1412), - [anon_sym_alignof] = ACTIONS(1412), - [anon_sym__Alignof] = ACTIONS(1412), - [anon_sym_offsetof] = ACTIONS(1412), - [anon_sym__Generic] = ACTIONS(1412), - [anon_sym_asm] = ACTIONS(1412), - [anon_sym___asm__] = ACTIONS(1412), - [sym_number_literal] = ACTIONS(1414), - [anon_sym_L_SQUOTE] = ACTIONS(1414), - [anon_sym_u_SQUOTE] = ACTIONS(1414), - [anon_sym_U_SQUOTE] = ACTIONS(1414), - [anon_sym_u8_SQUOTE] = ACTIONS(1414), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_L_DQUOTE] = ACTIONS(1414), - [anon_sym_u_DQUOTE] = ACTIONS(1414), - [anon_sym_U_DQUOTE] = ACTIONS(1414), - [anon_sym_u8_DQUOTE] = ACTIONS(1414), - [anon_sym_DQUOTE] = ACTIONS(1414), - [sym_true] = ACTIONS(1412), - [sym_false] = ACTIONS(1412), - [anon_sym_NULL] = ACTIONS(1412), - [anon_sym_nullptr] = ACTIONS(1412), + [294] = { + [sym_identifier] = ACTIONS(1246), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1246), + [aux_sym_preproc_def_token1] = ACTIONS(1246), + [aux_sym_preproc_if_token1] = ACTIONS(1246), + [aux_sym_preproc_if_token2] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1246), + [sym_preproc_directive] = ACTIONS(1246), + [anon_sym_LPAREN2] = ACTIONS(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_TILDE] = ACTIONS(1248), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_PLUS] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1248), + [anon_sym___extension__] = ACTIONS(1246), + [anon_sym_typedef] = ACTIONS(1246), + [anon_sym_extern] = ACTIONS(1246), + [anon_sym___attribute__] = ACTIONS(1246), + [anon_sym___scanf] = ACTIONS(1246), + [anon_sym___printf] = ACTIONS(1246), + [anon_sym___read_mostly] = ACTIONS(1246), + [anon_sym___must_hold] = ACTIONS(1246), + [anon_sym___ro_after_init] = ACTIONS(1246), + [anon_sym___noreturn] = ACTIONS(1246), + [anon_sym___cold] = ACTIONS(1246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1248), + [anon_sym___declspec] = ACTIONS(1246), + [anon_sym___init] = ACTIONS(1246), + [anon_sym___exit] = ACTIONS(1246), + [anon_sym___cdecl] = ACTIONS(1246), + [anon_sym___clrcall] = ACTIONS(1246), + [anon_sym___stdcall] = ACTIONS(1246), + [anon_sym___fastcall] = ACTIONS(1246), + [anon_sym___thiscall] = ACTIONS(1246), + [anon_sym___vectorcall] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_signed] = ACTIONS(1246), + [anon_sym_unsigned] = ACTIONS(1246), + [anon_sym_long] = ACTIONS(1246), + [anon_sym_short] = ACTIONS(1246), + [anon_sym_static] = ACTIONS(1246), + [anon_sym_auto] = ACTIONS(1246), + [anon_sym_register] = ACTIONS(1246), + [anon_sym_inline] = ACTIONS(1246), + [anon_sym___inline] = ACTIONS(1246), + [anon_sym___inline__] = ACTIONS(1246), + [anon_sym___forceinline] = ACTIONS(1246), + [anon_sym_thread_local] = ACTIONS(1246), + [anon_sym___thread] = ACTIONS(1246), + [anon_sym_const] = ACTIONS(1246), + [anon_sym_constexpr] = ACTIONS(1246), + [anon_sym_volatile] = ACTIONS(1246), + [anon_sym_restrict] = ACTIONS(1246), + [anon_sym___restrict__] = ACTIONS(1246), + [anon_sym__Atomic] = ACTIONS(1246), + [anon_sym__Noreturn] = ACTIONS(1246), + [anon_sym_noreturn] = ACTIONS(1246), + [anon_sym_alignas] = ACTIONS(1246), + [anon_sym__Alignas] = ACTIONS(1246), + [sym_primitive_type] = ACTIONS(1246), + [anon_sym_enum] = ACTIONS(1246), + [anon_sym_struct] = ACTIONS(1246), + [anon_sym_union] = ACTIONS(1246), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_else] = ACTIONS(1246), + [anon_sym_switch] = ACTIONS(1246), + [anon_sym_case] = ACTIONS(1246), + [anon_sym_default] = ACTIONS(1246), + [anon_sym_while] = ACTIONS(1246), + [anon_sym_do] = ACTIONS(1246), + [anon_sym_for] = ACTIONS(1246), + [anon_sym_return] = ACTIONS(1246), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1246), + [anon_sym_goto] = ACTIONS(1246), + [anon_sym___try] = ACTIONS(1246), + [anon_sym___leave] = ACTIONS(1246), + [anon_sym_DASH_DASH] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_sizeof] = ACTIONS(1246), + [anon_sym___alignof__] = ACTIONS(1246), + [anon_sym___alignof] = ACTIONS(1246), + [anon_sym__alignof] = ACTIONS(1246), + [anon_sym_alignof] = ACTIONS(1246), + [anon_sym__Alignof] = ACTIONS(1246), + [anon_sym_offsetof] = ACTIONS(1246), + [anon_sym__Generic] = ACTIONS(1246), + [anon_sym_asm] = ACTIONS(1246), + [anon_sym___asm__] = ACTIONS(1246), + [sym_number_literal] = ACTIONS(1248), + [anon_sym_L_SQUOTE] = ACTIONS(1248), + [anon_sym_u_SQUOTE] = ACTIONS(1248), + [anon_sym_U_SQUOTE] = ACTIONS(1248), + [anon_sym_u8_SQUOTE] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1248), + [anon_sym_L_DQUOTE] = ACTIONS(1248), + [anon_sym_u_DQUOTE] = ACTIONS(1248), + [anon_sym_U_DQUOTE] = ACTIONS(1248), + [anon_sym_u8_DQUOTE] = ACTIONS(1248), + [anon_sym_DQUOTE] = ACTIONS(1248), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), + [anon_sym_NULL] = ACTIONS(1246), + [anon_sym_nullptr] = ACTIONS(1246), [sym_comment] = ACTIONS(5), }, - [370] = { - [sym_identifier] = ACTIONS(1400), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1400), - [aux_sym_preproc_def_token1] = ACTIONS(1400), - [aux_sym_preproc_if_token1] = ACTIONS(1400), - [aux_sym_preproc_if_token2] = ACTIONS(1400), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1400), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1400), - [sym_preproc_directive] = ACTIONS(1400), - [anon_sym_LPAREN2] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1402), - [anon_sym___extension__] = ACTIONS(1400), - [anon_sym_typedef] = ACTIONS(1400), - [anon_sym_extern] = ACTIONS(1400), - [anon_sym___attribute__] = ACTIONS(1400), - [anon_sym___scanf] = ACTIONS(1400), - [anon_sym___printf] = ACTIONS(1400), - [anon_sym___read_mostly] = ACTIONS(1400), - [anon_sym___must_hold] = ACTIONS(1400), - [anon_sym___ro_after_init] = ACTIONS(1400), - [anon_sym___noreturn] = ACTIONS(1400), - [anon_sym___cold] = ACTIONS(1400), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1402), - [anon_sym___declspec] = ACTIONS(1400), - [anon_sym___init] = ACTIONS(1400), - [anon_sym___exit] = ACTIONS(1400), - [anon_sym___cdecl] = ACTIONS(1400), - [anon_sym___clrcall] = ACTIONS(1400), - [anon_sym___stdcall] = ACTIONS(1400), - [anon_sym___fastcall] = ACTIONS(1400), - [anon_sym___thiscall] = ACTIONS(1400), - [anon_sym___vectorcall] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_signed] = ACTIONS(1400), - [anon_sym_unsigned] = ACTIONS(1400), - [anon_sym_long] = ACTIONS(1400), - [anon_sym_short] = ACTIONS(1400), - [anon_sym_static] = ACTIONS(1400), - [anon_sym_auto] = ACTIONS(1400), - [anon_sym_register] = ACTIONS(1400), - [anon_sym_inline] = ACTIONS(1400), - [anon_sym___inline] = ACTIONS(1400), - [anon_sym___inline__] = ACTIONS(1400), - [anon_sym___forceinline] = ACTIONS(1400), - [anon_sym_thread_local] = ACTIONS(1400), - [anon_sym___thread] = ACTIONS(1400), - [anon_sym_const] = ACTIONS(1400), - [anon_sym_constexpr] = ACTIONS(1400), - [anon_sym_volatile] = ACTIONS(1400), - [anon_sym_restrict] = ACTIONS(1400), - [anon_sym___restrict__] = ACTIONS(1400), - [anon_sym__Atomic] = ACTIONS(1400), - [anon_sym__Noreturn] = ACTIONS(1400), - [anon_sym_noreturn] = ACTIONS(1400), - [anon_sym_alignas] = ACTIONS(1400), - [anon_sym__Alignas] = ACTIONS(1400), - [sym_primitive_type] = ACTIONS(1400), - [anon_sym_enum] = ACTIONS(1400), - [anon_sym_struct] = ACTIONS(1400), - [anon_sym_union] = ACTIONS(1400), - [anon_sym_if] = ACTIONS(1400), - [anon_sym_switch] = ACTIONS(1400), - [anon_sym_case] = ACTIONS(1400), - [anon_sym_default] = ACTIONS(1400), - [anon_sym_while] = ACTIONS(1400), - [anon_sym_do] = ACTIONS(1400), - [anon_sym_for] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(1400), - [anon_sym_break] = ACTIONS(1400), - [anon_sym_continue] = ACTIONS(1400), - [anon_sym_goto] = ACTIONS(1400), - [anon_sym___try] = ACTIONS(1400), - [anon_sym___leave] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1402), - [anon_sym_PLUS_PLUS] = ACTIONS(1402), - [anon_sym_sizeof] = ACTIONS(1400), - [anon_sym___alignof__] = ACTIONS(1400), - [anon_sym___alignof] = ACTIONS(1400), - [anon_sym__alignof] = ACTIONS(1400), - [anon_sym_alignof] = ACTIONS(1400), - [anon_sym__Alignof] = ACTIONS(1400), - [anon_sym_offsetof] = ACTIONS(1400), - [anon_sym__Generic] = ACTIONS(1400), - [anon_sym_asm] = ACTIONS(1400), - [anon_sym___asm__] = ACTIONS(1400), - [sym_number_literal] = ACTIONS(1402), - [anon_sym_L_SQUOTE] = ACTIONS(1402), - [anon_sym_u_SQUOTE] = ACTIONS(1402), - [anon_sym_U_SQUOTE] = ACTIONS(1402), - [anon_sym_u8_SQUOTE] = ACTIONS(1402), - [anon_sym_SQUOTE] = ACTIONS(1402), - [anon_sym_L_DQUOTE] = ACTIONS(1402), - [anon_sym_u_DQUOTE] = ACTIONS(1402), - [anon_sym_U_DQUOTE] = ACTIONS(1402), - [anon_sym_u8_DQUOTE] = ACTIONS(1402), - [anon_sym_DQUOTE] = ACTIONS(1402), - [sym_true] = ACTIONS(1400), - [sym_false] = ACTIONS(1400), - [anon_sym_NULL] = ACTIONS(1400), - [anon_sym_nullptr] = ACTIONS(1400), + [295] = { + [sym_identifier] = ACTIONS(1318), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym___scanf] = ACTIONS(1318), + [anon_sym___printf] = ACTIONS(1318), + [anon_sym___read_mostly] = ACTIONS(1318), + [anon_sym___must_hold] = ACTIONS(1318), + [anon_sym___ro_after_init] = ACTIONS(1318), + [anon_sym___noreturn] = ACTIONS(1318), + [anon_sym___cold] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___init] = ACTIONS(1318), + [anon_sym___exit] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_RBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [anon_sym_alignas] = ACTIONS(1318), + [anon_sym__Alignas] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(5), }, - [371] = { - [ts_builtin_sym_end] = ACTIONS(1430), - [sym_identifier] = ACTIONS(1428), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1428), - [aux_sym_preproc_def_token1] = ACTIONS(1428), - [aux_sym_preproc_if_token1] = ACTIONS(1428), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1428), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1428), - [sym_preproc_directive] = ACTIONS(1428), - [anon_sym_LPAREN2] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym___extension__] = ACTIONS(1428), - [anon_sym_typedef] = ACTIONS(1428), - [anon_sym_extern] = ACTIONS(1428), - [anon_sym___attribute__] = ACTIONS(1428), - [anon_sym___scanf] = ACTIONS(1428), - [anon_sym___printf] = ACTIONS(1428), - [anon_sym___read_mostly] = ACTIONS(1428), - [anon_sym___must_hold] = ACTIONS(1428), - [anon_sym___ro_after_init] = ACTIONS(1428), - [anon_sym___noreturn] = ACTIONS(1428), - [anon_sym___cold] = ACTIONS(1428), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1430), - [anon_sym___declspec] = ACTIONS(1428), - [anon_sym___init] = ACTIONS(1428), - [anon_sym___exit] = ACTIONS(1428), - [anon_sym___cdecl] = ACTIONS(1428), - [anon_sym___clrcall] = ACTIONS(1428), - [anon_sym___stdcall] = ACTIONS(1428), - [anon_sym___fastcall] = ACTIONS(1428), - [anon_sym___thiscall] = ACTIONS(1428), - [anon_sym___vectorcall] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_signed] = ACTIONS(1428), - [anon_sym_unsigned] = ACTIONS(1428), - [anon_sym_long] = ACTIONS(1428), - [anon_sym_short] = ACTIONS(1428), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_auto] = ACTIONS(1428), - [anon_sym_register] = ACTIONS(1428), - [anon_sym_inline] = ACTIONS(1428), - [anon_sym___inline] = ACTIONS(1428), - [anon_sym___inline__] = ACTIONS(1428), - [anon_sym___forceinline] = ACTIONS(1428), - [anon_sym_thread_local] = ACTIONS(1428), - [anon_sym___thread] = ACTIONS(1428), - [anon_sym_const] = ACTIONS(1428), - [anon_sym_constexpr] = ACTIONS(1428), - [anon_sym_volatile] = ACTIONS(1428), - [anon_sym_restrict] = ACTIONS(1428), - [anon_sym___restrict__] = ACTIONS(1428), - [anon_sym__Atomic] = ACTIONS(1428), - [anon_sym__Noreturn] = ACTIONS(1428), - [anon_sym_noreturn] = ACTIONS(1428), - [anon_sym_alignas] = ACTIONS(1428), - [anon_sym__Alignas] = ACTIONS(1428), - [sym_primitive_type] = ACTIONS(1428), - [anon_sym_enum] = ACTIONS(1428), - [anon_sym_struct] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1428), - [anon_sym_if] = ACTIONS(1428), - [anon_sym_switch] = ACTIONS(1428), - [anon_sym_case] = ACTIONS(1428), - [anon_sym_default] = ACTIONS(1428), - [anon_sym_while] = ACTIONS(1428), - [anon_sym_do] = ACTIONS(1428), - [anon_sym_for] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1428), - [anon_sym_break] = ACTIONS(1428), - [anon_sym_continue] = ACTIONS(1428), - [anon_sym_goto] = ACTIONS(1428), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_sizeof] = ACTIONS(1428), - [anon_sym___alignof__] = ACTIONS(1428), - [anon_sym___alignof] = ACTIONS(1428), - [anon_sym__alignof] = ACTIONS(1428), - [anon_sym_alignof] = ACTIONS(1428), - [anon_sym__Alignof] = ACTIONS(1428), - [anon_sym_offsetof] = ACTIONS(1428), - [anon_sym__Generic] = ACTIONS(1428), - [anon_sym_asm] = ACTIONS(1428), - [anon_sym___asm__] = ACTIONS(1428), - [sym_number_literal] = ACTIONS(1430), - [anon_sym_L_SQUOTE] = ACTIONS(1430), - [anon_sym_u_SQUOTE] = ACTIONS(1430), - [anon_sym_U_SQUOTE] = ACTIONS(1430), - [anon_sym_u8_SQUOTE] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_L_DQUOTE] = ACTIONS(1430), - [anon_sym_u_DQUOTE] = ACTIONS(1430), - [anon_sym_U_DQUOTE] = ACTIONS(1430), - [anon_sym_u8_DQUOTE] = ACTIONS(1430), - [anon_sym_DQUOTE] = ACTIONS(1430), - [sym_true] = ACTIONS(1428), - [sym_false] = ACTIONS(1428), - [anon_sym_NULL] = ACTIONS(1428), - [anon_sym_nullptr] = ACTIONS(1428), + [296] = { + [ts_builtin_sym_end] = ACTIONS(1304), + [sym_identifier] = ACTIONS(1302), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym___scanf] = ACTIONS(1302), + [anon_sym___printf] = ACTIONS(1302), + [anon_sym___read_mostly] = ACTIONS(1302), + [anon_sym___must_hold] = ACTIONS(1302), + [anon_sym___ro_after_init] = ACTIONS(1302), + [anon_sym___noreturn] = ACTIONS(1302), + [anon_sym___cold] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___init] = ACTIONS(1302), + [anon_sym___exit] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [anon_sym_alignas] = ACTIONS(1302), + [anon_sym__Alignas] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(5), }, - [372] = { - [ts_builtin_sym_end] = ACTIONS(1384), - [sym_identifier] = ACTIONS(1382), + [297] = { + [sym_identifier] = ACTIONS(1318), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym___extension__] = ACTIONS(1382), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym___scanf] = ACTIONS(1382), - [anon_sym___printf] = ACTIONS(1382), - [anon_sym___read_mostly] = ACTIONS(1382), - [anon_sym___must_hold] = ACTIONS(1382), - [anon_sym___ro_after_init] = ACTIONS(1382), - [anon_sym___noreturn] = ACTIONS(1382), - [anon_sym___cold] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___init] = ACTIONS(1382), - [anon_sym___exit] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym___inline] = ACTIONS(1382), - [anon_sym___inline__] = ACTIONS(1382), - [anon_sym___forceinline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym___thread] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_constexpr] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1382), - [anon_sym_restrict] = ACTIONS(1382), - [anon_sym___restrict__] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1382), - [anon_sym__Noreturn] = ACTIONS(1382), - [anon_sym_noreturn] = ACTIONS(1382), - [anon_sym_alignas] = ACTIONS(1382), - [anon_sym__Alignas] = ACTIONS(1382), - [sym_primitive_type] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym___alignof__] = ACTIONS(1382), - [anon_sym___alignof] = ACTIONS(1382), - [anon_sym__alignof] = ACTIONS(1382), - [anon_sym_alignof] = ACTIONS(1382), - [anon_sym__Alignof] = ACTIONS(1382), - [anon_sym_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym___asm__] = ACTIONS(1382), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_L_SQUOTE] = ACTIONS(1384), - [anon_sym_u_SQUOTE] = ACTIONS(1384), - [anon_sym_U_SQUOTE] = ACTIONS(1384), - [anon_sym_u8_SQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_L_DQUOTE] = ACTIONS(1384), - [anon_sym_u_DQUOTE] = ACTIONS(1384), - [anon_sym_U_DQUOTE] = ACTIONS(1384), - [anon_sym_u8_DQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [anon_sym_NULL] = ACTIONS(1382), - [anon_sym_nullptr] = ACTIONS(1382), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym___scanf] = ACTIONS(1318), + [anon_sym___printf] = ACTIONS(1318), + [anon_sym___read_mostly] = ACTIONS(1318), + [anon_sym___must_hold] = ACTIONS(1318), + [anon_sym___ro_after_init] = ACTIONS(1318), + [anon_sym___noreturn] = ACTIONS(1318), + [anon_sym___cold] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___init] = ACTIONS(1318), + [anon_sym___exit] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_RBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [anon_sym_alignas] = ACTIONS(1318), + [anon_sym__Alignas] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(5), }, - [373] = { - [ts_builtin_sym_end] = ACTIONS(1398), - [sym_identifier] = ACTIONS(1396), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1396), - [aux_sym_preproc_def_token1] = ACTIONS(1396), - [aux_sym_preproc_if_token1] = ACTIONS(1396), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1396), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1396), - [sym_preproc_directive] = ACTIONS(1396), - [anon_sym_LPAREN2] = ACTIONS(1398), - [anon_sym_BANG] = ACTIONS(1398), - [anon_sym_TILDE] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym___extension__] = ACTIONS(1396), - [anon_sym_typedef] = ACTIONS(1396), - [anon_sym_extern] = ACTIONS(1396), - [anon_sym___attribute__] = ACTIONS(1396), - [anon_sym___scanf] = ACTIONS(1396), - [anon_sym___printf] = ACTIONS(1396), - [anon_sym___read_mostly] = ACTIONS(1396), - [anon_sym___must_hold] = ACTIONS(1396), - [anon_sym___ro_after_init] = ACTIONS(1396), - [anon_sym___noreturn] = ACTIONS(1396), - [anon_sym___cold] = ACTIONS(1396), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1398), - [anon_sym___declspec] = ACTIONS(1396), - [anon_sym___init] = ACTIONS(1396), - [anon_sym___exit] = ACTIONS(1396), - [anon_sym___cdecl] = ACTIONS(1396), - [anon_sym___clrcall] = ACTIONS(1396), - [anon_sym___stdcall] = ACTIONS(1396), - [anon_sym___fastcall] = ACTIONS(1396), - [anon_sym___thiscall] = ACTIONS(1396), - [anon_sym___vectorcall] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_signed] = ACTIONS(1396), - [anon_sym_unsigned] = ACTIONS(1396), - [anon_sym_long] = ACTIONS(1396), - [anon_sym_short] = ACTIONS(1396), - [anon_sym_static] = ACTIONS(1396), - [anon_sym_auto] = ACTIONS(1396), - [anon_sym_register] = ACTIONS(1396), - [anon_sym_inline] = ACTIONS(1396), - [anon_sym___inline] = ACTIONS(1396), - [anon_sym___inline__] = ACTIONS(1396), - [anon_sym___forceinline] = ACTIONS(1396), - [anon_sym_thread_local] = ACTIONS(1396), - [anon_sym___thread] = ACTIONS(1396), - [anon_sym_const] = ACTIONS(1396), - [anon_sym_constexpr] = ACTIONS(1396), - [anon_sym_volatile] = ACTIONS(1396), - [anon_sym_restrict] = ACTIONS(1396), - [anon_sym___restrict__] = ACTIONS(1396), - [anon_sym__Atomic] = ACTIONS(1396), - [anon_sym__Noreturn] = ACTIONS(1396), - [anon_sym_noreturn] = ACTIONS(1396), - [anon_sym_alignas] = ACTIONS(1396), - [anon_sym__Alignas] = ACTIONS(1396), - [sym_primitive_type] = ACTIONS(1396), - [anon_sym_enum] = ACTIONS(1396), - [anon_sym_struct] = ACTIONS(1396), - [anon_sym_union] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1396), - [anon_sym_switch] = ACTIONS(1396), - [anon_sym_case] = ACTIONS(1396), - [anon_sym_default] = ACTIONS(1396), - [anon_sym_while] = ACTIONS(1396), - [anon_sym_do] = ACTIONS(1396), - [anon_sym_for] = ACTIONS(1396), - [anon_sym_return] = ACTIONS(1396), - [anon_sym_break] = ACTIONS(1396), - [anon_sym_continue] = ACTIONS(1396), - [anon_sym_goto] = ACTIONS(1396), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_sizeof] = ACTIONS(1396), - [anon_sym___alignof__] = ACTIONS(1396), - [anon_sym___alignof] = ACTIONS(1396), - [anon_sym__alignof] = ACTIONS(1396), - [anon_sym_alignof] = ACTIONS(1396), - [anon_sym__Alignof] = ACTIONS(1396), - [anon_sym_offsetof] = ACTIONS(1396), - [anon_sym__Generic] = ACTIONS(1396), - [anon_sym_asm] = ACTIONS(1396), - [anon_sym___asm__] = ACTIONS(1396), - [sym_number_literal] = ACTIONS(1398), - [anon_sym_L_SQUOTE] = ACTIONS(1398), - [anon_sym_u_SQUOTE] = ACTIONS(1398), - [anon_sym_U_SQUOTE] = ACTIONS(1398), - [anon_sym_u8_SQUOTE] = ACTIONS(1398), - [anon_sym_SQUOTE] = ACTIONS(1398), - [anon_sym_L_DQUOTE] = ACTIONS(1398), - [anon_sym_u_DQUOTE] = ACTIONS(1398), - [anon_sym_U_DQUOTE] = ACTIONS(1398), - [anon_sym_u8_DQUOTE] = ACTIONS(1398), - [anon_sym_DQUOTE] = ACTIONS(1398), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [anon_sym_NULL] = ACTIONS(1396), - [anon_sym_nullptr] = ACTIONS(1396), + [298] = { + [sym_identifier] = ACTIONS(1306), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym___scanf] = ACTIONS(1306), + [anon_sym___printf] = ACTIONS(1306), + [anon_sym___read_mostly] = ACTIONS(1306), + [anon_sym___must_hold] = ACTIONS(1306), + [anon_sym___ro_after_init] = ACTIONS(1306), + [anon_sym___noreturn] = ACTIONS(1306), + [anon_sym___cold] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___init] = ACTIONS(1306), + [anon_sym___exit] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [anon_sym_alignas] = ACTIONS(1306), + [anon_sym__Alignas] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(5), }, - [374] = { - [ts_builtin_sym_end] = ACTIONS(1446), - [sym_identifier] = ACTIONS(1444), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1444), - [aux_sym_preproc_def_token1] = ACTIONS(1444), - [aux_sym_preproc_if_token1] = ACTIONS(1444), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), - [sym_preproc_directive] = ACTIONS(1444), - [anon_sym_LPAREN2] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_TILDE] = ACTIONS(1446), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1446), - [anon_sym___extension__] = ACTIONS(1444), - [anon_sym_typedef] = ACTIONS(1444), - [anon_sym_extern] = ACTIONS(1444), - [anon_sym___attribute__] = ACTIONS(1444), - [anon_sym___scanf] = ACTIONS(1444), - [anon_sym___printf] = ACTIONS(1444), - [anon_sym___read_mostly] = ACTIONS(1444), - [anon_sym___must_hold] = ACTIONS(1444), - [anon_sym___ro_after_init] = ACTIONS(1444), - [anon_sym___noreturn] = ACTIONS(1444), - [anon_sym___cold] = ACTIONS(1444), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), - [anon_sym___declspec] = ACTIONS(1444), - [anon_sym___init] = ACTIONS(1444), - [anon_sym___exit] = ACTIONS(1444), - [anon_sym___cdecl] = ACTIONS(1444), - [anon_sym___clrcall] = ACTIONS(1444), - [anon_sym___stdcall] = ACTIONS(1444), - [anon_sym___fastcall] = ACTIONS(1444), - [anon_sym___thiscall] = ACTIONS(1444), - [anon_sym___vectorcall] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_signed] = ACTIONS(1444), - [anon_sym_unsigned] = ACTIONS(1444), - [anon_sym_long] = ACTIONS(1444), - [anon_sym_short] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_auto] = ACTIONS(1444), - [anon_sym_register] = ACTIONS(1444), - [anon_sym_inline] = ACTIONS(1444), - [anon_sym___inline] = ACTIONS(1444), - [anon_sym___inline__] = ACTIONS(1444), - [anon_sym___forceinline] = ACTIONS(1444), - [anon_sym_thread_local] = ACTIONS(1444), - [anon_sym___thread] = ACTIONS(1444), - [anon_sym_const] = ACTIONS(1444), - [anon_sym_constexpr] = ACTIONS(1444), - [anon_sym_volatile] = ACTIONS(1444), - [anon_sym_restrict] = ACTIONS(1444), - [anon_sym___restrict__] = ACTIONS(1444), - [anon_sym__Atomic] = ACTIONS(1444), - [anon_sym__Noreturn] = ACTIONS(1444), - [anon_sym_noreturn] = ACTIONS(1444), - [anon_sym_alignas] = ACTIONS(1444), - [anon_sym__Alignas] = ACTIONS(1444), - [sym_primitive_type] = ACTIONS(1444), - [anon_sym_enum] = ACTIONS(1444), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_union] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_switch] = ACTIONS(1444), - [anon_sym_case] = ACTIONS(1444), - [anon_sym_default] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_do] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_goto] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_sizeof] = ACTIONS(1444), - [anon_sym___alignof__] = ACTIONS(1444), - [anon_sym___alignof] = ACTIONS(1444), - [anon_sym__alignof] = ACTIONS(1444), - [anon_sym_alignof] = ACTIONS(1444), - [anon_sym__Alignof] = ACTIONS(1444), - [anon_sym_offsetof] = ACTIONS(1444), - [anon_sym__Generic] = ACTIONS(1444), - [anon_sym_asm] = ACTIONS(1444), - [anon_sym___asm__] = ACTIONS(1444), - [sym_number_literal] = ACTIONS(1446), - [anon_sym_L_SQUOTE] = ACTIONS(1446), - [anon_sym_u_SQUOTE] = ACTIONS(1446), - [anon_sym_U_SQUOTE] = ACTIONS(1446), - [anon_sym_u8_SQUOTE] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1446), - [anon_sym_L_DQUOTE] = ACTIONS(1446), - [anon_sym_u_DQUOTE] = ACTIONS(1446), - [anon_sym_U_DQUOTE] = ACTIONS(1446), - [anon_sym_u8_DQUOTE] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(1446), - [sym_true] = ACTIONS(1444), - [sym_false] = ACTIONS(1444), - [anon_sym_NULL] = ACTIONS(1444), - [anon_sym_nullptr] = ACTIONS(1444), + [299] = { + [sym_identifier] = ACTIONS(1306), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym___scanf] = ACTIONS(1306), + [anon_sym___printf] = ACTIONS(1306), + [anon_sym___read_mostly] = ACTIONS(1306), + [anon_sym___must_hold] = ACTIONS(1306), + [anon_sym___ro_after_init] = ACTIONS(1306), + [anon_sym___noreturn] = ACTIONS(1306), + [anon_sym___cold] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___init] = ACTIONS(1306), + [anon_sym___exit] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [anon_sym_alignas] = ACTIONS(1306), + [anon_sym__Alignas] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(5), }, - [375] = { - [ts_builtin_sym_end] = ACTIONS(1364), - [sym_identifier] = ACTIONS(1362), + [300] = { + [sym_identifier] = ACTIONS(1246), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1362), - [aux_sym_preproc_def_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), - [sym_preproc_directive] = ACTIONS(1362), - [anon_sym_LPAREN2] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym___extension__] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym___attribute__] = ACTIONS(1362), - [anon_sym___scanf] = ACTIONS(1362), - [anon_sym___printf] = ACTIONS(1362), - [anon_sym___read_mostly] = ACTIONS(1362), - [anon_sym___must_hold] = ACTIONS(1362), - [anon_sym___ro_after_init] = ACTIONS(1362), - [anon_sym___noreturn] = ACTIONS(1362), - [anon_sym___cold] = ACTIONS(1362), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), - [anon_sym___declspec] = ACTIONS(1362), - [anon_sym___init] = ACTIONS(1362), - [anon_sym___exit] = ACTIONS(1362), - [anon_sym___cdecl] = ACTIONS(1362), - [anon_sym___clrcall] = ACTIONS(1362), - [anon_sym___stdcall] = ACTIONS(1362), - [anon_sym___fastcall] = ACTIONS(1362), - [anon_sym___thiscall] = ACTIONS(1362), - [anon_sym___vectorcall] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1362), - [anon_sym_unsigned] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_auto] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_inline] = ACTIONS(1362), - [anon_sym___inline] = ACTIONS(1362), - [anon_sym___inline__] = ACTIONS(1362), - [anon_sym___forceinline] = ACTIONS(1362), - [anon_sym_thread_local] = ACTIONS(1362), - [anon_sym___thread] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_constexpr] = ACTIONS(1362), - [anon_sym_volatile] = ACTIONS(1362), - [anon_sym_restrict] = ACTIONS(1362), - [anon_sym___restrict__] = ACTIONS(1362), - [anon_sym__Atomic] = ACTIONS(1362), - [anon_sym__Noreturn] = ACTIONS(1362), - [anon_sym_noreturn] = ACTIONS(1362), - [anon_sym_alignas] = ACTIONS(1362), - [anon_sym__Alignas] = ACTIONS(1362), - [sym_primitive_type] = ACTIONS(1362), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_switch] = ACTIONS(1362), - [anon_sym_case] = ACTIONS(1362), - [anon_sym_default] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_goto] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_sizeof] = ACTIONS(1362), - [anon_sym___alignof__] = ACTIONS(1362), - [anon_sym___alignof] = ACTIONS(1362), - [anon_sym__alignof] = ACTIONS(1362), - [anon_sym_alignof] = ACTIONS(1362), - [anon_sym__Alignof] = ACTIONS(1362), - [anon_sym_offsetof] = ACTIONS(1362), - [anon_sym__Generic] = ACTIONS(1362), - [anon_sym_asm] = ACTIONS(1362), - [anon_sym___asm__] = ACTIONS(1362), - [sym_number_literal] = ACTIONS(1364), - [anon_sym_L_SQUOTE] = ACTIONS(1364), - [anon_sym_u_SQUOTE] = ACTIONS(1364), - [anon_sym_U_SQUOTE] = ACTIONS(1364), - [anon_sym_u8_SQUOTE] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_L_DQUOTE] = ACTIONS(1364), - [anon_sym_u_DQUOTE] = ACTIONS(1364), - [anon_sym_U_DQUOTE] = ACTIONS(1364), - [anon_sym_u8_DQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [anon_sym_NULL] = ACTIONS(1362), - [anon_sym_nullptr] = ACTIONS(1362), + [aux_sym_preproc_include_token1] = ACTIONS(1246), + [aux_sym_preproc_def_token1] = ACTIONS(1246), + [aux_sym_preproc_if_token1] = ACTIONS(1246), + [aux_sym_preproc_if_token2] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1246), + [sym_preproc_directive] = ACTIONS(1246), + [anon_sym_LPAREN2] = ACTIONS(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_TILDE] = ACTIONS(1248), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_PLUS] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1248), + [anon_sym___extension__] = ACTIONS(1246), + [anon_sym_typedef] = ACTIONS(1246), + [anon_sym_extern] = ACTIONS(1246), + [anon_sym___attribute__] = ACTIONS(1246), + [anon_sym___scanf] = ACTIONS(1246), + [anon_sym___printf] = ACTIONS(1246), + [anon_sym___read_mostly] = ACTIONS(1246), + [anon_sym___must_hold] = ACTIONS(1246), + [anon_sym___ro_after_init] = ACTIONS(1246), + [anon_sym___noreturn] = ACTIONS(1246), + [anon_sym___cold] = ACTIONS(1246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1248), + [anon_sym___declspec] = ACTIONS(1246), + [anon_sym___init] = ACTIONS(1246), + [anon_sym___exit] = ACTIONS(1246), + [anon_sym___cdecl] = ACTIONS(1246), + [anon_sym___clrcall] = ACTIONS(1246), + [anon_sym___stdcall] = ACTIONS(1246), + [anon_sym___fastcall] = ACTIONS(1246), + [anon_sym___thiscall] = ACTIONS(1246), + [anon_sym___vectorcall] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_signed] = ACTIONS(1246), + [anon_sym_unsigned] = ACTIONS(1246), + [anon_sym_long] = ACTIONS(1246), + [anon_sym_short] = ACTIONS(1246), + [anon_sym_static] = ACTIONS(1246), + [anon_sym_auto] = ACTIONS(1246), + [anon_sym_register] = ACTIONS(1246), + [anon_sym_inline] = ACTIONS(1246), + [anon_sym___inline] = ACTIONS(1246), + [anon_sym___inline__] = ACTIONS(1246), + [anon_sym___forceinline] = ACTIONS(1246), + [anon_sym_thread_local] = ACTIONS(1246), + [anon_sym___thread] = ACTIONS(1246), + [anon_sym_const] = ACTIONS(1246), + [anon_sym_constexpr] = ACTIONS(1246), + [anon_sym_volatile] = ACTIONS(1246), + [anon_sym_restrict] = ACTIONS(1246), + [anon_sym___restrict__] = ACTIONS(1246), + [anon_sym__Atomic] = ACTIONS(1246), + [anon_sym__Noreturn] = ACTIONS(1246), + [anon_sym_noreturn] = ACTIONS(1246), + [anon_sym_alignas] = ACTIONS(1246), + [anon_sym__Alignas] = ACTIONS(1246), + [sym_primitive_type] = ACTIONS(1246), + [anon_sym_enum] = ACTIONS(1246), + [anon_sym_struct] = ACTIONS(1246), + [anon_sym_union] = ACTIONS(1246), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_else] = ACTIONS(1246), + [anon_sym_switch] = ACTIONS(1246), + [anon_sym_case] = ACTIONS(1246), + [anon_sym_default] = ACTIONS(1246), + [anon_sym_while] = ACTIONS(1246), + [anon_sym_do] = ACTIONS(1246), + [anon_sym_for] = ACTIONS(1246), + [anon_sym_return] = ACTIONS(1246), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1246), + [anon_sym_goto] = ACTIONS(1246), + [anon_sym___try] = ACTIONS(1246), + [anon_sym___leave] = ACTIONS(1246), + [anon_sym_DASH_DASH] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_sizeof] = ACTIONS(1246), + [anon_sym___alignof__] = ACTIONS(1246), + [anon_sym___alignof] = ACTIONS(1246), + [anon_sym__alignof] = ACTIONS(1246), + [anon_sym_alignof] = ACTIONS(1246), + [anon_sym__Alignof] = ACTIONS(1246), + [anon_sym_offsetof] = ACTIONS(1246), + [anon_sym__Generic] = ACTIONS(1246), + [anon_sym_asm] = ACTIONS(1246), + [anon_sym___asm__] = ACTIONS(1246), + [sym_number_literal] = ACTIONS(1248), + [anon_sym_L_SQUOTE] = ACTIONS(1248), + [anon_sym_u_SQUOTE] = ACTIONS(1248), + [anon_sym_U_SQUOTE] = ACTIONS(1248), + [anon_sym_u8_SQUOTE] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1248), + [anon_sym_L_DQUOTE] = ACTIONS(1248), + [anon_sym_u_DQUOTE] = ACTIONS(1248), + [anon_sym_U_DQUOTE] = ACTIONS(1248), + [anon_sym_u8_DQUOTE] = ACTIONS(1248), + [anon_sym_DQUOTE] = ACTIONS(1248), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), + [anon_sym_NULL] = ACTIONS(1246), + [anon_sym_nullptr] = ACTIONS(1246), [sym_comment] = ACTIONS(5), }, - [376] = { - [ts_builtin_sym_end] = ACTIONS(1376), - [sym_identifier] = ACTIONS(1374), + [301] = { + [sym_identifier] = ACTIONS(1306), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1374), - [aux_sym_preproc_def_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), - [sym_preproc_directive] = ACTIONS(1374), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym___extension__] = ACTIONS(1374), - [anon_sym_typedef] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym___attribute__] = ACTIONS(1374), - [anon_sym___scanf] = ACTIONS(1374), - [anon_sym___printf] = ACTIONS(1374), - [anon_sym___read_mostly] = ACTIONS(1374), - [anon_sym___must_hold] = ACTIONS(1374), - [anon_sym___ro_after_init] = ACTIONS(1374), - [anon_sym___noreturn] = ACTIONS(1374), - [anon_sym___cold] = ACTIONS(1374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym___declspec] = ACTIONS(1374), - [anon_sym___init] = ACTIONS(1374), - [anon_sym___exit] = ACTIONS(1374), - [anon_sym___cdecl] = ACTIONS(1374), - [anon_sym___clrcall] = ACTIONS(1374), - [anon_sym___stdcall] = ACTIONS(1374), - [anon_sym___fastcall] = ACTIONS(1374), - [anon_sym___thiscall] = ACTIONS(1374), - [anon_sym___vectorcall] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_signed] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_inline] = ACTIONS(1374), - [anon_sym___inline] = ACTIONS(1374), - [anon_sym___inline__] = ACTIONS(1374), - [anon_sym___forceinline] = ACTIONS(1374), - [anon_sym_thread_local] = ACTIONS(1374), - [anon_sym___thread] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_constexpr] = ACTIONS(1374), - [anon_sym_volatile] = ACTIONS(1374), - [anon_sym_restrict] = ACTIONS(1374), - [anon_sym___restrict__] = ACTIONS(1374), - [anon_sym__Atomic] = ACTIONS(1374), - [anon_sym__Noreturn] = ACTIONS(1374), - [anon_sym_noreturn] = ACTIONS(1374), - [anon_sym_alignas] = ACTIONS(1374), - [anon_sym__Alignas] = ACTIONS(1374), - [sym_primitive_type] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1374), - [anon_sym_case] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_goto] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1374), - [anon_sym___alignof__] = ACTIONS(1374), - [anon_sym___alignof] = ACTIONS(1374), - [anon_sym__alignof] = ACTIONS(1374), - [anon_sym_alignof] = ACTIONS(1374), - [anon_sym__Alignof] = ACTIONS(1374), - [anon_sym_offsetof] = ACTIONS(1374), - [anon_sym__Generic] = ACTIONS(1374), - [anon_sym_asm] = ACTIONS(1374), - [anon_sym___asm__] = ACTIONS(1374), - [sym_number_literal] = ACTIONS(1376), - [anon_sym_L_SQUOTE] = ACTIONS(1376), - [anon_sym_u_SQUOTE] = ACTIONS(1376), - [anon_sym_U_SQUOTE] = ACTIONS(1376), - [anon_sym_u8_SQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_L_DQUOTE] = ACTIONS(1376), - [anon_sym_u_DQUOTE] = ACTIONS(1376), - [anon_sym_U_DQUOTE] = ACTIONS(1376), - [anon_sym_u8_DQUOTE] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [anon_sym_NULL] = ACTIONS(1374), - [anon_sym_nullptr] = ACTIONS(1374), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym___scanf] = ACTIONS(1306), + [anon_sym___printf] = ACTIONS(1306), + [anon_sym___read_mostly] = ACTIONS(1306), + [anon_sym___must_hold] = ACTIONS(1306), + [anon_sym___ro_after_init] = ACTIONS(1306), + [anon_sym___noreturn] = ACTIONS(1306), + [anon_sym___cold] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___init] = ACTIONS(1306), + [anon_sym___exit] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [anon_sym_alignas] = ACTIONS(1306), + [anon_sym__Alignas] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(5), }, - [377] = { - [ts_builtin_sym_end] = ACTIONS(1394), - [sym_identifier] = ACTIONS(1392), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1392), - [aux_sym_preproc_def_token1] = ACTIONS(1392), - [aux_sym_preproc_if_token1] = ACTIONS(1392), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1392), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1392), - [sym_preproc_directive] = ACTIONS(1392), - [anon_sym_LPAREN2] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1392), - [anon_sym_PLUS] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym___extension__] = ACTIONS(1392), - [anon_sym_typedef] = ACTIONS(1392), - [anon_sym_extern] = ACTIONS(1392), - [anon_sym___attribute__] = ACTIONS(1392), - [anon_sym___scanf] = ACTIONS(1392), - [anon_sym___printf] = ACTIONS(1392), - [anon_sym___read_mostly] = ACTIONS(1392), - [anon_sym___must_hold] = ACTIONS(1392), - [anon_sym___ro_after_init] = ACTIONS(1392), - [anon_sym___noreturn] = ACTIONS(1392), - [anon_sym___cold] = ACTIONS(1392), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1394), - [anon_sym___declspec] = ACTIONS(1392), - [anon_sym___init] = ACTIONS(1392), - [anon_sym___exit] = ACTIONS(1392), - [anon_sym___cdecl] = ACTIONS(1392), - [anon_sym___clrcall] = ACTIONS(1392), - [anon_sym___stdcall] = ACTIONS(1392), - [anon_sym___fastcall] = ACTIONS(1392), - [anon_sym___thiscall] = ACTIONS(1392), - [anon_sym___vectorcall] = ACTIONS(1392), - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_signed] = ACTIONS(1392), - [anon_sym_unsigned] = ACTIONS(1392), - [anon_sym_long] = ACTIONS(1392), - [anon_sym_short] = ACTIONS(1392), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_auto] = ACTIONS(1392), - [anon_sym_register] = ACTIONS(1392), - [anon_sym_inline] = ACTIONS(1392), - [anon_sym___inline] = ACTIONS(1392), - [anon_sym___inline__] = ACTIONS(1392), - [anon_sym___forceinline] = ACTIONS(1392), - [anon_sym_thread_local] = ACTIONS(1392), - [anon_sym___thread] = ACTIONS(1392), - [anon_sym_const] = ACTIONS(1392), - [anon_sym_constexpr] = ACTIONS(1392), - [anon_sym_volatile] = ACTIONS(1392), - [anon_sym_restrict] = ACTIONS(1392), - [anon_sym___restrict__] = ACTIONS(1392), - [anon_sym__Atomic] = ACTIONS(1392), - [anon_sym__Noreturn] = ACTIONS(1392), - [anon_sym_noreturn] = ACTIONS(1392), - [anon_sym_alignas] = ACTIONS(1392), - [anon_sym__Alignas] = ACTIONS(1392), - [sym_primitive_type] = ACTIONS(1392), - [anon_sym_enum] = ACTIONS(1392), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_union] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1392), - [anon_sym_switch] = ACTIONS(1392), - [anon_sym_case] = ACTIONS(1392), - [anon_sym_default] = ACTIONS(1392), - [anon_sym_while] = ACTIONS(1392), - [anon_sym_do] = ACTIONS(1392), - [anon_sym_for] = ACTIONS(1392), - [anon_sym_return] = ACTIONS(1392), - [anon_sym_break] = ACTIONS(1392), - [anon_sym_continue] = ACTIONS(1392), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(1394), - [anon_sym_PLUS_PLUS] = ACTIONS(1394), - [anon_sym_sizeof] = ACTIONS(1392), - [anon_sym___alignof__] = ACTIONS(1392), - [anon_sym___alignof] = ACTIONS(1392), - [anon_sym__alignof] = ACTIONS(1392), - [anon_sym_alignof] = ACTIONS(1392), - [anon_sym__Alignof] = ACTIONS(1392), - [anon_sym_offsetof] = ACTIONS(1392), - [anon_sym__Generic] = ACTIONS(1392), - [anon_sym_asm] = ACTIONS(1392), - [anon_sym___asm__] = ACTIONS(1392), - [sym_number_literal] = ACTIONS(1394), - [anon_sym_L_SQUOTE] = ACTIONS(1394), - [anon_sym_u_SQUOTE] = ACTIONS(1394), - [anon_sym_U_SQUOTE] = ACTIONS(1394), - [anon_sym_u8_SQUOTE] = ACTIONS(1394), - [anon_sym_SQUOTE] = ACTIONS(1394), - [anon_sym_L_DQUOTE] = ACTIONS(1394), - [anon_sym_u_DQUOTE] = ACTIONS(1394), - [anon_sym_U_DQUOTE] = ACTIONS(1394), - [anon_sym_u8_DQUOTE] = ACTIONS(1394), - [anon_sym_DQUOTE] = ACTIONS(1394), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [anon_sym_NULL] = ACTIONS(1392), - [anon_sym_nullptr] = ACTIONS(1392), + [302] = { + [sym_identifier] = ACTIONS(1466), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1466), + [aux_sym_preproc_def_token1] = ACTIONS(1466), + [aux_sym_preproc_if_token1] = ACTIONS(1466), + [aux_sym_preproc_if_token2] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1466), + [sym_preproc_directive] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym___extension__] = ACTIONS(1466), + [anon_sym_typedef] = ACTIONS(1466), + [anon_sym_extern] = ACTIONS(1466), + [anon_sym___attribute__] = ACTIONS(1466), + [anon_sym___scanf] = ACTIONS(1466), + [anon_sym___printf] = ACTIONS(1466), + [anon_sym___read_mostly] = ACTIONS(1466), + [anon_sym___must_hold] = ACTIONS(1466), + [anon_sym___ro_after_init] = ACTIONS(1466), + [anon_sym___noreturn] = ACTIONS(1466), + [anon_sym___cold] = ACTIONS(1466), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1468), + [anon_sym___declspec] = ACTIONS(1466), + [anon_sym___init] = ACTIONS(1466), + [anon_sym___exit] = ACTIONS(1466), + [anon_sym___cdecl] = ACTIONS(1466), + [anon_sym___clrcall] = ACTIONS(1466), + [anon_sym___stdcall] = ACTIONS(1466), + [anon_sym___fastcall] = ACTIONS(1466), + [anon_sym___thiscall] = ACTIONS(1466), + [anon_sym___vectorcall] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_signed] = ACTIONS(1466), + [anon_sym_unsigned] = ACTIONS(1466), + [anon_sym_long] = ACTIONS(1466), + [anon_sym_short] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_auto] = ACTIONS(1466), + [anon_sym_register] = ACTIONS(1466), + [anon_sym_inline] = ACTIONS(1466), + [anon_sym___inline] = ACTIONS(1466), + [anon_sym___inline__] = ACTIONS(1466), + [anon_sym___forceinline] = ACTIONS(1466), + [anon_sym_thread_local] = ACTIONS(1466), + [anon_sym___thread] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(1466), + [anon_sym_constexpr] = ACTIONS(1466), + [anon_sym_volatile] = ACTIONS(1466), + [anon_sym_restrict] = ACTIONS(1466), + [anon_sym___restrict__] = ACTIONS(1466), + [anon_sym__Atomic] = ACTIONS(1466), + [anon_sym__Noreturn] = ACTIONS(1466), + [anon_sym_noreturn] = ACTIONS(1466), + [anon_sym_alignas] = ACTIONS(1466), + [anon_sym__Alignas] = ACTIONS(1466), + [sym_primitive_type] = ACTIONS(1466), + [anon_sym_enum] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1466), + [anon_sym_union] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1466), + [anon_sym_switch] = ACTIONS(1466), + [anon_sym_case] = ACTIONS(1466), + [anon_sym_default] = ACTIONS(1466), + [anon_sym_while] = ACTIONS(1466), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1466), + [anon_sym_return] = ACTIONS(1466), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1466), + [anon_sym_goto] = ACTIONS(1466), + [anon_sym___try] = ACTIONS(1466), + [anon_sym___leave] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_sizeof] = ACTIONS(1466), + [anon_sym___alignof__] = ACTIONS(1466), + [anon_sym___alignof] = ACTIONS(1466), + [anon_sym__alignof] = ACTIONS(1466), + [anon_sym_alignof] = ACTIONS(1466), + [anon_sym__Alignof] = ACTIONS(1466), + [anon_sym_offsetof] = ACTIONS(1466), + [anon_sym__Generic] = ACTIONS(1466), + [anon_sym_asm] = ACTIONS(1466), + [anon_sym___asm__] = ACTIONS(1466), + [sym_number_literal] = ACTIONS(1468), + [anon_sym_L_SQUOTE] = ACTIONS(1468), + [anon_sym_u_SQUOTE] = ACTIONS(1468), + [anon_sym_U_SQUOTE] = ACTIONS(1468), + [anon_sym_u8_SQUOTE] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_L_DQUOTE] = ACTIONS(1468), + [anon_sym_u_DQUOTE] = ACTIONS(1468), + [anon_sym_U_DQUOTE] = ACTIONS(1468), + [anon_sym_u8_DQUOTE] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1468), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [anon_sym_NULL] = ACTIONS(1466), + [anon_sym_nullptr] = ACTIONS(1466), [sym_comment] = ACTIONS(5), }, - [378] = { - [ts_builtin_sym_end] = ACTIONS(1360), - [sym_identifier] = ACTIONS(1358), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1358), - [aux_sym_preproc_def_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), - [sym_preproc_directive] = ACTIONS(1358), - [anon_sym_LPAREN2] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym___extension__] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym___attribute__] = ACTIONS(1358), - [anon_sym___scanf] = ACTIONS(1358), - [anon_sym___printf] = ACTIONS(1358), - [anon_sym___read_mostly] = ACTIONS(1358), - [anon_sym___must_hold] = ACTIONS(1358), - [anon_sym___ro_after_init] = ACTIONS(1358), - [anon_sym___noreturn] = ACTIONS(1358), - [anon_sym___cold] = ACTIONS(1358), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), - [anon_sym___declspec] = ACTIONS(1358), - [anon_sym___init] = ACTIONS(1358), - [anon_sym___exit] = ACTIONS(1358), - [anon_sym___cdecl] = ACTIONS(1358), - [anon_sym___clrcall] = ACTIONS(1358), - [anon_sym___stdcall] = ACTIONS(1358), - [anon_sym___fastcall] = ACTIONS(1358), - [anon_sym___thiscall] = ACTIONS(1358), - [anon_sym___vectorcall] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1358), - [anon_sym_unsigned] = ACTIONS(1358), - [anon_sym_long] = ACTIONS(1358), - [anon_sym_short] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_auto] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_inline] = ACTIONS(1358), - [anon_sym___inline] = ACTIONS(1358), - [anon_sym___inline__] = ACTIONS(1358), - [anon_sym___forceinline] = ACTIONS(1358), - [anon_sym_thread_local] = ACTIONS(1358), - [anon_sym___thread] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_constexpr] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_restrict] = ACTIONS(1358), - [anon_sym___restrict__] = ACTIONS(1358), - [anon_sym__Atomic] = ACTIONS(1358), - [anon_sym__Noreturn] = ACTIONS(1358), - [anon_sym_noreturn] = ACTIONS(1358), - [anon_sym_alignas] = ACTIONS(1358), - [anon_sym__Alignas] = ACTIONS(1358), - [sym_primitive_type] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_goto] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1358), - [anon_sym___alignof__] = ACTIONS(1358), - [anon_sym___alignof] = ACTIONS(1358), - [anon_sym__alignof] = ACTIONS(1358), - [anon_sym_alignof] = ACTIONS(1358), - [anon_sym__Alignof] = ACTIONS(1358), - [anon_sym_offsetof] = ACTIONS(1358), - [anon_sym__Generic] = ACTIONS(1358), - [anon_sym_asm] = ACTIONS(1358), - [anon_sym___asm__] = ACTIONS(1358), - [sym_number_literal] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1360), - [anon_sym_u_SQUOTE] = ACTIONS(1360), - [anon_sym_U_SQUOTE] = ACTIONS(1360), - [anon_sym_u8_SQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_L_DQUOTE] = ACTIONS(1360), - [anon_sym_u_DQUOTE] = ACTIONS(1360), - [anon_sym_U_DQUOTE] = ACTIONS(1360), - [anon_sym_u8_DQUOTE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [anon_sym_NULL] = ACTIONS(1358), - [anon_sym_nullptr] = ACTIONS(1358), + [303] = { + [sym_identifier] = ACTIONS(1418), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___extension__] = ACTIONS(1418), + [anon_sym_typedef] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym___attribute__] = ACTIONS(1418), + [anon_sym___scanf] = ACTIONS(1418), + [anon_sym___printf] = ACTIONS(1418), + [anon_sym___read_mostly] = ACTIONS(1418), + [anon_sym___must_hold] = ACTIONS(1418), + [anon_sym___ro_after_init] = ACTIONS(1418), + [anon_sym___noreturn] = ACTIONS(1418), + [anon_sym___cold] = ACTIONS(1418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), + [anon_sym___declspec] = ACTIONS(1418), + [anon_sym___init] = ACTIONS(1418), + [anon_sym___exit] = ACTIONS(1418), + [anon_sym___cdecl] = ACTIONS(1418), + [anon_sym___clrcall] = ACTIONS(1418), + [anon_sym___stdcall] = ACTIONS(1418), + [anon_sym___fastcall] = ACTIONS(1418), + [anon_sym___thiscall] = ACTIONS(1418), + [anon_sym___vectorcall] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_RBRACE] = ACTIONS(1420), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_inline] = ACTIONS(1418), + [anon_sym___inline] = ACTIONS(1418), + [anon_sym___inline__] = ACTIONS(1418), + [anon_sym___forceinline] = ACTIONS(1418), + [anon_sym_thread_local] = ACTIONS(1418), + [anon_sym___thread] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_constexpr] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym___restrict__] = ACTIONS(1418), + [anon_sym__Atomic] = ACTIONS(1418), + [anon_sym__Noreturn] = ACTIONS(1418), + [anon_sym_noreturn] = ACTIONS(1418), + [anon_sym_alignas] = ACTIONS(1418), + [anon_sym__Alignas] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym___try] = ACTIONS(1418), + [anon_sym___leave] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(1418), + [anon_sym___alignof__] = ACTIONS(1418), + [anon_sym___alignof] = ACTIONS(1418), + [anon_sym__alignof] = ACTIONS(1418), + [anon_sym_alignof] = ACTIONS(1418), + [anon_sym__Alignof] = ACTIONS(1418), + [anon_sym_offsetof] = ACTIONS(1418), + [anon_sym__Generic] = ACTIONS(1418), + [anon_sym_asm] = ACTIONS(1418), + [anon_sym___asm__] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(1420), + [anon_sym_L_SQUOTE] = ACTIONS(1420), + [anon_sym_u_SQUOTE] = ACTIONS(1420), + [anon_sym_U_SQUOTE] = ACTIONS(1420), + [anon_sym_u8_SQUOTE] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_L_DQUOTE] = ACTIONS(1420), + [anon_sym_u_DQUOTE] = ACTIONS(1420), + [anon_sym_U_DQUOTE] = ACTIONS(1420), + [anon_sym_u8_DQUOTE] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [sym_true] = ACTIONS(1418), + [sym_false] = ACTIONS(1418), + [anon_sym_NULL] = ACTIONS(1418), + [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(5), }, - [379] = { - [ts_builtin_sym_end] = ACTIONS(1474), - [sym_identifier] = ACTIONS(1472), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1472), - [aux_sym_preproc_def_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), - [sym_preproc_directive] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym___extension__] = ACTIONS(1472), - [anon_sym_typedef] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym___attribute__] = ACTIONS(1472), - [anon_sym___scanf] = ACTIONS(1472), - [anon_sym___printf] = ACTIONS(1472), - [anon_sym___read_mostly] = ACTIONS(1472), - [anon_sym___must_hold] = ACTIONS(1472), - [anon_sym___ro_after_init] = ACTIONS(1472), - [anon_sym___noreturn] = ACTIONS(1472), - [anon_sym___cold] = ACTIONS(1472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1472), - [anon_sym___init] = ACTIONS(1472), - [anon_sym___exit] = ACTIONS(1472), - [anon_sym___cdecl] = ACTIONS(1472), - [anon_sym___clrcall] = ACTIONS(1472), - [anon_sym___stdcall] = ACTIONS(1472), - [anon_sym___fastcall] = ACTIONS(1472), - [anon_sym___thiscall] = ACTIONS(1472), - [anon_sym___vectorcall] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_signed] = ACTIONS(1472), - [anon_sym_unsigned] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_auto] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_inline] = ACTIONS(1472), - [anon_sym___inline] = ACTIONS(1472), - [anon_sym___inline__] = ACTIONS(1472), - [anon_sym___forceinline] = ACTIONS(1472), - [anon_sym_thread_local] = ACTIONS(1472), - [anon_sym___thread] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_constexpr] = ACTIONS(1472), - [anon_sym_volatile] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1472), - [anon_sym___restrict__] = ACTIONS(1472), - [anon_sym__Atomic] = ACTIONS(1472), - [anon_sym__Noreturn] = ACTIONS(1472), - [anon_sym_noreturn] = ACTIONS(1472), - [anon_sym_alignas] = ACTIONS(1472), - [anon_sym__Alignas] = ACTIONS(1472), - [sym_primitive_type] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_goto] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_sizeof] = ACTIONS(1472), - [anon_sym___alignof__] = ACTIONS(1472), - [anon_sym___alignof] = ACTIONS(1472), - [anon_sym__alignof] = ACTIONS(1472), - [anon_sym_alignof] = ACTIONS(1472), - [anon_sym__Alignof] = ACTIONS(1472), - [anon_sym_offsetof] = ACTIONS(1472), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym___asm__] = ACTIONS(1472), - [sym_number_literal] = ACTIONS(1474), - [anon_sym_L_SQUOTE] = ACTIONS(1474), - [anon_sym_u_SQUOTE] = ACTIONS(1474), - [anon_sym_U_SQUOTE] = ACTIONS(1474), - [anon_sym_u8_SQUOTE] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_L_DQUOTE] = ACTIONS(1474), - [anon_sym_u_DQUOTE] = ACTIONS(1474), - [anon_sym_U_DQUOTE] = ACTIONS(1474), - [anon_sym_u8_DQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [anon_sym_NULL] = ACTIONS(1472), - [anon_sym_nullptr] = ACTIONS(1472), + [304] = { + [sym_identifier] = ACTIONS(1442), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1442), + [aux_sym_preproc_def_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token2] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), + [sym_preproc_directive] = ACTIONS(1442), + [anon_sym_LPAREN2] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym___extension__] = ACTIONS(1442), + [anon_sym_typedef] = ACTIONS(1442), + [anon_sym_extern] = ACTIONS(1442), + [anon_sym___attribute__] = ACTIONS(1442), + [anon_sym___scanf] = ACTIONS(1442), + [anon_sym___printf] = ACTIONS(1442), + [anon_sym___read_mostly] = ACTIONS(1442), + [anon_sym___must_hold] = ACTIONS(1442), + [anon_sym___ro_after_init] = ACTIONS(1442), + [anon_sym___noreturn] = ACTIONS(1442), + [anon_sym___cold] = ACTIONS(1442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), + [anon_sym___declspec] = ACTIONS(1442), + [anon_sym___init] = ACTIONS(1442), + [anon_sym___exit] = ACTIONS(1442), + [anon_sym___cdecl] = ACTIONS(1442), + [anon_sym___clrcall] = ACTIONS(1442), + [anon_sym___stdcall] = ACTIONS(1442), + [anon_sym___fastcall] = ACTIONS(1442), + [anon_sym___thiscall] = ACTIONS(1442), + [anon_sym___vectorcall] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_signed] = ACTIONS(1442), + [anon_sym_unsigned] = ACTIONS(1442), + [anon_sym_long] = ACTIONS(1442), + [anon_sym_short] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_auto] = ACTIONS(1442), + [anon_sym_register] = ACTIONS(1442), + [anon_sym_inline] = ACTIONS(1442), + [anon_sym___inline] = ACTIONS(1442), + [anon_sym___inline__] = ACTIONS(1442), + [anon_sym___forceinline] = ACTIONS(1442), + [anon_sym_thread_local] = ACTIONS(1442), + [anon_sym___thread] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_constexpr] = ACTIONS(1442), + [anon_sym_volatile] = ACTIONS(1442), + [anon_sym_restrict] = ACTIONS(1442), + [anon_sym___restrict__] = ACTIONS(1442), + [anon_sym__Atomic] = ACTIONS(1442), + [anon_sym__Noreturn] = ACTIONS(1442), + [anon_sym_noreturn] = ACTIONS(1442), + [anon_sym_alignas] = ACTIONS(1442), + [anon_sym__Alignas] = ACTIONS(1442), + [sym_primitive_type] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_case] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_do] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_goto] = ACTIONS(1442), + [anon_sym___try] = ACTIONS(1442), + [anon_sym___leave] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [anon_sym_sizeof] = ACTIONS(1442), + [anon_sym___alignof__] = ACTIONS(1442), + [anon_sym___alignof] = ACTIONS(1442), + [anon_sym__alignof] = ACTIONS(1442), + [anon_sym_alignof] = ACTIONS(1442), + [anon_sym__Alignof] = ACTIONS(1442), + [anon_sym_offsetof] = ACTIONS(1442), + [anon_sym__Generic] = ACTIONS(1442), + [anon_sym_asm] = ACTIONS(1442), + [anon_sym___asm__] = ACTIONS(1442), + [sym_number_literal] = ACTIONS(1444), + [anon_sym_L_SQUOTE] = ACTIONS(1444), + [anon_sym_u_SQUOTE] = ACTIONS(1444), + [anon_sym_U_SQUOTE] = ACTIONS(1444), + [anon_sym_u8_SQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_L_DQUOTE] = ACTIONS(1444), + [anon_sym_u_DQUOTE] = ACTIONS(1444), + [anon_sym_U_DQUOTE] = ACTIONS(1444), + [anon_sym_u8_DQUOTE] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [sym_true] = ACTIONS(1442), + [sym_false] = ACTIONS(1442), + [anon_sym_NULL] = ACTIONS(1442), + [anon_sym_nullptr] = ACTIONS(1442), [sym_comment] = ACTIONS(5), }, - [380] = { - [ts_builtin_sym_end] = ACTIONS(1406), - [sym_identifier] = ACTIONS(1404), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1404), - [aux_sym_preproc_def_token1] = ACTIONS(1404), - [aux_sym_preproc_if_token1] = ACTIONS(1404), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1404), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1404), - [sym_preproc_directive] = ACTIONS(1404), - [anon_sym_LPAREN2] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(1406), - [anon_sym_TILDE] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1404), - [anon_sym_STAR] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1406), - [anon_sym___extension__] = ACTIONS(1404), - [anon_sym_typedef] = ACTIONS(1404), - [anon_sym_extern] = ACTIONS(1404), - [anon_sym___attribute__] = ACTIONS(1404), - [anon_sym___scanf] = ACTIONS(1404), - [anon_sym___printf] = ACTIONS(1404), - [anon_sym___read_mostly] = ACTIONS(1404), - [anon_sym___must_hold] = ACTIONS(1404), - [anon_sym___ro_after_init] = ACTIONS(1404), - [anon_sym___noreturn] = ACTIONS(1404), - [anon_sym___cold] = ACTIONS(1404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), - [anon_sym___declspec] = ACTIONS(1404), - [anon_sym___init] = ACTIONS(1404), - [anon_sym___exit] = ACTIONS(1404), - [anon_sym___cdecl] = ACTIONS(1404), - [anon_sym___clrcall] = ACTIONS(1404), - [anon_sym___stdcall] = ACTIONS(1404), - [anon_sym___fastcall] = ACTIONS(1404), - [anon_sym___thiscall] = ACTIONS(1404), - [anon_sym___vectorcall] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_signed] = ACTIONS(1404), - [anon_sym_unsigned] = ACTIONS(1404), - [anon_sym_long] = ACTIONS(1404), - [anon_sym_short] = ACTIONS(1404), - [anon_sym_static] = ACTIONS(1404), - [anon_sym_auto] = ACTIONS(1404), - [anon_sym_register] = ACTIONS(1404), - [anon_sym_inline] = ACTIONS(1404), - [anon_sym___inline] = ACTIONS(1404), - [anon_sym___inline__] = ACTIONS(1404), - [anon_sym___forceinline] = ACTIONS(1404), - [anon_sym_thread_local] = ACTIONS(1404), - [anon_sym___thread] = ACTIONS(1404), - [anon_sym_const] = ACTIONS(1404), - [anon_sym_constexpr] = ACTIONS(1404), - [anon_sym_volatile] = ACTIONS(1404), - [anon_sym_restrict] = ACTIONS(1404), - [anon_sym___restrict__] = ACTIONS(1404), - [anon_sym__Atomic] = ACTIONS(1404), - [anon_sym__Noreturn] = ACTIONS(1404), - [anon_sym_noreturn] = ACTIONS(1404), - [anon_sym_alignas] = ACTIONS(1404), - [anon_sym__Alignas] = ACTIONS(1404), - [sym_primitive_type] = ACTIONS(1404), - [anon_sym_enum] = ACTIONS(1404), - [anon_sym_struct] = ACTIONS(1404), - [anon_sym_union] = ACTIONS(1404), - [anon_sym_if] = ACTIONS(1404), - [anon_sym_switch] = ACTIONS(1404), - [anon_sym_case] = ACTIONS(1404), - [anon_sym_default] = ACTIONS(1404), - [anon_sym_while] = ACTIONS(1404), - [anon_sym_do] = ACTIONS(1404), - [anon_sym_for] = ACTIONS(1404), - [anon_sym_return] = ACTIONS(1404), - [anon_sym_break] = ACTIONS(1404), - [anon_sym_continue] = ACTIONS(1404), - [anon_sym_goto] = ACTIONS(1404), - [anon_sym_DASH_DASH] = ACTIONS(1406), - [anon_sym_PLUS_PLUS] = ACTIONS(1406), - [anon_sym_sizeof] = ACTIONS(1404), - [anon_sym___alignof__] = ACTIONS(1404), - [anon_sym___alignof] = ACTIONS(1404), - [anon_sym__alignof] = ACTIONS(1404), - [anon_sym_alignof] = ACTIONS(1404), - [anon_sym__Alignof] = ACTIONS(1404), - [anon_sym_offsetof] = ACTIONS(1404), - [anon_sym__Generic] = ACTIONS(1404), - [anon_sym_asm] = ACTIONS(1404), - [anon_sym___asm__] = ACTIONS(1404), - [sym_number_literal] = ACTIONS(1406), - [anon_sym_L_SQUOTE] = ACTIONS(1406), - [anon_sym_u_SQUOTE] = ACTIONS(1406), - [anon_sym_U_SQUOTE] = ACTIONS(1406), - [anon_sym_u8_SQUOTE] = ACTIONS(1406), - [anon_sym_SQUOTE] = ACTIONS(1406), - [anon_sym_L_DQUOTE] = ACTIONS(1406), - [anon_sym_u_DQUOTE] = ACTIONS(1406), - [anon_sym_U_DQUOTE] = ACTIONS(1406), - [anon_sym_u8_DQUOTE] = ACTIONS(1406), - [anon_sym_DQUOTE] = ACTIONS(1406), - [sym_true] = ACTIONS(1404), - [sym_false] = ACTIONS(1404), - [anon_sym_NULL] = ACTIONS(1404), - [anon_sym_nullptr] = ACTIONS(1404), + [305] = { + [sym_identifier] = ACTIONS(1462), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1462), + [aux_sym_preproc_def_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1462), + [sym_preproc_directive] = ACTIONS(1462), + [anon_sym_LPAREN2] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym___extension__] = ACTIONS(1462), + [anon_sym_typedef] = ACTIONS(1462), + [anon_sym_extern] = ACTIONS(1462), + [anon_sym___attribute__] = ACTIONS(1462), + [anon_sym___scanf] = ACTIONS(1462), + [anon_sym___printf] = ACTIONS(1462), + [anon_sym___read_mostly] = ACTIONS(1462), + [anon_sym___must_hold] = ACTIONS(1462), + [anon_sym___ro_after_init] = ACTIONS(1462), + [anon_sym___noreturn] = ACTIONS(1462), + [anon_sym___cold] = ACTIONS(1462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1464), + [anon_sym___declspec] = ACTIONS(1462), + [anon_sym___init] = ACTIONS(1462), + [anon_sym___exit] = ACTIONS(1462), + [anon_sym___cdecl] = ACTIONS(1462), + [anon_sym___clrcall] = ACTIONS(1462), + [anon_sym___stdcall] = ACTIONS(1462), + [anon_sym___fastcall] = ACTIONS(1462), + [anon_sym___thiscall] = ACTIONS(1462), + [anon_sym___vectorcall] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_RBRACE] = ACTIONS(1464), + [anon_sym_signed] = ACTIONS(1462), + [anon_sym_unsigned] = ACTIONS(1462), + [anon_sym_long] = ACTIONS(1462), + [anon_sym_short] = ACTIONS(1462), + [anon_sym_static] = ACTIONS(1462), + [anon_sym_auto] = ACTIONS(1462), + [anon_sym_register] = ACTIONS(1462), + [anon_sym_inline] = ACTIONS(1462), + [anon_sym___inline] = ACTIONS(1462), + [anon_sym___inline__] = ACTIONS(1462), + [anon_sym___forceinline] = ACTIONS(1462), + [anon_sym_thread_local] = ACTIONS(1462), + [anon_sym___thread] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1462), + [anon_sym_constexpr] = ACTIONS(1462), + [anon_sym_volatile] = ACTIONS(1462), + [anon_sym_restrict] = ACTIONS(1462), + [anon_sym___restrict__] = ACTIONS(1462), + [anon_sym__Atomic] = ACTIONS(1462), + [anon_sym__Noreturn] = ACTIONS(1462), + [anon_sym_noreturn] = ACTIONS(1462), + [anon_sym_alignas] = ACTIONS(1462), + [anon_sym__Alignas] = ACTIONS(1462), + [sym_primitive_type] = ACTIONS(1462), + [anon_sym_enum] = ACTIONS(1462), + [anon_sym_struct] = ACTIONS(1462), + [anon_sym_union] = ACTIONS(1462), + [anon_sym_if] = ACTIONS(1462), + [anon_sym_switch] = ACTIONS(1462), + [anon_sym_case] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1462), + [anon_sym_do] = ACTIONS(1462), + [anon_sym_for] = ACTIONS(1462), + [anon_sym_return] = ACTIONS(1462), + [anon_sym_break] = ACTIONS(1462), + [anon_sym_continue] = ACTIONS(1462), + [anon_sym_goto] = ACTIONS(1462), + [anon_sym___try] = ACTIONS(1462), + [anon_sym___leave] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1464), + [anon_sym_PLUS_PLUS] = ACTIONS(1464), + [anon_sym_sizeof] = ACTIONS(1462), + [anon_sym___alignof__] = ACTIONS(1462), + [anon_sym___alignof] = ACTIONS(1462), + [anon_sym__alignof] = ACTIONS(1462), + [anon_sym_alignof] = ACTIONS(1462), + [anon_sym__Alignof] = ACTIONS(1462), + [anon_sym_offsetof] = ACTIONS(1462), + [anon_sym__Generic] = ACTIONS(1462), + [anon_sym_asm] = ACTIONS(1462), + [anon_sym___asm__] = ACTIONS(1462), + [sym_number_literal] = ACTIONS(1464), + [anon_sym_L_SQUOTE] = ACTIONS(1464), + [anon_sym_u_SQUOTE] = ACTIONS(1464), + [anon_sym_U_SQUOTE] = ACTIONS(1464), + [anon_sym_u8_SQUOTE] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_L_DQUOTE] = ACTIONS(1464), + [anon_sym_u_DQUOTE] = ACTIONS(1464), + [anon_sym_U_DQUOTE] = ACTIONS(1464), + [anon_sym_u8_DQUOTE] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(1464), + [sym_true] = ACTIONS(1462), + [sym_false] = ACTIONS(1462), + [anon_sym_NULL] = ACTIONS(1462), + [anon_sym_nullptr] = ACTIONS(1462), [sym_comment] = ACTIONS(5), }, - [381] = { - [ts_builtin_sym_end] = ACTIONS(1458), - [sym_identifier] = ACTIONS(1456), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1456), - [aux_sym_preproc_def_token1] = ACTIONS(1456), - [aux_sym_preproc_if_token1] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), - [sym_preproc_directive] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym___extension__] = ACTIONS(1456), - [anon_sym_typedef] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1456), - [anon_sym___attribute__] = ACTIONS(1456), - [anon_sym___scanf] = ACTIONS(1456), - [anon_sym___printf] = ACTIONS(1456), - [anon_sym___read_mostly] = ACTIONS(1456), - [anon_sym___must_hold] = ACTIONS(1456), - [anon_sym___ro_after_init] = ACTIONS(1456), - [anon_sym___noreturn] = ACTIONS(1456), - [anon_sym___cold] = ACTIONS(1456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), - [anon_sym___declspec] = ACTIONS(1456), - [anon_sym___init] = ACTIONS(1456), - [anon_sym___exit] = ACTIONS(1456), - [anon_sym___cdecl] = ACTIONS(1456), - [anon_sym___clrcall] = ACTIONS(1456), - [anon_sym___stdcall] = ACTIONS(1456), - [anon_sym___fastcall] = ACTIONS(1456), - [anon_sym___thiscall] = ACTIONS(1456), - [anon_sym___vectorcall] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_signed] = ACTIONS(1456), - [anon_sym_unsigned] = ACTIONS(1456), - [anon_sym_long] = ACTIONS(1456), - [anon_sym_short] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_auto] = ACTIONS(1456), - [anon_sym_register] = ACTIONS(1456), - [anon_sym_inline] = ACTIONS(1456), - [anon_sym___inline] = ACTIONS(1456), - [anon_sym___inline__] = ACTIONS(1456), - [anon_sym___forceinline] = ACTIONS(1456), - [anon_sym_thread_local] = ACTIONS(1456), - [anon_sym___thread] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_constexpr] = ACTIONS(1456), - [anon_sym_volatile] = ACTIONS(1456), - [anon_sym_restrict] = ACTIONS(1456), - [anon_sym___restrict__] = ACTIONS(1456), - [anon_sym__Atomic] = ACTIONS(1456), - [anon_sym__Noreturn] = ACTIONS(1456), - [anon_sym_noreturn] = ACTIONS(1456), - [anon_sym_alignas] = ACTIONS(1456), - [anon_sym__Alignas] = ACTIONS(1456), - [sym_primitive_type] = ACTIONS(1456), - [anon_sym_enum] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1456), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_switch] = ACTIONS(1456), - [anon_sym_case] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_do] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_goto] = ACTIONS(1456), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_sizeof] = ACTIONS(1456), - [anon_sym___alignof__] = ACTIONS(1456), - [anon_sym___alignof] = ACTIONS(1456), - [anon_sym__alignof] = ACTIONS(1456), - [anon_sym_alignof] = ACTIONS(1456), - [anon_sym__Alignof] = ACTIONS(1456), - [anon_sym_offsetof] = ACTIONS(1456), - [anon_sym__Generic] = ACTIONS(1456), - [anon_sym_asm] = ACTIONS(1456), - [anon_sym___asm__] = ACTIONS(1456), - [sym_number_literal] = ACTIONS(1458), - [anon_sym_L_SQUOTE] = ACTIONS(1458), - [anon_sym_u_SQUOTE] = ACTIONS(1458), - [anon_sym_U_SQUOTE] = ACTIONS(1458), - [anon_sym_u8_SQUOTE] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_L_DQUOTE] = ACTIONS(1458), - [anon_sym_u_DQUOTE] = ACTIONS(1458), - [anon_sym_U_DQUOTE] = ACTIONS(1458), - [anon_sym_u8_DQUOTE] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [anon_sym_NULL] = ACTIONS(1456), - [anon_sym_nullptr] = ACTIONS(1456), + [306] = { + [sym_identifier] = ACTIONS(1458), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1458), + [aux_sym_preproc_def_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token1] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1458), + [sym_preproc_directive] = ACTIONS(1458), + [anon_sym_LPAREN2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym___extension__] = ACTIONS(1458), + [anon_sym_typedef] = ACTIONS(1458), + [anon_sym_extern] = ACTIONS(1458), + [anon_sym___attribute__] = ACTIONS(1458), + [anon_sym___scanf] = ACTIONS(1458), + [anon_sym___printf] = ACTIONS(1458), + [anon_sym___read_mostly] = ACTIONS(1458), + [anon_sym___must_hold] = ACTIONS(1458), + [anon_sym___ro_after_init] = ACTIONS(1458), + [anon_sym___noreturn] = ACTIONS(1458), + [anon_sym___cold] = ACTIONS(1458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1460), + [anon_sym___declspec] = ACTIONS(1458), + [anon_sym___init] = ACTIONS(1458), + [anon_sym___exit] = ACTIONS(1458), + [anon_sym___cdecl] = ACTIONS(1458), + [anon_sym___clrcall] = ACTIONS(1458), + [anon_sym___stdcall] = ACTIONS(1458), + [anon_sym___fastcall] = ACTIONS(1458), + [anon_sym___thiscall] = ACTIONS(1458), + [anon_sym___vectorcall] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_RBRACE] = ACTIONS(1460), + [anon_sym_signed] = ACTIONS(1458), + [anon_sym_unsigned] = ACTIONS(1458), + [anon_sym_long] = ACTIONS(1458), + [anon_sym_short] = ACTIONS(1458), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_auto] = ACTIONS(1458), + [anon_sym_register] = ACTIONS(1458), + [anon_sym_inline] = ACTIONS(1458), + [anon_sym___inline] = ACTIONS(1458), + [anon_sym___inline__] = ACTIONS(1458), + [anon_sym___forceinline] = ACTIONS(1458), + [anon_sym_thread_local] = ACTIONS(1458), + [anon_sym___thread] = ACTIONS(1458), + [anon_sym_const] = ACTIONS(1458), + [anon_sym_constexpr] = ACTIONS(1458), + [anon_sym_volatile] = ACTIONS(1458), + [anon_sym_restrict] = ACTIONS(1458), + [anon_sym___restrict__] = ACTIONS(1458), + [anon_sym__Atomic] = ACTIONS(1458), + [anon_sym__Noreturn] = ACTIONS(1458), + [anon_sym_noreturn] = ACTIONS(1458), + [anon_sym_alignas] = ACTIONS(1458), + [anon_sym__Alignas] = ACTIONS(1458), + [sym_primitive_type] = ACTIONS(1458), + [anon_sym_enum] = ACTIONS(1458), + [anon_sym_struct] = ACTIONS(1458), + [anon_sym_union] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1458), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), + [anon_sym_while] = ACTIONS(1458), + [anon_sym_do] = ACTIONS(1458), + [anon_sym_for] = ACTIONS(1458), + [anon_sym_return] = ACTIONS(1458), + [anon_sym_break] = ACTIONS(1458), + [anon_sym_continue] = ACTIONS(1458), + [anon_sym_goto] = ACTIONS(1458), + [anon_sym___try] = ACTIONS(1458), + [anon_sym___leave] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [anon_sym_sizeof] = ACTIONS(1458), + [anon_sym___alignof__] = ACTIONS(1458), + [anon_sym___alignof] = ACTIONS(1458), + [anon_sym__alignof] = ACTIONS(1458), + [anon_sym_alignof] = ACTIONS(1458), + [anon_sym__Alignof] = ACTIONS(1458), + [anon_sym_offsetof] = ACTIONS(1458), + [anon_sym__Generic] = ACTIONS(1458), + [anon_sym_asm] = ACTIONS(1458), + [anon_sym___asm__] = ACTIONS(1458), + [sym_number_literal] = ACTIONS(1460), + [anon_sym_L_SQUOTE] = ACTIONS(1460), + [anon_sym_u_SQUOTE] = ACTIONS(1460), + [anon_sym_U_SQUOTE] = ACTIONS(1460), + [anon_sym_u8_SQUOTE] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_L_DQUOTE] = ACTIONS(1460), + [anon_sym_u_DQUOTE] = ACTIONS(1460), + [anon_sym_U_DQUOTE] = ACTIONS(1460), + [anon_sym_u8_DQUOTE] = ACTIONS(1460), + [anon_sym_DQUOTE] = ACTIONS(1460), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [anon_sym_NULL] = ACTIONS(1458), + [anon_sym_nullptr] = ACTIONS(1458), [sym_comment] = ACTIONS(5), }, - [382] = { - [ts_builtin_sym_end] = ACTIONS(1442), - [sym_identifier] = ACTIONS(1440), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1440), - [aux_sym_preproc_def_token1] = ACTIONS(1440), - [aux_sym_preproc_if_token1] = ACTIONS(1440), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), - [sym_preproc_directive] = ACTIONS(1440), - [anon_sym_LPAREN2] = ACTIONS(1442), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym___extension__] = ACTIONS(1440), - [anon_sym_typedef] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym___attribute__] = ACTIONS(1440), - [anon_sym___scanf] = ACTIONS(1440), - [anon_sym___printf] = ACTIONS(1440), - [anon_sym___read_mostly] = ACTIONS(1440), - [anon_sym___must_hold] = ACTIONS(1440), - [anon_sym___ro_after_init] = ACTIONS(1440), - [anon_sym___noreturn] = ACTIONS(1440), - [anon_sym___cold] = ACTIONS(1440), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), - [anon_sym___declspec] = ACTIONS(1440), - [anon_sym___init] = ACTIONS(1440), - [anon_sym___exit] = ACTIONS(1440), - [anon_sym___cdecl] = ACTIONS(1440), - [anon_sym___clrcall] = ACTIONS(1440), - [anon_sym___stdcall] = ACTIONS(1440), - [anon_sym___fastcall] = ACTIONS(1440), - [anon_sym___thiscall] = ACTIONS(1440), - [anon_sym___vectorcall] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1442), - [anon_sym_signed] = ACTIONS(1440), - [anon_sym_unsigned] = ACTIONS(1440), - [anon_sym_long] = ACTIONS(1440), - [anon_sym_short] = ACTIONS(1440), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_auto] = ACTIONS(1440), - [anon_sym_register] = ACTIONS(1440), - [anon_sym_inline] = ACTIONS(1440), - [anon_sym___inline] = ACTIONS(1440), - [anon_sym___inline__] = ACTIONS(1440), - [anon_sym___forceinline] = ACTIONS(1440), - [anon_sym_thread_local] = ACTIONS(1440), - [anon_sym___thread] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_constexpr] = ACTIONS(1440), - [anon_sym_volatile] = ACTIONS(1440), - [anon_sym_restrict] = ACTIONS(1440), - [anon_sym___restrict__] = ACTIONS(1440), - [anon_sym__Atomic] = ACTIONS(1440), - [anon_sym__Noreturn] = ACTIONS(1440), - [anon_sym_noreturn] = ACTIONS(1440), - [anon_sym_alignas] = ACTIONS(1440), - [anon_sym__Alignas] = ACTIONS(1440), - [sym_primitive_type] = ACTIONS(1440), - [anon_sym_enum] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_union] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1440), - [anon_sym_case] = ACTIONS(1440), - [anon_sym_default] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_goto] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_sizeof] = ACTIONS(1440), - [anon_sym___alignof__] = ACTIONS(1440), - [anon_sym___alignof] = ACTIONS(1440), - [anon_sym__alignof] = ACTIONS(1440), - [anon_sym_alignof] = ACTIONS(1440), - [anon_sym__Alignof] = ACTIONS(1440), - [anon_sym_offsetof] = ACTIONS(1440), - [anon_sym__Generic] = ACTIONS(1440), - [anon_sym_asm] = ACTIONS(1440), - [anon_sym___asm__] = ACTIONS(1440), - [sym_number_literal] = ACTIONS(1442), - [anon_sym_L_SQUOTE] = ACTIONS(1442), - [anon_sym_u_SQUOTE] = ACTIONS(1442), - [anon_sym_U_SQUOTE] = ACTIONS(1442), - [anon_sym_u8_SQUOTE] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_L_DQUOTE] = ACTIONS(1442), - [anon_sym_u_DQUOTE] = ACTIONS(1442), - [anon_sym_U_DQUOTE] = ACTIONS(1442), - [anon_sym_u8_DQUOTE] = ACTIONS(1442), - [anon_sym_DQUOTE] = ACTIONS(1442), - [sym_true] = ACTIONS(1440), - [sym_false] = ACTIONS(1440), - [anon_sym_NULL] = ACTIONS(1440), - [anon_sym_nullptr] = ACTIONS(1440), + [307] = { + [sym_identifier] = ACTIONS(1450), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1450), + [aux_sym_preproc_def_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), + [sym_preproc_directive] = ACTIONS(1450), + [anon_sym_LPAREN2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym___extension__] = ACTIONS(1450), + [anon_sym_typedef] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym___attribute__] = ACTIONS(1450), + [anon_sym___scanf] = ACTIONS(1450), + [anon_sym___printf] = ACTIONS(1450), + [anon_sym___read_mostly] = ACTIONS(1450), + [anon_sym___must_hold] = ACTIONS(1450), + [anon_sym___ro_after_init] = ACTIONS(1450), + [anon_sym___noreturn] = ACTIONS(1450), + [anon_sym___cold] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), + [anon_sym___declspec] = ACTIONS(1450), + [anon_sym___init] = ACTIONS(1450), + [anon_sym___exit] = ACTIONS(1450), + [anon_sym___cdecl] = ACTIONS(1450), + [anon_sym___clrcall] = ACTIONS(1450), + [anon_sym___stdcall] = ACTIONS(1450), + [anon_sym___fastcall] = ACTIONS(1450), + [anon_sym___thiscall] = ACTIONS(1450), + [anon_sym___vectorcall] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_signed] = ACTIONS(1450), + [anon_sym_unsigned] = ACTIONS(1450), + [anon_sym_long] = ACTIONS(1450), + [anon_sym_short] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_auto] = ACTIONS(1450), + [anon_sym_register] = ACTIONS(1450), + [anon_sym_inline] = ACTIONS(1450), + [anon_sym___inline] = ACTIONS(1450), + [anon_sym___inline__] = ACTIONS(1450), + [anon_sym___forceinline] = ACTIONS(1450), + [anon_sym_thread_local] = ACTIONS(1450), + [anon_sym___thread] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_constexpr] = ACTIONS(1450), + [anon_sym_volatile] = ACTIONS(1450), + [anon_sym_restrict] = ACTIONS(1450), + [anon_sym___restrict__] = ACTIONS(1450), + [anon_sym__Atomic] = ACTIONS(1450), + [anon_sym__Noreturn] = ACTIONS(1450), + [anon_sym_noreturn] = ACTIONS(1450), + [anon_sym_alignas] = ACTIONS(1450), + [anon_sym__Alignas] = ACTIONS(1450), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_switch] = ACTIONS(1450), + [anon_sym_case] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_do] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_goto] = ACTIONS(1450), + [anon_sym___try] = ACTIONS(1450), + [anon_sym___leave] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [anon_sym_sizeof] = ACTIONS(1450), + [anon_sym___alignof__] = ACTIONS(1450), + [anon_sym___alignof] = ACTIONS(1450), + [anon_sym__alignof] = ACTIONS(1450), + [anon_sym_alignof] = ACTIONS(1450), + [anon_sym__Alignof] = ACTIONS(1450), + [anon_sym_offsetof] = ACTIONS(1450), + [anon_sym__Generic] = ACTIONS(1450), + [anon_sym_asm] = ACTIONS(1450), + [anon_sym___asm__] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(1452), + [anon_sym_L_SQUOTE] = ACTIONS(1452), + [anon_sym_u_SQUOTE] = ACTIONS(1452), + [anon_sym_U_SQUOTE] = ACTIONS(1452), + [anon_sym_u8_SQUOTE] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_L_DQUOTE] = ACTIONS(1452), + [anon_sym_u_DQUOTE] = ACTIONS(1452), + [anon_sym_U_DQUOTE] = ACTIONS(1452), + [anon_sym_u8_DQUOTE] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [sym_true] = ACTIONS(1450), + [sym_false] = ACTIONS(1450), + [anon_sym_NULL] = ACTIONS(1450), + [anon_sym_nullptr] = ACTIONS(1450), [sym_comment] = ACTIONS(5), }, - [383] = { - [ts_builtin_sym_end] = ACTIONS(1372), - [sym_identifier] = ACTIONS(1370), + [308] = { + [sym_identifier] = ACTIONS(1382), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym___extension__] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym___scanf] = ACTIONS(1370), - [anon_sym___printf] = ACTIONS(1370), - [anon_sym___read_mostly] = ACTIONS(1370), - [anon_sym___must_hold] = ACTIONS(1370), - [anon_sym___ro_after_init] = ACTIONS(1370), - [anon_sym___noreturn] = ACTIONS(1370), - [anon_sym___cold] = ACTIONS(1370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), - [anon_sym___declspec] = ACTIONS(1370), - [anon_sym___init] = ACTIONS(1370), - [anon_sym___exit] = ACTIONS(1370), - [anon_sym___cdecl] = ACTIONS(1370), - [anon_sym___clrcall] = ACTIONS(1370), - [anon_sym___stdcall] = ACTIONS(1370), - [anon_sym___fastcall] = ACTIONS(1370), - [anon_sym___thiscall] = ACTIONS(1370), - [anon_sym___vectorcall] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym___inline] = ACTIONS(1370), - [anon_sym___inline__] = ACTIONS(1370), - [anon_sym___forceinline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym___thread] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_constexpr] = ACTIONS(1370), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [anon_sym___restrict__] = ACTIONS(1370), - [anon_sym__Atomic] = ACTIONS(1370), - [anon_sym__Noreturn] = ACTIONS(1370), - [anon_sym_noreturn] = ACTIONS(1370), - [anon_sym_alignas] = ACTIONS(1370), - [anon_sym__Alignas] = ACTIONS(1370), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym___alignof__] = ACTIONS(1370), - [anon_sym___alignof] = ACTIONS(1370), - [anon_sym__alignof] = ACTIONS(1370), - [anon_sym_alignof] = ACTIONS(1370), - [anon_sym__Alignof] = ACTIONS(1370), - [anon_sym_offsetof] = ACTIONS(1370), - [anon_sym__Generic] = ACTIONS(1370), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym___asm__] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym_u_SQUOTE] = ACTIONS(1372), - [anon_sym_U_SQUOTE] = ACTIONS(1372), - [anon_sym_u8_SQUOTE] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_u_DQUOTE] = ACTIONS(1372), - [anon_sym_U_DQUOTE] = ACTIONS(1372), - [anon_sym_u8_DQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym_true] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_NULL] = ACTIONS(1370), - [anon_sym_nullptr] = ACTIONS(1370), + [aux_sym_preproc_include_token1] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), + [sym_preproc_directive] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym___extension__] = ACTIONS(1382), + [anon_sym_typedef] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1382), + [anon_sym___scanf] = ACTIONS(1382), + [anon_sym___printf] = ACTIONS(1382), + [anon_sym___read_mostly] = ACTIONS(1382), + [anon_sym___must_hold] = ACTIONS(1382), + [anon_sym___ro_after_init] = ACTIONS(1382), + [anon_sym___noreturn] = ACTIONS(1382), + [anon_sym___cold] = ACTIONS(1382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), + [anon_sym___declspec] = ACTIONS(1382), + [anon_sym___init] = ACTIONS(1382), + [anon_sym___exit] = ACTIONS(1382), + [anon_sym___cdecl] = ACTIONS(1382), + [anon_sym___clrcall] = ACTIONS(1382), + [anon_sym___stdcall] = ACTIONS(1382), + [anon_sym___fastcall] = ACTIONS(1382), + [anon_sym___thiscall] = ACTIONS(1382), + [anon_sym___vectorcall] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_RBRACE] = ACTIONS(1384), + [anon_sym_signed] = ACTIONS(1382), + [anon_sym_unsigned] = ACTIONS(1382), + [anon_sym_long] = ACTIONS(1382), + [anon_sym_short] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_auto] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym___inline] = ACTIONS(1382), + [anon_sym___inline__] = ACTIONS(1382), + [anon_sym___forceinline] = ACTIONS(1382), + [anon_sym_thread_local] = ACTIONS(1382), + [anon_sym___thread] = ACTIONS(1382), + [anon_sym_const] = ACTIONS(1382), + [anon_sym_constexpr] = ACTIONS(1382), + [anon_sym_volatile] = ACTIONS(1382), + [anon_sym_restrict] = ACTIONS(1382), + [anon_sym___restrict__] = ACTIONS(1382), + [anon_sym__Atomic] = ACTIONS(1382), + [anon_sym__Noreturn] = ACTIONS(1382), + [anon_sym_noreturn] = ACTIONS(1382), + [anon_sym_alignas] = ACTIONS(1382), + [anon_sym__Alignas] = ACTIONS(1382), + [sym_primitive_type] = ACTIONS(1382), + [anon_sym_enum] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_do] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_goto] = ACTIONS(1382), + [anon_sym___try] = ACTIONS(1382), + [anon_sym___leave] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym___alignof__] = ACTIONS(1382), + [anon_sym___alignof] = ACTIONS(1382), + [anon_sym__alignof] = ACTIONS(1382), + [anon_sym_alignof] = ACTIONS(1382), + [anon_sym__Alignof] = ACTIONS(1382), + [anon_sym_offsetof] = ACTIONS(1382), + [anon_sym__Generic] = ACTIONS(1382), + [anon_sym_asm] = ACTIONS(1382), + [anon_sym___asm__] = ACTIONS(1382), + [sym_number_literal] = ACTIONS(1384), + [anon_sym_L_SQUOTE] = ACTIONS(1384), + [anon_sym_u_SQUOTE] = ACTIONS(1384), + [anon_sym_U_SQUOTE] = ACTIONS(1384), + [anon_sym_u8_SQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_L_DQUOTE] = ACTIONS(1384), + [anon_sym_u_DQUOTE] = ACTIONS(1384), + [anon_sym_U_DQUOTE] = ACTIONS(1384), + [anon_sym_u8_DQUOTE] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [anon_sym_NULL] = ACTIONS(1382), + [anon_sym_nullptr] = ACTIONS(1382), [sym_comment] = ACTIONS(5), }, - [384] = { - [ts_builtin_sym_end] = ACTIONS(1368), - [sym_identifier] = ACTIONS(1366), + [309] = { + [sym_identifier] = ACTIONS(1450), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1450), + [aux_sym_preproc_def_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), + [sym_preproc_directive] = ACTIONS(1450), + [anon_sym_LPAREN2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym___extension__] = ACTIONS(1450), + [anon_sym_typedef] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym___attribute__] = ACTIONS(1450), + [anon_sym___scanf] = ACTIONS(1450), + [anon_sym___printf] = ACTIONS(1450), + [anon_sym___read_mostly] = ACTIONS(1450), + [anon_sym___must_hold] = ACTIONS(1450), + [anon_sym___ro_after_init] = ACTIONS(1450), + [anon_sym___noreturn] = ACTIONS(1450), + [anon_sym___cold] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), + [anon_sym___declspec] = ACTIONS(1450), + [anon_sym___init] = ACTIONS(1450), + [anon_sym___exit] = ACTIONS(1450), + [anon_sym___cdecl] = ACTIONS(1450), + [anon_sym___clrcall] = ACTIONS(1450), + [anon_sym___stdcall] = ACTIONS(1450), + [anon_sym___fastcall] = ACTIONS(1450), + [anon_sym___thiscall] = ACTIONS(1450), + [anon_sym___vectorcall] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_signed] = ACTIONS(1450), + [anon_sym_unsigned] = ACTIONS(1450), + [anon_sym_long] = ACTIONS(1450), + [anon_sym_short] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_auto] = ACTIONS(1450), + [anon_sym_register] = ACTIONS(1450), + [anon_sym_inline] = ACTIONS(1450), + [anon_sym___inline] = ACTIONS(1450), + [anon_sym___inline__] = ACTIONS(1450), + [anon_sym___forceinline] = ACTIONS(1450), + [anon_sym_thread_local] = ACTIONS(1450), + [anon_sym___thread] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_constexpr] = ACTIONS(1450), + [anon_sym_volatile] = ACTIONS(1450), + [anon_sym_restrict] = ACTIONS(1450), + [anon_sym___restrict__] = ACTIONS(1450), + [anon_sym__Atomic] = ACTIONS(1450), + [anon_sym__Noreturn] = ACTIONS(1450), + [anon_sym_noreturn] = ACTIONS(1450), + [anon_sym_alignas] = ACTIONS(1450), + [anon_sym__Alignas] = ACTIONS(1450), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_switch] = ACTIONS(1450), + [anon_sym_case] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_do] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_goto] = ACTIONS(1450), + [anon_sym___try] = ACTIONS(1450), + [anon_sym___leave] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [anon_sym_sizeof] = ACTIONS(1450), + [anon_sym___alignof__] = ACTIONS(1450), + [anon_sym___alignof] = ACTIONS(1450), + [anon_sym__alignof] = ACTIONS(1450), + [anon_sym_alignof] = ACTIONS(1450), + [anon_sym__Alignof] = ACTIONS(1450), + [anon_sym_offsetof] = ACTIONS(1450), + [anon_sym__Generic] = ACTIONS(1450), + [anon_sym_asm] = ACTIONS(1450), + [anon_sym___asm__] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(1452), + [anon_sym_L_SQUOTE] = ACTIONS(1452), + [anon_sym_u_SQUOTE] = ACTIONS(1452), + [anon_sym_U_SQUOTE] = ACTIONS(1452), + [anon_sym_u8_SQUOTE] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_L_DQUOTE] = ACTIONS(1452), + [anon_sym_u_DQUOTE] = ACTIONS(1452), + [anon_sym_U_DQUOTE] = ACTIONS(1452), + [anon_sym_u8_DQUOTE] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [sym_true] = ACTIONS(1450), + [sym_false] = ACTIONS(1450), + [anon_sym_NULL] = ACTIONS(1450), + [anon_sym_nullptr] = ACTIONS(1450), + [sym_comment] = ACTIONS(5), + }, + [310] = { + [sym_identifier] = ACTIONS(1438), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1438), + [aux_sym_preproc_def_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), + [sym_preproc_directive] = ACTIONS(1438), + [anon_sym_LPAREN2] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_TILDE] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1440), + [anon_sym___extension__] = ACTIONS(1438), + [anon_sym_typedef] = ACTIONS(1438), + [anon_sym_extern] = ACTIONS(1438), + [anon_sym___attribute__] = ACTIONS(1438), + [anon_sym___scanf] = ACTIONS(1438), + [anon_sym___printf] = ACTIONS(1438), + [anon_sym___read_mostly] = ACTIONS(1438), + [anon_sym___must_hold] = ACTIONS(1438), + [anon_sym___ro_after_init] = ACTIONS(1438), + [anon_sym___noreturn] = ACTIONS(1438), + [anon_sym___cold] = ACTIONS(1438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), + [anon_sym___declspec] = ACTIONS(1438), + [anon_sym___init] = ACTIONS(1438), + [anon_sym___exit] = ACTIONS(1438), + [anon_sym___cdecl] = ACTIONS(1438), + [anon_sym___clrcall] = ACTIONS(1438), + [anon_sym___stdcall] = ACTIONS(1438), + [anon_sym___fastcall] = ACTIONS(1438), + [anon_sym___thiscall] = ACTIONS(1438), + [anon_sym___vectorcall] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_RBRACE] = ACTIONS(1440), + [anon_sym_signed] = ACTIONS(1438), + [anon_sym_unsigned] = ACTIONS(1438), + [anon_sym_long] = ACTIONS(1438), + [anon_sym_short] = ACTIONS(1438), + [anon_sym_static] = ACTIONS(1438), + [anon_sym_auto] = ACTIONS(1438), + [anon_sym_register] = ACTIONS(1438), + [anon_sym_inline] = ACTIONS(1438), + [anon_sym___inline] = ACTIONS(1438), + [anon_sym___inline__] = ACTIONS(1438), + [anon_sym___forceinline] = ACTIONS(1438), + [anon_sym_thread_local] = ACTIONS(1438), + [anon_sym___thread] = ACTIONS(1438), + [anon_sym_const] = ACTIONS(1438), + [anon_sym_constexpr] = ACTIONS(1438), + [anon_sym_volatile] = ACTIONS(1438), + [anon_sym_restrict] = ACTIONS(1438), + [anon_sym___restrict__] = ACTIONS(1438), + [anon_sym__Atomic] = ACTIONS(1438), + [anon_sym__Noreturn] = ACTIONS(1438), + [anon_sym_noreturn] = ACTIONS(1438), + [anon_sym_alignas] = ACTIONS(1438), + [anon_sym__Alignas] = ACTIONS(1438), + [sym_primitive_type] = ACTIONS(1438), + [anon_sym_enum] = ACTIONS(1438), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_union] = ACTIONS(1438), + [anon_sym_if] = ACTIONS(1438), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1438), + [anon_sym_do] = ACTIONS(1438), + [anon_sym_for] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_goto] = ACTIONS(1438), + [anon_sym___try] = ACTIONS(1438), + [anon_sym___leave] = ACTIONS(1438), + [anon_sym_DASH_DASH] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1440), + [anon_sym_sizeof] = ACTIONS(1438), + [anon_sym___alignof__] = ACTIONS(1438), + [anon_sym___alignof] = ACTIONS(1438), + [anon_sym__alignof] = ACTIONS(1438), + [anon_sym_alignof] = ACTIONS(1438), + [anon_sym__Alignof] = ACTIONS(1438), + [anon_sym_offsetof] = ACTIONS(1438), + [anon_sym__Generic] = ACTIONS(1438), + [anon_sym_asm] = ACTIONS(1438), + [anon_sym___asm__] = ACTIONS(1438), + [sym_number_literal] = ACTIONS(1440), + [anon_sym_L_SQUOTE] = ACTIONS(1440), + [anon_sym_u_SQUOTE] = ACTIONS(1440), + [anon_sym_U_SQUOTE] = ACTIONS(1440), + [anon_sym_u8_SQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1440), + [anon_sym_L_DQUOTE] = ACTIONS(1440), + [anon_sym_u_DQUOTE] = ACTIONS(1440), + [anon_sym_U_DQUOTE] = ACTIONS(1440), + [anon_sym_u8_DQUOTE] = ACTIONS(1440), + [anon_sym_DQUOTE] = ACTIONS(1440), + [sym_true] = ACTIONS(1438), + [sym_false] = ACTIONS(1438), + [anon_sym_NULL] = ACTIONS(1438), + [anon_sym_nullptr] = ACTIONS(1438), + [sym_comment] = ACTIONS(5), + }, + [311] = { + [sym_identifier] = ACTIONS(1502), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1502), + [aux_sym_preproc_def_token1] = ACTIONS(1502), + [aux_sym_preproc_if_token1] = ACTIONS(1502), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1502), + [sym_preproc_directive] = ACTIONS(1502), + [anon_sym_LPAREN2] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_TILDE] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_PLUS] = ACTIONS(1502), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym___extension__] = ACTIONS(1502), + [anon_sym_typedef] = ACTIONS(1502), + [anon_sym_extern] = ACTIONS(1502), + [anon_sym___attribute__] = ACTIONS(1502), + [anon_sym___scanf] = ACTIONS(1502), + [anon_sym___printf] = ACTIONS(1502), + [anon_sym___read_mostly] = ACTIONS(1502), + [anon_sym___must_hold] = ACTIONS(1502), + [anon_sym___ro_after_init] = ACTIONS(1502), + [anon_sym___noreturn] = ACTIONS(1502), + [anon_sym___cold] = ACTIONS(1502), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1505), + [anon_sym___declspec] = ACTIONS(1502), + [anon_sym___init] = ACTIONS(1502), + [anon_sym___exit] = ACTIONS(1502), + [anon_sym___cdecl] = ACTIONS(1502), + [anon_sym___clrcall] = ACTIONS(1502), + [anon_sym___stdcall] = ACTIONS(1502), + [anon_sym___fastcall] = ACTIONS(1502), + [anon_sym___thiscall] = ACTIONS(1502), + [anon_sym___vectorcall] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1505), + [anon_sym_signed] = ACTIONS(1502), + [anon_sym_unsigned] = ACTIONS(1502), + [anon_sym_long] = ACTIONS(1502), + [anon_sym_short] = ACTIONS(1502), + [anon_sym_static] = ACTIONS(1502), + [anon_sym_auto] = ACTIONS(1502), + [anon_sym_register] = ACTIONS(1502), + [anon_sym_inline] = ACTIONS(1502), + [anon_sym___inline] = ACTIONS(1502), + [anon_sym___inline__] = ACTIONS(1502), + [anon_sym___forceinline] = ACTIONS(1502), + [anon_sym_thread_local] = ACTIONS(1502), + [anon_sym___thread] = ACTIONS(1502), + [anon_sym_const] = ACTIONS(1502), + [anon_sym_constexpr] = ACTIONS(1502), + [anon_sym_volatile] = ACTIONS(1502), + [anon_sym_restrict] = ACTIONS(1502), + [anon_sym___restrict__] = ACTIONS(1502), + [anon_sym__Atomic] = ACTIONS(1502), + [anon_sym__Noreturn] = ACTIONS(1502), + [anon_sym_noreturn] = ACTIONS(1502), + [anon_sym_alignas] = ACTIONS(1502), + [anon_sym__Alignas] = ACTIONS(1502), + [sym_primitive_type] = ACTIONS(1502), + [anon_sym_enum] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1502), + [anon_sym_union] = ACTIONS(1502), + [anon_sym_if] = ACTIONS(1502), + [anon_sym_switch] = ACTIONS(1502), + [anon_sym_case] = ACTIONS(1502), + [anon_sym_default] = ACTIONS(1502), + [anon_sym_while] = ACTIONS(1502), + [anon_sym_do] = ACTIONS(1502), + [anon_sym_for] = ACTIONS(1502), + [anon_sym_return] = ACTIONS(1502), + [anon_sym_break] = ACTIONS(1502), + [anon_sym_continue] = ACTIONS(1502), + [anon_sym_goto] = ACTIONS(1502), + [anon_sym___try] = ACTIONS(1502), + [anon_sym___leave] = ACTIONS(1502), + [anon_sym_DASH_DASH] = ACTIONS(1505), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_sizeof] = ACTIONS(1502), + [anon_sym___alignof__] = ACTIONS(1502), + [anon_sym___alignof] = ACTIONS(1502), + [anon_sym__alignof] = ACTIONS(1502), + [anon_sym_alignof] = ACTIONS(1502), + [anon_sym__Alignof] = ACTIONS(1502), + [anon_sym_offsetof] = ACTIONS(1502), + [anon_sym__Generic] = ACTIONS(1502), + [anon_sym_asm] = ACTIONS(1502), + [anon_sym___asm__] = ACTIONS(1502), + [sym_number_literal] = ACTIONS(1505), + [anon_sym_L_SQUOTE] = ACTIONS(1505), + [anon_sym_u_SQUOTE] = ACTIONS(1505), + [anon_sym_U_SQUOTE] = ACTIONS(1505), + [anon_sym_u8_SQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1505), + [anon_sym_L_DQUOTE] = ACTIONS(1505), + [anon_sym_u_DQUOTE] = ACTIONS(1505), + [anon_sym_U_DQUOTE] = ACTIONS(1505), + [anon_sym_u8_DQUOTE] = ACTIONS(1505), + [anon_sym_DQUOTE] = ACTIONS(1505), + [sym_true] = ACTIONS(1502), + [sym_false] = ACTIONS(1502), + [anon_sym_NULL] = ACTIONS(1502), + [anon_sym_nullptr] = ACTIONS(1502), + [sym_comment] = ACTIONS(5), + }, + [312] = { + [sym_identifier] = ACTIONS(1434), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1434), + [aux_sym_preproc_def_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), + [sym_preproc_directive] = ACTIONS(1434), + [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym___extension__] = ACTIONS(1434), + [anon_sym_typedef] = ACTIONS(1434), + [anon_sym_extern] = ACTIONS(1434), + [anon_sym___attribute__] = ACTIONS(1434), + [anon_sym___scanf] = ACTIONS(1434), + [anon_sym___printf] = ACTIONS(1434), + [anon_sym___read_mostly] = ACTIONS(1434), + [anon_sym___must_hold] = ACTIONS(1434), + [anon_sym___ro_after_init] = ACTIONS(1434), + [anon_sym___noreturn] = ACTIONS(1434), + [anon_sym___cold] = ACTIONS(1434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), + [anon_sym___declspec] = ACTIONS(1434), + [anon_sym___init] = ACTIONS(1434), + [anon_sym___exit] = ACTIONS(1434), + [anon_sym___cdecl] = ACTIONS(1434), + [anon_sym___clrcall] = ACTIONS(1434), + [anon_sym___stdcall] = ACTIONS(1434), + [anon_sym___fastcall] = ACTIONS(1434), + [anon_sym___thiscall] = ACTIONS(1434), + [anon_sym___vectorcall] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_RBRACE] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1434), + [anon_sym_unsigned] = ACTIONS(1434), + [anon_sym_long] = ACTIONS(1434), + [anon_sym_short] = ACTIONS(1434), + [anon_sym_static] = ACTIONS(1434), + [anon_sym_auto] = ACTIONS(1434), + [anon_sym_register] = ACTIONS(1434), + [anon_sym_inline] = ACTIONS(1434), + [anon_sym___inline] = ACTIONS(1434), + [anon_sym___inline__] = ACTIONS(1434), + [anon_sym___forceinline] = ACTIONS(1434), + [anon_sym_thread_local] = ACTIONS(1434), + [anon_sym___thread] = ACTIONS(1434), + [anon_sym_const] = ACTIONS(1434), + [anon_sym_constexpr] = ACTIONS(1434), + [anon_sym_volatile] = ACTIONS(1434), + [anon_sym_restrict] = ACTIONS(1434), + [anon_sym___restrict__] = ACTIONS(1434), + [anon_sym__Atomic] = ACTIONS(1434), + [anon_sym__Noreturn] = ACTIONS(1434), + [anon_sym_noreturn] = ACTIONS(1434), + [anon_sym_alignas] = ACTIONS(1434), + [anon_sym__Alignas] = ACTIONS(1434), + [sym_primitive_type] = ACTIONS(1434), + [anon_sym_enum] = ACTIONS(1434), + [anon_sym_struct] = ACTIONS(1434), + [anon_sym_union] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1434), + [anon_sym_switch] = ACTIONS(1434), + [anon_sym_case] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_while] = ACTIONS(1434), + [anon_sym_do] = ACTIONS(1434), + [anon_sym_for] = ACTIONS(1434), + [anon_sym_return] = ACTIONS(1434), + [anon_sym_break] = ACTIONS(1434), + [anon_sym_continue] = ACTIONS(1434), + [anon_sym_goto] = ACTIONS(1434), + [anon_sym___try] = ACTIONS(1434), + [anon_sym___leave] = ACTIONS(1434), + [anon_sym_DASH_DASH] = ACTIONS(1436), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1434), + [anon_sym___alignof__] = ACTIONS(1434), + [anon_sym___alignof] = ACTIONS(1434), + [anon_sym__alignof] = ACTIONS(1434), + [anon_sym_alignof] = ACTIONS(1434), + [anon_sym__Alignof] = ACTIONS(1434), + [anon_sym_offsetof] = ACTIONS(1434), + [anon_sym__Generic] = ACTIONS(1434), + [anon_sym_asm] = ACTIONS(1434), + [anon_sym___asm__] = ACTIONS(1434), + [sym_number_literal] = ACTIONS(1436), + [anon_sym_L_SQUOTE] = ACTIONS(1436), + [anon_sym_u_SQUOTE] = ACTIONS(1436), + [anon_sym_U_SQUOTE] = ACTIONS(1436), + [anon_sym_u8_SQUOTE] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_L_DQUOTE] = ACTIONS(1436), + [anon_sym_u_DQUOTE] = ACTIONS(1436), + [anon_sym_U_DQUOTE] = ACTIONS(1436), + [anon_sym_u8_DQUOTE] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [anon_sym_NULL] = ACTIONS(1434), + [anon_sym_nullptr] = ACTIONS(1434), + [sym_comment] = ACTIONS(5), + }, + [313] = { + [sym_identifier] = ACTIONS(1482), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1482), + [aux_sym_preproc_def_token1] = ACTIONS(1482), + [aux_sym_preproc_if_token1] = ACTIONS(1482), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1482), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1482), + [sym_preproc_directive] = ACTIONS(1482), + [anon_sym_LPAREN2] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_TILDE] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym___extension__] = ACTIONS(1482), + [anon_sym_typedef] = ACTIONS(1482), + [anon_sym_extern] = ACTIONS(1482), + [anon_sym___attribute__] = ACTIONS(1482), + [anon_sym___scanf] = ACTIONS(1482), + [anon_sym___printf] = ACTIONS(1482), + [anon_sym___read_mostly] = ACTIONS(1482), + [anon_sym___must_hold] = ACTIONS(1482), + [anon_sym___ro_after_init] = ACTIONS(1482), + [anon_sym___noreturn] = ACTIONS(1482), + [anon_sym___cold] = ACTIONS(1482), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1484), + [anon_sym___declspec] = ACTIONS(1482), + [anon_sym___init] = ACTIONS(1482), + [anon_sym___exit] = ACTIONS(1482), + [anon_sym___cdecl] = ACTIONS(1482), + [anon_sym___clrcall] = ACTIONS(1482), + [anon_sym___stdcall] = ACTIONS(1482), + [anon_sym___fastcall] = ACTIONS(1482), + [anon_sym___thiscall] = ACTIONS(1482), + [anon_sym___vectorcall] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1484), + [anon_sym_signed] = ACTIONS(1482), + [anon_sym_unsigned] = ACTIONS(1482), + [anon_sym_long] = ACTIONS(1482), + [anon_sym_short] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1482), + [anon_sym_auto] = ACTIONS(1482), + [anon_sym_register] = ACTIONS(1482), + [anon_sym_inline] = ACTIONS(1482), + [anon_sym___inline] = ACTIONS(1482), + [anon_sym___inline__] = ACTIONS(1482), + [anon_sym___forceinline] = ACTIONS(1482), + [anon_sym_thread_local] = ACTIONS(1482), + [anon_sym___thread] = ACTIONS(1482), + [anon_sym_const] = ACTIONS(1482), + [anon_sym_constexpr] = ACTIONS(1482), + [anon_sym_volatile] = ACTIONS(1482), + [anon_sym_restrict] = ACTIONS(1482), + [anon_sym___restrict__] = ACTIONS(1482), + [anon_sym__Atomic] = ACTIONS(1482), + [anon_sym__Noreturn] = ACTIONS(1482), + [anon_sym_noreturn] = ACTIONS(1482), + [anon_sym_alignas] = ACTIONS(1482), + [anon_sym__Alignas] = ACTIONS(1482), + [sym_primitive_type] = ACTIONS(1482), + [anon_sym_enum] = ACTIONS(1482), + [anon_sym_struct] = ACTIONS(1482), + [anon_sym_union] = ACTIONS(1482), + [anon_sym_if] = ACTIONS(1482), + [anon_sym_switch] = ACTIONS(1482), + [anon_sym_case] = ACTIONS(1482), + [anon_sym_default] = ACTIONS(1482), + [anon_sym_while] = ACTIONS(1482), + [anon_sym_do] = ACTIONS(1482), + [anon_sym_for] = ACTIONS(1482), + [anon_sym_return] = ACTIONS(1482), + [anon_sym_break] = ACTIONS(1482), + [anon_sym_continue] = ACTIONS(1482), + [anon_sym_goto] = ACTIONS(1482), + [anon_sym___try] = ACTIONS(1482), + [anon_sym___leave] = ACTIONS(1482), + [anon_sym_DASH_DASH] = ACTIONS(1484), + [anon_sym_PLUS_PLUS] = ACTIONS(1484), + [anon_sym_sizeof] = ACTIONS(1482), + [anon_sym___alignof__] = ACTIONS(1482), + [anon_sym___alignof] = ACTIONS(1482), + [anon_sym__alignof] = ACTIONS(1482), + [anon_sym_alignof] = ACTIONS(1482), + [anon_sym__Alignof] = ACTIONS(1482), + [anon_sym_offsetof] = ACTIONS(1482), + [anon_sym__Generic] = ACTIONS(1482), + [anon_sym_asm] = ACTIONS(1482), + [anon_sym___asm__] = ACTIONS(1482), + [sym_number_literal] = ACTIONS(1484), + [anon_sym_L_SQUOTE] = ACTIONS(1484), + [anon_sym_u_SQUOTE] = ACTIONS(1484), + [anon_sym_U_SQUOTE] = ACTIONS(1484), + [anon_sym_u8_SQUOTE] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_L_DQUOTE] = ACTIONS(1484), + [anon_sym_u_DQUOTE] = ACTIONS(1484), + [anon_sym_U_DQUOTE] = ACTIONS(1484), + [anon_sym_u8_DQUOTE] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [sym_true] = ACTIONS(1482), + [sym_false] = ACTIONS(1482), + [anon_sym_NULL] = ACTIONS(1482), + [anon_sym_nullptr] = ACTIONS(1482), + [sym_comment] = ACTIONS(5), + }, + [314] = { + [sym_identifier] = ACTIONS(1486), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1486), + [aux_sym_preproc_def_token1] = ACTIONS(1486), + [aux_sym_preproc_if_token1] = ACTIONS(1486), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1486), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1486), + [sym_preproc_directive] = ACTIONS(1486), + [anon_sym_LPAREN2] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym___extension__] = ACTIONS(1486), + [anon_sym_typedef] = ACTIONS(1486), + [anon_sym_extern] = ACTIONS(1486), + [anon_sym___attribute__] = ACTIONS(1486), + [anon_sym___scanf] = ACTIONS(1486), + [anon_sym___printf] = ACTIONS(1486), + [anon_sym___read_mostly] = ACTIONS(1486), + [anon_sym___must_hold] = ACTIONS(1486), + [anon_sym___ro_after_init] = ACTIONS(1486), + [anon_sym___noreturn] = ACTIONS(1486), + [anon_sym___cold] = ACTIONS(1486), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1488), + [anon_sym___declspec] = ACTIONS(1486), + [anon_sym___init] = ACTIONS(1486), + [anon_sym___exit] = ACTIONS(1486), + [anon_sym___cdecl] = ACTIONS(1486), + [anon_sym___clrcall] = ACTIONS(1486), + [anon_sym___stdcall] = ACTIONS(1486), + [anon_sym___fastcall] = ACTIONS(1486), + [anon_sym___thiscall] = ACTIONS(1486), + [anon_sym___vectorcall] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_RBRACE] = ACTIONS(1488), + [anon_sym_signed] = ACTIONS(1486), + [anon_sym_unsigned] = ACTIONS(1486), + [anon_sym_long] = ACTIONS(1486), + [anon_sym_short] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_auto] = ACTIONS(1486), + [anon_sym_register] = ACTIONS(1486), + [anon_sym_inline] = ACTIONS(1486), + [anon_sym___inline] = ACTIONS(1486), + [anon_sym___inline__] = ACTIONS(1486), + [anon_sym___forceinline] = ACTIONS(1486), + [anon_sym_thread_local] = ACTIONS(1486), + [anon_sym___thread] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_constexpr] = ACTIONS(1486), + [anon_sym_volatile] = ACTIONS(1486), + [anon_sym_restrict] = ACTIONS(1486), + [anon_sym___restrict__] = ACTIONS(1486), + [anon_sym__Atomic] = ACTIONS(1486), + [anon_sym__Noreturn] = ACTIONS(1486), + [anon_sym_noreturn] = ACTIONS(1486), + [anon_sym_alignas] = ACTIONS(1486), + [anon_sym__Alignas] = ACTIONS(1486), + [sym_primitive_type] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [anon_sym_struct] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(1486), + [anon_sym_if] = ACTIONS(1486), + [anon_sym_switch] = ACTIONS(1486), + [anon_sym_case] = ACTIONS(1486), + [anon_sym_default] = ACTIONS(1486), + [anon_sym_while] = ACTIONS(1486), + [anon_sym_do] = ACTIONS(1486), + [anon_sym_for] = ACTIONS(1486), + [anon_sym_return] = ACTIONS(1486), + [anon_sym_break] = ACTIONS(1486), + [anon_sym_continue] = ACTIONS(1486), + [anon_sym_goto] = ACTIONS(1486), + [anon_sym___try] = ACTIONS(1486), + [anon_sym___leave] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_sizeof] = ACTIONS(1486), + [anon_sym___alignof__] = ACTIONS(1486), + [anon_sym___alignof] = ACTIONS(1486), + [anon_sym__alignof] = ACTIONS(1486), + [anon_sym_alignof] = ACTIONS(1486), + [anon_sym__Alignof] = ACTIONS(1486), + [anon_sym_offsetof] = ACTIONS(1486), + [anon_sym__Generic] = ACTIONS(1486), + [anon_sym_asm] = ACTIONS(1486), + [anon_sym___asm__] = ACTIONS(1486), + [sym_number_literal] = ACTIONS(1488), + [anon_sym_L_SQUOTE] = ACTIONS(1488), + [anon_sym_u_SQUOTE] = ACTIONS(1488), + [anon_sym_U_SQUOTE] = ACTIONS(1488), + [anon_sym_u8_SQUOTE] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_L_DQUOTE] = ACTIONS(1488), + [anon_sym_u_DQUOTE] = ACTIONS(1488), + [anon_sym_U_DQUOTE] = ACTIONS(1488), + [anon_sym_u8_DQUOTE] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [sym_true] = ACTIONS(1486), + [sym_false] = ACTIONS(1486), + [anon_sym_NULL] = ACTIONS(1486), + [anon_sym_nullptr] = ACTIONS(1486), + [sym_comment] = ACTIONS(5), + }, + [315] = { + [sym_identifier] = ACTIONS(1494), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1494), + [aux_sym_preproc_def_token1] = ACTIONS(1494), + [aux_sym_preproc_if_token1] = ACTIONS(1494), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1494), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1494), + [sym_preproc_directive] = ACTIONS(1494), + [anon_sym_LPAREN2] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_TILDE] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_STAR] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym___extension__] = ACTIONS(1494), + [anon_sym_typedef] = ACTIONS(1494), + [anon_sym_extern] = ACTIONS(1494), + [anon_sym___attribute__] = ACTIONS(1494), + [anon_sym___scanf] = ACTIONS(1494), + [anon_sym___printf] = ACTIONS(1494), + [anon_sym___read_mostly] = ACTIONS(1494), + [anon_sym___must_hold] = ACTIONS(1494), + [anon_sym___ro_after_init] = ACTIONS(1494), + [anon_sym___noreturn] = ACTIONS(1494), + [anon_sym___cold] = ACTIONS(1494), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1496), + [anon_sym___declspec] = ACTIONS(1494), + [anon_sym___init] = ACTIONS(1494), + [anon_sym___exit] = ACTIONS(1494), + [anon_sym___cdecl] = ACTIONS(1494), + [anon_sym___clrcall] = ACTIONS(1494), + [anon_sym___stdcall] = ACTIONS(1494), + [anon_sym___fastcall] = ACTIONS(1494), + [anon_sym___thiscall] = ACTIONS(1494), + [anon_sym___vectorcall] = ACTIONS(1494), + [anon_sym_LBRACE] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_signed] = ACTIONS(1494), + [anon_sym_unsigned] = ACTIONS(1494), + [anon_sym_long] = ACTIONS(1494), + [anon_sym_short] = ACTIONS(1494), + [anon_sym_static] = ACTIONS(1494), + [anon_sym_auto] = ACTIONS(1494), + [anon_sym_register] = ACTIONS(1494), + [anon_sym_inline] = ACTIONS(1494), + [anon_sym___inline] = ACTIONS(1494), + [anon_sym___inline__] = ACTIONS(1494), + [anon_sym___forceinline] = ACTIONS(1494), + [anon_sym_thread_local] = ACTIONS(1494), + [anon_sym___thread] = ACTIONS(1494), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_constexpr] = ACTIONS(1494), + [anon_sym_volatile] = ACTIONS(1494), + [anon_sym_restrict] = ACTIONS(1494), + [anon_sym___restrict__] = ACTIONS(1494), + [anon_sym__Atomic] = ACTIONS(1494), + [anon_sym__Noreturn] = ACTIONS(1494), + [anon_sym_noreturn] = ACTIONS(1494), + [anon_sym_alignas] = ACTIONS(1494), + [anon_sym__Alignas] = ACTIONS(1494), + [sym_primitive_type] = ACTIONS(1494), + [anon_sym_enum] = ACTIONS(1494), + [anon_sym_struct] = ACTIONS(1494), + [anon_sym_union] = ACTIONS(1494), + [anon_sym_if] = ACTIONS(1494), + [anon_sym_switch] = ACTIONS(1494), + [anon_sym_case] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(1494), + [anon_sym_while] = ACTIONS(1494), + [anon_sym_do] = ACTIONS(1494), + [anon_sym_for] = ACTIONS(1494), + [anon_sym_return] = ACTIONS(1494), + [anon_sym_break] = ACTIONS(1494), + [anon_sym_continue] = ACTIONS(1494), + [anon_sym_goto] = ACTIONS(1494), + [anon_sym___try] = ACTIONS(1494), + [anon_sym___leave] = ACTIONS(1494), + [anon_sym_DASH_DASH] = ACTIONS(1496), + [anon_sym_PLUS_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1494), + [anon_sym___alignof__] = ACTIONS(1494), + [anon_sym___alignof] = ACTIONS(1494), + [anon_sym__alignof] = ACTIONS(1494), + [anon_sym_alignof] = ACTIONS(1494), + [anon_sym__Alignof] = ACTIONS(1494), + [anon_sym_offsetof] = ACTIONS(1494), + [anon_sym__Generic] = ACTIONS(1494), + [anon_sym_asm] = ACTIONS(1494), + [anon_sym___asm__] = ACTIONS(1494), + [sym_number_literal] = ACTIONS(1496), + [anon_sym_L_SQUOTE] = ACTIONS(1496), + [anon_sym_u_SQUOTE] = ACTIONS(1496), + [anon_sym_U_SQUOTE] = ACTIONS(1496), + [anon_sym_u8_SQUOTE] = ACTIONS(1496), + [anon_sym_SQUOTE] = ACTIONS(1496), + [anon_sym_L_DQUOTE] = ACTIONS(1496), + [anon_sym_u_DQUOTE] = ACTIONS(1496), + [anon_sym_U_DQUOTE] = ACTIONS(1496), + [anon_sym_u8_DQUOTE] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [sym_true] = ACTIONS(1494), + [sym_false] = ACTIONS(1494), + [anon_sym_NULL] = ACTIONS(1494), + [anon_sym_nullptr] = ACTIONS(1494), + [sym_comment] = ACTIONS(5), + }, + [316] = { + [sym_identifier] = ACTIONS(1498), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1498), + [aux_sym_preproc_def_token1] = ACTIONS(1498), + [aux_sym_preproc_if_token1] = ACTIONS(1498), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1498), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1498), + [sym_preproc_directive] = ACTIONS(1498), + [anon_sym_LPAREN2] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_TILDE] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym___extension__] = ACTIONS(1498), + [anon_sym_typedef] = ACTIONS(1498), + [anon_sym_extern] = ACTIONS(1498), + [anon_sym___attribute__] = ACTIONS(1498), + [anon_sym___scanf] = ACTIONS(1498), + [anon_sym___printf] = ACTIONS(1498), + [anon_sym___read_mostly] = ACTIONS(1498), + [anon_sym___must_hold] = ACTIONS(1498), + [anon_sym___ro_after_init] = ACTIONS(1498), + [anon_sym___noreturn] = ACTIONS(1498), + [anon_sym___cold] = ACTIONS(1498), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1500), + [anon_sym___declspec] = ACTIONS(1498), + [anon_sym___init] = ACTIONS(1498), + [anon_sym___exit] = ACTIONS(1498), + [anon_sym___cdecl] = ACTIONS(1498), + [anon_sym___clrcall] = ACTIONS(1498), + [anon_sym___stdcall] = ACTIONS(1498), + [anon_sym___fastcall] = ACTIONS(1498), + [anon_sym___thiscall] = ACTIONS(1498), + [anon_sym___vectorcall] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1500), + [anon_sym_signed] = ACTIONS(1498), + [anon_sym_unsigned] = ACTIONS(1498), + [anon_sym_long] = ACTIONS(1498), + [anon_sym_short] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_auto] = ACTIONS(1498), + [anon_sym_register] = ACTIONS(1498), + [anon_sym_inline] = ACTIONS(1498), + [anon_sym___inline] = ACTIONS(1498), + [anon_sym___inline__] = ACTIONS(1498), + [anon_sym___forceinline] = ACTIONS(1498), + [anon_sym_thread_local] = ACTIONS(1498), + [anon_sym___thread] = ACTIONS(1498), + [anon_sym_const] = ACTIONS(1498), + [anon_sym_constexpr] = ACTIONS(1498), + [anon_sym_volatile] = ACTIONS(1498), + [anon_sym_restrict] = ACTIONS(1498), + [anon_sym___restrict__] = ACTIONS(1498), + [anon_sym__Atomic] = ACTIONS(1498), + [anon_sym__Noreturn] = ACTIONS(1498), + [anon_sym_noreturn] = ACTIONS(1498), + [anon_sym_alignas] = ACTIONS(1498), + [anon_sym__Alignas] = ACTIONS(1498), + [sym_primitive_type] = ACTIONS(1498), + [anon_sym_enum] = ACTIONS(1498), + [anon_sym_struct] = ACTIONS(1498), + [anon_sym_union] = ACTIONS(1498), + [anon_sym_if] = ACTIONS(1498), + [anon_sym_switch] = ACTIONS(1498), + [anon_sym_case] = ACTIONS(1498), + [anon_sym_default] = ACTIONS(1498), + [anon_sym_while] = ACTIONS(1498), + [anon_sym_do] = ACTIONS(1498), + [anon_sym_for] = ACTIONS(1498), + [anon_sym_return] = ACTIONS(1498), + [anon_sym_break] = ACTIONS(1498), + [anon_sym_continue] = ACTIONS(1498), + [anon_sym_goto] = ACTIONS(1498), + [anon_sym___try] = ACTIONS(1498), + [anon_sym___leave] = ACTIONS(1498), + [anon_sym_DASH_DASH] = ACTIONS(1500), + [anon_sym_PLUS_PLUS] = ACTIONS(1500), + [anon_sym_sizeof] = ACTIONS(1498), + [anon_sym___alignof__] = ACTIONS(1498), + [anon_sym___alignof] = ACTIONS(1498), + [anon_sym__alignof] = ACTIONS(1498), + [anon_sym_alignof] = ACTIONS(1498), + [anon_sym__Alignof] = ACTIONS(1498), + [anon_sym_offsetof] = ACTIONS(1498), + [anon_sym__Generic] = ACTIONS(1498), + [anon_sym_asm] = ACTIONS(1498), + [anon_sym___asm__] = ACTIONS(1498), + [sym_number_literal] = ACTIONS(1500), + [anon_sym_L_SQUOTE] = ACTIONS(1500), + [anon_sym_u_SQUOTE] = ACTIONS(1500), + [anon_sym_U_SQUOTE] = ACTIONS(1500), + [anon_sym_u8_SQUOTE] = ACTIONS(1500), + [anon_sym_SQUOTE] = ACTIONS(1500), + [anon_sym_L_DQUOTE] = ACTIONS(1500), + [anon_sym_u_DQUOTE] = ACTIONS(1500), + [anon_sym_U_DQUOTE] = ACTIONS(1500), + [anon_sym_u8_DQUOTE] = ACTIONS(1500), + [anon_sym_DQUOTE] = ACTIONS(1500), + [sym_true] = ACTIONS(1498), + [sym_false] = ACTIONS(1498), + [anon_sym_NULL] = ACTIONS(1498), + [anon_sym_nullptr] = ACTIONS(1498), + [sym_comment] = ACTIONS(5), + }, + [317] = { + [sym_identifier] = ACTIONS(1386), [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), - [sym_preproc_directive] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_TILDE] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym___attribute__] = ACTIONS(1366), - [anon_sym___scanf] = ACTIONS(1366), - [anon_sym___printf] = ACTIONS(1366), - [anon_sym___read_mostly] = ACTIONS(1366), - [anon_sym___must_hold] = ACTIONS(1366), - [anon_sym___ro_after_init] = ACTIONS(1366), - [anon_sym___noreturn] = ACTIONS(1366), - [anon_sym___cold] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), - [anon_sym___declspec] = ACTIONS(1366), - [anon_sym___init] = ACTIONS(1366), - [anon_sym___exit] = ACTIONS(1366), - [anon_sym___cdecl] = ACTIONS(1366), - [anon_sym___clrcall] = ACTIONS(1366), - [anon_sym___stdcall] = ACTIONS(1366), - [anon_sym___fastcall] = ACTIONS(1366), - [anon_sym___thiscall] = ACTIONS(1366), - [anon_sym___vectorcall] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1366), - [anon_sym_unsigned] = ACTIONS(1366), - [anon_sym_long] = ACTIONS(1366), - [anon_sym_short] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_auto] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1366), - [anon_sym_inline] = ACTIONS(1366), - [anon_sym___inline] = ACTIONS(1366), - [anon_sym___inline__] = ACTIONS(1366), - [anon_sym___forceinline] = ACTIONS(1366), - [anon_sym_thread_local] = ACTIONS(1366), - [anon_sym___thread] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_constexpr] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1366), - [anon_sym_restrict] = ACTIONS(1366), - [anon_sym___restrict__] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1366), - [anon_sym__Noreturn] = ACTIONS(1366), - [anon_sym_noreturn] = ACTIONS(1366), - [anon_sym_alignas] = ACTIONS(1366), - [anon_sym__Alignas] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1366), - [anon_sym_case] = ACTIONS(1366), - [anon_sym_default] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_do] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_goto] = ACTIONS(1366), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_sizeof] = ACTIONS(1366), - [anon_sym___alignof__] = ACTIONS(1366), - [anon_sym___alignof] = ACTIONS(1366), - [anon_sym__alignof] = ACTIONS(1366), - [anon_sym_alignof] = ACTIONS(1366), - [anon_sym__Alignof] = ACTIONS(1366), - [anon_sym_offsetof] = ACTIONS(1366), - [anon_sym__Generic] = ACTIONS(1366), - [anon_sym_asm] = ACTIONS(1366), - [anon_sym___asm__] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(1368), - [anon_sym_L_SQUOTE] = ACTIONS(1368), - [anon_sym_u_SQUOTE] = ACTIONS(1368), - [anon_sym_U_SQUOTE] = ACTIONS(1368), - [anon_sym_u8_SQUOTE] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_L_DQUOTE] = ACTIONS(1368), - [anon_sym_u_DQUOTE] = ACTIONS(1368), - [anon_sym_U_DQUOTE] = ACTIONS(1368), - [anon_sym_u8_DQUOTE] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [anon_sym_NULL] = ACTIONS(1366), - [anon_sym_nullptr] = ACTIONS(1366), + [aux_sym_preproc_include_token1] = ACTIONS(1386), + [aux_sym_preproc_def_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), + [sym_preproc_directive] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym___extension__] = ACTIONS(1386), + [anon_sym_typedef] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym___attribute__] = ACTIONS(1386), + [anon_sym___scanf] = ACTIONS(1386), + [anon_sym___printf] = ACTIONS(1386), + [anon_sym___read_mostly] = ACTIONS(1386), + [anon_sym___must_hold] = ACTIONS(1386), + [anon_sym___ro_after_init] = ACTIONS(1386), + [anon_sym___noreturn] = ACTIONS(1386), + [anon_sym___cold] = ACTIONS(1386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), + [anon_sym___declspec] = ACTIONS(1386), + [anon_sym___init] = ACTIONS(1386), + [anon_sym___exit] = ACTIONS(1386), + [anon_sym___cdecl] = ACTIONS(1386), + [anon_sym___clrcall] = ACTIONS(1386), + [anon_sym___stdcall] = ACTIONS(1386), + [anon_sym___fastcall] = ACTIONS(1386), + [anon_sym___thiscall] = ACTIONS(1386), + [anon_sym___vectorcall] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_RBRACE] = ACTIONS(1388), + [anon_sym_signed] = ACTIONS(1386), + [anon_sym_unsigned] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_auto] = ACTIONS(1386), + [anon_sym_register] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym___inline] = ACTIONS(1386), + [anon_sym___inline__] = ACTIONS(1386), + [anon_sym___forceinline] = ACTIONS(1386), + [anon_sym_thread_local] = ACTIONS(1386), + [anon_sym___thread] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(1386), + [anon_sym_constexpr] = ACTIONS(1386), + [anon_sym_volatile] = ACTIONS(1386), + [anon_sym_restrict] = ACTIONS(1386), + [anon_sym___restrict__] = ACTIONS(1386), + [anon_sym__Atomic] = ACTIONS(1386), + [anon_sym__Noreturn] = ACTIONS(1386), + [anon_sym_noreturn] = ACTIONS(1386), + [anon_sym_alignas] = ACTIONS(1386), + [anon_sym__Alignas] = ACTIONS(1386), + [sym_primitive_type] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_union] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_switch] = ACTIONS(1386), + [anon_sym_case] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_goto] = ACTIONS(1386), + [anon_sym___try] = ACTIONS(1386), + [anon_sym___leave] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_sizeof] = ACTIONS(1386), + [anon_sym___alignof__] = ACTIONS(1386), + [anon_sym___alignof] = ACTIONS(1386), + [anon_sym__alignof] = ACTIONS(1386), + [anon_sym_alignof] = ACTIONS(1386), + [anon_sym__Alignof] = ACTIONS(1386), + [anon_sym_offsetof] = ACTIONS(1386), + [anon_sym__Generic] = ACTIONS(1386), + [anon_sym_asm] = ACTIONS(1386), + [anon_sym___asm__] = ACTIONS(1386), + [sym_number_literal] = ACTIONS(1388), + [anon_sym_L_SQUOTE] = ACTIONS(1388), + [anon_sym_u_SQUOTE] = ACTIONS(1388), + [anon_sym_U_SQUOTE] = ACTIONS(1388), + [anon_sym_u8_SQUOTE] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_L_DQUOTE] = ACTIONS(1388), + [anon_sym_u_DQUOTE] = ACTIONS(1388), + [anon_sym_U_DQUOTE] = ACTIONS(1388), + [anon_sym_u8_DQUOTE] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), + [anon_sym_NULL] = ACTIONS(1386), + [anon_sym_nullptr] = ACTIONS(1386), [sym_comment] = ACTIONS(5), }, - [385] = { - [ts_builtin_sym_end] = ACTIONS(1482), - [sym_identifier] = ACTIONS(1480), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1480), - [aux_sym_preproc_def_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), - [sym_preproc_directive] = ACTIONS(1480), - [anon_sym_LPAREN2] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym___extension__] = ACTIONS(1480), - [anon_sym_typedef] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1480), - [anon_sym___attribute__] = ACTIONS(1480), - [anon_sym___scanf] = ACTIONS(1480), - [anon_sym___printf] = ACTIONS(1480), - [anon_sym___read_mostly] = ACTIONS(1480), - [anon_sym___must_hold] = ACTIONS(1480), - [anon_sym___ro_after_init] = ACTIONS(1480), - [anon_sym___noreturn] = ACTIONS(1480), - [anon_sym___cold] = ACTIONS(1480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), - [anon_sym___declspec] = ACTIONS(1480), - [anon_sym___init] = ACTIONS(1480), - [anon_sym___exit] = ACTIONS(1480), - [anon_sym___cdecl] = ACTIONS(1480), - [anon_sym___clrcall] = ACTIONS(1480), - [anon_sym___stdcall] = ACTIONS(1480), - [anon_sym___fastcall] = ACTIONS(1480), - [anon_sym___thiscall] = ACTIONS(1480), - [anon_sym___vectorcall] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_signed] = ACTIONS(1480), - [anon_sym_unsigned] = ACTIONS(1480), - [anon_sym_long] = ACTIONS(1480), - [anon_sym_short] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_auto] = ACTIONS(1480), - [anon_sym_register] = ACTIONS(1480), - [anon_sym_inline] = ACTIONS(1480), - [anon_sym___inline] = ACTIONS(1480), - [anon_sym___inline__] = ACTIONS(1480), - [anon_sym___forceinline] = ACTIONS(1480), - [anon_sym_thread_local] = ACTIONS(1480), - [anon_sym___thread] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_constexpr] = ACTIONS(1480), - [anon_sym_volatile] = ACTIONS(1480), - [anon_sym_restrict] = ACTIONS(1480), - [anon_sym___restrict__] = ACTIONS(1480), - [anon_sym__Atomic] = ACTIONS(1480), - [anon_sym__Noreturn] = ACTIONS(1480), - [anon_sym_noreturn] = ACTIONS(1480), - [anon_sym_alignas] = ACTIONS(1480), - [anon_sym__Alignas] = ACTIONS(1480), - [sym_primitive_type] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_struct] = ACTIONS(1480), - [anon_sym_union] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_do] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_goto] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1480), - [anon_sym___alignof__] = ACTIONS(1480), - [anon_sym___alignof] = ACTIONS(1480), - [anon_sym__alignof] = ACTIONS(1480), - [anon_sym_alignof] = ACTIONS(1480), - [anon_sym__Alignof] = ACTIONS(1480), - [anon_sym_offsetof] = ACTIONS(1480), - [anon_sym__Generic] = ACTIONS(1480), - [anon_sym_asm] = ACTIONS(1480), - [anon_sym___asm__] = ACTIONS(1480), - [sym_number_literal] = ACTIONS(1482), - [anon_sym_L_SQUOTE] = ACTIONS(1482), - [anon_sym_u_SQUOTE] = ACTIONS(1482), - [anon_sym_U_SQUOTE] = ACTIONS(1482), - [anon_sym_u8_SQUOTE] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_L_DQUOTE] = ACTIONS(1482), - [anon_sym_u_DQUOTE] = ACTIONS(1482), - [anon_sym_U_DQUOTE] = ACTIONS(1482), - [anon_sym_u8_DQUOTE] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym_true] = ACTIONS(1480), - [sym_false] = ACTIONS(1480), - [anon_sym_NULL] = ACTIONS(1480), - [anon_sym_nullptr] = ACTIONS(1480), + [318] = { + [sym_identifier] = ACTIONS(1406), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1406), + [aux_sym_preproc_def_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token2] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), + [sym_preproc_directive] = ACTIONS(1406), + [anon_sym_LPAREN2] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym___extension__] = ACTIONS(1406), + [anon_sym_typedef] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym___attribute__] = ACTIONS(1406), + [anon_sym___scanf] = ACTIONS(1406), + [anon_sym___printf] = ACTIONS(1406), + [anon_sym___read_mostly] = ACTIONS(1406), + [anon_sym___must_hold] = ACTIONS(1406), + [anon_sym___ro_after_init] = ACTIONS(1406), + [anon_sym___noreturn] = ACTIONS(1406), + [anon_sym___cold] = ACTIONS(1406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), + [anon_sym___declspec] = ACTIONS(1406), + [anon_sym___init] = ACTIONS(1406), + [anon_sym___exit] = ACTIONS(1406), + [anon_sym___cdecl] = ACTIONS(1406), + [anon_sym___clrcall] = ACTIONS(1406), + [anon_sym___stdcall] = ACTIONS(1406), + [anon_sym___fastcall] = ACTIONS(1406), + [anon_sym___thiscall] = ACTIONS(1406), + [anon_sym___vectorcall] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_signed] = ACTIONS(1406), + [anon_sym_unsigned] = ACTIONS(1406), + [anon_sym_long] = ACTIONS(1406), + [anon_sym_short] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_auto] = ACTIONS(1406), + [anon_sym_register] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym___inline] = ACTIONS(1406), + [anon_sym___inline__] = ACTIONS(1406), + [anon_sym___forceinline] = ACTIONS(1406), + [anon_sym_thread_local] = ACTIONS(1406), + [anon_sym___thread] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1406), + [anon_sym_constexpr] = ACTIONS(1406), + [anon_sym_volatile] = ACTIONS(1406), + [anon_sym_restrict] = ACTIONS(1406), + [anon_sym___restrict__] = ACTIONS(1406), + [anon_sym__Atomic] = ACTIONS(1406), + [anon_sym__Noreturn] = ACTIONS(1406), + [anon_sym_noreturn] = ACTIONS(1406), + [anon_sym_alignas] = ACTIONS(1406), + [anon_sym__Alignas] = ACTIONS(1406), + [sym_primitive_type] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_switch] = ACTIONS(1406), + [anon_sym_case] = ACTIONS(1406), + [anon_sym_default] = ACTIONS(1406), + [anon_sym_while] = ACTIONS(1406), + [anon_sym_do] = ACTIONS(1406), + [anon_sym_for] = ACTIONS(1406), + [anon_sym_return] = ACTIONS(1406), + [anon_sym_break] = ACTIONS(1406), + [anon_sym_continue] = ACTIONS(1406), + [anon_sym_goto] = ACTIONS(1406), + [anon_sym___try] = ACTIONS(1406), + [anon_sym___leave] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1406), + [anon_sym___alignof__] = ACTIONS(1406), + [anon_sym___alignof] = ACTIONS(1406), + [anon_sym__alignof] = ACTIONS(1406), + [anon_sym_alignof] = ACTIONS(1406), + [anon_sym__Alignof] = ACTIONS(1406), + [anon_sym_offsetof] = ACTIONS(1406), + [anon_sym__Generic] = ACTIONS(1406), + [anon_sym_asm] = ACTIONS(1406), + [anon_sym___asm__] = ACTIONS(1406), + [sym_number_literal] = ACTIONS(1408), + [anon_sym_L_SQUOTE] = ACTIONS(1408), + [anon_sym_u_SQUOTE] = ACTIONS(1408), + [anon_sym_U_SQUOTE] = ACTIONS(1408), + [anon_sym_u8_SQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_L_DQUOTE] = ACTIONS(1408), + [anon_sym_u_DQUOTE] = ACTIONS(1408), + [anon_sym_U_DQUOTE] = ACTIONS(1408), + [anon_sym_u8_DQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [sym_true] = ACTIONS(1406), + [sym_false] = ACTIONS(1406), + [anon_sym_NULL] = ACTIONS(1406), + [anon_sym_nullptr] = ACTIONS(1406), [sym_comment] = ACTIONS(5), }, - [386] = { - [ts_builtin_sym_end] = ACTIONS(1478), - [sym_identifier] = ACTIONS(1476), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1476), - [aux_sym_preproc_def_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), - [sym_preproc_directive] = ACTIONS(1476), - [anon_sym_LPAREN2] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym___extension__] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym___attribute__] = ACTIONS(1476), - [anon_sym___scanf] = ACTIONS(1476), - [anon_sym___printf] = ACTIONS(1476), - [anon_sym___read_mostly] = ACTIONS(1476), - [anon_sym___must_hold] = ACTIONS(1476), - [anon_sym___ro_after_init] = ACTIONS(1476), - [anon_sym___noreturn] = ACTIONS(1476), - [anon_sym___cold] = ACTIONS(1476), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), - [anon_sym___declspec] = ACTIONS(1476), - [anon_sym___init] = ACTIONS(1476), - [anon_sym___exit] = ACTIONS(1476), - [anon_sym___cdecl] = ACTIONS(1476), - [anon_sym___clrcall] = ACTIONS(1476), - [anon_sym___stdcall] = ACTIONS(1476), - [anon_sym___fastcall] = ACTIONS(1476), - [anon_sym___thiscall] = ACTIONS(1476), - [anon_sym___vectorcall] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_signed] = ACTIONS(1476), - [anon_sym_unsigned] = ACTIONS(1476), - [anon_sym_long] = ACTIONS(1476), - [anon_sym_short] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_auto] = ACTIONS(1476), - [anon_sym_register] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym___inline] = ACTIONS(1476), - [anon_sym___inline__] = ACTIONS(1476), - [anon_sym___forceinline] = ACTIONS(1476), - [anon_sym_thread_local] = ACTIONS(1476), - [anon_sym___thread] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1476), - [anon_sym_volatile] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1476), - [anon_sym___restrict__] = ACTIONS(1476), - [anon_sym__Atomic] = ACTIONS(1476), - [anon_sym__Noreturn] = ACTIONS(1476), - [anon_sym_noreturn] = ACTIONS(1476), - [anon_sym_alignas] = ACTIONS(1476), - [anon_sym__Alignas] = ACTIONS(1476), - [sym_primitive_type] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_union] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_case] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_goto] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_sizeof] = ACTIONS(1476), - [anon_sym___alignof__] = ACTIONS(1476), - [anon_sym___alignof] = ACTIONS(1476), - [anon_sym__alignof] = ACTIONS(1476), - [anon_sym_alignof] = ACTIONS(1476), - [anon_sym__Alignof] = ACTIONS(1476), - [anon_sym_offsetof] = ACTIONS(1476), - [anon_sym__Generic] = ACTIONS(1476), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym___asm__] = ACTIONS(1476), - [sym_number_literal] = ACTIONS(1478), - [anon_sym_L_SQUOTE] = ACTIONS(1478), - [anon_sym_u_SQUOTE] = ACTIONS(1478), - [anon_sym_U_SQUOTE] = ACTIONS(1478), - [anon_sym_u8_SQUOTE] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_L_DQUOTE] = ACTIONS(1478), - [anon_sym_u_DQUOTE] = ACTIONS(1478), - [anon_sym_U_DQUOTE] = ACTIONS(1478), - [anon_sym_u8_DQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [anon_sym_NULL] = ACTIONS(1476), - [anon_sym_nullptr] = ACTIONS(1476), + [319] = { + [sym_identifier] = ACTIONS(1508), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1508), + [aux_sym_preproc_def_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1508), + [sym_preproc_directive] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_TILDE] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym___extension__] = ACTIONS(1508), + [anon_sym_typedef] = ACTIONS(1508), + [anon_sym_extern] = ACTIONS(1508), + [anon_sym___attribute__] = ACTIONS(1508), + [anon_sym___scanf] = ACTIONS(1508), + [anon_sym___printf] = ACTIONS(1508), + [anon_sym___read_mostly] = ACTIONS(1508), + [anon_sym___must_hold] = ACTIONS(1508), + [anon_sym___ro_after_init] = ACTIONS(1508), + [anon_sym___noreturn] = ACTIONS(1508), + [anon_sym___cold] = ACTIONS(1508), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1510), + [anon_sym___declspec] = ACTIONS(1508), + [anon_sym___init] = ACTIONS(1508), + [anon_sym___exit] = ACTIONS(1508), + [anon_sym___cdecl] = ACTIONS(1508), + [anon_sym___clrcall] = ACTIONS(1508), + [anon_sym___stdcall] = ACTIONS(1508), + [anon_sym___fastcall] = ACTIONS(1508), + [anon_sym___thiscall] = ACTIONS(1508), + [anon_sym___vectorcall] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_signed] = ACTIONS(1508), + [anon_sym_unsigned] = ACTIONS(1508), + [anon_sym_long] = ACTIONS(1508), + [anon_sym_short] = ACTIONS(1508), + [anon_sym_static] = ACTIONS(1508), + [anon_sym_auto] = ACTIONS(1508), + [anon_sym_register] = ACTIONS(1508), + [anon_sym_inline] = ACTIONS(1508), + [anon_sym___inline] = ACTIONS(1508), + [anon_sym___inline__] = ACTIONS(1508), + [anon_sym___forceinline] = ACTIONS(1508), + [anon_sym_thread_local] = ACTIONS(1508), + [anon_sym___thread] = ACTIONS(1508), + [anon_sym_const] = ACTIONS(1508), + [anon_sym_constexpr] = ACTIONS(1508), + [anon_sym_volatile] = ACTIONS(1508), + [anon_sym_restrict] = ACTIONS(1508), + [anon_sym___restrict__] = ACTIONS(1508), + [anon_sym__Atomic] = ACTIONS(1508), + [anon_sym__Noreturn] = ACTIONS(1508), + [anon_sym_noreturn] = ACTIONS(1508), + [anon_sym_alignas] = ACTIONS(1508), + [anon_sym__Alignas] = ACTIONS(1508), + [sym_primitive_type] = ACTIONS(1508), + [anon_sym_enum] = ACTIONS(1508), + [anon_sym_struct] = ACTIONS(1508), + [anon_sym_union] = ACTIONS(1508), + [anon_sym_if] = ACTIONS(1508), + [anon_sym_switch] = ACTIONS(1508), + [anon_sym_case] = ACTIONS(1508), + [anon_sym_default] = ACTIONS(1508), + [anon_sym_while] = ACTIONS(1508), + [anon_sym_do] = ACTIONS(1508), + [anon_sym_for] = ACTIONS(1508), + [anon_sym_return] = ACTIONS(1508), + [anon_sym_break] = ACTIONS(1508), + [anon_sym_continue] = ACTIONS(1508), + [anon_sym_goto] = ACTIONS(1508), + [anon_sym___try] = ACTIONS(1508), + [anon_sym___leave] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1510), + [anon_sym_PLUS_PLUS] = ACTIONS(1510), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym___alignof__] = ACTIONS(1508), + [anon_sym___alignof] = ACTIONS(1508), + [anon_sym__alignof] = ACTIONS(1508), + [anon_sym_alignof] = ACTIONS(1508), + [anon_sym__Alignof] = ACTIONS(1508), + [anon_sym_offsetof] = ACTIONS(1508), + [anon_sym__Generic] = ACTIONS(1508), + [anon_sym_asm] = ACTIONS(1508), + [anon_sym___asm__] = ACTIONS(1508), + [sym_number_literal] = ACTIONS(1510), + [anon_sym_L_SQUOTE] = ACTIONS(1510), + [anon_sym_u_SQUOTE] = ACTIONS(1510), + [anon_sym_U_SQUOTE] = ACTIONS(1510), + [anon_sym_u8_SQUOTE] = ACTIONS(1510), + [anon_sym_SQUOTE] = ACTIONS(1510), + [anon_sym_L_DQUOTE] = ACTIONS(1510), + [anon_sym_u_DQUOTE] = ACTIONS(1510), + [anon_sym_U_DQUOTE] = ACTIONS(1510), + [anon_sym_u8_DQUOTE] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [sym_true] = ACTIONS(1508), + [sym_false] = ACTIONS(1508), + [anon_sym_NULL] = ACTIONS(1508), + [anon_sym_nullptr] = ACTIONS(1508), [sym_comment] = ACTIONS(5), }, - [387] = { - [ts_builtin_sym_end] = ACTIONS(1494), - [sym_identifier] = ACTIONS(1496), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1496), - [aux_sym_preproc_def_token1] = ACTIONS(1496), - [aux_sym_preproc_if_token1] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), - [sym_preproc_directive] = ACTIONS(1496), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1494), - [anon_sym___extension__] = ACTIONS(1496), - [anon_sym_typedef] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1496), - [anon_sym___attribute__] = ACTIONS(1496), - [anon_sym___scanf] = ACTIONS(1496), - [anon_sym___printf] = ACTIONS(1496), - [anon_sym___read_mostly] = ACTIONS(1496), - [anon_sym___must_hold] = ACTIONS(1496), - [anon_sym___ro_after_init] = ACTIONS(1496), - [anon_sym___noreturn] = ACTIONS(1496), - [anon_sym___cold] = ACTIONS(1496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), - [anon_sym___declspec] = ACTIONS(1496), - [anon_sym___init] = ACTIONS(1496), - [anon_sym___exit] = ACTIONS(1496), - [anon_sym___cdecl] = ACTIONS(1496), - [anon_sym___clrcall] = ACTIONS(1496), - [anon_sym___stdcall] = ACTIONS(1496), - [anon_sym___fastcall] = ACTIONS(1496), - [anon_sym___thiscall] = ACTIONS(1496), - [anon_sym___vectorcall] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_signed] = ACTIONS(1496), - [anon_sym_unsigned] = ACTIONS(1496), - [anon_sym_long] = ACTIONS(1496), - [anon_sym_short] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_auto] = ACTIONS(1496), - [anon_sym_register] = ACTIONS(1496), - [anon_sym_inline] = ACTIONS(1496), - [anon_sym___inline] = ACTIONS(1496), - [anon_sym___inline__] = ACTIONS(1496), - [anon_sym___forceinline] = ACTIONS(1496), - [anon_sym_thread_local] = ACTIONS(1496), - [anon_sym___thread] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_constexpr] = ACTIONS(1496), - [anon_sym_volatile] = ACTIONS(1496), - [anon_sym_restrict] = ACTIONS(1496), - [anon_sym___restrict__] = ACTIONS(1496), - [anon_sym__Atomic] = ACTIONS(1496), - [anon_sym__Noreturn] = ACTIONS(1496), - [anon_sym_noreturn] = ACTIONS(1496), - [anon_sym_alignas] = ACTIONS(1496), - [anon_sym__Alignas] = ACTIONS(1496), - [sym_primitive_type] = ACTIONS(1496), - [anon_sym_enum] = ACTIONS(1496), - [anon_sym_struct] = ACTIONS(1496), - [anon_sym_union] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_switch] = ACTIONS(1496), - [anon_sym_case] = ACTIONS(1496), - [anon_sym_default] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_goto] = ACTIONS(1496), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_sizeof] = ACTIONS(1496), - [anon_sym___alignof__] = ACTIONS(1496), - [anon_sym___alignof] = ACTIONS(1496), - [anon_sym__alignof] = ACTIONS(1496), - [anon_sym_alignof] = ACTIONS(1496), - [anon_sym__Alignof] = ACTIONS(1496), - [anon_sym_offsetof] = ACTIONS(1496), - [anon_sym__Generic] = ACTIONS(1496), - [anon_sym_asm] = ACTIONS(1496), - [anon_sym___asm__] = ACTIONS(1496), - [sym_number_literal] = ACTIONS(1494), - [anon_sym_L_SQUOTE] = ACTIONS(1494), - [anon_sym_u_SQUOTE] = ACTIONS(1494), - [anon_sym_U_SQUOTE] = ACTIONS(1494), - [anon_sym_u8_SQUOTE] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_L_DQUOTE] = ACTIONS(1494), - [anon_sym_u_DQUOTE] = ACTIONS(1494), - [anon_sym_U_DQUOTE] = ACTIONS(1494), - [anon_sym_u8_DQUOTE] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym_true] = ACTIONS(1496), - [sym_false] = ACTIONS(1496), - [anon_sym_NULL] = ACTIONS(1496), - [anon_sym_nullptr] = ACTIONS(1496), + [320] = { + [sym_identifier] = ACTIONS(1414), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym___extension__] = ACTIONS(1414), + [anon_sym_typedef] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym___attribute__] = ACTIONS(1414), + [anon_sym___scanf] = ACTIONS(1414), + [anon_sym___printf] = ACTIONS(1414), + [anon_sym___read_mostly] = ACTIONS(1414), + [anon_sym___must_hold] = ACTIONS(1414), + [anon_sym___ro_after_init] = ACTIONS(1414), + [anon_sym___noreturn] = ACTIONS(1414), + [anon_sym___cold] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), + [anon_sym___declspec] = ACTIONS(1414), + [anon_sym___init] = ACTIONS(1414), + [anon_sym___exit] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_RBRACE] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym___inline] = ACTIONS(1414), + [anon_sym___inline__] = ACTIONS(1414), + [anon_sym___forceinline] = ACTIONS(1414), + [anon_sym_thread_local] = ACTIONS(1414), + [anon_sym___thread] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_constexpr] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym___restrict__] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym__Noreturn] = ACTIONS(1414), + [anon_sym_noreturn] = ACTIONS(1414), + [anon_sym_alignas] = ACTIONS(1414), + [anon_sym__Alignas] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym___try] = ACTIONS(1414), + [anon_sym___leave] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym___alignof__] = ACTIONS(1414), + [anon_sym___alignof] = ACTIONS(1414), + [anon_sym__alignof] = ACTIONS(1414), + [anon_sym_alignof] = ACTIONS(1414), + [anon_sym__Alignof] = ACTIONS(1414), + [anon_sym_offsetof] = ACTIONS(1414), + [anon_sym__Generic] = ACTIONS(1414), + [anon_sym_asm] = ACTIONS(1414), + [anon_sym___asm__] = ACTIONS(1414), + [sym_number_literal] = ACTIONS(1416), + [anon_sym_L_SQUOTE] = ACTIONS(1416), + [anon_sym_u_SQUOTE] = ACTIONS(1416), + [anon_sym_U_SQUOTE] = ACTIONS(1416), + [anon_sym_u8_SQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_L_DQUOTE] = ACTIONS(1416), + [anon_sym_u_DQUOTE] = ACTIONS(1416), + [anon_sym_U_DQUOTE] = ACTIONS(1416), + [anon_sym_u8_DQUOTE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [anon_sym_NULL] = ACTIONS(1414), + [anon_sym_nullptr] = ACTIONS(1414), [sym_comment] = ACTIONS(5), }, - [388] = { - [ts_builtin_sym_end] = ACTIONS(1498), - [sym_identifier] = ACTIONS(1501), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1501), - [aux_sym_preproc_def_token1] = ACTIONS(1501), - [aux_sym_preproc_if_token1] = ACTIONS(1501), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1501), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1501), - [sym_preproc_directive] = ACTIONS(1501), - [anon_sym_LPAREN2] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym___extension__] = ACTIONS(1501), - [anon_sym_typedef] = ACTIONS(1501), - [anon_sym_extern] = ACTIONS(1501), - [anon_sym___attribute__] = ACTIONS(1501), - [anon_sym___scanf] = ACTIONS(1501), - [anon_sym___printf] = ACTIONS(1501), - [anon_sym___read_mostly] = ACTIONS(1501), - [anon_sym___must_hold] = ACTIONS(1501), - [anon_sym___ro_after_init] = ACTIONS(1501), - [anon_sym___noreturn] = ACTIONS(1501), - [anon_sym___cold] = ACTIONS(1501), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), - [anon_sym___declspec] = ACTIONS(1501), - [anon_sym___init] = ACTIONS(1501), - [anon_sym___exit] = ACTIONS(1501), - [anon_sym___cdecl] = ACTIONS(1501), - [anon_sym___clrcall] = ACTIONS(1501), - [anon_sym___stdcall] = ACTIONS(1501), - [anon_sym___fastcall] = ACTIONS(1501), - [anon_sym___thiscall] = ACTIONS(1501), - [anon_sym___vectorcall] = ACTIONS(1501), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_signed] = ACTIONS(1501), - [anon_sym_unsigned] = ACTIONS(1501), - [anon_sym_long] = ACTIONS(1501), - [anon_sym_short] = ACTIONS(1501), - [anon_sym_static] = ACTIONS(1501), - [anon_sym_auto] = ACTIONS(1501), - [anon_sym_register] = ACTIONS(1501), - [anon_sym_inline] = ACTIONS(1501), - [anon_sym___inline] = ACTIONS(1501), - [anon_sym___inline__] = ACTIONS(1501), - [anon_sym___forceinline] = ACTIONS(1501), - [anon_sym_thread_local] = ACTIONS(1501), - [anon_sym___thread] = ACTIONS(1501), - [anon_sym_const] = ACTIONS(1501), - [anon_sym_constexpr] = ACTIONS(1501), - [anon_sym_volatile] = ACTIONS(1501), - [anon_sym_restrict] = ACTIONS(1501), - [anon_sym___restrict__] = ACTIONS(1501), - [anon_sym__Atomic] = ACTIONS(1501), - [anon_sym__Noreturn] = ACTIONS(1501), - [anon_sym_noreturn] = ACTIONS(1501), - [anon_sym_alignas] = ACTIONS(1501), - [anon_sym__Alignas] = ACTIONS(1501), - [sym_primitive_type] = ACTIONS(1501), - [anon_sym_enum] = ACTIONS(1501), - [anon_sym_struct] = ACTIONS(1501), - [anon_sym_union] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1501), - [anon_sym_switch] = ACTIONS(1501), - [anon_sym_case] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1501), - [anon_sym_do] = ACTIONS(1501), - [anon_sym_for] = ACTIONS(1501), - [anon_sym_return] = ACTIONS(1501), - [anon_sym_break] = ACTIONS(1501), - [anon_sym_continue] = ACTIONS(1501), - [anon_sym_goto] = ACTIONS(1501), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_sizeof] = ACTIONS(1501), - [anon_sym___alignof__] = ACTIONS(1501), - [anon_sym___alignof] = ACTIONS(1501), - [anon_sym__alignof] = ACTIONS(1501), - [anon_sym_alignof] = ACTIONS(1501), - [anon_sym__Alignof] = ACTIONS(1501), - [anon_sym_offsetof] = ACTIONS(1501), - [anon_sym__Generic] = ACTIONS(1501), - [anon_sym_asm] = ACTIONS(1501), - [anon_sym___asm__] = ACTIONS(1501), - [sym_number_literal] = ACTIONS(1498), - [anon_sym_L_SQUOTE] = ACTIONS(1498), - [anon_sym_u_SQUOTE] = ACTIONS(1498), - [anon_sym_U_SQUOTE] = ACTIONS(1498), - [anon_sym_u8_SQUOTE] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_L_DQUOTE] = ACTIONS(1498), - [anon_sym_u_DQUOTE] = ACTIONS(1498), - [anon_sym_U_DQUOTE] = ACTIONS(1498), - [anon_sym_u8_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [sym_true] = ACTIONS(1501), - [sym_false] = ACTIONS(1501), - [anon_sym_NULL] = ACTIONS(1501), - [anon_sym_nullptr] = ACTIONS(1501), + [321] = { + [sym_identifier] = ACTIONS(1512), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1512), + [aux_sym_preproc_def_token1] = ACTIONS(1512), + [aux_sym_preproc_if_token1] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1512), + [sym_preproc_directive] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1514), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym___extension__] = ACTIONS(1512), + [anon_sym_typedef] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym___attribute__] = ACTIONS(1512), + [anon_sym___scanf] = ACTIONS(1512), + [anon_sym___printf] = ACTIONS(1512), + [anon_sym___read_mostly] = ACTIONS(1512), + [anon_sym___must_hold] = ACTIONS(1512), + [anon_sym___ro_after_init] = ACTIONS(1512), + [anon_sym___noreturn] = ACTIONS(1512), + [anon_sym___cold] = ACTIONS(1512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1514), + [anon_sym___declspec] = ACTIONS(1512), + [anon_sym___init] = ACTIONS(1512), + [anon_sym___exit] = ACTIONS(1512), + [anon_sym___cdecl] = ACTIONS(1512), + [anon_sym___clrcall] = ACTIONS(1512), + [anon_sym___stdcall] = ACTIONS(1512), + [anon_sym___fastcall] = ACTIONS(1512), + [anon_sym___thiscall] = ACTIONS(1512), + [anon_sym___vectorcall] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_signed] = ACTIONS(1512), + [anon_sym_unsigned] = ACTIONS(1512), + [anon_sym_long] = ACTIONS(1512), + [anon_sym_short] = ACTIONS(1512), + [anon_sym_static] = ACTIONS(1512), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_register] = ACTIONS(1512), + [anon_sym_inline] = ACTIONS(1512), + [anon_sym___inline] = ACTIONS(1512), + [anon_sym___inline__] = ACTIONS(1512), + [anon_sym___forceinline] = ACTIONS(1512), + [anon_sym_thread_local] = ACTIONS(1512), + [anon_sym___thread] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [anon_sym_constexpr] = ACTIONS(1512), + [anon_sym_volatile] = ACTIONS(1512), + [anon_sym_restrict] = ACTIONS(1512), + [anon_sym___restrict__] = ACTIONS(1512), + [anon_sym__Atomic] = ACTIONS(1512), + [anon_sym__Noreturn] = ACTIONS(1512), + [anon_sym_noreturn] = ACTIONS(1512), + [anon_sym_alignas] = ACTIONS(1512), + [anon_sym__Alignas] = ACTIONS(1512), + [sym_primitive_type] = ACTIONS(1512), + [anon_sym_enum] = ACTIONS(1512), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_switch] = ACTIONS(1512), + [anon_sym_case] = ACTIONS(1512), + [anon_sym_default] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_do] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_goto] = ACTIONS(1512), + [anon_sym___try] = ACTIONS(1512), + [anon_sym___leave] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1512), + [anon_sym___alignof__] = ACTIONS(1512), + [anon_sym___alignof] = ACTIONS(1512), + [anon_sym__alignof] = ACTIONS(1512), + [anon_sym_alignof] = ACTIONS(1512), + [anon_sym__Alignof] = ACTIONS(1512), + [anon_sym_offsetof] = ACTIONS(1512), + [anon_sym__Generic] = ACTIONS(1512), + [anon_sym_asm] = ACTIONS(1512), + [anon_sym___asm__] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(1514), + [anon_sym_L_SQUOTE] = ACTIONS(1514), + [anon_sym_u_SQUOTE] = ACTIONS(1514), + [anon_sym_U_SQUOTE] = ACTIONS(1514), + [anon_sym_u8_SQUOTE] = ACTIONS(1514), + [anon_sym_SQUOTE] = ACTIONS(1514), + [anon_sym_L_DQUOTE] = ACTIONS(1514), + [anon_sym_u_DQUOTE] = ACTIONS(1514), + [anon_sym_U_DQUOTE] = ACTIONS(1514), + [anon_sym_u8_DQUOTE] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym_true] = ACTIONS(1512), + [sym_false] = ACTIONS(1512), + [anon_sym_NULL] = ACTIONS(1512), + [anon_sym_nullptr] = ACTIONS(1512), [sym_comment] = ACTIONS(5), }, - [389] = { - [ts_builtin_sym_end] = ACTIONS(1422), - [sym_identifier] = ACTIONS(1420), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1420), - [aux_sym_preproc_def_token1] = ACTIONS(1420), - [aux_sym_preproc_if_token1] = ACTIONS(1420), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1420), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1420), - [sym_preproc_directive] = ACTIONS(1420), - [anon_sym_LPAREN2] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1422), - [anon_sym_TILDE] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1420), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym___extension__] = ACTIONS(1420), - [anon_sym_typedef] = ACTIONS(1420), - [anon_sym_extern] = ACTIONS(1420), - [anon_sym___attribute__] = ACTIONS(1420), - [anon_sym___scanf] = ACTIONS(1420), - [anon_sym___printf] = ACTIONS(1420), - [anon_sym___read_mostly] = ACTIONS(1420), - [anon_sym___must_hold] = ACTIONS(1420), - [anon_sym___ro_after_init] = ACTIONS(1420), - [anon_sym___noreturn] = ACTIONS(1420), - [anon_sym___cold] = ACTIONS(1420), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1422), - [anon_sym___declspec] = ACTIONS(1420), - [anon_sym___init] = ACTIONS(1420), - [anon_sym___exit] = ACTIONS(1420), - [anon_sym___cdecl] = ACTIONS(1420), - [anon_sym___clrcall] = ACTIONS(1420), - [anon_sym___stdcall] = ACTIONS(1420), - [anon_sym___fastcall] = ACTIONS(1420), - [anon_sym___thiscall] = ACTIONS(1420), - [anon_sym___vectorcall] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_signed] = ACTIONS(1420), - [anon_sym_unsigned] = ACTIONS(1420), - [anon_sym_long] = ACTIONS(1420), - [anon_sym_short] = ACTIONS(1420), - [anon_sym_static] = ACTIONS(1420), - [anon_sym_auto] = ACTIONS(1420), - [anon_sym_register] = ACTIONS(1420), - [anon_sym_inline] = ACTIONS(1420), - [anon_sym___inline] = ACTIONS(1420), - [anon_sym___inline__] = ACTIONS(1420), - [anon_sym___forceinline] = ACTIONS(1420), - [anon_sym_thread_local] = ACTIONS(1420), - [anon_sym___thread] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1420), - [anon_sym_constexpr] = ACTIONS(1420), - [anon_sym_volatile] = ACTIONS(1420), - [anon_sym_restrict] = ACTIONS(1420), - [anon_sym___restrict__] = ACTIONS(1420), - [anon_sym__Atomic] = ACTIONS(1420), - [anon_sym__Noreturn] = ACTIONS(1420), - [anon_sym_noreturn] = ACTIONS(1420), - [anon_sym_alignas] = ACTIONS(1420), - [anon_sym__Alignas] = ACTIONS(1420), - [sym_primitive_type] = ACTIONS(1420), - [anon_sym_enum] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1420), - [anon_sym_union] = ACTIONS(1420), - [anon_sym_if] = ACTIONS(1420), - [anon_sym_switch] = ACTIONS(1420), - [anon_sym_case] = ACTIONS(1420), - [anon_sym_default] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1420), - [anon_sym_do] = ACTIONS(1420), - [anon_sym_for] = ACTIONS(1420), - [anon_sym_return] = ACTIONS(1420), - [anon_sym_break] = ACTIONS(1420), - [anon_sym_continue] = ACTIONS(1420), - [anon_sym_goto] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1422), - [anon_sym_PLUS_PLUS] = ACTIONS(1422), - [anon_sym_sizeof] = ACTIONS(1420), - [anon_sym___alignof__] = ACTIONS(1420), - [anon_sym___alignof] = ACTIONS(1420), - [anon_sym__alignof] = ACTIONS(1420), - [anon_sym_alignof] = ACTIONS(1420), - [anon_sym__Alignof] = ACTIONS(1420), - [anon_sym_offsetof] = ACTIONS(1420), - [anon_sym__Generic] = ACTIONS(1420), - [anon_sym_asm] = ACTIONS(1420), - [anon_sym___asm__] = ACTIONS(1420), - [sym_number_literal] = ACTIONS(1422), - [anon_sym_L_SQUOTE] = ACTIONS(1422), - [anon_sym_u_SQUOTE] = ACTIONS(1422), - [anon_sym_U_SQUOTE] = ACTIONS(1422), - [anon_sym_u8_SQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1422), - [anon_sym_L_DQUOTE] = ACTIONS(1422), - [anon_sym_u_DQUOTE] = ACTIONS(1422), - [anon_sym_U_DQUOTE] = ACTIONS(1422), - [anon_sym_u8_DQUOTE] = ACTIONS(1422), - [anon_sym_DQUOTE] = ACTIONS(1422), - [sym_true] = ACTIONS(1420), - [sym_false] = ACTIONS(1420), - [anon_sym_NULL] = ACTIONS(1420), - [anon_sym_nullptr] = ACTIONS(1420), + [322] = { + [sym_identifier] = ACTIONS(1394), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1394), + [aux_sym_preproc_def_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym___extension__] = ACTIONS(1394), + [anon_sym_typedef] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym___attribute__] = ACTIONS(1394), + [anon_sym___scanf] = ACTIONS(1394), + [anon_sym___printf] = ACTIONS(1394), + [anon_sym___read_mostly] = ACTIONS(1394), + [anon_sym___must_hold] = ACTIONS(1394), + [anon_sym___ro_after_init] = ACTIONS(1394), + [anon_sym___noreturn] = ACTIONS(1394), + [anon_sym___cold] = ACTIONS(1394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), + [anon_sym___declspec] = ACTIONS(1394), + [anon_sym___init] = ACTIONS(1394), + [anon_sym___exit] = ACTIONS(1394), + [anon_sym___cdecl] = ACTIONS(1394), + [anon_sym___clrcall] = ACTIONS(1394), + [anon_sym___stdcall] = ACTIONS(1394), + [anon_sym___fastcall] = ACTIONS(1394), + [anon_sym___thiscall] = ACTIONS(1394), + [anon_sym___vectorcall] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_RBRACE] = ACTIONS(1396), + [anon_sym_signed] = ACTIONS(1394), + [anon_sym_unsigned] = ACTIONS(1394), + [anon_sym_long] = ACTIONS(1394), + [anon_sym_short] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_auto] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym___inline] = ACTIONS(1394), + [anon_sym___inline__] = ACTIONS(1394), + [anon_sym___forceinline] = ACTIONS(1394), + [anon_sym_thread_local] = ACTIONS(1394), + [anon_sym___thread] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_constexpr] = ACTIONS(1394), + [anon_sym_volatile] = ACTIONS(1394), + [anon_sym_restrict] = ACTIONS(1394), + [anon_sym___restrict__] = ACTIONS(1394), + [anon_sym__Atomic] = ACTIONS(1394), + [anon_sym__Noreturn] = ACTIONS(1394), + [anon_sym_noreturn] = ACTIONS(1394), + [anon_sym_alignas] = ACTIONS(1394), + [anon_sym__Alignas] = ACTIONS(1394), + [sym_primitive_type] = ACTIONS(1394), + [anon_sym_enum] = ACTIONS(1394), + [anon_sym_struct] = ACTIONS(1394), + [anon_sym_union] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_switch] = ACTIONS(1394), + [anon_sym_case] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_goto] = ACTIONS(1394), + [anon_sym___try] = ACTIONS(1394), + [anon_sym___leave] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym___alignof__] = ACTIONS(1394), + [anon_sym___alignof] = ACTIONS(1394), + [anon_sym__alignof] = ACTIONS(1394), + [anon_sym_alignof] = ACTIONS(1394), + [anon_sym__Alignof] = ACTIONS(1394), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1394), + [anon_sym___asm__] = ACTIONS(1394), + [sym_number_literal] = ACTIONS(1396), + [anon_sym_L_SQUOTE] = ACTIONS(1396), + [anon_sym_u_SQUOTE] = ACTIONS(1396), + [anon_sym_U_SQUOTE] = ACTIONS(1396), + [anon_sym_u8_SQUOTE] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_L_DQUOTE] = ACTIONS(1396), + [anon_sym_u_DQUOTE] = ACTIONS(1396), + [anon_sym_U_DQUOTE] = ACTIONS(1396), + [anon_sym_u8_DQUOTE] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [anon_sym_NULL] = ACTIONS(1394), + [anon_sym_nullptr] = ACTIONS(1394), [sym_comment] = ACTIONS(5), }, - [390] = { - [ts_builtin_sym_end] = ACTIONS(1454), - [sym_identifier] = ACTIONS(1452), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1452), - [aux_sym_preproc_def_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), - [sym_preproc_directive] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym___extension__] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym___attribute__] = ACTIONS(1452), - [anon_sym___scanf] = ACTIONS(1452), - [anon_sym___printf] = ACTIONS(1452), - [anon_sym___read_mostly] = ACTIONS(1452), - [anon_sym___must_hold] = ACTIONS(1452), - [anon_sym___ro_after_init] = ACTIONS(1452), - [anon_sym___noreturn] = ACTIONS(1452), - [anon_sym___cold] = ACTIONS(1452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym___declspec] = ACTIONS(1452), - [anon_sym___init] = ACTIONS(1452), - [anon_sym___exit] = ACTIONS(1452), - [anon_sym___cdecl] = ACTIONS(1452), - [anon_sym___clrcall] = ACTIONS(1452), - [anon_sym___stdcall] = ACTIONS(1452), - [anon_sym___fastcall] = ACTIONS(1452), - [anon_sym___thiscall] = ACTIONS(1452), - [anon_sym___vectorcall] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_signed] = ACTIONS(1452), - [anon_sym_unsigned] = ACTIONS(1452), - [anon_sym_long] = ACTIONS(1452), - [anon_sym_short] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_auto] = ACTIONS(1452), - [anon_sym_register] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym___inline] = ACTIONS(1452), - [anon_sym___inline__] = ACTIONS(1452), - [anon_sym___forceinline] = ACTIONS(1452), - [anon_sym_thread_local] = ACTIONS(1452), - [anon_sym___thread] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_constexpr] = ACTIONS(1452), - [anon_sym_volatile] = ACTIONS(1452), - [anon_sym_restrict] = ACTIONS(1452), - [anon_sym___restrict__] = ACTIONS(1452), - [anon_sym__Atomic] = ACTIONS(1452), - [anon_sym__Noreturn] = ACTIONS(1452), - [anon_sym_noreturn] = ACTIONS(1452), - [anon_sym_alignas] = ACTIONS(1452), - [anon_sym__Alignas] = ACTIONS(1452), - [sym_primitive_type] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_case] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_goto] = ACTIONS(1452), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_sizeof] = ACTIONS(1452), - [anon_sym___alignof__] = ACTIONS(1452), - [anon_sym___alignof] = ACTIONS(1452), - [anon_sym__alignof] = ACTIONS(1452), - [anon_sym_alignof] = ACTIONS(1452), - [anon_sym__Alignof] = ACTIONS(1452), - [anon_sym_offsetof] = ACTIONS(1452), - [anon_sym__Generic] = ACTIONS(1452), - [anon_sym_asm] = ACTIONS(1452), - [anon_sym___asm__] = ACTIONS(1452), - [sym_number_literal] = ACTIONS(1454), - [anon_sym_L_SQUOTE] = ACTIONS(1454), - [anon_sym_u_SQUOTE] = ACTIONS(1454), - [anon_sym_U_SQUOTE] = ACTIONS(1454), - [anon_sym_u8_SQUOTE] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_L_DQUOTE] = ACTIONS(1454), - [anon_sym_u_DQUOTE] = ACTIONS(1454), - [anon_sym_U_DQUOTE] = ACTIONS(1454), - [anon_sym_u8_DQUOTE] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym_true] = ACTIONS(1452), - [sym_false] = ACTIONS(1452), - [anon_sym_NULL] = ACTIONS(1452), - [anon_sym_nullptr] = ACTIONS(1452), + [323] = { + [sym_identifier] = ACTIONS(1474), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1474), + [aux_sym_preproc_def_token1] = ACTIONS(1474), + [aux_sym_preproc_if_token1] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1474), + [sym_preproc_directive] = ACTIONS(1474), + [anon_sym_LPAREN2] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym___extension__] = ACTIONS(1474), + [anon_sym_typedef] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym___attribute__] = ACTIONS(1474), + [anon_sym___scanf] = ACTIONS(1474), + [anon_sym___printf] = ACTIONS(1474), + [anon_sym___read_mostly] = ACTIONS(1474), + [anon_sym___must_hold] = ACTIONS(1474), + [anon_sym___ro_after_init] = ACTIONS(1474), + [anon_sym___noreturn] = ACTIONS(1474), + [anon_sym___cold] = ACTIONS(1474), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1476), + [anon_sym___declspec] = ACTIONS(1474), + [anon_sym___init] = ACTIONS(1474), + [anon_sym___exit] = ACTIONS(1474), + [anon_sym___cdecl] = ACTIONS(1474), + [anon_sym___clrcall] = ACTIONS(1474), + [anon_sym___stdcall] = ACTIONS(1474), + [anon_sym___fastcall] = ACTIONS(1474), + [anon_sym___thiscall] = ACTIONS(1474), + [anon_sym___vectorcall] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1476), + [anon_sym_signed] = ACTIONS(1474), + [anon_sym_unsigned] = ACTIONS(1474), + [anon_sym_long] = ACTIONS(1474), + [anon_sym_short] = ACTIONS(1474), + [anon_sym_static] = ACTIONS(1474), + [anon_sym_auto] = ACTIONS(1474), + [anon_sym_register] = ACTIONS(1474), + [anon_sym_inline] = ACTIONS(1474), + [anon_sym___inline] = ACTIONS(1474), + [anon_sym___inline__] = ACTIONS(1474), + [anon_sym___forceinline] = ACTIONS(1474), + [anon_sym_thread_local] = ACTIONS(1474), + [anon_sym___thread] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_constexpr] = ACTIONS(1474), + [anon_sym_volatile] = ACTIONS(1474), + [anon_sym_restrict] = ACTIONS(1474), + [anon_sym___restrict__] = ACTIONS(1474), + [anon_sym__Atomic] = ACTIONS(1474), + [anon_sym__Noreturn] = ACTIONS(1474), + [anon_sym_noreturn] = ACTIONS(1474), + [anon_sym_alignas] = ACTIONS(1474), + [anon_sym__Alignas] = ACTIONS(1474), + [sym_primitive_type] = ACTIONS(1474), + [anon_sym_enum] = ACTIONS(1474), + [anon_sym_struct] = ACTIONS(1474), + [anon_sym_union] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_switch] = ACTIONS(1474), + [anon_sym_case] = ACTIONS(1474), + [anon_sym_default] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_do] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_goto] = ACTIONS(1474), + [anon_sym___try] = ACTIONS(1474), + [anon_sym___leave] = ACTIONS(1474), + [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_PLUS_PLUS] = ACTIONS(1476), + [anon_sym_sizeof] = ACTIONS(1474), + [anon_sym___alignof__] = ACTIONS(1474), + [anon_sym___alignof] = ACTIONS(1474), + [anon_sym__alignof] = ACTIONS(1474), + [anon_sym_alignof] = ACTIONS(1474), + [anon_sym__Alignof] = ACTIONS(1474), + [anon_sym_offsetof] = ACTIONS(1474), + [anon_sym__Generic] = ACTIONS(1474), + [anon_sym_asm] = ACTIONS(1474), + [anon_sym___asm__] = ACTIONS(1474), + [sym_number_literal] = ACTIONS(1476), + [anon_sym_L_SQUOTE] = ACTIONS(1476), + [anon_sym_u_SQUOTE] = ACTIONS(1476), + [anon_sym_U_SQUOTE] = ACTIONS(1476), + [anon_sym_u8_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_L_DQUOTE] = ACTIONS(1476), + [anon_sym_u_DQUOTE] = ACTIONS(1476), + [anon_sym_U_DQUOTE] = ACTIONS(1476), + [anon_sym_u8_DQUOTE] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [sym_true] = ACTIONS(1474), + [sym_false] = ACTIONS(1474), + [anon_sym_NULL] = ACTIONS(1474), + [anon_sym_nullptr] = ACTIONS(1474), [sym_comment] = ACTIONS(5), }, - [391] = { - [ts_builtin_sym_end] = ACTIONS(1504), - [sym_identifier] = ACTIONS(1506), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1506), - [aux_sym_preproc_def_token1] = ACTIONS(1506), - [aux_sym_preproc_if_token1] = ACTIONS(1506), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1506), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1506), - [sym_preproc_directive] = ACTIONS(1506), - [anon_sym_LPAREN2] = ACTIONS(1504), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_TILDE] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1504), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym___extension__] = ACTIONS(1506), - [anon_sym_typedef] = ACTIONS(1506), - [anon_sym_extern] = ACTIONS(1506), - [anon_sym___attribute__] = ACTIONS(1506), - [anon_sym___scanf] = ACTIONS(1506), - [anon_sym___printf] = ACTIONS(1506), - [anon_sym___read_mostly] = ACTIONS(1506), - [anon_sym___must_hold] = ACTIONS(1506), - [anon_sym___ro_after_init] = ACTIONS(1506), - [anon_sym___noreturn] = ACTIONS(1506), - [anon_sym___cold] = ACTIONS(1506), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1504), - [anon_sym___declspec] = ACTIONS(1506), - [anon_sym___init] = ACTIONS(1506), - [anon_sym___exit] = ACTIONS(1506), - [anon_sym___cdecl] = ACTIONS(1506), - [anon_sym___clrcall] = ACTIONS(1506), - [anon_sym___stdcall] = ACTIONS(1506), - [anon_sym___fastcall] = ACTIONS(1506), - [anon_sym___thiscall] = ACTIONS(1506), - [anon_sym___vectorcall] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1504), - [anon_sym_signed] = ACTIONS(1506), - [anon_sym_unsigned] = ACTIONS(1506), - [anon_sym_long] = ACTIONS(1506), - [anon_sym_short] = ACTIONS(1506), - [anon_sym_static] = ACTIONS(1506), - [anon_sym_auto] = ACTIONS(1506), - [anon_sym_register] = ACTIONS(1506), - [anon_sym_inline] = ACTIONS(1506), - [anon_sym___inline] = ACTIONS(1506), - [anon_sym___inline__] = ACTIONS(1506), - [anon_sym___forceinline] = ACTIONS(1506), - [anon_sym_thread_local] = ACTIONS(1506), - [anon_sym___thread] = ACTIONS(1506), - [anon_sym_const] = ACTIONS(1506), - [anon_sym_constexpr] = ACTIONS(1506), - [anon_sym_volatile] = ACTIONS(1506), - [anon_sym_restrict] = ACTIONS(1506), - [anon_sym___restrict__] = ACTIONS(1506), - [anon_sym__Atomic] = ACTIONS(1506), - [anon_sym__Noreturn] = ACTIONS(1506), - [anon_sym_noreturn] = ACTIONS(1506), - [anon_sym_alignas] = ACTIONS(1506), - [anon_sym__Alignas] = ACTIONS(1506), - [sym_primitive_type] = ACTIONS(1506), - [anon_sym_enum] = ACTIONS(1506), - [anon_sym_struct] = ACTIONS(1506), - [anon_sym_union] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1506), - [anon_sym_switch] = ACTIONS(1506), - [anon_sym_case] = ACTIONS(1506), - [anon_sym_default] = ACTIONS(1506), - [anon_sym_while] = ACTIONS(1506), - [anon_sym_do] = ACTIONS(1506), - [anon_sym_for] = ACTIONS(1506), - [anon_sym_return] = ACTIONS(1506), - [anon_sym_break] = ACTIONS(1506), - [anon_sym_continue] = ACTIONS(1506), - [anon_sym_goto] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1504), - [anon_sym_PLUS_PLUS] = ACTIONS(1504), - [anon_sym_sizeof] = ACTIONS(1506), - [anon_sym___alignof__] = ACTIONS(1506), - [anon_sym___alignof] = ACTIONS(1506), - [anon_sym__alignof] = ACTIONS(1506), - [anon_sym_alignof] = ACTIONS(1506), - [anon_sym__Alignof] = ACTIONS(1506), - [anon_sym_offsetof] = ACTIONS(1506), - [anon_sym__Generic] = ACTIONS(1506), - [anon_sym_asm] = ACTIONS(1506), - [anon_sym___asm__] = ACTIONS(1506), - [sym_number_literal] = ACTIONS(1504), - [anon_sym_L_SQUOTE] = ACTIONS(1504), - [anon_sym_u_SQUOTE] = ACTIONS(1504), - [anon_sym_U_SQUOTE] = ACTIONS(1504), - [anon_sym_u8_SQUOTE] = ACTIONS(1504), - [anon_sym_SQUOTE] = ACTIONS(1504), - [anon_sym_L_DQUOTE] = ACTIONS(1504), - [anon_sym_u_DQUOTE] = ACTIONS(1504), - [anon_sym_U_DQUOTE] = ACTIONS(1504), - [anon_sym_u8_DQUOTE] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1504), - [sym_true] = ACTIONS(1506), - [sym_false] = ACTIONS(1506), - [anon_sym_NULL] = ACTIONS(1506), - [anon_sym_nullptr] = ACTIONS(1506), + [324] = { + [sym_identifier] = ACTIONS(1398), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1398), + [aux_sym_preproc_def_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), + [sym_preproc_directive] = ACTIONS(1398), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym___extension__] = ACTIONS(1398), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym___scanf] = ACTIONS(1398), + [anon_sym___printf] = ACTIONS(1398), + [anon_sym___read_mostly] = ACTIONS(1398), + [anon_sym___must_hold] = ACTIONS(1398), + [anon_sym___ro_after_init] = ACTIONS(1398), + [anon_sym___noreturn] = ACTIONS(1398), + [anon_sym___cold] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___init] = ACTIONS(1398), + [anon_sym___exit] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_RBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym___inline] = ACTIONS(1398), + [anon_sym___inline__] = ACTIONS(1398), + [anon_sym___forceinline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym___thread] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [anon_sym_alignas] = ACTIONS(1398), + [anon_sym__Alignas] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_switch] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_do] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_goto] = ACTIONS(1398), + [anon_sym___try] = ACTIONS(1398), + [anon_sym___leave] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym___alignof__] = ACTIONS(1398), + [anon_sym___alignof] = ACTIONS(1398), + [anon_sym__alignof] = ACTIONS(1398), + [anon_sym_alignof] = ACTIONS(1398), + [anon_sym__Alignof] = ACTIONS(1398), + [anon_sym_offsetof] = ACTIONS(1398), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1398), + [anon_sym___asm__] = ACTIONS(1398), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1400), + [anon_sym_u_SQUOTE] = ACTIONS(1400), + [anon_sym_U_SQUOTE] = ACTIONS(1400), + [anon_sym_u8_SQUOTE] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_L_DQUOTE] = ACTIONS(1400), + [anon_sym_u_DQUOTE] = ACTIONS(1400), + [anon_sym_U_DQUOTE] = ACTIONS(1400), + [anon_sym_u8_DQUOTE] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [anon_sym_NULL] = ACTIONS(1398), + [anon_sym_nullptr] = ACTIONS(1398), [sym_comment] = ACTIONS(5), }, - [392] = { - [ts_builtin_sym_end] = ACTIONS(1414), - [sym_identifier] = ACTIONS(1412), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1412), - [aux_sym_preproc_def_token1] = ACTIONS(1412), - [aux_sym_preproc_if_token1] = ACTIONS(1412), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1412), - [sym_preproc_directive] = ACTIONS(1412), - [anon_sym_LPAREN2] = ACTIONS(1414), - [anon_sym_BANG] = ACTIONS(1414), - [anon_sym_TILDE] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym___extension__] = ACTIONS(1412), - [anon_sym_typedef] = ACTIONS(1412), - [anon_sym_extern] = ACTIONS(1412), - [anon_sym___attribute__] = ACTIONS(1412), - [anon_sym___scanf] = ACTIONS(1412), - [anon_sym___printf] = ACTIONS(1412), - [anon_sym___read_mostly] = ACTIONS(1412), - [anon_sym___must_hold] = ACTIONS(1412), - [anon_sym___ro_after_init] = ACTIONS(1412), - [anon_sym___noreturn] = ACTIONS(1412), - [anon_sym___cold] = ACTIONS(1412), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1414), - [anon_sym___declspec] = ACTIONS(1412), - [anon_sym___init] = ACTIONS(1412), - [anon_sym___exit] = ACTIONS(1412), - [anon_sym___cdecl] = ACTIONS(1412), - [anon_sym___clrcall] = ACTIONS(1412), - [anon_sym___stdcall] = ACTIONS(1412), - [anon_sym___fastcall] = ACTIONS(1412), - [anon_sym___thiscall] = ACTIONS(1412), - [anon_sym___vectorcall] = ACTIONS(1412), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_signed] = ACTIONS(1412), - [anon_sym_unsigned] = ACTIONS(1412), - [anon_sym_long] = ACTIONS(1412), - [anon_sym_short] = ACTIONS(1412), - [anon_sym_static] = ACTIONS(1412), - [anon_sym_auto] = ACTIONS(1412), - [anon_sym_register] = ACTIONS(1412), - [anon_sym_inline] = ACTIONS(1412), - [anon_sym___inline] = ACTIONS(1412), - [anon_sym___inline__] = ACTIONS(1412), - [anon_sym___forceinline] = ACTIONS(1412), - [anon_sym_thread_local] = ACTIONS(1412), - [anon_sym___thread] = ACTIONS(1412), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_constexpr] = ACTIONS(1412), - [anon_sym_volatile] = ACTIONS(1412), - [anon_sym_restrict] = ACTIONS(1412), - [anon_sym___restrict__] = ACTIONS(1412), - [anon_sym__Atomic] = ACTIONS(1412), - [anon_sym__Noreturn] = ACTIONS(1412), - [anon_sym_noreturn] = ACTIONS(1412), - [anon_sym_alignas] = ACTIONS(1412), - [anon_sym__Alignas] = ACTIONS(1412), - [sym_primitive_type] = ACTIONS(1412), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_struct] = ACTIONS(1412), - [anon_sym_union] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1412), - [anon_sym_switch] = ACTIONS(1412), - [anon_sym_case] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1412), - [anon_sym_while] = ACTIONS(1412), - [anon_sym_do] = ACTIONS(1412), - [anon_sym_for] = ACTIONS(1412), - [anon_sym_return] = ACTIONS(1412), - [anon_sym_break] = ACTIONS(1412), - [anon_sym_continue] = ACTIONS(1412), - [anon_sym_goto] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1414), - [anon_sym_PLUS_PLUS] = ACTIONS(1414), - [anon_sym_sizeof] = ACTIONS(1412), - [anon_sym___alignof__] = ACTIONS(1412), - [anon_sym___alignof] = ACTIONS(1412), - [anon_sym__alignof] = ACTIONS(1412), - [anon_sym_alignof] = ACTIONS(1412), - [anon_sym__Alignof] = ACTIONS(1412), - [anon_sym_offsetof] = ACTIONS(1412), - [anon_sym__Generic] = ACTIONS(1412), - [anon_sym_asm] = ACTIONS(1412), - [anon_sym___asm__] = ACTIONS(1412), - [sym_number_literal] = ACTIONS(1414), - [anon_sym_L_SQUOTE] = ACTIONS(1414), - [anon_sym_u_SQUOTE] = ACTIONS(1414), - [anon_sym_U_SQUOTE] = ACTIONS(1414), - [anon_sym_u8_SQUOTE] = ACTIONS(1414), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_L_DQUOTE] = ACTIONS(1414), - [anon_sym_u_DQUOTE] = ACTIONS(1414), - [anon_sym_U_DQUOTE] = ACTIONS(1414), - [anon_sym_u8_DQUOTE] = ACTIONS(1414), - [anon_sym_DQUOTE] = ACTIONS(1414), - [sym_true] = ACTIONS(1412), - [sym_false] = ACTIONS(1412), - [anon_sym_NULL] = ACTIONS(1412), - [anon_sym_nullptr] = ACTIONS(1412), + [325] = { + [sym_identifier] = ACTIONS(1402), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1402), + [aux_sym_preproc_def_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), + [sym_preproc_directive] = ACTIONS(1402), + [anon_sym_LPAREN2] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym___extension__] = ACTIONS(1402), + [anon_sym_typedef] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1402), + [anon_sym___scanf] = ACTIONS(1402), + [anon_sym___printf] = ACTIONS(1402), + [anon_sym___read_mostly] = ACTIONS(1402), + [anon_sym___must_hold] = ACTIONS(1402), + [anon_sym___ro_after_init] = ACTIONS(1402), + [anon_sym___noreturn] = ACTIONS(1402), + [anon_sym___cold] = ACTIONS(1402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1402), + [anon_sym___init] = ACTIONS(1402), + [anon_sym___exit] = ACTIONS(1402), + [anon_sym___cdecl] = ACTIONS(1402), + [anon_sym___clrcall] = ACTIONS(1402), + [anon_sym___stdcall] = ACTIONS(1402), + [anon_sym___fastcall] = ACTIONS(1402), + [anon_sym___thiscall] = ACTIONS(1402), + [anon_sym___vectorcall] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_RBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_auto] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1402), + [anon_sym_inline] = ACTIONS(1402), + [anon_sym___inline] = ACTIONS(1402), + [anon_sym___inline__] = ACTIONS(1402), + [anon_sym___forceinline] = ACTIONS(1402), + [anon_sym_thread_local] = ACTIONS(1402), + [anon_sym___thread] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_constexpr] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1402), + [anon_sym_restrict] = ACTIONS(1402), + [anon_sym___restrict__] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1402), + [anon_sym__Noreturn] = ACTIONS(1402), + [anon_sym_noreturn] = ACTIONS(1402), + [anon_sym_alignas] = ACTIONS(1402), + [anon_sym__Alignas] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_switch] = ACTIONS(1402), + [anon_sym_case] = ACTIONS(1402), + [anon_sym_default] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1402), + [anon_sym_do] = ACTIONS(1402), + [anon_sym_for] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_break] = ACTIONS(1402), + [anon_sym_continue] = ACTIONS(1402), + [anon_sym_goto] = ACTIONS(1402), + [anon_sym___try] = ACTIONS(1402), + [anon_sym___leave] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1402), + [anon_sym___alignof__] = ACTIONS(1402), + [anon_sym___alignof] = ACTIONS(1402), + [anon_sym__alignof] = ACTIONS(1402), + [anon_sym_alignof] = ACTIONS(1402), + [anon_sym__Alignof] = ACTIONS(1402), + [anon_sym_offsetof] = ACTIONS(1402), + [anon_sym__Generic] = ACTIONS(1402), + [anon_sym_asm] = ACTIONS(1402), + [anon_sym___asm__] = ACTIONS(1402), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1404), + [anon_sym_u_SQUOTE] = ACTIONS(1404), + [anon_sym_U_SQUOTE] = ACTIONS(1404), + [anon_sym_u8_SQUOTE] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_L_DQUOTE] = ACTIONS(1404), + [anon_sym_u_DQUOTE] = ACTIONS(1404), + [anon_sym_U_DQUOTE] = ACTIONS(1404), + [anon_sym_u8_DQUOTE] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [anon_sym_NULL] = ACTIONS(1402), + [anon_sym_nullptr] = ACTIONS(1402), [sym_comment] = ACTIONS(5), }, - [393] = { - [ts_builtin_sym_end] = ACTIONS(1466), - [sym_identifier] = ACTIONS(1464), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1464), - [aux_sym_preproc_def_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), - [sym_preproc_directive] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym___extension__] = ACTIONS(1464), - [anon_sym_typedef] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym___attribute__] = ACTIONS(1464), - [anon_sym___scanf] = ACTIONS(1464), - [anon_sym___printf] = ACTIONS(1464), - [anon_sym___read_mostly] = ACTIONS(1464), - [anon_sym___must_hold] = ACTIONS(1464), - [anon_sym___ro_after_init] = ACTIONS(1464), - [anon_sym___noreturn] = ACTIONS(1464), - [anon_sym___cold] = ACTIONS(1464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), - [anon_sym___declspec] = ACTIONS(1464), - [anon_sym___init] = ACTIONS(1464), - [anon_sym___exit] = ACTIONS(1464), - [anon_sym___cdecl] = ACTIONS(1464), - [anon_sym___clrcall] = ACTIONS(1464), - [anon_sym___stdcall] = ACTIONS(1464), - [anon_sym___fastcall] = ACTIONS(1464), - [anon_sym___thiscall] = ACTIONS(1464), - [anon_sym___vectorcall] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_signed] = ACTIONS(1464), - [anon_sym_unsigned] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_auto] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_inline] = ACTIONS(1464), - [anon_sym___inline] = ACTIONS(1464), - [anon_sym___inline__] = ACTIONS(1464), - [anon_sym___forceinline] = ACTIONS(1464), - [anon_sym_thread_local] = ACTIONS(1464), - [anon_sym___thread] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_constexpr] = ACTIONS(1464), - [anon_sym_volatile] = ACTIONS(1464), - [anon_sym_restrict] = ACTIONS(1464), - [anon_sym___restrict__] = ACTIONS(1464), - [anon_sym__Atomic] = ACTIONS(1464), - [anon_sym__Noreturn] = ACTIONS(1464), - [anon_sym_noreturn] = ACTIONS(1464), - [anon_sym_alignas] = ACTIONS(1464), - [anon_sym__Alignas] = ACTIONS(1464), - [sym_primitive_type] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_case] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_goto] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_sizeof] = ACTIONS(1464), - [anon_sym___alignof__] = ACTIONS(1464), - [anon_sym___alignof] = ACTIONS(1464), - [anon_sym__alignof] = ACTIONS(1464), - [anon_sym_alignof] = ACTIONS(1464), - [anon_sym__Alignof] = ACTIONS(1464), - [anon_sym_offsetof] = ACTIONS(1464), - [anon_sym__Generic] = ACTIONS(1464), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym___asm__] = ACTIONS(1464), - [sym_number_literal] = ACTIONS(1466), - [anon_sym_L_SQUOTE] = ACTIONS(1466), - [anon_sym_u_SQUOTE] = ACTIONS(1466), - [anon_sym_U_SQUOTE] = ACTIONS(1466), - [anon_sym_u8_SQUOTE] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_L_DQUOTE] = ACTIONS(1466), - [anon_sym_u_DQUOTE] = ACTIONS(1466), - [anon_sym_U_DQUOTE] = ACTIONS(1466), - [anon_sym_u8_DQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym_true] = ACTIONS(1464), - [sym_false] = ACTIONS(1464), - [anon_sym_NULL] = ACTIONS(1464), - [anon_sym_nullptr] = ACTIONS(1464), + [326] = { + [sym_identifier] = ACTIONS(1402), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1402), + [aux_sym_preproc_def_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), + [sym_preproc_directive] = ACTIONS(1402), + [anon_sym_LPAREN2] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym___extension__] = ACTIONS(1402), + [anon_sym_typedef] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1402), + [anon_sym___scanf] = ACTIONS(1402), + [anon_sym___printf] = ACTIONS(1402), + [anon_sym___read_mostly] = ACTIONS(1402), + [anon_sym___must_hold] = ACTIONS(1402), + [anon_sym___ro_after_init] = ACTIONS(1402), + [anon_sym___noreturn] = ACTIONS(1402), + [anon_sym___cold] = ACTIONS(1402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1402), + [anon_sym___init] = ACTIONS(1402), + [anon_sym___exit] = ACTIONS(1402), + [anon_sym___cdecl] = ACTIONS(1402), + [anon_sym___clrcall] = ACTIONS(1402), + [anon_sym___stdcall] = ACTIONS(1402), + [anon_sym___fastcall] = ACTIONS(1402), + [anon_sym___thiscall] = ACTIONS(1402), + [anon_sym___vectorcall] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_RBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_auto] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1402), + [anon_sym_inline] = ACTIONS(1402), + [anon_sym___inline] = ACTIONS(1402), + [anon_sym___inline__] = ACTIONS(1402), + [anon_sym___forceinline] = ACTIONS(1402), + [anon_sym_thread_local] = ACTIONS(1402), + [anon_sym___thread] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_constexpr] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1402), + [anon_sym_restrict] = ACTIONS(1402), + [anon_sym___restrict__] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1402), + [anon_sym__Noreturn] = ACTIONS(1402), + [anon_sym_noreturn] = ACTIONS(1402), + [anon_sym_alignas] = ACTIONS(1402), + [anon_sym__Alignas] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_switch] = ACTIONS(1402), + [anon_sym_case] = ACTIONS(1402), + [anon_sym_default] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1402), + [anon_sym_do] = ACTIONS(1402), + [anon_sym_for] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_break] = ACTIONS(1402), + [anon_sym_continue] = ACTIONS(1402), + [anon_sym_goto] = ACTIONS(1402), + [anon_sym___try] = ACTIONS(1402), + [anon_sym___leave] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1402), + [anon_sym___alignof__] = ACTIONS(1402), + [anon_sym___alignof] = ACTIONS(1402), + [anon_sym__alignof] = ACTIONS(1402), + [anon_sym_alignof] = ACTIONS(1402), + [anon_sym__Alignof] = ACTIONS(1402), + [anon_sym_offsetof] = ACTIONS(1402), + [anon_sym__Generic] = ACTIONS(1402), + [anon_sym_asm] = ACTIONS(1402), + [anon_sym___asm__] = ACTIONS(1402), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1404), + [anon_sym_u_SQUOTE] = ACTIONS(1404), + [anon_sym_U_SQUOTE] = ACTIONS(1404), + [anon_sym_u8_SQUOTE] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_L_DQUOTE] = ACTIONS(1404), + [anon_sym_u_DQUOTE] = ACTIONS(1404), + [anon_sym_U_DQUOTE] = ACTIONS(1404), + [anon_sym_u8_DQUOTE] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [anon_sym_NULL] = ACTIONS(1402), + [anon_sym_nullptr] = ACTIONS(1402), [sym_comment] = ACTIONS(5), }, - [394] = { - [ts_builtin_sym_end] = ACTIONS(1462), - [sym_identifier] = ACTIONS(1460), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1460), - [aux_sym_preproc_def_token1] = ACTIONS(1460), - [aux_sym_preproc_if_token1] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), - [sym_preproc_directive] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym___extension__] = ACTIONS(1460), - [anon_sym_typedef] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1460), - [anon_sym___attribute__] = ACTIONS(1460), - [anon_sym___scanf] = ACTIONS(1460), - [anon_sym___printf] = ACTIONS(1460), - [anon_sym___read_mostly] = ACTIONS(1460), - [anon_sym___must_hold] = ACTIONS(1460), - [anon_sym___ro_after_init] = ACTIONS(1460), - [anon_sym___noreturn] = ACTIONS(1460), - [anon_sym___cold] = ACTIONS(1460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym___declspec] = ACTIONS(1460), - [anon_sym___init] = ACTIONS(1460), - [anon_sym___exit] = ACTIONS(1460), - [anon_sym___cdecl] = ACTIONS(1460), - [anon_sym___clrcall] = ACTIONS(1460), - [anon_sym___stdcall] = ACTIONS(1460), - [anon_sym___fastcall] = ACTIONS(1460), - [anon_sym___thiscall] = ACTIONS(1460), - [anon_sym___vectorcall] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1462), - [anon_sym_signed] = ACTIONS(1460), - [anon_sym_unsigned] = ACTIONS(1460), - [anon_sym_long] = ACTIONS(1460), - [anon_sym_short] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_auto] = ACTIONS(1460), - [anon_sym_register] = ACTIONS(1460), - [anon_sym_inline] = ACTIONS(1460), - [anon_sym___inline] = ACTIONS(1460), - [anon_sym___inline__] = ACTIONS(1460), - [anon_sym___forceinline] = ACTIONS(1460), - [anon_sym_thread_local] = ACTIONS(1460), - [anon_sym___thread] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_constexpr] = ACTIONS(1460), - [anon_sym_volatile] = ACTIONS(1460), - [anon_sym_restrict] = ACTIONS(1460), - [anon_sym___restrict__] = ACTIONS(1460), - [anon_sym__Atomic] = ACTIONS(1460), - [anon_sym__Noreturn] = ACTIONS(1460), - [anon_sym_noreturn] = ACTIONS(1460), - [anon_sym_alignas] = ACTIONS(1460), - [anon_sym__Alignas] = ACTIONS(1460), - [sym_primitive_type] = ACTIONS(1460), - [anon_sym_enum] = ACTIONS(1460), - [anon_sym_struct] = ACTIONS(1460), - [anon_sym_union] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_switch] = ACTIONS(1460), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_do] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_goto] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1462), - [anon_sym_sizeof] = ACTIONS(1460), - [anon_sym___alignof__] = ACTIONS(1460), - [anon_sym___alignof] = ACTIONS(1460), - [anon_sym__alignof] = ACTIONS(1460), - [anon_sym_alignof] = ACTIONS(1460), - [anon_sym__Alignof] = ACTIONS(1460), - [anon_sym_offsetof] = ACTIONS(1460), - [anon_sym__Generic] = ACTIONS(1460), - [anon_sym_asm] = ACTIONS(1460), - [anon_sym___asm__] = ACTIONS(1460), - [sym_number_literal] = ACTIONS(1462), - [anon_sym_L_SQUOTE] = ACTIONS(1462), - [anon_sym_u_SQUOTE] = ACTIONS(1462), - [anon_sym_U_SQUOTE] = ACTIONS(1462), - [anon_sym_u8_SQUOTE] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_L_DQUOTE] = ACTIONS(1462), - [anon_sym_u_DQUOTE] = ACTIONS(1462), - [anon_sym_U_DQUOTE] = ACTIONS(1462), - [anon_sym_u8_DQUOTE] = ACTIONS(1462), - [anon_sym_DQUOTE] = ACTIONS(1462), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [anon_sym_NULL] = ACTIONS(1460), - [anon_sym_nullptr] = ACTIONS(1460), + [327] = { + [sym_identifier] = ACTIONS(1398), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1398), + [aux_sym_preproc_def_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), + [sym_preproc_directive] = ACTIONS(1398), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym___extension__] = ACTIONS(1398), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym___scanf] = ACTIONS(1398), + [anon_sym___printf] = ACTIONS(1398), + [anon_sym___read_mostly] = ACTIONS(1398), + [anon_sym___must_hold] = ACTIONS(1398), + [anon_sym___ro_after_init] = ACTIONS(1398), + [anon_sym___noreturn] = ACTIONS(1398), + [anon_sym___cold] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___init] = ACTIONS(1398), + [anon_sym___exit] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_RBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym___inline] = ACTIONS(1398), + [anon_sym___inline__] = ACTIONS(1398), + [anon_sym___forceinline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym___thread] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [anon_sym_alignas] = ACTIONS(1398), + [anon_sym__Alignas] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_switch] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_do] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_goto] = ACTIONS(1398), + [anon_sym___try] = ACTIONS(1398), + [anon_sym___leave] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym___alignof__] = ACTIONS(1398), + [anon_sym___alignof] = ACTIONS(1398), + [anon_sym__alignof] = ACTIONS(1398), + [anon_sym_alignof] = ACTIONS(1398), + [anon_sym__Alignof] = ACTIONS(1398), + [anon_sym_offsetof] = ACTIONS(1398), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1398), + [anon_sym___asm__] = ACTIONS(1398), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1400), + [anon_sym_u_SQUOTE] = ACTIONS(1400), + [anon_sym_U_SQUOTE] = ACTIONS(1400), + [anon_sym_u8_SQUOTE] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_L_DQUOTE] = ACTIONS(1400), + [anon_sym_u_DQUOTE] = ACTIONS(1400), + [anon_sym_U_DQUOTE] = ACTIONS(1400), + [anon_sym_u8_DQUOTE] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [anon_sym_NULL] = ACTIONS(1398), + [anon_sym_nullptr] = ACTIONS(1398), [sym_comment] = ACTIONS(5), }, - [395] = { - [ts_builtin_sym_end] = ACTIONS(1356), - [sym_identifier] = ACTIONS(1354), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [anon_sym_LPAREN2] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym___extension__] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym___attribute__] = ACTIONS(1354), - [anon_sym___scanf] = ACTIONS(1354), - [anon_sym___printf] = ACTIONS(1354), - [anon_sym___read_mostly] = ACTIONS(1354), - [anon_sym___must_hold] = ACTIONS(1354), - [anon_sym___ro_after_init] = ACTIONS(1354), - [anon_sym___noreturn] = ACTIONS(1354), - [anon_sym___cold] = ACTIONS(1354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), - [anon_sym___declspec] = ACTIONS(1354), - [anon_sym___init] = ACTIONS(1354), - [anon_sym___exit] = ACTIONS(1354), - [anon_sym___cdecl] = ACTIONS(1354), - [anon_sym___clrcall] = ACTIONS(1354), - [anon_sym___stdcall] = ACTIONS(1354), - [anon_sym___fastcall] = ACTIONS(1354), - [anon_sym___thiscall] = ACTIONS(1354), - [anon_sym___vectorcall] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym___inline] = ACTIONS(1354), - [anon_sym___inline__] = ACTIONS(1354), - [anon_sym___forceinline] = ACTIONS(1354), - [anon_sym_thread_local] = ACTIONS(1354), - [anon_sym___thread] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_constexpr] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym___restrict__] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [anon_sym__Noreturn] = ACTIONS(1354), - [anon_sym_noreturn] = ACTIONS(1354), - [anon_sym_alignas] = ACTIONS(1354), - [anon_sym__Alignas] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym___alignof__] = ACTIONS(1354), - [anon_sym___alignof] = ACTIONS(1354), - [anon_sym__alignof] = ACTIONS(1354), - [anon_sym_alignof] = ACTIONS(1354), - [anon_sym__Alignof] = ACTIONS(1354), - [anon_sym_offsetof] = ACTIONS(1354), - [anon_sym__Generic] = ACTIONS(1354), - [anon_sym_asm] = ACTIONS(1354), - [anon_sym___asm__] = ACTIONS(1354), - [sym_number_literal] = ACTIONS(1356), - [anon_sym_L_SQUOTE] = ACTIONS(1356), - [anon_sym_u_SQUOTE] = ACTIONS(1356), - [anon_sym_U_SQUOTE] = ACTIONS(1356), - [anon_sym_u8_SQUOTE] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_L_DQUOTE] = ACTIONS(1356), - [anon_sym_u_DQUOTE] = ACTIONS(1356), - [anon_sym_U_DQUOTE] = ACTIONS(1356), - [anon_sym_u8_DQUOTE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_NULL] = ACTIONS(1354), - [anon_sym_nullptr] = ACTIONS(1354), + [328] = { + [sym_identifier] = ACTIONS(1462), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1462), + [aux_sym_preproc_def_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token2] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1462), + [sym_preproc_directive] = ACTIONS(1462), + [anon_sym_LPAREN2] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym___extension__] = ACTIONS(1462), + [anon_sym_typedef] = ACTIONS(1462), + [anon_sym_extern] = ACTIONS(1462), + [anon_sym___attribute__] = ACTIONS(1462), + [anon_sym___scanf] = ACTIONS(1462), + [anon_sym___printf] = ACTIONS(1462), + [anon_sym___read_mostly] = ACTIONS(1462), + [anon_sym___must_hold] = ACTIONS(1462), + [anon_sym___ro_after_init] = ACTIONS(1462), + [anon_sym___noreturn] = ACTIONS(1462), + [anon_sym___cold] = ACTIONS(1462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1464), + [anon_sym___declspec] = ACTIONS(1462), + [anon_sym___init] = ACTIONS(1462), + [anon_sym___exit] = ACTIONS(1462), + [anon_sym___cdecl] = ACTIONS(1462), + [anon_sym___clrcall] = ACTIONS(1462), + [anon_sym___stdcall] = ACTIONS(1462), + [anon_sym___fastcall] = ACTIONS(1462), + [anon_sym___thiscall] = ACTIONS(1462), + [anon_sym___vectorcall] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_signed] = ACTIONS(1462), + [anon_sym_unsigned] = ACTIONS(1462), + [anon_sym_long] = ACTIONS(1462), + [anon_sym_short] = ACTIONS(1462), + [anon_sym_static] = ACTIONS(1462), + [anon_sym_auto] = ACTIONS(1462), + [anon_sym_register] = ACTIONS(1462), + [anon_sym_inline] = ACTIONS(1462), + [anon_sym___inline] = ACTIONS(1462), + [anon_sym___inline__] = ACTIONS(1462), + [anon_sym___forceinline] = ACTIONS(1462), + [anon_sym_thread_local] = ACTIONS(1462), + [anon_sym___thread] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1462), + [anon_sym_constexpr] = ACTIONS(1462), + [anon_sym_volatile] = ACTIONS(1462), + [anon_sym_restrict] = ACTIONS(1462), + [anon_sym___restrict__] = ACTIONS(1462), + [anon_sym__Atomic] = ACTIONS(1462), + [anon_sym__Noreturn] = ACTIONS(1462), + [anon_sym_noreturn] = ACTIONS(1462), + [anon_sym_alignas] = ACTIONS(1462), + [anon_sym__Alignas] = ACTIONS(1462), + [sym_primitive_type] = ACTIONS(1462), + [anon_sym_enum] = ACTIONS(1462), + [anon_sym_struct] = ACTIONS(1462), + [anon_sym_union] = ACTIONS(1462), + [anon_sym_if] = ACTIONS(1462), + [anon_sym_switch] = ACTIONS(1462), + [anon_sym_case] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1462), + [anon_sym_do] = ACTIONS(1462), + [anon_sym_for] = ACTIONS(1462), + [anon_sym_return] = ACTIONS(1462), + [anon_sym_break] = ACTIONS(1462), + [anon_sym_continue] = ACTIONS(1462), + [anon_sym_goto] = ACTIONS(1462), + [anon_sym___try] = ACTIONS(1462), + [anon_sym___leave] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1464), + [anon_sym_PLUS_PLUS] = ACTIONS(1464), + [anon_sym_sizeof] = ACTIONS(1462), + [anon_sym___alignof__] = ACTIONS(1462), + [anon_sym___alignof] = ACTIONS(1462), + [anon_sym__alignof] = ACTIONS(1462), + [anon_sym_alignof] = ACTIONS(1462), + [anon_sym__Alignof] = ACTIONS(1462), + [anon_sym_offsetof] = ACTIONS(1462), + [anon_sym__Generic] = ACTIONS(1462), + [anon_sym_asm] = ACTIONS(1462), + [anon_sym___asm__] = ACTIONS(1462), + [sym_number_literal] = ACTIONS(1464), + [anon_sym_L_SQUOTE] = ACTIONS(1464), + [anon_sym_u_SQUOTE] = ACTIONS(1464), + [anon_sym_U_SQUOTE] = ACTIONS(1464), + [anon_sym_u8_SQUOTE] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_L_DQUOTE] = ACTIONS(1464), + [anon_sym_u_DQUOTE] = ACTIONS(1464), + [anon_sym_U_DQUOTE] = ACTIONS(1464), + [anon_sym_u8_DQUOTE] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(1464), + [sym_true] = ACTIONS(1462), + [sym_false] = ACTIONS(1462), + [anon_sym_NULL] = ACTIONS(1462), + [anon_sym_nullptr] = ACTIONS(1462), [sym_comment] = ACTIONS(5), }, - [396] = { - [ts_builtin_sym_end] = ACTIONS(1368), - [sym_identifier] = ACTIONS(1366), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), - [sym_preproc_directive] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_TILDE] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym___attribute__] = ACTIONS(1366), - [anon_sym___scanf] = ACTIONS(1366), - [anon_sym___printf] = ACTIONS(1366), - [anon_sym___read_mostly] = ACTIONS(1366), - [anon_sym___must_hold] = ACTIONS(1366), - [anon_sym___ro_after_init] = ACTIONS(1366), - [anon_sym___noreturn] = ACTIONS(1366), - [anon_sym___cold] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), - [anon_sym___declspec] = ACTIONS(1366), - [anon_sym___init] = ACTIONS(1366), - [anon_sym___exit] = ACTIONS(1366), - [anon_sym___cdecl] = ACTIONS(1366), - [anon_sym___clrcall] = ACTIONS(1366), - [anon_sym___stdcall] = ACTIONS(1366), - [anon_sym___fastcall] = ACTIONS(1366), - [anon_sym___thiscall] = ACTIONS(1366), - [anon_sym___vectorcall] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1366), - [anon_sym_unsigned] = ACTIONS(1366), - [anon_sym_long] = ACTIONS(1366), - [anon_sym_short] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_auto] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1366), - [anon_sym_inline] = ACTIONS(1366), - [anon_sym___inline] = ACTIONS(1366), - [anon_sym___inline__] = ACTIONS(1366), - [anon_sym___forceinline] = ACTIONS(1366), - [anon_sym_thread_local] = ACTIONS(1366), - [anon_sym___thread] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_constexpr] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1366), - [anon_sym_restrict] = ACTIONS(1366), - [anon_sym___restrict__] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1366), - [anon_sym__Noreturn] = ACTIONS(1366), - [anon_sym_noreturn] = ACTIONS(1366), - [anon_sym_alignas] = ACTIONS(1366), - [anon_sym__Alignas] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1366), - [anon_sym_case] = ACTIONS(1366), - [anon_sym_default] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_do] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_goto] = ACTIONS(1366), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_sizeof] = ACTIONS(1366), - [anon_sym___alignof__] = ACTIONS(1366), - [anon_sym___alignof] = ACTIONS(1366), - [anon_sym__alignof] = ACTIONS(1366), - [anon_sym_alignof] = ACTIONS(1366), - [anon_sym__Alignof] = ACTIONS(1366), - [anon_sym_offsetof] = ACTIONS(1366), - [anon_sym__Generic] = ACTIONS(1366), - [anon_sym_asm] = ACTIONS(1366), - [anon_sym___asm__] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(1368), - [anon_sym_L_SQUOTE] = ACTIONS(1368), - [anon_sym_u_SQUOTE] = ACTIONS(1368), - [anon_sym_U_SQUOTE] = ACTIONS(1368), - [anon_sym_u8_SQUOTE] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_L_DQUOTE] = ACTIONS(1368), - [anon_sym_u_DQUOTE] = ACTIONS(1368), - [anon_sym_U_DQUOTE] = ACTIONS(1368), - [anon_sym_u8_DQUOTE] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [anon_sym_NULL] = ACTIONS(1366), - [anon_sym_nullptr] = ACTIONS(1366), + [329] = { + [sym_identifier] = ACTIONS(1422), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1422), + [aux_sym_preproc_def_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [sym_preproc_directive] = ACTIONS(1422), + [anon_sym_LPAREN2] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_PLUS] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym___extension__] = ACTIONS(1422), + [anon_sym_typedef] = ACTIONS(1422), + [anon_sym_extern] = ACTIONS(1422), + [anon_sym___attribute__] = ACTIONS(1422), + [anon_sym___scanf] = ACTIONS(1422), + [anon_sym___printf] = ACTIONS(1422), + [anon_sym___read_mostly] = ACTIONS(1422), + [anon_sym___must_hold] = ACTIONS(1422), + [anon_sym___ro_after_init] = ACTIONS(1422), + [anon_sym___noreturn] = ACTIONS(1422), + [anon_sym___cold] = ACTIONS(1422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), + [anon_sym___declspec] = ACTIONS(1422), + [anon_sym___init] = ACTIONS(1422), + [anon_sym___exit] = ACTIONS(1422), + [anon_sym___cdecl] = ACTIONS(1422), + [anon_sym___clrcall] = ACTIONS(1422), + [anon_sym___stdcall] = ACTIONS(1422), + [anon_sym___fastcall] = ACTIONS(1422), + [anon_sym___thiscall] = ACTIONS(1422), + [anon_sym___vectorcall] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1424), + [anon_sym_signed] = ACTIONS(1422), + [anon_sym_unsigned] = ACTIONS(1422), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_short] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_auto] = ACTIONS(1422), + [anon_sym_register] = ACTIONS(1422), + [anon_sym_inline] = ACTIONS(1422), + [anon_sym___inline] = ACTIONS(1422), + [anon_sym___inline__] = ACTIONS(1422), + [anon_sym___forceinline] = ACTIONS(1422), + [anon_sym_thread_local] = ACTIONS(1422), + [anon_sym___thread] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_constexpr] = ACTIONS(1422), + [anon_sym_volatile] = ACTIONS(1422), + [anon_sym_restrict] = ACTIONS(1422), + [anon_sym___restrict__] = ACTIONS(1422), + [anon_sym__Atomic] = ACTIONS(1422), + [anon_sym__Noreturn] = ACTIONS(1422), + [anon_sym_noreturn] = ACTIONS(1422), + [anon_sym_alignas] = ACTIONS(1422), + [anon_sym__Alignas] = ACTIONS(1422), + [sym_primitive_type] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1422), + [anon_sym_switch] = ACTIONS(1422), + [anon_sym_case] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_while] = ACTIONS(1422), + [anon_sym_do] = ACTIONS(1422), + [anon_sym_for] = ACTIONS(1422), + [anon_sym_return] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1422), + [anon_sym_continue] = ACTIONS(1422), + [anon_sym_goto] = ACTIONS(1422), + [anon_sym___try] = ACTIONS(1422), + [anon_sym___leave] = ACTIONS(1422), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1422), + [anon_sym___alignof__] = ACTIONS(1422), + [anon_sym___alignof] = ACTIONS(1422), + [anon_sym__alignof] = ACTIONS(1422), + [anon_sym_alignof] = ACTIONS(1422), + [anon_sym__Alignof] = ACTIONS(1422), + [anon_sym_offsetof] = ACTIONS(1422), + [anon_sym__Generic] = ACTIONS(1422), + [anon_sym_asm] = ACTIONS(1422), + [anon_sym___asm__] = ACTIONS(1422), + [sym_number_literal] = ACTIONS(1424), + [anon_sym_L_SQUOTE] = ACTIONS(1424), + [anon_sym_u_SQUOTE] = ACTIONS(1424), + [anon_sym_U_SQUOTE] = ACTIONS(1424), + [anon_sym_u8_SQUOTE] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_L_DQUOTE] = ACTIONS(1424), + [anon_sym_u_DQUOTE] = ACTIONS(1424), + [anon_sym_U_DQUOTE] = ACTIONS(1424), + [anon_sym_u8_DQUOTE] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [sym_true] = ACTIONS(1422), + [sym_false] = ACTIONS(1422), + [anon_sym_NULL] = ACTIONS(1422), + [anon_sym_nullptr] = ACTIONS(1422), [sym_comment] = ACTIONS(5), }, - [397] = { - [ts_builtin_sym_end] = ACTIONS(1414), - [sym_identifier] = ACTIONS(1412), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1412), - [aux_sym_preproc_def_token1] = ACTIONS(1412), - [aux_sym_preproc_if_token1] = ACTIONS(1412), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1412), - [sym_preproc_directive] = ACTIONS(1412), - [anon_sym_LPAREN2] = ACTIONS(1414), - [anon_sym_BANG] = ACTIONS(1414), - [anon_sym_TILDE] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym___extension__] = ACTIONS(1412), - [anon_sym_typedef] = ACTIONS(1412), - [anon_sym_extern] = ACTIONS(1412), - [anon_sym___attribute__] = ACTIONS(1412), - [anon_sym___scanf] = ACTIONS(1412), - [anon_sym___printf] = ACTIONS(1412), - [anon_sym___read_mostly] = ACTIONS(1412), - [anon_sym___must_hold] = ACTIONS(1412), - [anon_sym___ro_after_init] = ACTIONS(1412), - [anon_sym___noreturn] = ACTIONS(1412), - [anon_sym___cold] = ACTIONS(1412), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1414), - [anon_sym___declspec] = ACTIONS(1412), - [anon_sym___init] = ACTIONS(1412), - [anon_sym___exit] = ACTIONS(1412), - [anon_sym___cdecl] = ACTIONS(1412), - [anon_sym___clrcall] = ACTIONS(1412), - [anon_sym___stdcall] = ACTIONS(1412), - [anon_sym___fastcall] = ACTIONS(1412), - [anon_sym___thiscall] = ACTIONS(1412), - [anon_sym___vectorcall] = ACTIONS(1412), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_signed] = ACTIONS(1412), - [anon_sym_unsigned] = ACTIONS(1412), - [anon_sym_long] = ACTIONS(1412), - [anon_sym_short] = ACTIONS(1412), - [anon_sym_static] = ACTIONS(1412), - [anon_sym_auto] = ACTIONS(1412), - [anon_sym_register] = ACTIONS(1412), - [anon_sym_inline] = ACTIONS(1412), - [anon_sym___inline] = ACTIONS(1412), - [anon_sym___inline__] = ACTIONS(1412), - [anon_sym___forceinline] = ACTIONS(1412), - [anon_sym_thread_local] = ACTIONS(1412), - [anon_sym___thread] = ACTIONS(1412), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_constexpr] = ACTIONS(1412), - [anon_sym_volatile] = ACTIONS(1412), - [anon_sym_restrict] = ACTIONS(1412), - [anon_sym___restrict__] = ACTIONS(1412), - [anon_sym__Atomic] = ACTIONS(1412), - [anon_sym__Noreturn] = ACTIONS(1412), - [anon_sym_noreturn] = ACTIONS(1412), - [anon_sym_alignas] = ACTIONS(1412), - [anon_sym__Alignas] = ACTIONS(1412), - [sym_primitive_type] = ACTIONS(1412), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_struct] = ACTIONS(1412), - [anon_sym_union] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1412), - [anon_sym_switch] = ACTIONS(1412), - [anon_sym_case] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1412), - [anon_sym_while] = ACTIONS(1412), - [anon_sym_do] = ACTIONS(1412), - [anon_sym_for] = ACTIONS(1412), - [anon_sym_return] = ACTIONS(1412), - [anon_sym_break] = ACTIONS(1412), - [anon_sym_continue] = ACTIONS(1412), - [anon_sym_goto] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1414), - [anon_sym_PLUS_PLUS] = ACTIONS(1414), - [anon_sym_sizeof] = ACTIONS(1412), - [anon_sym___alignof__] = ACTIONS(1412), - [anon_sym___alignof] = ACTIONS(1412), - [anon_sym__alignof] = ACTIONS(1412), - [anon_sym_alignof] = ACTIONS(1412), - [anon_sym__Alignof] = ACTIONS(1412), - [anon_sym_offsetof] = ACTIONS(1412), - [anon_sym__Generic] = ACTIONS(1412), - [anon_sym_asm] = ACTIONS(1412), - [anon_sym___asm__] = ACTIONS(1412), - [sym_number_literal] = ACTIONS(1414), - [anon_sym_L_SQUOTE] = ACTIONS(1414), - [anon_sym_u_SQUOTE] = ACTIONS(1414), - [anon_sym_U_SQUOTE] = ACTIONS(1414), - [anon_sym_u8_SQUOTE] = ACTIONS(1414), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_L_DQUOTE] = ACTIONS(1414), - [anon_sym_u_DQUOTE] = ACTIONS(1414), - [anon_sym_U_DQUOTE] = ACTIONS(1414), - [anon_sym_u8_DQUOTE] = ACTIONS(1414), - [anon_sym_DQUOTE] = ACTIONS(1414), - [sym_true] = ACTIONS(1412), - [sym_false] = ACTIONS(1412), - [anon_sym_NULL] = ACTIONS(1412), - [anon_sym_nullptr] = ACTIONS(1412), + [330] = { + [sym_identifier] = ACTIONS(1426), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1426), + [aux_sym_preproc_def_token1] = ACTIONS(1426), + [aux_sym_preproc_if_token1] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), + [sym_preproc_directive] = ACTIONS(1426), + [anon_sym_LPAREN2] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym___extension__] = ACTIONS(1426), + [anon_sym_typedef] = ACTIONS(1426), + [anon_sym_extern] = ACTIONS(1426), + [anon_sym___attribute__] = ACTIONS(1426), + [anon_sym___scanf] = ACTIONS(1426), + [anon_sym___printf] = ACTIONS(1426), + [anon_sym___read_mostly] = ACTIONS(1426), + [anon_sym___must_hold] = ACTIONS(1426), + [anon_sym___ro_after_init] = ACTIONS(1426), + [anon_sym___noreturn] = ACTIONS(1426), + [anon_sym___cold] = ACTIONS(1426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), + [anon_sym___declspec] = ACTIONS(1426), + [anon_sym___init] = ACTIONS(1426), + [anon_sym___exit] = ACTIONS(1426), + [anon_sym___cdecl] = ACTIONS(1426), + [anon_sym___clrcall] = ACTIONS(1426), + [anon_sym___stdcall] = ACTIONS(1426), + [anon_sym___fastcall] = ACTIONS(1426), + [anon_sym___thiscall] = ACTIONS(1426), + [anon_sym___vectorcall] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1428), + [anon_sym_signed] = ACTIONS(1426), + [anon_sym_unsigned] = ACTIONS(1426), + [anon_sym_long] = ACTIONS(1426), + [anon_sym_short] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1426), + [anon_sym_auto] = ACTIONS(1426), + [anon_sym_register] = ACTIONS(1426), + [anon_sym_inline] = ACTIONS(1426), + [anon_sym___inline] = ACTIONS(1426), + [anon_sym___inline__] = ACTIONS(1426), + [anon_sym___forceinline] = ACTIONS(1426), + [anon_sym_thread_local] = ACTIONS(1426), + [anon_sym___thread] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_constexpr] = ACTIONS(1426), + [anon_sym_volatile] = ACTIONS(1426), + [anon_sym_restrict] = ACTIONS(1426), + [anon_sym___restrict__] = ACTIONS(1426), + [anon_sym__Atomic] = ACTIONS(1426), + [anon_sym__Noreturn] = ACTIONS(1426), + [anon_sym_noreturn] = ACTIONS(1426), + [anon_sym_alignas] = ACTIONS(1426), + [anon_sym__Alignas] = ACTIONS(1426), + [sym_primitive_type] = ACTIONS(1426), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1426), + [anon_sym_union] = ACTIONS(1426), + [anon_sym_if] = ACTIONS(1426), + [anon_sym_switch] = ACTIONS(1426), + [anon_sym_case] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1426), + [anon_sym_while] = ACTIONS(1426), + [anon_sym_do] = ACTIONS(1426), + [anon_sym_for] = ACTIONS(1426), + [anon_sym_return] = ACTIONS(1426), + [anon_sym_break] = ACTIONS(1426), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_goto] = ACTIONS(1426), + [anon_sym___try] = ACTIONS(1426), + [anon_sym___leave] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [anon_sym_sizeof] = ACTIONS(1426), + [anon_sym___alignof__] = ACTIONS(1426), + [anon_sym___alignof] = ACTIONS(1426), + [anon_sym__alignof] = ACTIONS(1426), + [anon_sym_alignof] = ACTIONS(1426), + [anon_sym__Alignof] = ACTIONS(1426), + [anon_sym_offsetof] = ACTIONS(1426), + [anon_sym__Generic] = ACTIONS(1426), + [anon_sym_asm] = ACTIONS(1426), + [anon_sym___asm__] = ACTIONS(1426), + [sym_number_literal] = ACTIONS(1428), + [anon_sym_L_SQUOTE] = ACTIONS(1428), + [anon_sym_u_SQUOTE] = ACTIONS(1428), + [anon_sym_U_SQUOTE] = ACTIONS(1428), + [anon_sym_u8_SQUOTE] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_L_DQUOTE] = ACTIONS(1428), + [anon_sym_u_DQUOTE] = ACTIONS(1428), + [anon_sym_U_DQUOTE] = ACTIONS(1428), + [anon_sym_u8_DQUOTE] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [sym_true] = ACTIONS(1426), + [sym_false] = ACTIONS(1426), + [anon_sym_NULL] = ACTIONS(1426), + [anon_sym_nullptr] = ACTIONS(1426), [sym_comment] = ACTIONS(5), }, - [398] = { - [ts_builtin_sym_end] = ACTIONS(1450), - [sym_identifier] = ACTIONS(1448), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1448), - [aux_sym_preproc_def_token1] = ACTIONS(1448), - [aux_sym_preproc_if_token1] = ACTIONS(1448), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), - [sym_preproc_directive] = ACTIONS(1448), - [anon_sym_LPAREN2] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym___extension__] = ACTIONS(1448), - [anon_sym_typedef] = ACTIONS(1448), - [anon_sym_extern] = ACTIONS(1448), - [anon_sym___attribute__] = ACTIONS(1448), - [anon_sym___scanf] = ACTIONS(1448), - [anon_sym___printf] = ACTIONS(1448), - [anon_sym___read_mostly] = ACTIONS(1448), - [anon_sym___must_hold] = ACTIONS(1448), - [anon_sym___ro_after_init] = ACTIONS(1448), - [anon_sym___noreturn] = ACTIONS(1448), - [anon_sym___cold] = ACTIONS(1448), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), - [anon_sym___declspec] = ACTIONS(1448), - [anon_sym___init] = ACTIONS(1448), - [anon_sym___exit] = ACTIONS(1448), - [anon_sym___cdecl] = ACTIONS(1448), - [anon_sym___clrcall] = ACTIONS(1448), - [anon_sym___stdcall] = ACTIONS(1448), - [anon_sym___fastcall] = ACTIONS(1448), - [anon_sym___thiscall] = ACTIONS(1448), - [anon_sym___vectorcall] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_signed] = ACTIONS(1448), - [anon_sym_unsigned] = ACTIONS(1448), - [anon_sym_long] = ACTIONS(1448), - [anon_sym_short] = ACTIONS(1448), - [anon_sym_static] = ACTIONS(1448), - [anon_sym_auto] = ACTIONS(1448), - [anon_sym_register] = ACTIONS(1448), - [anon_sym_inline] = ACTIONS(1448), - [anon_sym___inline] = ACTIONS(1448), - [anon_sym___inline__] = ACTIONS(1448), - [anon_sym___forceinline] = ACTIONS(1448), - [anon_sym_thread_local] = ACTIONS(1448), - [anon_sym___thread] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_constexpr] = ACTIONS(1448), - [anon_sym_volatile] = ACTIONS(1448), - [anon_sym_restrict] = ACTIONS(1448), - [anon_sym___restrict__] = ACTIONS(1448), - [anon_sym__Atomic] = ACTIONS(1448), - [anon_sym__Noreturn] = ACTIONS(1448), - [anon_sym_noreturn] = ACTIONS(1448), - [anon_sym_alignas] = ACTIONS(1448), - [anon_sym__Alignas] = ACTIONS(1448), - [sym_primitive_type] = ACTIONS(1448), - [anon_sym_enum] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1448), - [anon_sym_union] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1448), - [anon_sym_case] = ACTIONS(1448), - [anon_sym_default] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_do] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_goto] = ACTIONS(1448), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_sizeof] = ACTIONS(1448), - [anon_sym___alignof__] = ACTIONS(1448), - [anon_sym___alignof] = ACTIONS(1448), - [anon_sym__alignof] = ACTIONS(1448), - [anon_sym_alignof] = ACTIONS(1448), - [anon_sym__Alignof] = ACTIONS(1448), - [anon_sym_offsetof] = ACTIONS(1448), - [anon_sym__Generic] = ACTIONS(1448), - [anon_sym_asm] = ACTIONS(1448), - [anon_sym___asm__] = ACTIONS(1448), - [sym_number_literal] = ACTIONS(1450), - [anon_sym_L_SQUOTE] = ACTIONS(1450), - [anon_sym_u_SQUOTE] = ACTIONS(1450), - [anon_sym_U_SQUOTE] = ACTIONS(1450), - [anon_sym_u8_SQUOTE] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_L_DQUOTE] = ACTIONS(1450), - [anon_sym_u_DQUOTE] = ACTIONS(1450), - [anon_sym_U_DQUOTE] = ACTIONS(1450), - [anon_sym_u8_DQUOTE] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(1450), - [sym_true] = ACTIONS(1448), - [sym_false] = ACTIONS(1448), - [anon_sym_NULL] = ACTIONS(1448), - [anon_sym_nullptr] = ACTIONS(1448), + [331] = { + [sym_identifier] = ACTIONS(1430), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1430), + [aux_sym_preproc_def_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), + [sym_preproc_directive] = ACTIONS(1430), + [anon_sym_LPAREN2] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym___extension__] = ACTIONS(1430), + [anon_sym_typedef] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym___attribute__] = ACTIONS(1430), + [anon_sym___scanf] = ACTIONS(1430), + [anon_sym___printf] = ACTIONS(1430), + [anon_sym___read_mostly] = ACTIONS(1430), + [anon_sym___must_hold] = ACTIONS(1430), + [anon_sym___ro_after_init] = ACTIONS(1430), + [anon_sym___noreturn] = ACTIONS(1430), + [anon_sym___cold] = ACTIONS(1430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), + [anon_sym___declspec] = ACTIONS(1430), + [anon_sym___init] = ACTIONS(1430), + [anon_sym___exit] = ACTIONS(1430), + [anon_sym___cdecl] = ACTIONS(1430), + [anon_sym___clrcall] = ACTIONS(1430), + [anon_sym___stdcall] = ACTIONS(1430), + [anon_sym___fastcall] = ACTIONS(1430), + [anon_sym___thiscall] = ACTIONS(1430), + [anon_sym___vectorcall] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1432), + [anon_sym_signed] = ACTIONS(1430), + [anon_sym_unsigned] = ACTIONS(1430), + [anon_sym_long] = ACTIONS(1430), + [anon_sym_short] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_auto] = ACTIONS(1430), + [anon_sym_register] = ACTIONS(1430), + [anon_sym_inline] = ACTIONS(1430), + [anon_sym___inline] = ACTIONS(1430), + [anon_sym___inline__] = ACTIONS(1430), + [anon_sym___forceinline] = ACTIONS(1430), + [anon_sym_thread_local] = ACTIONS(1430), + [anon_sym___thread] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_constexpr] = ACTIONS(1430), + [anon_sym_volatile] = ACTIONS(1430), + [anon_sym_restrict] = ACTIONS(1430), + [anon_sym___restrict__] = ACTIONS(1430), + [anon_sym__Atomic] = ACTIONS(1430), + [anon_sym__Noreturn] = ACTIONS(1430), + [anon_sym_noreturn] = ACTIONS(1430), + [anon_sym_alignas] = ACTIONS(1430), + [anon_sym__Alignas] = ACTIONS(1430), + [sym_primitive_type] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_switch] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_do] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_goto] = ACTIONS(1430), + [anon_sym___try] = ACTIONS(1430), + [anon_sym___leave] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1430), + [anon_sym___alignof__] = ACTIONS(1430), + [anon_sym___alignof] = ACTIONS(1430), + [anon_sym__alignof] = ACTIONS(1430), + [anon_sym_alignof] = ACTIONS(1430), + [anon_sym__Alignof] = ACTIONS(1430), + [anon_sym_offsetof] = ACTIONS(1430), + [anon_sym__Generic] = ACTIONS(1430), + [anon_sym_asm] = ACTIONS(1430), + [anon_sym___asm__] = ACTIONS(1430), + [sym_number_literal] = ACTIONS(1432), + [anon_sym_L_SQUOTE] = ACTIONS(1432), + [anon_sym_u_SQUOTE] = ACTIONS(1432), + [anon_sym_U_SQUOTE] = ACTIONS(1432), + [anon_sym_u8_SQUOTE] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_L_DQUOTE] = ACTIONS(1432), + [anon_sym_u_DQUOTE] = ACTIONS(1432), + [anon_sym_U_DQUOTE] = ACTIONS(1432), + [anon_sym_u8_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1432), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [anon_sym_NULL] = ACTIONS(1430), + [anon_sym_nullptr] = ACTIONS(1430), [sym_comment] = ACTIONS(5), }, - [399] = { - [ts_builtin_sym_end] = ACTIONS(1380), - [sym_identifier] = ACTIONS(1378), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), - [sym_preproc_directive] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym___extension__] = ACTIONS(1378), - [anon_sym_typedef] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym___attribute__] = ACTIONS(1378), - [anon_sym___scanf] = ACTIONS(1378), - [anon_sym___printf] = ACTIONS(1378), - [anon_sym___read_mostly] = ACTIONS(1378), - [anon_sym___must_hold] = ACTIONS(1378), - [anon_sym___ro_after_init] = ACTIONS(1378), - [anon_sym___noreturn] = ACTIONS(1378), - [anon_sym___cold] = ACTIONS(1378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), - [anon_sym___declspec] = ACTIONS(1378), - [anon_sym___init] = ACTIONS(1378), - [anon_sym___exit] = ACTIONS(1378), - [anon_sym___cdecl] = ACTIONS(1378), - [anon_sym___clrcall] = ACTIONS(1378), - [anon_sym___stdcall] = ACTIONS(1378), - [anon_sym___fastcall] = ACTIONS(1378), - [anon_sym___thiscall] = ACTIONS(1378), - [anon_sym___vectorcall] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym___inline] = ACTIONS(1378), - [anon_sym___inline__] = ACTIONS(1378), - [anon_sym___forceinline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym___thread] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_constexpr] = ACTIONS(1378), - [anon_sym_volatile] = ACTIONS(1378), - [anon_sym_restrict] = ACTIONS(1378), - [anon_sym___restrict__] = ACTIONS(1378), - [anon_sym__Atomic] = ACTIONS(1378), - [anon_sym__Noreturn] = ACTIONS(1378), - [anon_sym_noreturn] = ACTIONS(1378), - [anon_sym_alignas] = ACTIONS(1378), - [anon_sym__Alignas] = ACTIONS(1378), - [sym_primitive_type] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_goto] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym___alignof__] = ACTIONS(1378), - [anon_sym___alignof] = ACTIONS(1378), - [anon_sym__alignof] = ACTIONS(1378), - [anon_sym_alignof] = ACTIONS(1378), - [anon_sym__Alignof] = ACTIONS(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1378), - [anon_sym___asm__] = ACTIONS(1378), - [sym_number_literal] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1380), - [anon_sym_u_SQUOTE] = ACTIONS(1380), - [anon_sym_U_SQUOTE] = ACTIONS(1380), - [anon_sym_u8_SQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_L_DQUOTE] = ACTIONS(1380), - [anon_sym_u_DQUOTE] = ACTIONS(1380), - [anon_sym_U_DQUOTE] = ACTIONS(1380), - [anon_sym_u8_DQUOTE] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [sym_true] = ACTIONS(1378), - [sym_false] = ACTIONS(1378), - [anon_sym_NULL] = ACTIONS(1378), - [anon_sym_nullptr] = ACTIONS(1378), + [332] = { + [sym_identifier] = ACTIONS(1490), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1490), + [aux_sym_preproc_def_token1] = ACTIONS(1490), + [aux_sym_preproc_if_token1] = ACTIONS(1490), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1490), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1490), + [sym_preproc_directive] = ACTIONS(1490), + [anon_sym_LPAREN2] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym___extension__] = ACTIONS(1490), + [anon_sym_typedef] = ACTIONS(1490), + [anon_sym_extern] = ACTIONS(1490), + [anon_sym___attribute__] = ACTIONS(1490), + [anon_sym___scanf] = ACTIONS(1490), + [anon_sym___printf] = ACTIONS(1490), + [anon_sym___read_mostly] = ACTIONS(1490), + [anon_sym___must_hold] = ACTIONS(1490), + [anon_sym___ro_after_init] = ACTIONS(1490), + [anon_sym___noreturn] = ACTIONS(1490), + [anon_sym___cold] = ACTIONS(1490), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1492), + [anon_sym___declspec] = ACTIONS(1490), + [anon_sym___init] = ACTIONS(1490), + [anon_sym___exit] = ACTIONS(1490), + [anon_sym___cdecl] = ACTIONS(1490), + [anon_sym___clrcall] = ACTIONS(1490), + [anon_sym___stdcall] = ACTIONS(1490), + [anon_sym___fastcall] = ACTIONS(1490), + [anon_sym___thiscall] = ACTIONS(1490), + [anon_sym___vectorcall] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_signed] = ACTIONS(1490), + [anon_sym_unsigned] = ACTIONS(1490), + [anon_sym_long] = ACTIONS(1490), + [anon_sym_short] = ACTIONS(1490), + [anon_sym_static] = ACTIONS(1490), + [anon_sym_auto] = ACTIONS(1490), + [anon_sym_register] = ACTIONS(1490), + [anon_sym_inline] = ACTIONS(1490), + [anon_sym___inline] = ACTIONS(1490), + [anon_sym___inline__] = ACTIONS(1490), + [anon_sym___forceinline] = ACTIONS(1490), + [anon_sym_thread_local] = ACTIONS(1490), + [anon_sym___thread] = ACTIONS(1490), + [anon_sym_const] = ACTIONS(1490), + [anon_sym_constexpr] = ACTIONS(1490), + [anon_sym_volatile] = ACTIONS(1490), + [anon_sym_restrict] = ACTIONS(1490), + [anon_sym___restrict__] = ACTIONS(1490), + [anon_sym__Atomic] = ACTIONS(1490), + [anon_sym__Noreturn] = ACTIONS(1490), + [anon_sym_noreturn] = ACTIONS(1490), + [anon_sym_alignas] = ACTIONS(1490), + [anon_sym__Alignas] = ACTIONS(1490), + [sym_primitive_type] = ACTIONS(1490), + [anon_sym_enum] = ACTIONS(1490), + [anon_sym_struct] = ACTIONS(1490), + [anon_sym_union] = ACTIONS(1490), + [anon_sym_if] = ACTIONS(1490), + [anon_sym_switch] = ACTIONS(1490), + [anon_sym_case] = ACTIONS(1490), + [anon_sym_default] = ACTIONS(1490), + [anon_sym_while] = ACTIONS(1490), + [anon_sym_do] = ACTIONS(1490), + [anon_sym_for] = ACTIONS(1490), + [anon_sym_return] = ACTIONS(1490), + [anon_sym_break] = ACTIONS(1490), + [anon_sym_continue] = ACTIONS(1490), + [anon_sym_goto] = ACTIONS(1490), + [anon_sym___try] = ACTIONS(1490), + [anon_sym___leave] = ACTIONS(1490), + [anon_sym_DASH_DASH] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1492), + [anon_sym_sizeof] = ACTIONS(1490), + [anon_sym___alignof__] = ACTIONS(1490), + [anon_sym___alignof] = ACTIONS(1490), + [anon_sym__alignof] = ACTIONS(1490), + [anon_sym_alignof] = ACTIONS(1490), + [anon_sym__Alignof] = ACTIONS(1490), + [anon_sym_offsetof] = ACTIONS(1490), + [anon_sym__Generic] = ACTIONS(1490), + [anon_sym_asm] = ACTIONS(1490), + [anon_sym___asm__] = ACTIONS(1490), + [sym_number_literal] = ACTIONS(1492), + [anon_sym_L_SQUOTE] = ACTIONS(1492), + [anon_sym_u_SQUOTE] = ACTIONS(1492), + [anon_sym_U_SQUOTE] = ACTIONS(1492), + [anon_sym_u8_SQUOTE] = ACTIONS(1492), + [anon_sym_SQUOTE] = ACTIONS(1492), + [anon_sym_L_DQUOTE] = ACTIONS(1492), + [anon_sym_u_DQUOTE] = ACTIONS(1492), + [anon_sym_U_DQUOTE] = ACTIONS(1492), + [anon_sym_u8_DQUOTE] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [sym_true] = ACTIONS(1490), + [sym_false] = ACTIONS(1490), + [anon_sym_NULL] = ACTIONS(1490), + [anon_sym_nullptr] = ACTIONS(1490), [sym_comment] = ACTIONS(5), }, - [400] = { - [ts_builtin_sym_end] = ACTIONS(1426), - [sym_identifier] = ACTIONS(1424), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1424), - [aux_sym_preproc_def_token1] = ACTIONS(1424), - [aux_sym_preproc_if_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), - [sym_preproc_directive] = ACTIONS(1424), - [anon_sym_LPAREN2] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_TILDE] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1424), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym___extension__] = ACTIONS(1424), - [anon_sym_typedef] = ACTIONS(1424), - [anon_sym_extern] = ACTIONS(1424), - [anon_sym___attribute__] = ACTIONS(1424), - [anon_sym___scanf] = ACTIONS(1424), - [anon_sym___printf] = ACTIONS(1424), - [anon_sym___read_mostly] = ACTIONS(1424), - [anon_sym___must_hold] = ACTIONS(1424), - [anon_sym___ro_after_init] = ACTIONS(1424), - [anon_sym___noreturn] = ACTIONS(1424), - [anon_sym___cold] = ACTIONS(1424), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), - [anon_sym___declspec] = ACTIONS(1424), - [anon_sym___init] = ACTIONS(1424), - [anon_sym___exit] = ACTIONS(1424), - [anon_sym___cdecl] = ACTIONS(1424), - [anon_sym___clrcall] = ACTIONS(1424), - [anon_sym___stdcall] = ACTIONS(1424), - [anon_sym___fastcall] = ACTIONS(1424), - [anon_sym___thiscall] = ACTIONS(1424), - [anon_sym___vectorcall] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_signed] = ACTIONS(1424), - [anon_sym_unsigned] = ACTIONS(1424), - [anon_sym_long] = ACTIONS(1424), - [anon_sym_short] = ACTIONS(1424), - [anon_sym_static] = ACTIONS(1424), - [anon_sym_auto] = ACTIONS(1424), - [anon_sym_register] = ACTIONS(1424), - [anon_sym_inline] = ACTIONS(1424), - [anon_sym___inline] = ACTIONS(1424), - [anon_sym___inline__] = ACTIONS(1424), - [anon_sym___forceinline] = ACTIONS(1424), - [anon_sym_thread_local] = ACTIONS(1424), - [anon_sym___thread] = ACTIONS(1424), - [anon_sym_const] = ACTIONS(1424), - [anon_sym_constexpr] = ACTIONS(1424), - [anon_sym_volatile] = ACTIONS(1424), - [anon_sym_restrict] = ACTIONS(1424), - [anon_sym___restrict__] = ACTIONS(1424), - [anon_sym__Atomic] = ACTIONS(1424), - [anon_sym__Noreturn] = ACTIONS(1424), - [anon_sym_noreturn] = ACTIONS(1424), - [anon_sym_alignas] = ACTIONS(1424), - [anon_sym__Alignas] = ACTIONS(1424), - [sym_primitive_type] = ACTIONS(1424), - [anon_sym_enum] = ACTIONS(1424), - [anon_sym_struct] = ACTIONS(1424), - [anon_sym_union] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1424), - [anon_sym_switch] = ACTIONS(1424), - [anon_sym_case] = ACTIONS(1424), - [anon_sym_default] = ACTIONS(1424), - [anon_sym_while] = ACTIONS(1424), - [anon_sym_do] = ACTIONS(1424), - [anon_sym_for] = ACTIONS(1424), - [anon_sym_return] = ACTIONS(1424), - [anon_sym_break] = ACTIONS(1424), - [anon_sym_continue] = ACTIONS(1424), - [anon_sym_goto] = ACTIONS(1424), - [anon_sym_DASH_DASH] = ACTIONS(1426), - [anon_sym_PLUS_PLUS] = ACTIONS(1426), - [anon_sym_sizeof] = ACTIONS(1424), - [anon_sym___alignof__] = ACTIONS(1424), - [anon_sym___alignof] = ACTIONS(1424), - [anon_sym__alignof] = ACTIONS(1424), - [anon_sym_alignof] = ACTIONS(1424), - [anon_sym__Alignof] = ACTIONS(1424), - [anon_sym_offsetof] = ACTIONS(1424), - [anon_sym__Generic] = ACTIONS(1424), - [anon_sym_asm] = ACTIONS(1424), - [anon_sym___asm__] = ACTIONS(1424), - [sym_number_literal] = ACTIONS(1426), - [anon_sym_L_SQUOTE] = ACTIONS(1426), - [anon_sym_u_SQUOTE] = ACTIONS(1426), - [anon_sym_U_SQUOTE] = ACTIONS(1426), - [anon_sym_u8_SQUOTE] = ACTIONS(1426), - [anon_sym_SQUOTE] = ACTIONS(1426), - [anon_sym_L_DQUOTE] = ACTIONS(1426), - [anon_sym_u_DQUOTE] = ACTIONS(1426), - [anon_sym_U_DQUOTE] = ACTIONS(1426), - [anon_sym_u8_DQUOTE] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [sym_true] = ACTIONS(1424), - [sym_false] = ACTIONS(1424), - [anon_sym_NULL] = ACTIONS(1424), - [anon_sym_nullptr] = ACTIONS(1424), + [333] = { + [sym_identifier] = ACTIONS(1470), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1470), + [aux_sym_preproc_def_token1] = ACTIONS(1470), + [aux_sym_preproc_if_token1] = ACTIONS(1470), + [aux_sym_preproc_if_token2] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1470), + [sym_preproc_directive] = ACTIONS(1470), + [anon_sym_LPAREN2] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym___extension__] = ACTIONS(1470), + [anon_sym_typedef] = ACTIONS(1470), + [anon_sym_extern] = ACTIONS(1470), + [anon_sym___attribute__] = ACTIONS(1470), + [anon_sym___scanf] = ACTIONS(1470), + [anon_sym___printf] = ACTIONS(1470), + [anon_sym___read_mostly] = ACTIONS(1470), + [anon_sym___must_hold] = ACTIONS(1470), + [anon_sym___ro_after_init] = ACTIONS(1470), + [anon_sym___noreturn] = ACTIONS(1470), + [anon_sym___cold] = ACTIONS(1470), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1472), + [anon_sym___declspec] = ACTIONS(1470), + [anon_sym___init] = ACTIONS(1470), + [anon_sym___exit] = ACTIONS(1470), + [anon_sym___cdecl] = ACTIONS(1470), + [anon_sym___clrcall] = ACTIONS(1470), + [anon_sym___stdcall] = ACTIONS(1470), + [anon_sym___fastcall] = ACTIONS(1470), + [anon_sym___thiscall] = ACTIONS(1470), + [anon_sym___vectorcall] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_signed] = ACTIONS(1470), + [anon_sym_unsigned] = ACTIONS(1470), + [anon_sym_long] = ACTIONS(1470), + [anon_sym_short] = ACTIONS(1470), + [anon_sym_static] = ACTIONS(1470), + [anon_sym_auto] = ACTIONS(1470), + [anon_sym_register] = ACTIONS(1470), + [anon_sym_inline] = ACTIONS(1470), + [anon_sym___inline] = ACTIONS(1470), + [anon_sym___inline__] = ACTIONS(1470), + [anon_sym___forceinline] = ACTIONS(1470), + [anon_sym_thread_local] = ACTIONS(1470), + [anon_sym___thread] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_constexpr] = ACTIONS(1470), + [anon_sym_volatile] = ACTIONS(1470), + [anon_sym_restrict] = ACTIONS(1470), + [anon_sym___restrict__] = ACTIONS(1470), + [anon_sym__Atomic] = ACTIONS(1470), + [anon_sym__Noreturn] = ACTIONS(1470), + [anon_sym_noreturn] = ACTIONS(1470), + [anon_sym_alignas] = ACTIONS(1470), + [anon_sym__Alignas] = ACTIONS(1470), + [sym_primitive_type] = ACTIONS(1470), + [anon_sym_enum] = ACTIONS(1470), + [anon_sym_struct] = ACTIONS(1470), + [anon_sym_union] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_case] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_do] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_continue] = ACTIONS(1470), + [anon_sym_goto] = ACTIONS(1470), + [anon_sym___try] = ACTIONS(1470), + [anon_sym___leave] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_sizeof] = ACTIONS(1470), + [anon_sym___alignof__] = ACTIONS(1470), + [anon_sym___alignof] = ACTIONS(1470), + [anon_sym__alignof] = ACTIONS(1470), + [anon_sym_alignof] = ACTIONS(1470), + [anon_sym__Alignof] = ACTIONS(1470), + [anon_sym_offsetof] = ACTIONS(1470), + [anon_sym__Generic] = ACTIONS(1470), + [anon_sym_asm] = ACTIONS(1470), + [anon_sym___asm__] = ACTIONS(1470), + [sym_number_literal] = ACTIONS(1472), + [anon_sym_L_SQUOTE] = ACTIONS(1472), + [anon_sym_u_SQUOTE] = ACTIONS(1472), + [anon_sym_U_SQUOTE] = ACTIONS(1472), + [anon_sym_u8_SQUOTE] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_L_DQUOTE] = ACTIONS(1472), + [anon_sym_u_DQUOTE] = ACTIONS(1472), + [anon_sym_U_DQUOTE] = ACTIONS(1472), + [anon_sym_u8_DQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [anon_sym_NULL] = ACTIONS(1470), + [anon_sym_nullptr] = ACTIONS(1470), [sym_comment] = ACTIONS(5), }, - [401] = { - [ts_builtin_sym_end] = ACTIONS(1418), - [sym_identifier] = ACTIONS(1416), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1416), - [aux_sym_preproc_def_token1] = ACTIONS(1416), - [aux_sym_preproc_if_token1] = ACTIONS(1416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1416), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1416), - [sym_preproc_directive] = ACTIONS(1416), - [anon_sym_LPAREN2] = ACTIONS(1418), - [anon_sym_BANG] = ACTIONS(1418), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_typedef] = ACTIONS(1416), - [anon_sym_extern] = ACTIONS(1416), - [anon_sym___attribute__] = ACTIONS(1416), - [anon_sym___scanf] = ACTIONS(1416), - [anon_sym___printf] = ACTIONS(1416), - [anon_sym___read_mostly] = ACTIONS(1416), - [anon_sym___must_hold] = ACTIONS(1416), - [anon_sym___ro_after_init] = ACTIONS(1416), - [anon_sym___noreturn] = ACTIONS(1416), - [anon_sym___cold] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym___declspec] = ACTIONS(1416), - [anon_sym___init] = ACTIONS(1416), - [anon_sym___exit] = ACTIONS(1416), - [anon_sym___cdecl] = ACTIONS(1416), - [anon_sym___clrcall] = ACTIONS(1416), - [anon_sym___stdcall] = ACTIONS(1416), - [anon_sym___fastcall] = ACTIONS(1416), - [anon_sym___thiscall] = ACTIONS(1416), - [anon_sym___vectorcall] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_signed] = ACTIONS(1416), - [anon_sym_unsigned] = ACTIONS(1416), - [anon_sym_long] = ACTIONS(1416), - [anon_sym_short] = ACTIONS(1416), - [anon_sym_static] = ACTIONS(1416), - [anon_sym_auto] = ACTIONS(1416), - [anon_sym_register] = ACTIONS(1416), - [anon_sym_inline] = ACTIONS(1416), - [anon_sym___inline] = ACTIONS(1416), - [anon_sym___inline__] = ACTIONS(1416), - [anon_sym___forceinline] = ACTIONS(1416), - [anon_sym_thread_local] = ACTIONS(1416), - [anon_sym___thread] = ACTIONS(1416), - [anon_sym_const] = ACTIONS(1416), - [anon_sym_constexpr] = ACTIONS(1416), - [anon_sym_volatile] = ACTIONS(1416), - [anon_sym_restrict] = ACTIONS(1416), - [anon_sym___restrict__] = ACTIONS(1416), - [anon_sym__Atomic] = ACTIONS(1416), - [anon_sym__Noreturn] = ACTIONS(1416), - [anon_sym_noreturn] = ACTIONS(1416), - [anon_sym_alignas] = ACTIONS(1416), - [anon_sym__Alignas] = ACTIONS(1416), - [sym_primitive_type] = ACTIONS(1416), - [anon_sym_enum] = ACTIONS(1416), - [anon_sym_struct] = ACTIONS(1416), - [anon_sym_union] = ACTIONS(1416), - [anon_sym_if] = ACTIONS(1416), - [anon_sym_switch] = ACTIONS(1416), - [anon_sym_case] = ACTIONS(1416), - [anon_sym_default] = ACTIONS(1416), - [anon_sym_while] = ACTIONS(1416), - [anon_sym_do] = ACTIONS(1416), - [anon_sym_for] = ACTIONS(1416), - [anon_sym_return] = ACTIONS(1416), - [anon_sym_break] = ACTIONS(1416), - [anon_sym_continue] = ACTIONS(1416), - [anon_sym_goto] = ACTIONS(1416), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_sizeof] = ACTIONS(1416), - [anon_sym___alignof__] = ACTIONS(1416), - [anon_sym___alignof] = ACTIONS(1416), - [anon_sym__alignof] = ACTIONS(1416), - [anon_sym_alignof] = ACTIONS(1416), - [anon_sym__Alignof] = ACTIONS(1416), - [anon_sym_offsetof] = ACTIONS(1416), - [anon_sym__Generic] = ACTIONS(1416), - [anon_sym_asm] = ACTIONS(1416), - [anon_sym___asm__] = ACTIONS(1416), - [sym_number_literal] = ACTIONS(1418), - [anon_sym_L_SQUOTE] = ACTIONS(1418), - [anon_sym_u_SQUOTE] = ACTIONS(1418), - [anon_sym_U_SQUOTE] = ACTIONS(1418), - [anon_sym_u8_SQUOTE] = ACTIONS(1418), - [anon_sym_SQUOTE] = ACTIONS(1418), - [anon_sym_L_DQUOTE] = ACTIONS(1418), - [anon_sym_u_DQUOTE] = ACTIONS(1418), - [anon_sym_U_DQUOTE] = ACTIONS(1418), - [anon_sym_u8_DQUOTE] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym_true] = ACTIONS(1416), - [sym_false] = ACTIONS(1416), - [anon_sym_NULL] = ACTIONS(1416), - [anon_sym_nullptr] = ACTIONS(1416), + [334] = { + [sym_identifier] = ACTIONS(1446), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1446), + [aux_sym_preproc_def_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token2] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), + [sym_preproc_directive] = ACTIONS(1446), + [anon_sym_LPAREN2] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym___extension__] = ACTIONS(1446), + [anon_sym_typedef] = ACTIONS(1446), + [anon_sym_extern] = ACTIONS(1446), + [anon_sym___attribute__] = ACTIONS(1446), + [anon_sym___scanf] = ACTIONS(1446), + [anon_sym___printf] = ACTIONS(1446), + [anon_sym___read_mostly] = ACTIONS(1446), + [anon_sym___must_hold] = ACTIONS(1446), + [anon_sym___ro_after_init] = ACTIONS(1446), + [anon_sym___noreturn] = ACTIONS(1446), + [anon_sym___cold] = ACTIONS(1446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym___declspec] = ACTIONS(1446), + [anon_sym___init] = ACTIONS(1446), + [anon_sym___exit] = ACTIONS(1446), + [anon_sym___cdecl] = ACTIONS(1446), + [anon_sym___clrcall] = ACTIONS(1446), + [anon_sym___stdcall] = ACTIONS(1446), + [anon_sym___fastcall] = ACTIONS(1446), + [anon_sym___thiscall] = ACTIONS(1446), + [anon_sym___vectorcall] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_signed] = ACTIONS(1446), + [anon_sym_unsigned] = ACTIONS(1446), + [anon_sym_long] = ACTIONS(1446), + [anon_sym_short] = ACTIONS(1446), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_auto] = ACTIONS(1446), + [anon_sym_register] = ACTIONS(1446), + [anon_sym_inline] = ACTIONS(1446), + [anon_sym___inline] = ACTIONS(1446), + [anon_sym___inline__] = ACTIONS(1446), + [anon_sym___forceinline] = ACTIONS(1446), + [anon_sym_thread_local] = ACTIONS(1446), + [anon_sym___thread] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_constexpr] = ACTIONS(1446), + [anon_sym_volatile] = ACTIONS(1446), + [anon_sym_restrict] = ACTIONS(1446), + [anon_sym___restrict__] = ACTIONS(1446), + [anon_sym__Atomic] = ACTIONS(1446), + [anon_sym__Noreturn] = ACTIONS(1446), + [anon_sym_noreturn] = ACTIONS(1446), + [anon_sym_alignas] = ACTIONS(1446), + [anon_sym__Alignas] = ACTIONS(1446), + [sym_primitive_type] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_switch] = ACTIONS(1446), + [anon_sym_case] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_do] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_goto] = ACTIONS(1446), + [anon_sym___try] = ACTIONS(1446), + [anon_sym___leave] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1446), + [anon_sym___alignof__] = ACTIONS(1446), + [anon_sym___alignof] = ACTIONS(1446), + [anon_sym__alignof] = ACTIONS(1446), + [anon_sym_alignof] = ACTIONS(1446), + [anon_sym__Alignof] = ACTIONS(1446), + [anon_sym_offsetof] = ACTIONS(1446), + [anon_sym__Generic] = ACTIONS(1446), + [anon_sym_asm] = ACTIONS(1446), + [anon_sym___asm__] = ACTIONS(1446), + [sym_number_literal] = ACTIONS(1448), + [anon_sym_L_SQUOTE] = ACTIONS(1448), + [anon_sym_u_SQUOTE] = ACTIONS(1448), + [anon_sym_U_SQUOTE] = ACTIONS(1448), + [anon_sym_u8_SQUOTE] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_L_DQUOTE] = ACTIONS(1448), + [anon_sym_u_DQUOTE] = ACTIONS(1448), + [anon_sym_U_DQUOTE] = ACTIONS(1448), + [anon_sym_u8_DQUOTE] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_true] = ACTIONS(1446), + [sym_false] = ACTIONS(1446), + [anon_sym_NULL] = ACTIONS(1446), + [anon_sym_nullptr] = ACTIONS(1446), [sym_comment] = ACTIONS(5), }, - [402] = { - [ts_builtin_sym_end] = ACTIONS(1486), - [sym_identifier] = ACTIONS(1484), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1484), - [aux_sym_preproc_def_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), - [sym_preproc_directive] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym___extension__] = ACTIONS(1484), - [anon_sym_typedef] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym___attribute__] = ACTIONS(1484), - [anon_sym___scanf] = ACTIONS(1484), - [anon_sym___printf] = ACTIONS(1484), - [anon_sym___read_mostly] = ACTIONS(1484), - [anon_sym___must_hold] = ACTIONS(1484), - [anon_sym___ro_after_init] = ACTIONS(1484), - [anon_sym___noreturn] = ACTIONS(1484), - [anon_sym___cold] = ACTIONS(1484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym___declspec] = ACTIONS(1484), - [anon_sym___init] = ACTIONS(1484), - [anon_sym___exit] = ACTIONS(1484), - [anon_sym___cdecl] = ACTIONS(1484), - [anon_sym___clrcall] = ACTIONS(1484), - [anon_sym___stdcall] = ACTIONS(1484), - [anon_sym___fastcall] = ACTIONS(1484), - [anon_sym___thiscall] = ACTIONS(1484), - [anon_sym___vectorcall] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_signed] = ACTIONS(1484), - [anon_sym_unsigned] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_auto] = ACTIONS(1484), - [anon_sym_register] = ACTIONS(1484), - [anon_sym_inline] = ACTIONS(1484), - [anon_sym___inline] = ACTIONS(1484), - [anon_sym___inline__] = ACTIONS(1484), - [anon_sym___forceinline] = ACTIONS(1484), - [anon_sym_thread_local] = ACTIONS(1484), - [anon_sym___thread] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_constexpr] = ACTIONS(1484), - [anon_sym_volatile] = ACTIONS(1484), - [anon_sym_restrict] = ACTIONS(1484), - [anon_sym___restrict__] = ACTIONS(1484), - [anon_sym__Atomic] = ACTIONS(1484), - [anon_sym__Noreturn] = ACTIONS(1484), - [anon_sym_noreturn] = ACTIONS(1484), - [anon_sym_alignas] = ACTIONS(1484), - [anon_sym__Alignas] = ACTIONS(1484), - [sym_primitive_type] = ACTIONS(1484), - [anon_sym_enum] = ACTIONS(1484), - [anon_sym_struct] = ACTIONS(1484), - [anon_sym_union] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_goto] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1484), - [anon_sym___alignof__] = ACTIONS(1484), - [anon_sym___alignof] = ACTIONS(1484), - [anon_sym__alignof] = ACTIONS(1484), - [anon_sym_alignof] = ACTIONS(1484), - [anon_sym__Alignof] = ACTIONS(1484), - [anon_sym_offsetof] = ACTIONS(1484), - [anon_sym__Generic] = ACTIONS(1484), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym___asm__] = ACTIONS(1484), - [sym_number_literal] = ACTIONS(1486), - [anon_sym_L_SQUOTE] = ACTIONS(1486), - [anon_sym_u_SQUOTE] = ACTIONS(1486), - [anon_sym_U_SQUOTE] = ACTIONS(1486), - [anon_sym_u8_SQUOTE] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_L_DQUOTE] = ACTIONS(1486), - [anon_sym_u_DQUOTE] = ACTIONS(1486), - [anon_sym_U_DQUOTE] = ACTIONS(1486), - [anon_sym_u8_DQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym_true] = ACTIONS(1484), - [sym_false] = ACTIONS(1484), - [anon_sym_NULL] = ACTIONS(1484), - [anon_sym_nullptr] = ACTIONS(1484), + [335] = { + [sym_identifier] = ACTIONS(1454), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1454), + [aux_sym_preproc_def_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), + [sym_preproc_directive] = ACTIONS(1454), + [anon_sym_LPAREN2] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym___extension__] = ACTIONS(1454), + [anon_sym_typedef] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym___attribute__] = ACTIONS(1454), + [anon_sym___scanf] = ACTIONS(1454), + [anon_sym___printf] = ACTIONS(1454), + [anon_sym___read_mostly] = ACTIONS(1454), + [anon_sym___must_hold] = ACTIONS(1454), + [anon_sym___ro_after_init] = ACTIONS(1454), + [anon_sym___noreturn] = ACTIONS(1454), + [anon_sym___cold] = ACTIONS(1454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), + [anon_sym___declspec] = ACTIONS(1454), + [anon_sym___init] = ACTIONS(1454), + [anon_sym___exit] = ACTIONS(1454), + [anon_sym___cdecl] = ACTIONS(1454), + [anon_sym___clrcall] = ACTIONS(1454), + [anon_sym___stdcall] = ACTIONS(1454), + [anon_sym___fastcall] = ACTIONS(1454), + [anon_sym___thiscall] = ACTIONS(1454), + [anon_sym___vectorcall] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1456), + [anon_sym_signed] = ACTIONS(1454), + [anon_sym_unsigned] = ACTIONS(1454), + [anon_sym_long] = ACTIONS(1454), + [anon_sym_short] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_auto] = ACTIONS(1454), + [anon_sym_register] = ACTIONS(1454), + [anon_sym_inline] = ACTIONS(1454), + [anon_sym___inline] = ACTIONS(1454), + [anon_sym___inline__] = ACTIONS(1454), + [anon_sym___forceinline] = ACTIONS(1454), + [anon_sym_thread_local] = ACTIONS(1454), + [anon_sym___thread] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_constexpr] = ACTIONS(1454), + [anon_sym_volatile] = ACTIONS(1454), + [anon_sym_restrict] = ACTIONS(1454), + [anon_sym___restrict__] = ACTIONS(1454), + [anon_sym__Atomic] = ACTIONS(1454), + [anon_sym__Noreturn] = ACTIONS(1454), + [anon_sym_noreturn] = ACTIONS(1454), + [anon_sym_alignas] = ACTIONS(1454), + [anon_sym__Alignas] = ACTIONS(1454), + [sym_primitive_type] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_switch] = ACTIONS(1454), + [anon_sym_case] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_do] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_goto] = ACTIONS(1454), + [anon_sym___try] = ACTIONS(1454), + [anon_sym___leave] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [anon_sym_sizeof] = ACTIONS(1454), + [anon_sym___alignof__] = ACTIONS(1454), + [anon_sym___alignof] = ACTIONS(1454), + [anon_sym__alignof] = ACTIONS(1454), + [anon_sym_alignof] = ACTIONS(1454), + [anon_sym__Alignof] = ACTIONS(1454), + [anon_sym_offsetof] = ACTIONS(1454), + [anon_sym__Generic] = ACTIONS(1454), + [anon_sym_asm] = ACTIONS(1454), + [anon_sym___asm__] = ACTIONS(1454), + [sym_number_literal] = ACTIONS(1456), + [anon_sym_L_SQUOTE] = ACTIONS(1456), + [anon_sym_u_SQUOTE] = ACTIONS(1456), + [anon_sym_U_SQUOTE] = ACTIONS(1456), + [anon_sym_u8_SQUOTE] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_L_DQUOTE] = ACTIONS(1456), + [anon_sym_u_DQUOTE] = ACTIONS(1456), + [anon_sym_U_DQUOTE] = ACTIONS(1456), + [anon_sym_u8_DQUOTE] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [anon_sym_NULL] = ACTIONS(1454), + [anon_sym_nullptr] = ACTIONS(1454), [sym_comment] = ACTIONS(5), }, - [403] = { - [ts_builtin_sym_end] = ACTIONS(1438), - [sym_identifier] = ACTIONS(1436), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1436), - [aux_sym_preproc_def_token1] = ACTIONS(1436), - [aux_sym_preproc_if_token1] = ACTIONS(1436), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), - [sym_preproc_directive] = ACTIONS(1436), - [anon_sym_LPAREN2] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1436), - [anon_sym_typedef] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym___attribute__] = ACTIONS(1436), - [anon_sym___scanf] = ACTIONS(1436), - [anon_sym___printf] = ACTIONS(1436), - [anon_sym___read_mostly] = ACTIONS(1436), - [anon_sym___must_hold] = ACTIONS(1436), - [anon_sym___ro_after_init] = ACTIONS(1436), - [anon_sym___noreturn] = ACTIONS(1436), - [anon_sym___cold] = ACTIONS(1436), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), - [anon_sym___declspec] = ACTIONS(1436), - [anon_sym___init] = ACTIONS(1436), - [anon_sym___exit] = ACTIONS(1436), - [anon_sym___cdecl] = ACTIONS(1436), - [anon_sym___clrcall] = ACTIONS(1436), - [anon_sym___stdcall] = ACTIONS(1436), - [anon_sym___fastcall] = ACTIONS(1436), - [anon_sym___thiscall] = ACTIONS(1436), - [anon_sym___vectorcall] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1438), - [anon_sym_signed] = ACTIONS(1436), - [anon_sym_unsigned] = ACTIONS(1436), - [anon_sym_long] = ACTIONS(1436), - [anon_sym_short] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_auto] = ACTIONS(1436), - [anon_sym_register] = ACTIONS(1436), - [anon_sym_inline] = ACTIONS(1436), - [anon_sym___inline] = ACTIONS(1436), - [anon_sym___inline__] = ACTIONS(1436), - [anon_sym___forceinline] = ACTIONS(1436), - [anon_sym_thread_local] = ACTIONS(1436), - [anon_sym___thread] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_constexpr] = ACTIONS(1436), - [anon_sym_volatile] = ACTIONS(1436), - [anon_sym_restrict] = ACTIONS(1436), - [anon_sym___restrict__] = ACTIONS(1436), - [anon_sym__Atomic] = ACTIONS(1436), - [anon_sym__Noreturn] = ACTIONS(1436), - [anon_sym_noreturn] = ACTIONS(1436), - [anon_sym_alignas] = ACTIONS(1436), - [anon_sym__Alignas] = ACTIONS(1436), - [sym_primitive_type] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1436), - [anon_sym_struct] = ACTIONS(1436), - [anon_sym_union] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1436), - [anon_sym_case] = ACTIONS(1436), - [anon_sym_default] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_goto] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_sizeof] = ACTIONS(1436), - [anon_sym___alignof__] = ACTIONS(1436), - [anon_sym___alignof] = ACTIONS(1436), - [anon_sym__alignof] = ACTIONS(1436), - [anon_sym_alignof] = ACTIONS(1436), - [anon_sym__Alignof] = ACTIONS(1436), - [anon_sym_offsetof] = ACTIONS(1436), - [anon_sym__Generic] = ACTIONS(1436), - [anon_sym_asm] = ACTIONS(1436), - [anon_sym___asm__] = ACTIONS(1436), - [sym_number_literal] = ACTIONS(1438), - [anon_sym_L_SQUOTE] = ACTIONS(1438), - [anon_sym_u_SQUOTE] = ACTIONS(1438), - [anon_sym_U_SQUOTE] = ACTIONS(1438), - [anon_sym_u8_SQUOTE] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1438), - [anon_sym_L_DQUOTE] = ACTIONS(1438), - [anon_sym_u_DQUOTE] = ACTIONS(1438), - [anon_sym_U_DQUOTE] = ACTIONS(1438), - [anon_sym_u8_DQUOTE] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1438), - [sym_true] = ACTIONS(1436), - [sym_false] = ACTIONS(1436), - [anon_sym_NULL] = ACTIONS(1436), - [anon_sym_nullptr] = ACTIONS(1436), + [336] = { + [sym_identifier] = ACTIONS(1442), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1442), + [aux_sym_preproc_def_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token1] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), + [sym_preproc_directive] = ACTIONS(1442), + [anon_sym_LPAREN2] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym___extension__] = ACTIONS(1442), + [anon_sym_typedef] = ACTIONS(1442), + [anon_sym_extern] = ACTIONS(1442), + [anon_sym___attribute__] = ACTIONS(1442), + [anon_sym___scanf] = ACTIONS(1442), + [anon_sym___printf] = ACTIONS(1442), + [anon_sym___read_mostly] = ACTIONS(1442), + [anon_sym___must_hold] = ACTIONS(1442), + [anon_sym___ro_after_init] = ACTIONS(1442), + [anon_sym___noreturn] = ACTIONS(1442), + [anon_sym___cold] = ACTIONS(1442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), + [anon_sym___declspec] = ACTIONS(1442), + [anon_sym___init] = ACTIONS(1442), + [anon_sym___exit] = ACTIONS(1442), + [anon_sym___cdecl] = ACTIONS(1442), + [anon_sym___clrcall] = ACTIONS(1442), + [anon_sym___stdcall] = ACTIONS(1442), + [anon_sym___fastcall] = ACTIONS(1442), + [anon_sym___thiscall] = ACTIONS(1442), + [anon_sym___vectorcall] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_signed] = ACTIONS(1442), + [anon_sym_unsigned] = ACTIONS(1442), + [anon_sym_long] = ACTIONS(1442), + [anon_sym_short] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_auto] = ACTIONS(1442), + [anon_sym_register] = ACTIONS(1442), + [anon_sym_inline] = ACTIONS(1442), + [anon_sym___inline] = ACTIONS(1442), + [anon_sym___inline__] = ACTIONS(1442), + [anon_sym___forceinline] = ACTIONS(1442), + [anon_sym_thread_local] = ACTIONS(1442), + [anon_sym___thread] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_constexpr] = ACTIONS(1442), + [anon_sym_volatile] = ACTIONS(1442), + [anon_sym_restrict] = ACTIONS(1442), + [anon_sym___restrict__] = ACTIONS(1442), + [anon_sym__Atomic] = ACTIONS(1442), + [anon_sym__Noreturn] = ACTIONS(1442), + [anon_sym_noreturn] = ACTIONS(1442), + [anon_sym_alignas] = ACTIONS(1442), + [anon_sym__Alignas] = ACTIONS(1442), + [sym_primitive_type] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_case] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_do] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_goto] = ACTIONS(1442), + [anon_sym___try] = ACTIONS(1442), + [anon_sym___leave] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [anon_sym_sizeof] = ACTIONS(1442), + [anon_sym___alignof__] = ACTIONS(1442), + [anon_sym___alignof] = ACTIONS(1442), + [anon_sym__alignof] = ACTIONS(1442), + [anon_sym_alignof] = ACTIONS(1442), + [anon_sym__Alignof] = ACTIONS(1442), + [anon_sym_offsetof] = ACTIONS(1442), + [anon_sym__Generic] = ACTIONS(1442), + [anon_sym_asm] = ACTIONS(1442), + [anon_sym___asm__] = ACTIONS(1442), + [sym_number_literal] = ACTIONS(1444), + [anon_sym_L_SQUOTE] = ACTIONS(1444), + [anon_sym_u_SQUOTE] = ACTIONS(1444), + [anon_sym_U_SQUOTE] = ACTIONS(1444), + [anon_sym_u8_SQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_L_DQUOTE] = ACTIONS(1444), + [anon_sym_u_DQUOTE] = ACTIONS(1444), + [anon_sym_U_DQUOTE] = ACTIONS(1444), + [anon_sym_u8_DQUOTE] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [sym_true] = ACTIONS(1442), + [sym_false] = ACTIONS(1442), + [anon_sym_NULL] = ACTIONS(1442), + [anon_sym_nullptr] = ACTIONS(1442), [sym_comment] = ACTIONS(5), }, - [404] = { - [ts_builtin_sym_end] = ACTIONS(1356), - [sym_identifier] = ACTIONS(1354), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [anon_sym_LPAREN2] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym___extension__] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym___attribute__] = ACTIONS(1354), - [anon_sym___scanf] = ACTIONS(1354), - [anon_sym___printf] = ACTIONS(1354), - [anon_sym___read_mostly] = ACTIONS(1354), - [anon_sym___must_hold] = ACTIONS(1354), - [anon_sym___ro_after_init] = ACTIONS(1354), - [anon_sym___noreturn] = ACTIONS(1354), - [anon_sym___cold] = ACTIONS(1354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), - [anon_sym___declspec] = ACTIONS(1354), - [anon_sym___init] = ACTIONS(1354), - [anon_sym___exit] = ACTIONS(1354), - [anon_sym___cdecl] = ACTIONS(1354), - [anon_sym___clrcall] = ACTIONS(1354), - [anon_sym___stdcall] = ACTIONS(1354), - [anon_sym___fastcall] = ACTIONS(1354), - [anon_sym___thiscall] = ACTIONS(1354), - [anon_sym___vectorcall] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym___inline] = ACTIONS(1354), - [anon_sym___inline__] = ACTIONS(1354), - [anon_sym___forceinline] = ACTIONS(1354), - [anon_sym_thread_local] = ACTIONS(1354), - [anon_sym___thread] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_constexpr] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym___restrict__] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [anon_sym__Noreturn] = ACTIONS(1354), - [anon_sym_noreturn] = ACTIONS(1354), - [anon_sym_alignas] = ACTIONS(1354), - [anon_sym__Alignas] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym___alignof__] = ACTIONS(1354), - [anon_sym___alignof] = ACTIONS(1354), - [anon_sym__alignof] = ACTIONS(1354), - [anon_sym_alignof] = ACTIONS(1354), - [anon_sym__Alignof] = ACTIONS(1354), - [anon_sym_offsetof] = ACTIONS(1354), - [anon_sym__Generic] = ACTIONS(1354), - [anon_sym_asm] = ACTIONS(1354), - [anon_sym___asm__] = ACTIONS(1354), - [sym_number_literal] = ACTIONS(1356), - [anon_sym_L_SQUOTE] = ACTIONS(1356), - [anon_sym_u_SQUOTE] = ACTIONS(1356), - [anon_sym_U_SQUOTE] = ACTIONS(1356), - [anon_sym_u8_SQUOTE] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_L_DQUOTE] = ACTIONS(1356), - [anon_sym_u_DQUOTE] = ACTIONS(1356), - [anon_sym_U_DQUOTE] = ACTIONS(1356), - [anon_sym_u8_DQUOTE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_NULL] = ACTIONS(1354), - [anon_sym_nullptr] = ACTIONS(1354), + [337] = { + [sym_identifier] = ACTIONS(1470), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1470), + [aux_sym_preproc_def_token1] = ACTIONS(1470), + [aux_sym_preproc_if_token1] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1470), + [sym_preproc_directive] = ACTIONS(1470), + [anon_sym_LPAREN2] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym___extension__] = ACTIONS(1470), + [anon_sym_typedef] = ACTIONS(1470), + [anon_sym_extern] = ACTIONS(1470), + [anon_sym___attribute__] = ACTIONS(1470), + [anon_sym___scanf] = ACTIONS(1470), + [anon_sym___printf] = ACTIONS(1470), + [anon_sym___read_mostly] = ACTIONS(1470), + [anon_sym___must_hold] = ACTIONS(1470), + [anon_sym___ro_after_init] = ACTIONS(1470), + [anon_sym___noreturn] = ACTIONS(1470), + [anon_sym___cold] = ACTIONS(1470), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1472), + [anon_sym___declspec] = ACTIONS(1470), + [anon_sym___init] = ACTIONS(1470), + [anon_sym___exit] = ACTIONS(1470), + [anon_sym___cdecl] = ACTIONS(1470), + [anon_sym___clrcall] = ACTIONS(1470), + [anon_sym___stdcall] = ACTIONS(1470), + [anon_sym___fastcall] = ACTIONS(1470), + [anon_sym___thiscall] = ACTIONS(1470), + [anon_sym___vectorcall] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_RBRACE] = ACTIONS(1472), + [anon_sym_signed] = ACTIONS(1470), + [anon_sym_unsigned] = ACTIONS(1470), + [anon_sym_long] = ACTIONS(1470), + [anon_sym_short] = ACTIONS(1470), + [anon_sym_static] = ACTIONS(1470), + [anon_sym_auto] = ACTIONS(1470), + [anon_sym_register] = ACTIONS(1470), + [anon_sym_inline] = ACTIONS(1470), + [anon_sym___inline] = ACTIONS(1470), + [anon_sym___inline__] = ACTIONS(1470), + [anon_sym___forceinline] = ACTIONS(1470), + [anon_sym_thread_local] = ACTIONS(1470), + [anon_sym___thread] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_constexpr] = ACTIONS(1470), + [anon_sym_volatile] = ACTIONS(1470), + [anon_sym_restrict] = ACTIONS(1470), + [anon_sym___restrict__] = ACTIONS(1470), + [anon_sym__Atomic] = ACTIONS(1470), + [anon_sym__Noreturn] = ACTIONS(1470), + [anon_sym_noreturn] = ACTIONS(1470), + [anon_sym_alignas] = ACTIONS(1470), + [anon_sym__Alignas] = ACTIONS(1470), + [sym_primitive_type] = ACTIONS(1470), + [anon_sym_enum] = ACTIONS(1470), + [anon_sym_struct] = ACTIONS(1470), + [anon_sym_union] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_case] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_do] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_continue] = ACTIONS(1470), + [anon_sym_goto] = ACTIONS(1470), + [anon_sym___try] = ACTIONS(1470), + [anon_sym___leave] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_sizeof] = ACTIONS(1470), + [anon_sym___alignof__] = ACTIONS(1470), + [anon_sym___alignof] = ACTIONS(1470), + [anon_sym__alignof] = ACTIONS(1470), + [anon_sym_alignof] = ACTIONS(1470), + [anon_sym__Alignof] = ACTIONS(1470), + [anon_sym_offsetof] = ACTIONS(1470), + [anon_sym__Generic] = ACTIONS(1470), + [anon_sym_asm] = ACTIONS(1470), + [anon_sym___asm__] = ACTIONS(1470), + [sym_number_literal] = ACTIONS(1472), + [anon_sym_L_SQUOTE] = ACTIONS(1472), + [anon_sym_u_SQUOTE] = ACTIONS(1472), + [anon_sym_U_SQUOTE] = ACTIONS(1472), + [anon_sym_u8_SQUOTE] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_L_DQUOTE] = ACTIONS(1472), + [anon_sym_u_DQUOTE] = ACTIONS(1472), + [anon_sym_U_DQUOTE] = ACTIONS(1472), + [anon_sym_u8_DQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [anon_sym_NULL] = ACTIONS(1470), + [anon_sym_nullptr] = ACTIONS(1470), [sym_comment] = ACTIONS(5), }, - [405] = { - [ts_builtin_sym_end] = ACTIONS(1434), - [sym_identifier] = ACTIONS(1432), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1432), - [aux_sym_preproc_def_token1] = ACTIONS(1432), - [aux_sym_preproc_if_token1] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), - [sym_preproc_directive] = ACTIONS(1432), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym___extension__] = ACTIONS(1432), - [anon_sym_typedef] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1432), - [anon_sym___attribute__] = ACTIONS(1432), - [anon_sym___scanf] = ACTIONS(1432), - [anon_sym___printf] = ACTIONS(1432), - [anon_sym___read_mostly] = ACTIONS(1432), - [anon_sym___must_hold] = ACTIONS(1432), - [anon_sym___ro_after_init] = ACTIONS(1432), - [anon_sym___noreturn] = ACTIONS(1432), - [anon_sym___cold] = ACTIONS(1432), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), - [anon_sym___declspec] = ACTIONS(1432), - [anon_sym___init] = ACTIONS(1432), - [anon_sym___exit] = ACTIONS(1432), - [anon_sym___cdecl] = ACTIONS(1432), - [anon_sym___clrcall] = ACTIONS(1432), - [anon_sym___stdcall] = ACTIONS(1432), - [anon_sym___fastcall] = ACTIONS(1432), - [anon_sym___thiscall] = ACTIONS(1432), - [anon_sym___vectorcall] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_signed] = ACTIONS(1432), - [anon_sym_unsigned] = ACTIONS(1432), - [anon_sym_long] = ACTIONS(1432), - [anon_sym_short] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_auto] = ACTIONS(1432), - [anon_sym_register] = ACTIONS(1432), - [anon_sym_inline] = ACTIONS(1432), - [anon_sym___inline] = ACTIONS(1432), - [anon_sym___inline__] = ACTIONS(1432), - [anon_sym___forceinline] = ACTIONS(1432), - [anon_sym_thread_local] = ACTIONS(1432), - [anon_sym___thread] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_constexpr] = ACTIONS(1432), - [anon_sym_volatile] = ACTIONS(1432), - [anon_sym_restrict] = ACTIONS(1432), - [anon_sym___restrict__] = ACTIONS(1432), - [anon_sym__Atomic] = ACTIONS(1432), - [anon_sym__Noreturn] = ACTIONS(1432), - [anon_sym_noreturn] = ACTIONS(1432), - [anon_sym_alignas] = ACTIONS(1432), - [anon_sym__Alignas] = ACTIONS(1432), - [sym_primitive_type] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_struct] = ACTIONS(1432), - [anon_sym_union] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_case] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_goto] = ACTIONS(1432), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_sizeof] = ACTIONS(1432), - [anon_sym___alignof__] = ACTIONS(1432), - [anon_sym___alignof] = ACTIONS(1432), - [anon_sym__alignof] = ACTIONS(1432), - [anon_sym_alignof] = ACTIONS(1432), - [anon_sym__Alignof] = ACTIONS(1432), - [anon_sym_offsetof] = ACTIONS(1432), - [anon_sym__Generic] = ACTIONS(1432), - [anon_sym_asm] = ACTIONS(1432), - [anon_sym___asm__] = ACTIONS(1432), - [sym_number_literal] = ACTIONS(1434), - [anon_sym_L_SQUOTE] = ACTIONS(1434), - [anon_sym_u_SQUOTE] = ACTIONS(1434), - [anon_sym_U_SQUOTE] = ACTIONS(1434), - [anon_sym_u8_SQUOTE] = ACTIONS(1434), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_L_DQUOTE] = ACTIONS(1434), - [anon_sym_u_DQUOTE] = ACTIONS(1434), - [anon_sym_U_DQUOTE] = ACTIONS(1434), - [anon_sym_u8_DQUOTE] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(1434), - [sym_true] = ACTIONS(1432), - [sym_false] = ACTIONS(1432), - [anon_sym_NULL] = ACTIONS(1432), - [anon_sym_nullptr] = ACTIONS(1432), + [338] = { + [sym_identifier] = ACTIONS(1390), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), + [sym_preproc_directive] = ACTIONS(1390), + [anon_sym_LPAREN2] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym___extension__] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym___attribute__] = ACTIONS(1390), + [anon_sym___scanf] = ACTIONS(1390), + [anon_sym___printf] = ACTIONS(1390), + [anon_sym___read_mostly] = ACTIONS(1390), + [anon_sym___must_hold] = ACTIONS(1390), + [anon_sym___ro_after_init] = ACTIONS(1390), + [anon_sym___noreturn] = ACTIONS(1390), + [anon_sym___cold] = ACTIONS(1390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), + [anon_sym___declspec] = ACTIONS(1390), + [anon_sym___init] = ACTIONS(1390), + [anon_sym___exit] = ACTIONS(1390), + [anon_sym___cdecl] = ACTIONS(1390), + [anon_sym___clrcall] = ACTIONS(1390), + [anon_sym___stdcall] = ACTIONS(1390), + [anon_sym___fastcall] = ACTIONS(1390), + [anon_sym___thiscall] = ACTIONS(1390), + [anon_sym___vectorcall] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_RBRACE] = ACTIONS(1392), + [anon_sym_signed] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_auto] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym___inline] = ACTIONS(1390), + [anon_sym___inline__] = ACTIONS(1390), + [anon_sym___forceinline] = ACTIONS(1390), + [anon_sym_thread_local] = ACTIONS(1390), + [anon_sym___thread] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_constexpr] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_restrict] = ACTIONS(1390), + [anon_sym___restrict__] = ACTIONS(1390), + [anon_sym__Atomic] = ACTIONS(1390), + [anon_sym__Noreturn] = ACTIONS(1390), + [anon_sym_noreturn] = ACTIONS(1390), + [anon_sym_alignas] = ACTIONS(1390), + [anon_sym__Alignas] = ACTIONS(1390), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_goto] = ACTIONS(1390), + [anon_sym___try] = ACTIONS(1390), + [anon_sym___leave] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym___alignof__] = ACTIONS(1390), + [anon_sym___alignof] = ACTIONS(1390), + [anon_sym__alignof] = ACTIONS(1390), + [anon_sym_alignof] = ACTIONS(1390), + [anon_sym__Alignof] = ACTIONS(1390), + [anon_sym_offsetof] = ACTIONS(1390), + [anon_sym__Generic] = ACTIONS(1390), + [anon_sym_asm] = ACTIONS(1390), + [anon_sym___asm__] = ACTIONS(1390), + [sym_number_literal] = ACTIONS(1392), + [anon_sym_L_SQUOTE] = ACTIONS(1392), + [anon_sym_u_SQUOTE] = ACTIONS(1392), + [anon_sym_U_SQUOTE] = ACTIONS(1392), + [anon_sym_u8_SQUOTE] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_L_DQUOTE] = ACTIONS(1392), + [anon_sym_u_DQUOTE] = ACTIONS(1392), + [anon_sym_U_DQUOTE] = ACTIONS(1392), + [anon_sym_u8_DQUOTE] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [anon_sym_NULL] = ACTIONS(1390), + [anon_sym_nullptr] = ACTIONS(1390), [sym_comment] = ACTIONS(5), }, - [406] = { - [ts_builtin_sym_end] = ACTIONS(1470), - [sym_identifier] = ACTIONS(1468), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1468), - [aux_sym_preproc_def_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), - [sym_preproc_directive] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym___extension__] = ACTIONS(1468), - [anon_sym_typedef] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1468), - [anon_sym___attribute__] = ACTIONS(1468), - [anon_sym___scanf] = ACTIONS(1468), - [anon_sym___printf] = ACTIONS(1468), - [anon_sym___read_mostly] = ACTIONS(1468), - [anon_sym___must_hold] = ACTIONS(1468), - [anon_sym___ro_after_init] = ACTIONS(1468), - [anon_sym___noreturn] = ACTIONS(1468), - [anon_sym___cold] = ACTIONS(1468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), - [anon_sym___declspec] = ACTIONS(1468), - [anon_sym___init] = ACTIONS(1468), - [anon_sym___exit] = ACTIONS(1468), - [anon_sym___cdecl] = ACTIONS(1468), - [anon_sym___clrcall] = ACTIONS(1468), - [anon_sym___stdcall] = ACTIONS(1468), - [anon_sym___fastcall] = ACTIONS(1468), - [anon_sym___thiscall] = ACTIONS(1468), - [anon_sym___vectorcall] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_signed] = ACTIONS(1468), - [anon_sym_unsigned] = ACTIONS(1468), - [anon_sym_long] = ACTIONS(1468), - [anon_sym_short] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_auto] = ACTIONS(1468), - [anon_sym_register] = ACTIONS(1468), - [anon_sym_inline] = ACTIONS(1468), - [anon_sym___inline] = ACTIONS(1468), - [anon_sym___inline__] = ACTIONS(1468), - [anon_sym___forceinline] = ACTIONS(1468), - [anon_sym_thread_local] = ACTIONS(1468), - [anon_sym___thread] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_constexpr] = ACTIONS(1468), - [anon_sym_volatile] = ACTIONS(1468), - [anon_sym_restrict] = ACTIONS(1468), - [anon_sym___restrict__] = ACTIONS(1468), - [anon_sym__Atomic] = ACTIONS(1468), - [anon_sym__Noreturn] = ACTIONS(1468), - [anon_sym_noreturn] = ACTIONS(1468), - [anon_sym_alignas] = ACTIONS(1468), - [anon_sym__Alignas] = ACTIONS(1468), - [sym_primitive_type] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_case] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_goto] = ACTIONS(1468), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_sizeof] = ACTIONS(1468), - [anon_sym___alignof__] = ACTIONS(1468), - [anon_sym___alignof] = ACTIONS(1468), - [anon_sym__alignof] = ACTIONS(1468), - [anon_sym_alignof] = ACTIONS(1468), - [anon_sym__Alignof] = ACTIONS(1468), - [anon_sym_offsetof] = ACTIONS(1468), - [anon_sym__Generic] = ACTIONS(1468), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym___asm__] = ACTIONS(1468), - [sym_number_literal] = ACTIONS(1470), - [anon_sym_L_SQUOTE] = ACTIONS(1470), - [anon_sym_u_SQUOTE] = ACTIONS(1470), - [anon_sym_U_SQUOTE] = ACTIONS(1470), - [anon_sym_u8_SQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_L_DQUOTE] = ACTIONS(1470), - [anon_sym_u_DQUOTE] = ACTIONS(1470), - [anon_sym_U_DQUOTE] = ACTIONS(1470), - [anon_sym_u8_DQUOTE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [anon_sym_NULL] = ACTIONS(1468), - [anon_sym_nullptr] = ACTIONS(1468), + [339] = { + [sym_identifier] = ACTIONS(1406), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1406), + [aux_sym_preproc_def_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), + [sym_preproc_directive] = ACTIONS(1406), + [anon_sym_LPAREN2] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym___extension__] = ACTIONS(1406), + [anon_sym_typedef] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym___attribute__] = ACTIONS(1406), + [anon_sym___scanf] = ACTIONS(1406), + [anon_sym___printf] = ACTIONS(1406), + [anon_sym___read_mostly] = ACTIONS(1406), + [anon_sym___must_hold] = ACTIONS(1406), + [anon_sym___ro_after_init] = ACTIONS(1406), + [anon_sym___noreturn] = ACTIONS(1406), + [anon_sym___cold] = ACTIONS(1406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), + [anon_sym___declspec] = ACTIONS(1406), + [anon_sym___init] = ACTIONS(1406), + [anon_sym___exit] = ACTIONS(1406), + [anon_sym___cdecl] = ACTIONS(1406), + [anon_sym___clrcall] = ACTIONS(1406), + [anon_sym___stdcall] = ACTIONS(1406), + [anon_sym___fastcall] = ACTIONS(1406), + [anon_sym___thiscall] = ACTIONS(1406), + [anon_sym___vectorcall] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_RBRACE] = ACTIONS(1408), + [anon_sym_signed] = ACTIONS(1406), + [anon_sym_unsigned] = ACTIONS(1406), + [anon_sym_long] = ACTIONS(1406), + [anon_sym_short] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_auto] = ACTIONS(1406), + [anon_sym_register] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym___inline] = ACTIONS(1406), + [anon_sym___inline__] = ACTIONS(1406), + [anon_sym___forceinline] = ACTIONS(1406), + [anon_sym_thread_local] = ACTIONS(1406), + [anon_sym___thread] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1406), + [anon_sym_constexpr] = ACTIONS(1406), + [anon_sym_volatile] = ACTIONS(1406), + [anon_sym_restrict] = ACTIONS(1406), + [anon_sym___restrict__] = ACTIONS(1406), + [anon_sym__Atomic] = ACTIONS(1406), + [anon_sym__Noreturn] = ACTIONS(1406), + [anon_sym_noreturn] = ACTIONS(1406), + [anon_sym_alignas] = ACTIONS(1406), + [anon_sym__Alignas] = ACTIONS(1406), + [sym_primitive_type] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_switch] = ACTIONS(1406), + [anon_sym_case] = ACTIONS(1406), + [anon_sym_default] = ACTIONS(1406), + [anon_sym_while] = ACTIONS(1406), + [anon_sym_do] = ACTIONS(1406), + [anon_sym_for] = ACTIONS(1406), + [anon_sym_return] = ACTIONS(1406), + [anon_sym_break] = ACTIONS(1406), + [anon_sym_continue] = ACTIONS(1406), + [anon_sym_goto] = ACTIONS(1406), + [anon_sym___try] = ACTIONS(1406), + [anon_sym___leave] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1406), + [anon_sym___alignof__] = ACTIONS(1406), + [anon_sym___alignof] = ACTIONS(1406), + [anon_sym__alignof] = ACTIONS(1406), + [anon_sym_alignof] = ACTIONS(1406), + [anon_sym__Alignof] = ACTIONS(1406), + [anon_sym_offsetof] = ACTIONS(1406), + [anon_sym__Generic] = ACTIONS(1406), + [anon_sym_asm] = ACTIONS(1406), + [anon_sym___asm__] = ACTIONS(1406), + [sym_number_literal] = ACTIONS(1408), + [anon_sym_L_SQUOTE] = ACTIONS(1408), + [anon_sym_u_SQUOTE] = ACTIONS(1408), + [anon_sym_U_SQUOTE] = ACTIONS(1408), + [anon_sym_u8_SQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_L_DQUOTE] = ACTIONS(1408), + [anon_sym_u_DQUOTE] = ACTIONS(1408), + [anon_sym_U_DQUOTE] = ACTIONS(1408), + [anon_sym_u8_DQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [sym_true] = ACTIONS(1406), + [sym_false] = ACTIONS(1406), + [anon_sym_NULL] = ACTIONS(1406), + [anon_sym_nullptr] = ACTIONS(1406), [sym_comment] = ACTIONS(5), }, - [407] = { - [ts_builtin_sym_end] = ACTIONS(1410), - [sym_identifier] = ACTIONS(1408), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1408), - [aux_sym_preproc_def_token1] = ACTIONS(1408), - [aux_sym_preproc_if_token1] = ACTIONS(1408), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1408), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1408), - [sym_preproc_directive] = ACTIONS(1408), - [anon_sym_LPAREN2] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1410), - [anon_sym_TILDE] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_STAR] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym___extension__] = ACTIONS(1408), - [anon_sym_typedef] = ACTIONS(1408), - [anon_sym_extern] = ACTIONS(1408), - [anon_sym___attribute__] = ACTIONS(1408), - [anon_sym___scanf] = ACTIONS(1408), - [anon_sym___printf] = ACTIONS(1408), - [anon_sym___read_mostly] = ACTIONS(1408), - [anon_sym___must_hold] = ACTIONS(1408), - [anon_sym___ro_after_init] = ACTIONS(1408), - [anon_sym___noreturn] = ACTIONS(1408), - [anon_sym___cold] = ACTIONS(1408), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1410), - [anon_sym___declspec] = ACTIONS(1408), - [anon_sym___init] = ACTIONS(1408), - [anon_sym___exit] = ACTIONS(1408), - [anon_sym___cdecl] = ACTIONS(1408), - [anon_sym___clrcall] = ACTIONS(1408), - [anon_sym___stdcall] = ACTIONS(1408), - [anon_sym___fastcall] = ACTIONS(1408), - [anon_sym___thiscall] = ACTIONS(1408), - [anon_sym___vectorcall] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_signed] = ACTIONS(1408), - [anon_sym_unsigned] = ACTIONS(1408), - [anon_sym_long] = ACTIONS(1408), - [anon_sym_short] = ACTIONS(1408), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_auto] = ACTIONS(1408), - [anon_sym_register] = ACTIONS(1408), - [anon_sym_inline] = ACTIONS(1408), - [anon_sym___inline] = ACTIONS(1408), - [anon_sym___inline__] = ACTIONS(1408), - [anon_sym___forceinline] = ACTIONS(1408), - [anon_sym_thread_local] = ACTIONS(1408), - [anon_sym___thread] = ACTIONS(1408), - [anon_sym_const] = ACTIONS(1408), - [anon_sym_constexpr] = ACTIONS(1408), - [anon_sym_volatile] = ACTIONS(1408), - [anon_sym_restrict] = ACTIONS(1408), - [anon_sym___restrict__] = ACTIONS(1408), - [anon_sym__Atomic] = ACTIONS(1408), - [anon_sym__Noreturn] = ACTIONS(1408), - [anon_sym_noreturn] = ACTIONS(1408), - [anon_sym_alignas] = ACTIONS(1408), - [anon_sym__Alignas] = ACTIONS(1408), - [sym_primitive_type] = ACTIONS(1408), - [anon_sym_enum] = ACTIONS(1408), - [anon_sym_struct] = ACTIONS(1408), - [anon_sym_union] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1408), - [anon_sym_switch] = ACTIONS(1408), - [anon_sym_case] = ACTIONS(1408), - [anon_sym_default] = ACTIONS(1408), - [anon_sym_while] = ACTIONS(1408), - [anon_sym_do] = ACTIONS(1408), - [anon_sym_for] = ACTIONS(1408), - [anon_sym_return] = ACTIONS(1408), - [anon_sym_break] = ACTIONS(1408), - [anon_sym_continue] = ACTIONS(1408), - [anon_sym_goto] = ACTIONS(1408), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_sizeof] = ACTIONS(1408), - [anon_sym___alignof__] = ACTIONS(1408), - [anon_sym___alignof] = ACTIONS(1408), - [anon_sym__alignof] = ACTIONS(1408), - [anon_sym_alignof] = ACTIONS(1408), - [anon_sym__Alignof] = ACTIONS(1408), - [anon_sym_offsetof] = ACTIONS(1408), - [anon_sym__Generic] = ACTIONS(1408), - [anon_sym_asm] = ACTIONS(1408), - [anon_sym___asm__] = ACTIONS(1408), - [sym_number_literal] = ACTIONS(1410), - [anon_sym_L_SQUOTE] = ACTIONS(1410), - [anon_sym_u_SQUOTE] = ACTIONS(1410), - [anon_sym_U_SQUOTE] = ACTIONS(1410), - [anon_sym_u8_SQUOTE] = ACTIONS(1410), - [anon_sym_SQUOTE] = ACTIONS(1410), - [anon_sym_L_DQUOTE] = ACTIONS(1410), - [anon_sym_u_DQUOTE] = ACTIONS(1410), - [anon_sym_U_DQUOTE] = ACTIONS(1410), - [anon_sym_u8_DQUOTE] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [anon_sym_NULL] = ACTIONS(1408), - [anon_sym_nullptr] = ACTIONS(1408), + [340] = { + [sym_identifier] = ACTIONS(1502), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1502), + [aux_sym_preproc_def_token1] = ACTIONS(1502), + [aux_sym_preproc_if_token1] = ACTIONS(1502), + [aux_sym_preproc_if_token2] = ACTIONS(1502), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1502), + [sym_preproc_directive] = ACTIONS(1502), + [anon_sym_LPAREN2] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_TILDE] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_PLUS] = ACTIONS(1502), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym___extension__] = ACTIONS(1502), + [anon_sym_typedef] = ACTIONS(1502), + [anon_sym_extern] = ACTIONS(1502), + [anon_sym___attribute__] = ACTIONS(1502), + [anon_sym___scanf] = ACTIONS(1502), + [anon_sym___printf] = ACTIONS(1502), + [anon_sym___read_mostly] = ACTIONS(1502), + [anon_sym___must_hold] = ACTIONS(1502), + [anon_sym___ro_after_init] = ACTIONS(1502), + [anon_sym___noreturn] = ACTIONS(1502), + [anon_sym___cold] = ACTIONS(1502), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1505), + [anon_sym___declspec] = ACTIONS(1502), + [anon_sym___init] = ACTIONS(1502), + [anon_sym___exit] = ACTIONS(1502), + [anon_sym___cdecl] = ACTIONS(1502), + [anon_sym___clrcall] = ACTIONS(1502), + [anon_sym___stdcall] = ACTIONS(1502), + [anon_sym___fastcall] = ACTIONS(1502), + [anon_sym___thiscall] = ACTIONS(1502), + [anon_sym___vectorcall] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_signed] = ACTIONS(1502), + [anon_sym_unsigned] = ACTIONS(1502), + [anon_sym_long] = ACTIONS(1502), + [anon_sym_short] = ACTIONS(1502), + [anon_sym_static] = ACTIONS(1502), + [anon_sym_auto] = ACTIONS(1502), + [anon_sym_register] = ACTIONS(1502), + [anon_sym_inline] = ACTIONS(1502), + [anon_sym___inline] = ACTIONS(1502), + [anon_sym___inline__] = ACTIONS(1502), + [anon_sym___forceinline] = ACTIONS(1502), + [anon_sym_thread_local] = ACTIONS(1502), + [anon_sym___thread] = ACTIONS(1502), + [anon_sym_const] = ACTIONS(1502), + [anon_sym_constexpr] = ACTIONS(1502), + [anon_sym_volatile] = ACTIONS(1502), + [anon_sym_restrict] = ACTIONS(1502), + [anon_sym___restrict__] = ACTIONS(1502), + [anon_sym__Atomic] = ACTIONS(1502), + [anon_sym__Noreturn] = ACTIONS(1502), + [anon_sym_noreturn] = ACTIONS(1502), + [anon_sym_alignas] = ACTIONS(1502), + [anon_sym__Alignas] = ACTIONS(1502), + [sym_primitive_type] = ACTIONS(1502), + [anon_sym_enum] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1502), + [anon_sym_union] = ACTIONS(1502), + [anon_sym_if] = ACTIONS(1502), + [anon_sym_switch] = ACTIONS(1502), + [anon_sym_case] = ACTIONS(1502), + [anon_sym_default] = ACTIONS(1502), + [anon_sym_while] = ACTIONS(1502), + [anon_sym_do] = ACTIONS(1502), + [anon_sym_for] = ACTIONS(1502), + [anon_sym_return] = ACTIONS(1502), + [anon_sym_break] = ACTIONS(1502), + [anon_sym_continue] = ACTIONS(1502), + [anon_sym_goto] = ACTIONS(1502), + [anon_sym___try] = ACTIONS(1502), + [anon_sym___leave] = ACTIONS(1502), + [anon_sym_DASH_DASH] = ACTIONS(1505), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_sizeof] = ACTIONS(1502), + [anon_sym___alignof__] = ACTIONS(1502), + [anon_sym___alignof] = ACTIONS(1502), + [anon_sym__alignof] = ACTIONS(1502), + [anon_sym_alignof] = ACTIONS(1502), + [anon_sym__Alignof] = ACTIONS(1502), + [anon_sym_offsetof] = ACTIONS(1502), + [anon_sym__Generic] = ACTIONS(1502), + [anon_sym_asm] = ACTIONS(1502), + [anon_sym___asm__] = ACTIONS(1502), + [sym_number_literal] = ACTIONS(1505), + [anon_sym_L_SQUOTE] = ACTIONS(1505), + [anon_sym_u_SQUOTE] = ACTIONS(1505), + [anon_sym_U_SQUOTE] = ACTIONS(1505), + [anon_sym_u8_SQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1505), + [anon_sym_L_DQUOTE] = ACTIONS(1505), + [anon_sym_u_DQUOTE] = ACTIONS(1505), + [anon_sym_U_DQUOTE] = ACTIONS(1505), + [anon_sym_u8_DQUOTE] = ACTIONS(1505), + [anon_sym_DQUOTE] = ACTIONS(1505), + [sym_true] = ACTIONS(1502), + [sym_false] = ACTIONS(1502), + [anon_sym_NULL] = ACTIONS(1502), + [anon_sym_nullptr] = ACTIONS(1502), [sym_comment] = ACTIONS(5), }, - [408] = { - [ts_builtin_sym_end] = ACTIONS(1454), - [sym_identifier] = ACTIONS(1452), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_include_token1] = ACTIONS(1452), - [aux_sym_preproc_def_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), - [sym_preproc_directive] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym___extension__] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym___attribute__] = ACTIONS(1452), - [anon_sym___scanf] = ACTIONS(1452), - [anon_sym___printf] = ACTIONS(1452), - [anon_sym___read_mostly] = ACTIONS(1452), - [anon_sym___must_hold] = ACTIONS(1452), - [anon_sym___ro_after_init] = ACTIONS(1452), - [anon_sym___noreturn] = ACTIONS(1452), - [anon_sym___cold] = ACTIONS(1452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym___declspec] = ACTIONS(1452), - [anon_sym___init] = ACTIONS(1452), - [anon_sym___exit] = ACTIONS(1452), - [anon_sym___cdecl] = ACTIONS(1452), - [anon_sym___clrcall] = ACTIONS(1452), - [anon_sym___stdcall] = ACTIONS(1452), - [anon_sym___fastcall] = ACTIONS(1452), - [anon_sym___thiscall] = ACTIONS(1452), - [anon_sym___vectorcall] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_signed] = ACTIONS(1452), - [anon_sym_unsigned] = ACTIONS(1452), - [anon_sym_long] = ACTIONS(1452), - [anon_sym_short] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_auto] = ACTIONS(1452), - [anon_sym_register] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym___inline] = ACTIONS(1452), - [anon_sym___inline__] = ACTIONS(1452), - [anon_sym___forceinline] = ACTIONS(1452), - [anon_sym_thread_local] = ACTIONS(1452), - [anon_sym___thread] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_constexpr] = ACTIONS(1452), - [anon_sym_volatile] = ACTIONS(1452), - [anon_sym_restrict] = ACTIONS(1452), - [anon_sym___restrict__] = ACTIONS(1452), - [anon_sym__Atomic] = ACTIONS(1452), - [anon_sym__Noreturn] = ACTIONS(1452), - [anon_sym_noreturn] = ACTIONS(1452), - [anon_sym_alignas] = ACTIONS(1452), - [anon_sym__Alignas] = ACTIONS(1452), - [sym_primitive_type] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_case] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_goto] = ACTIONS(1452), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_sizeof] = ACTIONS(1452), - [anon_sym___alignof__] = ACTIONS(1452), - [anon_sym___alignof] = ACTIONS(1452), - [anon_sym__alignof] = ACTIONS(1452), - [anon_sym_alignof] = ACTIONS(1452), - [anon_sym__Alignof] = ACTIONS(1452), - [anon_sym_offsetof] = ACTIONS(1452), - [anon_sym__Generic] = ACTIONS(1452), - [anon_sym_asm] = ACTIONS(1452), - [anon_sym___asm__] = ACTIONS(1452), - [sym_number_literal] = ACTIONS(1454), - [anon_sym_L_SQUOTE] = ACTIONS(1454), - [anon_sym_u_SQUOTE] = ACTIONS(1454), - [anon_sym_U_SQUOTE] = ACTIONS(1454), - [anon_sym_u8_SQUOTE] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_L_DQUOTE] = ACTIONS(1454), - [anon_sym_u_DQUOTE] = ACTIONS(1454), - [anon_sym_U_DQUOTE] = ACTIONS(1454), - [anon_sym_u8_DQUOTE] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym_true] = ACTIONS(1452), - [sym_false] = ACTIONS(1452), - [anon_sym_NULL] = ACTIONS(1452), - [anon_sym_nullptr] = ACTIONS(1452), + [341] = { + [sym_identifier] = ACTIONS(1410), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1410), + [aux_sym_preproc_def_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), + [sym_preproc_directive] = ACTIONS(1410), + [anon_sym_LPAREN2] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym___extension__] = ACTIONS(1410), + [anon_sym_typedef] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym___attribute__] = ACTIONS(1410), + [anon_sym___scanf] = ACTIONS(1410), + [anon_sym___printf] = ACTIONS(1410), + [anon_sym___read_mostly] = ACTIONS(1410), + [anon_sym___must_hold] = ACTIONS(1410), + [anon_sym___ro_after_init] = ACTIONS(1410), + [anon_sym___noreturn] = ACTIONS(1410), + [anon_sym___cold] = ACTIONS(1410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), + [anon_sym___declspec] = ACTIONS(1410), + [anon_sym___init] = ACTIONS(1410), + [anon_sym___exit] = ACTIONS(1410), + [anon_sym___cdecl] = ACTIONS(1410), + [anon_sym___clrcall] = ACTIONS(1410), + [anon_sym___stdcall] = ACTIONS(1410), + [anon_sym___fastcall] = ACTIONS(1410), + [anon_sym___thiscall] = ACTIONS(1410), + [anon_sym___vectorcall] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_RBRACE] = ACTIONS(1412), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_auto] = ACTIONS(1410), + [anon_sym_register] = ACTIONS(1410), + [anon_sym_inline] = ACTIONS(1410), + [anon_sym___inline] = ACTIONS(1410), + [anon_sym___inline__] = ACTIONS(1410), + [anon_sym___forceinline] = ACTIONS(1410), + [anon_sym_thread_local] = ACTIONS(1410), + [anon_sym___thread] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_constexpr] = ACTIONS(1410), + [anon_sym_volatile] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), + [anon_sym___restrict__] = ACTIONS(1410), + [anon_sym__Atomic] = ACTIONS(1410), + [anon_sym__Noreturn] = ACTIONS(1410), + [anon_sym_noreturn] = ACTIONS(1410), + [anon_sym_alignas] = ACTIONS(1410), + [anon_sym__Alignas] = ACTIONS(1410), + [sym_primitive_type] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_switch] = ACTIONS(1410), + [anon_sym_case] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_do] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_goto] = ACTIONS(1410), + [anon_sym___try] = ACTIONS(1410), + [anon_sym___leave] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_sizeof] = ACTIONS(1410), + [anon_sym___alignof__] = ACTIONS(1410), + [anon_sym___alignof] = ACTIONS(1410), + [anon_sym__alignof] = ACTIONS(1410), + [anon_sym_alignof] = ACTIONS(1410), + [anon_sym__Alignof] = ACTIONS(1410), + [anon_sym_offsetof] = ACTIONS(1410), + [anon_sym__Generic] = ACTIONS(1410), + [anon_sym_asm] = ACTIONS(1410), + [anon_sym___asm__] = ACTIONS(1410), + [sym_number_literal] = ACTIONS(1412), + [anon_sym_L_SQUOTE] = ACTIONS(1412), + [anon_sym_u_SQUOTE] = ACTIONS(1412), + [anon_sym_U_SQUOTE] = ACTIONS(1412), + [anon_sym_u8_SQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_L_DQUOTE] = ACTIONS(1412), + [anon_sym_u_DQUOTE] = ACTIONS(1412), + [anon_sym_U_DQUOTE] = ACTIONS(1412), + [anon_sym_u8_DQUOTE] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_true] = ACTIONS(1410), + [sym_false] = ACTIONS(1410), + [anon_sym_NULL] = ACTIONS(1410), + [anon_sym_nullptr] = ACTIONS(1410), [sym_comment] = ACTIONS(5), }, - [409] = { - [sym_expression] = STATE(1011), - [sym__string] = STATE(1048), - [sym_conditional_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1048), - [sym_pointer_expression] = STATE(1073), - [sym_unary_expression] = STATE(1048), - [sym_binary_expression] = STATE(1048), - [sym_update_expression] = STATE(1048), - [sym_cast_expression] = STATE(1048), - [sym_sizeof_expression] = STATE(1048), - [sym_alignof_expression] = STATE(1048), - [sym_offsetof_expression] = STATE(1048), - [sym_generic_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_gnu_asm_expression] = STATE(1048), - [sym_field_expression] = STATE(1073), - [sym_compound_literal_expression] = STATE(1048), - [sym_parenthesized_expression] = STATE(1073), - [sym_initializer_list] = STATE(1071), - [sym_char_literal] = STATE(1048), - [sym_concatenated_string] = STATE(1048), - [sym_string_literal] = STATE(915), - [sym_null] = STATE(1048), + [342] = { + [sym_identifier] = ACTIONS(1438), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1438), + [aux_sym_preproc_def_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token2] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), + [sym_preproc_directive] = ACTIONS(1438), + [anon_sym_LPAREN2] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_TILDE] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1440), + [anon_sym___extension__] = ACTIONS(1438), + [anon_sym_typedef] = ACTIONS(1438), + [anon_sym_extern] = ACTIONS(1438), + [anon_sym___attribute__] = ACTIONS(1438), + [anon_sym___scanf] = ACTIONS(1438), + [anon_sym___printf] = ACTIONS(1438), + [anon_sym___read_mostly] = ACTIONS(1438), + [anon_sym___must_hold] = ACTIONS(1438), + [anon_sym___ro_after_init] = ACTIONS(1438), + [anon_sym___noreturn] = ACTIONS(1438), + [anon_sym___cold] = ACTIONS(1438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), + [anon_sym___declspec] = ACTIONS(1438), + [anon_sym___init] = ACTIONS(1438), + [anon_sym___exit] = ACTIONS(1438), + [anon_sym___cdecl] = ACTIONS(1438), + [anon_sym___clrcall] = ACTIONS(1438), + [anon_sym___stdcall] = ACTIONS(1438), + [anon_sym___fastcall] = ACTIONS(1438), + [anon_sym___thiscall] = ACTIONS(1438), + [anon_sym___vectorcall] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_signed] = ACTIONS(1438), + [anon_sym_unsigned] = ACTIONS(1438), + [anon_sym_long] = ACTIONS(1438), + [anon_sym_short] = ACTIONS(1438), + [anon_sym_static] = ACTIONS(1438), + [anon_sym_auto] = ACTIONS(1438), + [anon_sym_register] = ACTIONS(1438), + [anon_sym_inline] = ACTIONS(1438), + [anon_sym___inline] = ACTIONS(1438), + [anon_sym___inline__] = ACTIONS(1438), + [anon_sym___forceinline] = ACTIONS(1438), + [anon_sym_thread_local] = ACTIONS(1438), + [anon_sym___thread] = ACTIONS(1438), + [anon_sym_const] = ACTIONS(1438), + [anon_sym_constexpr] = ACTIONS(1438), + [anon_sym_volatile] = ACTIONS(1438), + [anon_sym_restrict] = ACTIONS(1438), + [anon_sym___restrict__] = ACTIONS(1438), + [anon_sym__Atomic] = ACTIONS(1438), + [anon_sym__Noreturn] = ACTIONS(1438), + [anon_sym_noreturn] = ACTIONS(1438), + [anon_sym_alignas] = ACTIONS(1438), + [anon_sym__Alignas] = ACTIONS(1438), + [sym_primitive_type] = ACTIONS(1438), + [anon_sym_enum] = ACTIONS(1438), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_union] = ACTIONS(1438), + [anon_sym_if] = ACTIONS(1438), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1438), + [anon_sym_do] = ACTIONS(1438), + [anon_sym_for] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_goto] = ACTIONS(1438), + [anon_sym___try] = ACTIONS(1438), + [anon_sym___leave] = ACTIONS(1438), + [anon_sym_DASH_DASH] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1440), + [anon_sym_sizeof] = ACTIONS(1438), + [anon_sym___alignof__] = ACTIONS(1438), + [anon_sym___alignof] = ACTIONS(1438), + [anon_sym__alignof] = ACTIONS(1438), + [anon_sym_alignof] = ACTIONS(1438), + [anon_sym__Alignof] = ACTIONS(1438), + [anon_sym_offsetof] = ACTIONS(1438), + [anon_sym__Generic] = ACTIONS(1438), + [anon_sym_asm] = ACTIONS(1438), + [anon_sym___asm__] = ACTIONS(1438), + [sym_number_literal] = ACTIONS(1440), + [anon_sym_L_SQUOTE] = ACTIONS(1440), + [anon_sym_u_SQUOTE] = ACTIONS(1440), + [anon_sym_U_SQUOTE] = ACTIONS(1440), + [anon_sym_u8_SQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1440), + [anon_sym_L_DQUOTE] = ACTIONS(1440), + [anon_sym_u_DQUOTE] = ACTIONS(1440), + [anon_sym_U_DQUOTE] = ACTIONS(1440), + [anon_sym_u8_DQUOTE] = ACTIONS(1440), + [anon_sym_DQUOTE] = ACTIONS(1440), + [sym_true] = ACTIONS(1438), + [sym_false] = ACTIONS(1438), + [anon_sym_NULL] = ACTIONS(1438), + [anon_sym_nullptr] = ACTIONS(1438), + [sym_comment] = ACTIONS(5), + }, + [343] = { + [sym_identifier] = ACTIONS(1454), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1454), + [aux_sym_preproc_def_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token2] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), + [sym_preproc_directive] = ACTIONS(1454), + [anon_sym_LPAREN2] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym___extension__] = ACTIONS(1454), + [anon_sym_typedef] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym___attribute__] = ACTIONS(1454), + [anon_sym___scanf] = ACTIONS(1454), + [anon_sym___printf] = ACTIONS(1454), + [anon_sym___read_mostly] = ACTIONS(1454), + [anon_sym___must_hold] = ACTIONS(1454), + [anon_sym___ro_after_init] = ACTIONS(1454), + [anon_sym___noreturn] = ACTIONS(1454), + [anon_sym___cold] = ACTIONS(1454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), + [anon_sym___declspec] = ACTIONS(1454), + [anon_sym___init] = ACTIONS(1454), + [anon_sym___exit] = ACTIONS(1454), + [anon_sym___cdecl] = ACTIONS(1454), + [anon_sym___clrcall] = ACTIONS(1454), + [anon_sym___stdcall] = ACTIONS(1454), + [anon_sym___fastcall] = ACTIONS(1454), + [anon_sym___thiscall] = ACTIONS(1454), + [anon_sym___vectorcall] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_signed] = ACTIONS(1454), + [anon_sym_unsigned] = ACTIONS(1454), + [anon_sym_long] = ACTIONS(1454), + [anon_sym_short] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_auto] = ACTIONS(1454), + [anon_sym_register] = ACTIONS(1454), + [anon_sym_inline] = ACTIONS(1454), + [anon_sym___inline] = ACTIONS(1454), + [anon_sym___inline__] = ACTIONS(1454), + [anon_sym___forceinline] = ACTIONS(1454), + [anon_sym_thread_local] = ACTIONS(1454), + [anon_sym___thread] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_constexpr] = ACTIONS(1454), + [anon_sym_volatile] = ACTIONS(1454), + [anon_sym_restrict] = ACTIONS(1454), + [anon_sym___restrict__] = ACTIONS(1454), + [anon_sym__Atomic] = ACTIONS(1454), + [anon_sym__Noreturn] = ACTIONS(1454), + [anon_sym_noreturn] = ACTIONS(1454), + [anon_sym_alignas] = ACTIONS(1454), + [anon_sym__Alignas] = ACTIONS(1454), + [sym_primitive_type] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_switch] = ACTIONS(1454), + [anon_sym_case] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_do] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_goto] = ACTIONS(1454), + [anon_sym___try] = ACTIONS(1454), + [anon_sym___leave] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [anon_sym_sizeof] = ACTIONS(1454), + [anon_sym___alignof__] = ACTIONS(1454), + [anon_sym___alignof] = ACTIONS(1454), + [anon_sym__alignof] = ACTIONS(1454), + [anon_sym_alignof] = ACTIONS(1454), + [anon_sym__Alignof] = ACTIONS(1454), + [anon_sym_offsetof] = ACTIONS(1454), + [anon_sym__Generic] = ACTIONS(1454), + [anon_sym_asm] = ACTIONS(1454), + [anon_sym___asm__] = ACTIONS(1454), + [sym_number_literal] = ACTIONS(1456), + [anon_sym_L_SQUOTE] = ACTIONS(1456), + [anon_sym_u_SQUOTE] = ACTIONS(1456), + [anon_sym_U_SQUOTE] = ACTIONS(1456), + [anon_sym_u8_SQUOTE] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_L_DQUOTE] = ACTIONS(1456), + [anon_sym_u_DQUOTE] = ACTIONS(1456), + [anon_sym_U_DQUOTE] = ACTIONS(1456), + [anon_sym_u8_DQUOTE] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [anon_sym_NULL] = ACTIONS(1454), + [anon_sym_nullptr] = ACTIONS(1454), + [sym_comment] = ACTIONS(5), + }, + [344] = { + [sym_identifier] = ACTIONS(1474), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1474), + [aux_sym_preproc_def_token1] = ACTIONS(1474), + [aux_sym_preproc_if_token1] = ACTIONS(1474), + [aux_sym_preproc_if_token2] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1474), + [sym_preproc_directive] = ACTIONS(1474), + [anon_sym_LPAREN2] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym___extension__] = ACTIONS(1474), + [anon_sym_typedef] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym___attribute__] = ACTIONS(1474), + [anon_sym___scanf] = ACTIONS(1474), + [anon_sym___printf] = ACTIONS(1474), + [anon_sym___read_mostly] = ACTIONS(1474), + [anon_sym___must_hold] = ACTIONS(1474), + [anon_sym___ro_after_init] = ACTIONS(1474), + [anon_sym___noreturn] = ACTIONS(1474), + [anon_sym___cold] = ACTIONS(1474), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1476), + [anon_sym___declspec] = ACTIONS(1474), + [anon_sym___init] = ACTIONS(1474), + [anon_sym___exit] = ACTIONS(1474), + [anon_sym___cdecl] = ACTIONS(1474), + [anon_sym___clrcall] = ACTIONS(1474), + [anon_sym___stdcall] = ACTIONS(1474), + [anon_sym___fastcall] = ACTIONS(1474), + [anon_sym___thiscall] = ACTIONS(1474), + [anon_sym___vectorcall] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_signed] = ACTIONS(1474), + [anon_sym_unsigned] = ACTIONS(1474), + [anon_sym_long] = ACTIONS(1474), + [anon_sym_short] = ACTIONS(1474), + [anon_sym_static] = ACTIONS(1474), + [anon_sym_auto] = ACTIONS(1474), + [anon_sym_register] = ACTIONS(1474), + [anon_sym_inline] = ACTIONS(1474), + [anon_sym___inline] = ACTIONS(1474), + [anon_sym___inline__] = ACTIONS(1474), + [anon_sym___forceinline] = ACTIONS(1474), + [anon_sym_thread_local] = ACTIONS(1474), + [anon_sym___thread] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_constexpr] = ACTIONS(1474), + [anon_sym_volatile] = ACTIONS(1474), + [anon_sym_restrict] = ACTIONS(1474), + [anon_sym___restrict__] = ACTIONS(1474), + [anon_sym__Atomic] = ACTIONS(1474), + [anon_sym__Noreturn] = ACTIONS(1474), + [anon_sym_noreturn] = ACTIONS(1474), + [anon_sym_alignas] = ACTIONS(1474), + [anon_sym__Alignas] = ACTIONS(1474), + [sym_primitive_type] = ACTIONS(1474), + [anon_sym_enum] = ACTIONS(1474), + [anon_sym_struct] = ACTIONS(1474), + [anon_sym_union] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_switch] = ACTIONS(1474), + [anon_sym_case] = ACTIONS(1474), + [anon_sym_default] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_do] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_goto] = ACTIONS(1474), + [anon_sym___try] = ACTIONS(1474), + [anon_sym___leave] = ACTIONS(1474), + [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_PLUS_PLUS] = ACTIONS(1476), + [anon_sym_sizeof] = ACTIONS(1474), + [anon_sym___alignof__] = ACTIONS(1474), + [anon_sym___alignof] = ACTIONS(1474), + [anon_sym__alignof] = ACTIONS(1474), + [anon_sym_alignof] = ACTIONS(1474), + [anon_sym__Alignof] = ACTIONS(1474), + [anon_sym_offsetof] = ACTIONS(1474), + [anon_sym__Generic] = ACTIONS(1474), + [anon_sym_asm] = ACTIONS(1474), + [anon_sym___asm__] = ACTIONS(1474), + [sym_number_literal] = ACTIONS(1476), + [anon_sym_L_SQUOTE] = ACTIONS(1476), + [anon_sym_u_SQUOTE] = ACTIONS(1476), + [anon_sym_U_SQUOTE] = ACTIONS(1476), + [anon_sym_u8_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_L_DQUOTE] = ACTIONS(1476), + [anon_sym_u_DQUOTE] = ACTIONS(1476), + [anon_sym_U_DQUOTE] = ACTIONS(1476), + [anon_sym_u8_DQUOTE] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [sym_true] = ACTIONS(1474), + [sym_false] = ACTIONS(1474), + [anon_sym_NULL] = ACTIONS(1474), + [anon_sym_nullptr] = ACTIONS(1474), + [sym_comment] = ACTIONS(5), + }, + [345] = { + [sym_identifier] = ACTIONS(1498), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1498), + [aux_sym_preproc_def_token1] = ACTIONS(1498), + [aux_sym_preproc_if_token1] = ACTIONS(1498), + [aux_sym_preproc_if_token2] = ACTIONS(1498), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1498), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1498), + [sym_preproc_directive] = ACTIONS(1498), + [anon_sym_LPAREN2] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_TILDE] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym___extension__] = ACTIONS(1498), + [anon_sym_typedef] = ACTIONS(1498), + [anon_sym_extern] = ACTIONS(1498), + [anon_sym___attribute__] = ACTIONS(1498), + [anon_sym___scanf] = ACTIONS(1498), + [anon_sym___printf] = ACTIONS(1498), + [anon_sym___read_mostly] = ACTIONS(1498), + [anon_sym___must_hold] = ACTIONS(1498), + [anon_sym___ro_after_init] = ACTIONS(1498), + [anon_sym___noreturn] = ACTIONS(1498), + [anon_sym___cold] = ACTIONS(1498), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1500), + [anon_sym___declspec] = ACTIONS(1498), + [anon_sym___init] = ACTIONS(1498), + [anon_sym___exit] = ACTIONS(1498), + [anon_sym___cdecl] = ACTIONS(1498), + [anon_sym___clrcall] = ACTIONS(1498), + [anon_sym___stdcall] = ACTIONS(1498), + [anon_sym___fastcall] = ACTIONS(1498), + [anon_sym___thiscall] = ACTIONS(1498), + [anon_sym___vectorcall] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1500), + [anon_sym_signed] = ACTIONS(1498), + [anon_sym_unsigned] = ACTIONS(1498), + [anon_sym_long] = ACTIONS(1498), + [anon_sym_short] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_auto] = ACTIONS(1498), + [anon_sym_register] = ACTIONS(1498), + [anon_sym_inline] = ACTIONS(1498), + [anon_sym___inline] = ACTIONS(1498), + [anon_sym___inline__] = ACTIONS(1498), + [anon_sym___forceinline] = ACTIONS(1498), + [anon_sym_thread_local] = ACTIONS(1498), + [anon_sym___thread] = ACTIONS(1498), + [anon_sym_const] = ACTIONS(1498), + [anon_sym_constexpr] = ACTIONS(1498), + [anon_sym_volatile] = ACTIONS(1498), + [anon_sym_restrict] = ACTIONS(1498), + [anon_sym___restrict__] = ACTIONS(1498), + [anon_sym__Atomic] = ACTIONS(1498), + [anon_sym__Noreturn] = ACTIONS(1498), + [anon_sym_noreturn] = ACTIONS(1498), + [anon_sym_alignas] = ACTIONS(1498), + [anon_sym__Alignas] = ACTIONS(1498), + [sym_primitive_type] = ACTIONS(1498), + [anon_sym_enum] = ACTIONS(1498), + [anon_sym_struct] = ACTIONS(1498), + [anon_sym_union] = ACTIONS(1498), + [anon_sym_if] = ACTIONS(1498), + [anon_sym_switch] = ACTIONS(1498), + [anon_sym_case] = ACTIONS(1498), + [anon_sym_default] = ACTIONS(1498), + [anon_sym_while] = ACTIONS(1498), + [anon_sym_do] = ACTIONS(1498), + [anon_sym_for] = ACTIONS(1498), + [anon_sym_return] = ACTIONS(1498), + [anon_sym_break] = ACTIONS(1498), + [anon_sym_continue] = ACTIONS(1498), + [anon_sym_goto] = ACTIONS(1498), + [anon_sym___try] = ACTIONS(1498), + [anon_sym___leave] = ACTIONS(1498), + [anon_sym_DASH_DASH] = ACTIONS(1500), + [anon_sym_PLUS_PLUS] = ACTIONS(1500), + [anon_sym_sizeof] = ACTIONS(1498), + [anon_sym___alignof__] = ACTIONS(1498), + [anon_sym___alignof] = ACTIONS(1498), + [anon_sym__alignof] = ACTIONS(1498), + [anon_sym_alignof] = ACTIONS(1498), + [anon_sym__Alignof] = ACTIONS(1498), + [anon_sym_offsetof] = ACTIONS(1498), + [anon_sym__Generic] = ACTIONS(1498), + [anon_sym_asm] = ACTIONS(1498), + [anon_sym___asm__] = ACTIONS(1498), + [sym_number_literal] = ACTIONS(1500), + [anon_sym_L_SQUOTE] = ACTIONS(1500), + [anon_sym_u_SQUOTE] = ACTIONS(1500), + [anon_sym_U_SQUOTE] = ACTIONS(1500), + [anon_sym_u8_SQUOTE] = ACTIONS(1500), + [anon_sym_SQUOTE] = ACTIONS(1500), + [anon_sym_L_DQUOTE] = ACTIONS(1500), + [anon_sym_u_DQUOTE] = ACTIONS(1500), + [anon_sym_U_DQUOTE] = ACTIONS(1500), + [anon_sym_u8_DQUOTE] = ACTIONS(1500), + [anon_sym_DQUOTE] = ACTIONS(1500), + [sym_true] = ACTIONS(1498), + [sym_false] = ACTIONS(1498), + [anon_sym_NULL] = ACTIONS(1498), + [anon_sym_nullptr] = ACTIONS(1498), + [sym_comment] = ACTIONS(5), + }, + [346] = { [sym_identifier] = ACTIONS(1508), [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1510), + [aux_sym_preproc_include_token1] = ACTIONS(1508), + [aux_sym_preproc_def_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token2] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1508), + [sym_preproc_directive] = ACTIONS(1508), [anon_sym_LPAREN2] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1512), - [anon_sym_TILDE] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1516), - [anon_sym_PERCENT] = ACTIONS(1516), - [anon_sym_PIPE_PIPE] = ACTIONS(1510), - [anon_sym_AMP_AMP] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_CARET] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_EQ_EQ] = ACTIONS(1510), - [anon_sym_BANG_EQ] = ACTIONS(1510), - [anon_sym_GT] = ACTIONS(1516), - [anon_sym_GT_EQ] = ACTIONS(1510), - [anon_sym_LT_EQ] = ACTIONS(1510), - [anon_sym_LT] = ACTIONS(1516), - [anon_sym_LT_LT] = ACTIONS(1516), - [anon_sym_GT_GT] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_TILDE] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1510), [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym___attribute__] = ACTIONS(1516), - [anon_sym___scanf] = ACTIONS(1516), - [anon_sym___printf] = ACTIONS(1516), - [anon_sym___read_mostly] = ACTIONS(1516), - [anon_sym___must_hold] = ACTIONS(1516), - [anon_sym___ro_after_init] = ACTIONS(1516), - [anon_sym___noreturn] = ACTIONS(1516), - [anon_sym___cold] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_EQ] = ACTIONS(1516), - [anon_sym_QMARK] = ACTIONS(1510), - [anon_sym_STAR_EQ] = ACTIONS(1510), - [anon_sym_SLASH_EQ] = ACTIONS(1510), - [anon_sym_PERCENT_EQ] = ACTIONS(1510), - [anon_sym_PLUS_EQ] = ACTIONS(1510), - [anon_sym_DASH_EQ] = ACTIONS(1510), - [anon_sym_LT_LT_EQ] = ACTIONS(1510), - [anon_sym_GT_GT_EQ] = ACTIONS(1510), - [anon_sym_AMP_EQ] = ACTIONS(1510), - [anon_sym_CARET_EQ] = ACTIONS(1510), - [anon_sym_PIPE_EQ] = ACTIONS(1510), + [anon_sym___extension__] = ACTIONS(1508), + [anon_sym_typedef] = ACTIONS(1508), + [anon_sym_extern] = ACTIONS(1508), + [anon_sym___attribute__] = ACTIONS(1508), + [anon_sym___scanf] = ACTIONS(1508), + [anon_sym___printf] = ACTIONS(1508), + [anon_sym___read_mostly] = ACTIONS(1508), + [anon_sym___must_hold] = ACTIONS(1508), + [anon_sym___ro_after_init] = ACTIONS(1508), + [anon_sym___noreturn] = ACTIONS(1508), + [anon_sym___cold] = ACTIONS(1508), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1510), + [anon_sym___declspec] = ACTIONS(1508), + [anon_sym___init] = ACTIONS(1508), + [anon_sym___exit] = ACTIONS(1508), + [anon_sym___cdecl] = ACTIONS(1508), + [anon_sym___clrcall] = ACTIONS(1508), + [anon_sym___stdcall] = ACTIONS(1508), + [anon_sym___fastcall] = ACTIONS(1508), + [anon_sym___thiscall] = ACTIONS(1508), + [anon_sym___vectorcall] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_signed] = ACTIONS(1508), + [anon_sym_unsigned] = ACTIONS(1508), + [anon_sym_long] = ACTIONS(1508), + [anon_sym_short] = ACTIONS(1508), + [anon_sym_static] = ACTIONS(1508), + [anon_sym_auto] = ACTIONS(1508), + [anon_sym_register] = ACTIONS(1508), + [anon_sym_inline] = ACTIONS(1508), + [anon_sym___inline] = ACTIONS(1508), + [anon_sym___inline__] = ACTIONS(1508), + [anon_sym___forceinline] = ACTIONS(1508), + [anon_sym_thread_local] = ACTIONS(1508), + [anon_sym___thread] = ACTIONS(1508), + [anon_sym_const] = ACTIONS(1508), + [anon_sym_constexpr] = ACTIONS(1508), + [anon_sym_volatile] = ACTIONS(1508), + [anon_sym_restrict] = ACTIONS(1508), + [anon_sym___restrict__] = ACTIONS(1508), + [anon_sym__Atomic] = ACTIONS(1508), + [anon_sym__Noreturn] = ACTIONS(1508), + [anon_sym_noreturn] = ACTIONS(1508), + [anon_sym_alignas] = ACTIONS(1508), + [anon_sym__Alignas] = ACTIONS(1508), + [sym_primitive_type] = ACTIONS(1508), + [anon_sym_enum] = ACTIONS(1508), + [anon_sym_struct] = ACTIONS(1508), + [anon_sym_union] = ACTIONS(1508), + [anon_sym_if] = ACTIONS(1508), + [anon_sym_switch] = ACTIONS(1508), + [anon_sym_case] = ACTIONS(1508), + [anon_sym_default] = ACTIONS(1508), + [anon_sym_while] = ACTIONS(1508), + [anon_sym_do] = ACTIONS(1508), + [anon_sym_for] = ACTIONS(1508), + [anon_sym_return] = ACTIONS(1508), + [anon_sym_break] = ACTIONS(1508), + [anon_sym_continue] = ACTIONS(1508), + [anon_sym_goto] = ACTIONS(1508), + [anon_sym___try] = ACTIONS(1508), + [anon_sym___leave] = ACTIONS(1508), [anon_sym_DASH_DASH] = ACTIONS(1510), [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_sizeof] = ACTIONS(1520), - [anon_sym___alignof__] = ACTIONS(1522), - [anon_sym___alignof] = ACTIONS(1522), - [anon_sym__alignof] = ACTIONS(1522), - [anon_sym_alignof] = ACTIONS(1522), - [anon_sym__Alignof] = ACTIONS(1522), - [anon_sym_offsetof] = ACTIONS(1524), - [anon_sym__Generic] = ACTIONS(1526), - [anon_sym_asm] = ACTIONS(1528), - [anon_sym___asm__] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1516), - [anon_sym_DASH_GT] = ACTIONS(1510), - [sym_number_literal] = ACTIONS(1530), - [anon_sym_L_SQUOTE] = ACTIONS(1532), - [anon_sym_u_SQUOTE] = ACTIONS(1532), - [anon_sym_U_SQUOTE] = ACTIONS(1532), - [anon_sym_u8_SQUOTE] = ACTIONS(1532), - [anon_sym_SQUOTE] = ACTIONS(1532), - [anon_sym_L_DQUOTE] = ACTIONS(1534), - [anon_sym_u_DQUOTE] = ACTIONS(1534), - [anon_sym_U_DQUOTE] = ACTIONS(1534), - [anon_sym_u8_DQUOTE] = ACTIONS(1534), - [anon_sym_DQUOTE] = ACTIONS(1534), - [sym_true] = ACTIONS(1536), - [sym_false] = ACTIONS(1536), - [anon_sym_NULL] = ACTIONS(1538), - [anon_sym_nullptr] = ACTIONS(1538), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym___alignof__] = ACTIONS(1508), + [anon_sym___alignof] = ACTIONS(1508), + [anon_sym__alignof] = ACTIONS(1508), + [anon_sym_alignof] = ACTIONS(1508), + [anon_sym__Alignof] = ACTIONS(1508), + [anon_sym_offsetof] = ACTIONS(1508), + [anon_sym__Generic] = ACTIONS(1508), + [anon_sym_asm] = ACTIONS(1508), + [anon_sym___asm__] = ACTIONS(1508), + [sym_number_literal] = ACTIONS(1510), + [anon_sym_L_SQUOTE] = ACTIONS(1510), + [anon_sym_u_SQUOTE] = ACTIONS(1510), + [anon_sym_U_SQUOTE] = ACTIONS(1510), + [anon_sym_u8_SQUOTE] = ACTIONS(1510), + [anon_sym_SQUOTE] = ACTIONS(1510), + [anon_sym_L_DQUOTE] = ACTIONS(1510), + [anon_sym_u_DQUOTE] = ACTIONS(1510), + [anon_sym_U_DQUOTE] = ACTIONS(1510), + [anon_sym_u8_DQUOTE] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [sym_true] = ACTIONS(1508), + [sym_false] = ACTIONS(1508), + [anon_sym_NULL] = ACTIONS(1508), + [anon_sym_nullptr] = ACTIONS(1508), [sym_comment] = ACTIONS(5), }, - [410] = { - [sym_expression] = STATE(1136), - [sym__string] = STATE(1200), - [sym_conditional_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1200), - [sym_pointer_expression] = STATE(1205), - [sym_unary_expression] = STATE(1200), - [sym_binary_expression] = STATE(1200), - [sym_update_expression] = STATE(1200), - [sym_cast_expression] = STATE(1200), - [sym_sizeof_expression] = STATE(1200), - [sym_alignof_expression] = STATE(1200), - [sym_offsetof_expression] = STATE(1200), - [sym_generic_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1205), - [sym_call_expression] = STATE(1205), - [sym_gnu_asm_expression] = STATE(1200), - [sym_field_expression] = STATE(1205), - [sym_compound_literal_expression] = STATE(1200), - [sym_parenthesized_expression] = STATE(1205), - [sym_initializer_list] = STATE(1234), - [sym_char_literal] = STATE(1200), - [sym_concatenated_string] = STATE(1200), - [sym_string_literal] = STATE(987), - [sym_null] = STATE(1200), - [sym_identifier] = ACTIONS(1516), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1510), - [aux_sym_preproc_if_token2] = ACTIONS(1510), - [aux_sym_preproc_else_token1] = ACTIONS(1510), - [aux_sym_preproc_elif_token1] = ACTIONS(1516), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1510), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1510), - [anon_sym_LPAREN2] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_TILDE] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1516), - [anon_sym_PERCENT] = ACTIONS(1516), - [anon_sym_PIPE_PIPE] = ACTIONS(1510), - [anon_sym_AMP_AMP] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_CARET] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_EQ_EQ] = ACTIONS(1510), - [anon_sym_BANG_EQ] = ACTIONS(1510), - [anon_sym_GT] = ACTIONS(1516), - [anon_sym_GT_EQ] = ACTIONS(1510), - [anon_sym_LT_EQ] = ACTIONS(1510), - [anon_sym_LT] = ACTIONS(1516), - [anon_sym_LT_LT] = ACTIONS(1516), - [anon_sym_GT_GT] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_EQ] = ACTIONS(1516), - [anon_sym_QMARK] = ACTIONS(1510), - [anon_sym_STAR_EQ] = ACTIONS(1510), - [anon_sym_SLASH_EQ] = ACTIONS(1510), - [anon_sym_PERCENT_EQ] = ACTIONS(1510), - [anon_sym_PLUS_EQ] = ACTIONS(1510), - [anon_sym_DASH_EQ] = ACTIONS(1510), - [anon_sym_LT_LT_EQ] = ACTIONS(1510), - [anon_sym_GT_GT_EQ] = ACTIONS(1510), - [anon_sym_AMP_EQ] = ACTIONS(1510), - [anon_sym_CARET_EQ] = ACTIONS(1510), - [anon_sym_PIPE_EQ] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_sizeof] = ACTIONS(1546), - [anon_sym___alignof__] = ACTIONS(1548), - [anon_sym___alignof] = ACTIONS(1548), - [anon_sym__alignof] = ACTIONS(1548), - [anon_sym_alignof] = ACTIONS(1548), - [anon_sym__Alignof] = ACTIONS(1548), - [anon_sym_offsetof] = ACTIONS(1550), - [anon_sym__Generic] = ACTIONS(1552), - [anon_sym_asm] = ACTIONS(1554), - [anon_sym___asm__] = ACTIONS(1554), - [anon_sym_DOT] = ACTIONS(1516), - [anon_sym_DASH_GT] = ACTIONS(1510), - [sym_number_literal] = ACTIONS(1556), - [anon_sym_L_SQUOTE] = ACTIONS(1558), - [anon_sym_u_SQUOTE] = ACTIONS(1558), - [anon_sym_U_SQUOTE] = ACTIONS(1558), - [anon_sym_u8_SQUOTE] = ACTIONS(1558), - [anon_sym_SQUOTE] = ACTIONS(1558), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(1560), - [sym_false] = ACTIONS(1560), - [anon_sym_NULL] = ACTIONS(1562), - [anon_sym_nullptr] = ACTIONS(1562), + [347] = { + [sym_identifier] = ACTIONS(1390), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token2] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), + [sym_preproc_directive] = ACTIONS(1390), + [anon_sym_LPAREN2] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym___extension__] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym___attribute__] = ACTIONS(1390), + [anon_sym___scanf] = ACTIONS(1390), + [anon_sym___printf] = ACTIONS(1390), + [anon_sym___read_mostly] = ACTIONS(1390), + [anon_sym___must_hold] = ACTIONS(1390), + [anon_sym___ro_after_init] = ACTIONS(1390), + [anon_sym___noreturn] = ACTIONS(1390), + [anon_sym___cold] = ACTIONS(1390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), + [anon_sym___declspec] = ACTIONS(1390), + [anon_sym___init] = ACTIONS(1390), + [anon_sym___exit] = ACTIONS(1390), + [anon_sym___cdecl] = ACTIONS(1390), + [anon_sym___clrcall] = ACTIONS(1390), + [anon_sym___stdcall] = ACTIONS(1390), + [anon_sym___fastcall] = ACTIONS(1390), + [anon_sym___thiscall] = ACTIONS(1390), + [anon_sym___vectorcall] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_signed] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_auto] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym___inline] = ACTIONS(1390), + [anon_sym___inline__] = ACTIONS(1390), + [anon_sym___forceinline] = ACTIONS(1390), + [anon_sym_thread_local] = ACTIONS(1390), + [anon_sym___thread] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_constexpr] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_restrict] = ACTIONS(1390), + [anon_sym___restrict__] = ACTIONS(1390), + [anon_sym__Atomic] = ACTIONS(1390), + [anon_sym__Noreturn] = ACTIONS(1390), + [anon_sym_noreturn] = ACTIONS(1390), + [anon_sym_alignas] = ACTIONS(1390), + [anon_sym__Alignas] = ACTIONS(1390), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_goto] = ACTIONS(1390), + [anon_sym___try] = ACTIONS(1390), + [anon_sym___leave] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym___alignof__] = ACTIONS(1390), + [anon_sym___alignof] = ACTIONS(1390), + [anon_sym__alignof] = ACTIONS(1390), + [anon_sym_alignof] = ACTIONS(1390), + [anon_sym__Alignof] = ACTIONS(1390), + [anon_sym_offsetof] = ACTIONS(1390), + [anon_sym__Generic] = ACTIONS(1390), + [anon_sym_asm] = ACTIONS(1390), + [anon_sym___asm__] = ACTIONS(1390), + [sym_number_literal] = ACTIONS(1392), + [anon_sym_L_SQUOTE] = ACTIONS(1392), + [anon_sym_u_SQUOTE] = ACTIONS(1392), + [anon_sym_U_SQUOTE] = ACTIONS(1392), + [anon_sym_u8_SQUOTE] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_L_DQUOTE] = ACTIONS(1392), + [anon_sym_u_DQUOTE] = ACTIONS(1392), + [anon_sym_U_DQUOTE] = ACTIONS(1392), + [anon_sym_u8_DQUOTE] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [anon_sym_NULL] = ACTIONS(1390), + [anon_sym_nullptr] = ACTIONS(1390), [sym_comment] = ACTIONS(5), }, - [411] = { - [sym_attribute_declaration] = STATE(457), - [sym_compound_statement] = STATE(2752), - [sym_attributed_statement] = STATE(2752), - [sym_statement] = STATE(3326), - [sym_labeled_statement] = STATE(2752), - [sym_expression_statement] = STATE(2752), - [sym_if_statement] = STATE(2752), - [sym_switch_statement] = STATE(2752), - [sym_case_statement] = STATE(2752), - [sym_while_statement] = STATE(2752), - [sym_do_statement] = STATE(2752), - [sym_for_statement] = STATE(2752), - [sym_return_statement] = STATE(2752), - [sym_break_statement] = STATE(2752), - [sym_continue_statement] = STATE(2752), - [sym_goto_statement] = STATE(2752), - [sym_seh_try_statement] = STATE(2752), - [sym_seh_leave_statement] = STATE(2752), - [sym_expression] = STATE(1565), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3107), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(457), - [sym_identifier] = ACTIONS(1564), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(1566), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1570), - [anon_sym_if] = ACTIONS(1572), - [anon_sym_switch] = ACTIONS(1574), - [anon_sym_case] = ACTIONS(1576), - [anon_sym_default] = ACTIONS(1578), - [anon_sym_while] = ACTIONS(1580), - [anon_sym_do] = ACTIONS(1582), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1586), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1590), - [anon_sym_goto] = ACTIONS(1592), - [anon_sym___try] = ACTIONS(1594), - [anon_sym___leave] = ACTIONS(1596), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [348] = { + [sym_identifier] = ACTIONS(1512), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1512), + [aux_sym_preproc_def_token1] = ACTIONS(1512), + [aux_sym_preproc_if_token1] = ACTIONS(1512), + [aux_sym_preproc_if_token2] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1512), + [sym_preproc_directive] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1514), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym___extension__] = ACTIONS(1512), + [anon_sym_typedef] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym___attribute__] = ACTIONS(1512), + [anon_sym___scanf] = ACTIONS(1512), + [anon_sym___printf] = ACTIONS(1512), + [anon_sym___read_mostly] = ACTIONS(1512), + [anon_sym___must_hold] = ACTIONS(1512), + [anon_sym___ro_after_init] = ACTIONS(1512), + [anon_sym___noreturn] = ACTIONS(1512), + [anon_sym___cold] = ACTIONS(1512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1514), + [anon_sym___declspec] = ACTIONS(1512), + [anon_sym___init] = ACTIONS(1512), + [anon_sym___exit] = ACTIONS(1512), + [anon_sym___cdecl] = ACTIONS(1512), + [anon_sym___clrcall] = ACTIONS(1512), + [anon_sym___stdcall] = ACTIONS(1512), + [anon_sym___fastcall] = ACTIONS(1512), + [anon_sym___thiscall] = ACTIONS(1512), + [anon_sym___vectorcall] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_signed] = ACTIONS(1512), + [anon_sym_unsigned] = ACTIONS(1512), + [anon_sym_long] = ACTIONS(1512), + [anon_sym_short] = ACTIONS(1512), + [anon_sym_static] = ACTIONS(1512), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_register] = ACTIONS(1512), + [anon_sym_inline] = ACTIONS(1512), + [anon_sym___inline] = ACTIONS(1512), + [anon_sym___inline__] = ACTIONS(1512), + [anon_sym___forceinline] = ACTIONS(1512), + [anon_sym_thread_local] = ACTIONS(1512), + [anon_sym___thread] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [anon_sym_constexpr] = ACTIONS(1512), + [anon_sym_volatile] = ACTIONS(1512), + [anon_sym_restrict] = ACTIONS(1512), + [anon_sym___restrict__] = ACTIONS(1512), + [anon_sym__Atomic] = ACTIONS(1512), + [anon_sym__Noreturn] = ACTIONS(1512), + [anon_sym_noreturn] = ACTIONS(1512), + [anon_sym_alignas] = ACTIONS(1512), + [anon_sym__Alignas] = ACTIONS(1512), + [sym_primitive_type] = ACTIONS(1512), + [anon_sym_enum] = ACTIONS(1512), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_switch] = ACTIONS(1512), + [anon_sym_case] = ACTIONS(1512), + [anon_sym_default] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_do] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_goto] = ACTIONS(1512), + [anon_sym___try] = ACTIONS(1512), + [anon_sym___leave] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1512), + [anon_sym___alignof__] = ACTIONS(1512), + [anon_sym___alignof] = ACTIONS(1512), + [anon_sym__alignof] = ACTIONS(1512), + [anon_sym_alignof] = ACTIONS(1512), + [anon_sym__Alignof] = ACTIONS(1512), + [anon_sym_offsetof] = ACTIONS(1512), + [anon_sym__Generic] = ACTIONS(1512), + [anon_sym_asm] = ACTIONS(1512), + [anon_sym___asm__] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(1514), + [anon_sym_L_SQUOTE] = ACTIONS(1514), + [anon_sym_u_SQUOTE] = ACTIONS(1514), + [anon_sym_U_SQUOTE] = ACTIONS(1514), + [anon_sym_u8_SQUOTE] = ACTIONS(1514), + [anon_sym_SQUOTE] = ACTIONS(1514), + [anon_sym_L_DQUOTE] = ACTIONS(1514), + [anon_sym_u_DQUOTE] = ACTIONS(1514), + [anon_sym_U_DQUOTE] = ACTIONS(1514), + [anon_sym_u8_DQUOTE] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym_true] = ACTIONS(1512), + [sym_false] = ACTIONS(1512), + [anon_sym_NULL] = ACTIONS(1512), + [anon_sym_nullptr] = ACTIONS(1512), [sym_comment] = ACTIONS(5), }, - [412] = { - [sym_attribute_declaration] = STATE(457), - [sym_compound_statement] = STATE(2752), - [sym_attributed_statement] = STATE(2752), - [sym_statement] = STATE(2789), - [sym_labeled_statement] = STATE(2752), - [sym_expression_statement] = STATE(2752), - [sym_if_statement] = STATE(2752), - [sym_switch_statement] = STATE(2752), - [sym_case_statement] = STATE(2752), - [sym_while_statement] = STATE(2752), - [sym_do_statement] = STATE(2752), - [sym_for_statement] = STATE(2752), - [sym_return_statement] = STATE(2752), - [sym_break_statement] = STATE(2752), - [sym_continue_statement] = STATE(2752), - [sym_goto_statement] = STATE(2752), - [sym_seh_try_statement] = STATE(2752), - [sym_seh_leave_statement] = STATE(2752), - [sym_expression] = STATE(1565), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3107), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(457), - [sym_identifier] = ACTIONS(1564), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(1566), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1570), - [anon_sym_if] = ACTIONS(1572), - [anon_sym_switch] = ACTIONS(1574), - [anon_sym_case] = ACTIONS(1576), - [anon_sym_default] = ACTIONS(1578), - [anon_sym_while] = ACTIONS(1580), - [anon_sym_do] = ACTIONS(1582), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1586), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1590), - [anon_sym_goto] = ACTIONS(1592), - [anon_sym___try] = ACTIONS(1594), - [anon_sym___leave] = ACTIONS(1596), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [349] = { + [sym_identifier] = ACTIONS(1466), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1466), + [aux_sym_preproc_def_token1] = ACTIONS(1466), + [aux_sym_preproc_if_token1] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1466), + [sym_preproc_directive] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym___extension__] = ACTIONS(1466), + [anon_sym_typedef] = ACTIONS(1466), + [anon_sym_extern] = ACTIONS(1466), + [anon_sym___attribute__] = ACTIONS(1466), + [anon_sym___scanf] = ACTIONS(1466), + [anon_sym___printf] = ACTIONS(1466), + [anon_sym___read_mostly] = ACTIONS(1466), + [anon_sym___must_hold] = ACTIONS(1466), + [anon_sym___ro_after_init] = ACTIONS(1466), + [anon_sym___noreturn] = ACTIONS(1466), + [anon_sym___cold] = ACTIONS(1466), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1468), + [anon_sym___declspec] = ACTIONS(1466), + [anon_sym___init] = ACTIONS(1466), + [anon_sym___exit] = ACTIONS(1466), + [anon_sym___cdecl] = ACTIONS(1466), + [anon_sym___clrcall] = ACTIONS(1466), + [anon_sym___stdcall] = ACTIONS(1466), + [anon_sym___fastcall] = ACTIONS(1466), + [anon_sym___thiscall] = ACTIONS(1466), + [anon_sym___vectorcall] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_signed] = ACTIONS(1466), + [anon_sym_unsigned] = ACTIONS(1466), + [anon_sym_long] = ACTIONS(1466), + [anon_sym_short] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_auto] = ACTIONS(1466), + [anon_sym_register] = ACTIONS(1466), + [anon_sym_inline] = ACTIONS(1466), + [anon_sym___inline] = ACTIONS(1466), + [anon_sym___inline__] = ACTIONS(1466), + [anon_sym___forceinline] = ACTIONS(1466), + [anon_sym_thread_local] = ACTIONS(1466), + [anon_sym___thread] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(1466), + [anon_sym_constexpr] = ACTIONS(1466), + [anon_sym_volatile] = ACTIONS(1466), + [anon_sym_restrict] = ACTIONS(1466), + [anon_sym___restrict__] = ACTIONS(1466), + [anon_sym__Atomic] = ACTIONS(1466), + [anon_sym__Noreturn] = ACTIONS(1466), + [anon_sym_noreturn] = ACTIONS(1466), + [anon_sym_alignas] = ACTIONS(1466), + [anon_sym__Alignas] = ACTIONS(1466), + [sym_primitive_type] = ACTIONS(1466), + [anon_sym_enum] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1466), + [anon_sym_union] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1466), + [anon_sym_switch] = ACTIONS(1466), + [anon_sym_case] = ACTIONS(1466), + [anon_sym_default] = ACTIONS(1466), + [anon_sym_while] = ACTIONS(1466), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1466), + [anon_sym_return] = ACTIONS(1466), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1466), + [anon_sym_goto] = ACTIONS(1466), + [anon_sym___try] = ACTIONS(1466), + [anon_sym___leave] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_sizeof] = ACTIONS(1466), + [anon_sym___alignof__] = ACTIONS(1466), + [anon_sym___alignof] = ACTIONS(1466), + [anon_sym__alignof] = ACTIONS(1466), + [anon_sym_alignof] = ACTIONS(1466), + [anon_sym__Alignof] = ACTIONS(1466), + [anon_sym_offsetof] = ACTIONS(1466), + [anon_sym__Generic] = ACTIONS(1466), + [anon_sym_asm] = ACTIONS(1466), + [anon_sym___asm__] = ACTIONS(1466), + [sym_number_literal] = ACTIONS(1468), + [anon_sym_L_SQUOTE] = ACTIONS(1468), + [anon_sym_u_SQUOTE] = ACTIONS(1468), + [anon_sym_U_SQUOTE] = ACTIONS(1468), + [anon_sym_u8_SQUOTE] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_L_DQUOTE] = ACTIONS(1468), + [anon_sym_u_DQUOTE] = ACTIONS(1468), + [anon_sym_U_DQUOTE] = ACTIONS(1468), + [anon_sym_u8_DQUOTE] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1468), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [anon_sym_NULL] = ACTIONS(1466), + [anon_sym_nullptr] = ACTIONS(1466), [sym_comment] = ACTIONS(5), }, - [413] = { - [sym_attribute_declaration] = STATE(444), - [sym_compound_statement] = STATE(472), - [sym_attributed_statement] = STATE(472), - [sym_statement] = STATE(470), - [sym_labeled_statement] = STATE(472), - [sym_expression_statement] = STATE(472), - [sym_if_statement] = STATE(472), - [sym_switch_statement] = STATE(472), - [sym_case_statement] = STATE(472), - [sym_while_statement] = STATE(472), - [sym_do_statement] = STATE(472), - [sym_for_statement] = STATE(472), - [sym_return_statement] = STATE(472), - [sym_break_statement] = STATE(472), - [sym_continue_statement] = STATE(472), - [sym_goto_statement] = STATE(472), - [sym_seh_try_statement] = STATE(472), - [sym_seh_leave_statement] = STATE(472), - [sym_expression] = STATE(1606), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(2956), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(444), - [sym_identifier] = ACTIONS(1598), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_if] = ACTIONS(1136), - [anon_sym_switch] = ACTIONS(1138), - [anon_sym_case] = ACTIONS(1576), - [anon_sym_default] = ACTIONS(1578), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(1142), - [anon_sym_for] = ACTIONS(1144), - [anon_sym_return] = ACTIONS(1146), - [anon_sym_break] = ACTIONS(1148), - [anon_sym_continue] = ACTIONS(1150), - [anon_sym_goto] = ACTIONS(1152), - [anon_sym___try] = ACTIONS(1154), - [anon_sym___leave] = ACTIONS(1156), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [350] = { + [sym_identifier] = ACTIONS(1494), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1494), + [aux_sym_preproc_def_token1] = ACTIONS(1494), + [aux_sym_preproc_if_token1] = ACTIONS(1494), + [aux_sym_preproc_if_token2] = ACTIONS(1494), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1494), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1494), + [sym_preproc_directive] = ACTIONS(1494), + [anon_sym_LPAREN2] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_TILDE] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_STAR] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym___extension__] = ACTIONS(1494), + [anon_sym_typedef] = ACTIONS(1494), + [anon_sym_extern] = ACTIONS(1494), + [anon_sym___attribute__] = ACTIONS(1494), + [anon_sym___scanf] = ACTIONS(1494), + [anon_sym___printf] = ACTIONS(1494), + [anon_sym___read_mostly] = ACTIONS(1494), + [anon_sym___must_hold] = ACTIONS(1494), + [anon_sym___ro_after_init] = ACTIONS(1494), + [anon_sym___noreturn] = ACTIONS(1494), + [anon_sym___cold] = ACTIONS(1494), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1496), + [anon_sym___declspec] = ACTIONS(1494), + [anon_sym___init] = ACTIONS(1494), + [anon_sym___exit] = ACTIONS(1494), + [anon_sym___cdecl] = ACTIONS(1494), + [anon_sym___clrcall] = ACTIONS(1494), + [anon_sym___stdcall] = ACTIONS(1494), + [anon_sym___fastcall] = ACTIONS(1494), + [anon_sym___thiscall] = ACTIONS(1494), + [anon_sym___vectorcall] = ACTIONS(1494), + [anon_sym_LBRACE] = ACTIONS(1496), + [anon_sym_signed] = ACTIONS(1494), + [anon_sym_unsigned] = ACTIONS(1494), + [anon_sym_long] = ACTIONS(1494), + [anon_sym_short] = ACTIONS(1494), + [anon_sym_static] = ACTIONS(1494), + [anon_sym_auto] = ACTIONS(1494), + [anon_sym_register] = ACTIONS(1494), + [anon_sym_inline] = ACTIONS(1494), + [anon_sym___inline] = ACTIONS(1494), + [anon_sym___inline__] = ACTIONS(1494), + [anon_sym___forceinline] = ACTIONS(1494), + [anon_sym_thread_local] = ACTIONS(1494), + [anon_sym___thread] = ACTIONS(1494), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_constexpr] = ACTIONS(1494), + [anon_sym_volatile] = ACTIONS(1494), + [anon_sym_restrict] = ACTIONS(1494), + [anon_sym___restrict__] = ACTIONS(1494), + [anon_sym__Atomic] = ACTIONS(1494), + [anon_sym__Noreturn] = ACTIONS(1494), + [anon_sym_noreturn] = ACTIONS(1494), + [anon_sym_alignas] = ACTIONS(1494), + [anon_sym__Alignas] = ACTIONS(1494), + [sym_primitive_type] = ACTIONS(1494), + [anon_sym_enum] = ACTIONS(1494), + [anon_sym_struct] = ACTIONS(1494), + [anon_sym_union] = ACTIONS(1494), + [anon_sym_if] = ACTIONS(1494), + [anon_sym_switch] = ACTIONS(1494), + [anon_sym_case] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(1494), + [anon_sym_while] = ACTIONS(1494), + [anon_sym_do] = ACTIONS(1494), + [anon_sym_for] = ACTIONS(1494), + [anon_sym_return] = ACTIONS(1494), + [anon_sym_break] = ACTIONS(1494), + [anon_sym_continue] = ACTIONS(1494), + [anon_sym_goto] = ACTIONS(1494), + [anon_sym___try] = ACTIONS(1494), + [anon_sym___leave] = ACTIONS(1494), + [anon_sym_DASH_DASH] = ACTIONS(1496), + [anon_sym_PLUS_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1494), + [anon_sym___alignof__] = ACTIONS(1494), + [anon_sym___alignof] = ACTIONS(1494), + [anon_sym__alignof] = ACTIONS(1494), + [anon_sym_alignof] = ACTIONS(1494), + [anon_sym__Alignof] = ACTIONS(1494), + [anon_sym_offsetof] = ACTIONS(1494), + [anon_sym__Generic] = ACTIONS(1494), + [anon_sym_asm] = ACTIONS(1494), + [anon_sym___asm__] = ACTIONS(1494), + [sym_number_literal] = ACTIONS(1496), + [anon_sym_L_SQUOTE] = ACTIONS(1496), + [anon_sym_u_SQUOTE] = ACTIONS(1496), + [anon_sym_U_SQUOTE] = ACTIONS(1496), + [anon_sym_u8_SQUOTE] = ACTIONS(1496), + [anon_sym_SQUOTE] = ACTIONS(1496), + [anon_sym_L_DQUOTE] = ACTIONS(1496), + [anon_sym_u_DQUOTE] = ACTIONS(1496), + [anon_sym_U_DQUOTE] = ACTIONS(1496), + [anon_sym_u8_DQUOTE] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [sym_true] = ACTIONS(1494), + [sym_false] = ACTIONS(1494), + [anon_sym_NULL] = ACTIONS(1494), + [anon_sym_nullptr] = ACTIONS(1494), [sym_comment] = ACTIONS(5), }, - [414] = { - [sym_attribute_declaration] = STATE(433), - [sym_compound_statement] = STATE(179), - [sym_attributed_statement] = STATE(179), - [sym_statement] = STATE(213), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [sym_identifier] = ACTIONS(1600), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(385), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_switch] = ACTIONS(399), - [anon_sym_case] = ACTIONS(401), - [anon_sym_default] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_goto] = ACTIONS(417), - [anon_sym___try] = ACTIONS(419), - [anon_sym___leave] = ACTIONS(421), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [351] = { + [sym_identifier] = ACTIONS(1486), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1486), + [aux_sym_preproc_def_token1] = ACTIONS(1486), + [aux_sym_preproc_if_token1] = ACTIONS(1486), + [aux_sym_preproc_if_token2] = ACTIONS(1486), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1486), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1486), + [sym_preproc_directive] = ACTIONS(1486), + [anon_sym_LPAREN2] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym___extension__] = ACTIONS(1486), + [anon_sym_typedef] = ACTIONS(1486), + [anon_sym_extern] = ACTIONS(1486), + [anon_sym___attribute__] = ACTIONS(1486), + [anon_sym___scanf] = ACTIONS(1486), + [anon_sym___printf] = ACTIONS(1486), + [anon_sym___read_mostly] = ACTIONS(1486), + [anon_sym___must_hold] = ACTIONS(1486), + [anon_sym___ro_after_init] = ACTIONS(1486), + [anon_sym___noreturn] = ACTIONS(1486), + [anon_sym___cold] = ACTIONS(1486), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1488), + [anon_sym___declspec] = ACTIONS(1486), + [anon_sym___init] = ACTIONS(1486), + [anon_sym___exit] = ACTIONS(1486), + [anon_sym___cdecl] = ACTIONS(1486), + [anon_sym___clrcall] = ACTIONS(1486), + [anon_sym___stdcall] = ACTIONS(1486), + [anon_sym___fastcall] = ACTIONS(1486), + [anon_sym___thiscall] = ACTIONS(1486), + [anon_sym___vectorcall] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_signed] = ACTIONS(1486), + [anon_sym_unsigned] = ACTIONS(1486), + [anon_sym_long] = ACTIONS(1486), + [anon_sym_short] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_auto] = ACTIONS(1486), + [anon_sym_register] = ACTIONS(1486), + [anon_sym_inline] = ACTIONS(1486), + [anon_sym___inline] = ACTIONS(1486), + [anon_sym___inline__] = ACTIONS(1486), + [anon_sym___forceinline] = ACTIONS(1486), + [anon_sym_thread_local] = ACTIONS(1486), + [anon_sym___thread] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_constexpr] = ACTIONS(1486), + [anon_sym_volatile] = ACTIONS(1486), + [anon_sym_restrict] = ACTIONS(1486), + [anon_sym___restrict__] = ACTIONS(1486), + [anon_sym__Atomic] = ACTIONS(1486), + [anon_sym__Noreturn] = ACTIONS(1486), + [anon_sym_noreturn] = ACTIONS(1486), + [anon_sym_alignas] = ACTIONS(1486), + [anon_sym__Alignas] = ACTIONS(1486), + [sym_primitive_type] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [anon_sym_struct] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(1486), + [anon_sym_if] = ACTIONS(1486), + [anon_sym_switch] = ACTIONS(1486), + [anon_sym_case] = ACTIONS(1486), + [anon_sym_default] = ACTIONS(1486), + [anon_sym_while] = ACTIONS(1486), + [anon_sym_do] = ACTIONS(1486), + [anon_sym_for] = ACTIONS(1486), + [anon_sym_return] = ACTIONS(1486), + [anon_sym_break] = ACTIONS(1486), + [anon_sym_continue] = ACTIONS(1486), + [anon_sym_goto] = ACTIONS(1486), + [anon_sym___try] = ACTIONS(1486), + [anon_sym___leave] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_sizeof] = ACTIONS(1486), + [anon_sym___alignof__] = ACTIONS(1486), + [anon_sym___alignof] = ACTIONS(1486), + [anon_sym__alignof] = ACTIONS(1486), + [anon_sym_alignof] = ACTIONS(1486), + [anon_sym__Alignof] = ACTIONS(1486), + [anon_sym_offsetof] = ACTIONS(1486), + [anon_sym__Generic] = ACTIONS(1486), + [anon_sym_asm] = ACTIONS(1486), + [anon_sym___asm__] = ACTIONS(1486), + [sym_number_literal] = ACTIONS(1488), + [anon_sym_L_SQUOTE] = ACTIONS(1488), + [anon_sym_u_SQUOTE] = ACTIONS(1488), + [anon_sym_U_SQUOTE] = ACTIONS(1488), + [anon_sym_u8_SQUOTE] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_L_DQUOTE] = ACTIONS(1488), + [anon_sym_u_DQUOTE] = ACTIONS(1488), + [anon_sym_U_DQUOTE] = ACTIONS(1488), + [anon_sym_u8_DQUOTE] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [sym_true] = ACTIONS(1486), + [sym_false] = ACTIONS(1486), + [anon_sym_NULL] = ACTIONS(1486), + [anon_sym_nullptr] = ACTIONS(1486), [sym_comment] = ACTIONS(5), }, - [415] = { - [sym_attribute_declaration] = STATE(429), - [sym_compound_statement] = STATE(182), - [sym_attributed_statement] = STATE(182), - [sym_statement] = STATE(236), - [sym_labeled_statement] = STATE(182), - [sym_expression_statement] = STATE(182), - [sym_if_statement] = STATE(182), - [sym_switch_statement] = STATE(182), - [sym_case_statement] = STATE(182), - [sym_while_statement] = STATE(182), - [sym_do_statement] = STATE(182), - [sym_for_statement] = STATE(182), - [sym_return_statement] = STATE(182), - [sym_break_statement] = STATE(182), - [sym_continue_statement] = STATE(182), - [sym_goto_statement] = STATE(182), - [sym_seh_try_statement] = STATE(182), - [sym_seh_leave_statement] = STATE(182), - [sym_expression] = STATE(1588), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3193), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(429), - [sym_identifier] = ACTIONS(1602), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(455), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_switch] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [anon_sym_default] = ACTIONS(471), - [anon_sym_while] = ACTIONS(473), - [anon_sym_do] = ACTIONS(475), - [anon_sym_for] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_break] = ACTIONS(481), - [anon_sym_continue] = ACTIONS(483), - [anon_sym_goto] = ACTIONS(485), - [anon_sym___try] = ACTIONS(487), - [anon_sym___leave] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [352] = { + [sym_identifier] = ACTIONS(1482), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1482), + [aux_sym_preproc_def_token1] = ACTIONS(1482), + [aux_sym_preproc_if_token1] = ACTIONS(1482), + [aux_sym_preproc_if_token2] = ACTIONS(1482), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1482), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1482), + [sym_preproc_directive] = ACTIONS(1482), + [anon_sym_LPAREN2] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_TILDE] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym___extension__] = ACTIONS(1482), + [anon_sym_typedef] = ACTIONS(1482), + [anon_sym_extern] = ACTIONS(1482), + [anon_sym___attribute__] = ACTIONS(1482), + [anon_sym___scanf] = ACTIONS(1482), + [anon_sym___printf] = ACTIONS(1482), + [anon_sym___read_mostly] = ACTIONS(1482), + [anon_sym___must_hold] = ACTIONS(1482), + [anon_sym___ro_after_init] = ACTIONS(1482), + [anon_sym___noreturn] = ACTIONS(1482), + [anon_sym___cold] = ACTIONS(1482), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1484), + [anon_sym___declspec] = ACTIONS(1482), + [anon_sym___init] = ACTIONS(1482), + [anon_sym___exit] = ACTIONS(1482), + [anon_sym___cdecl] = ACTIONS(1482), + [anon_sym___clrcall] = ACTIONS(1482), + [anon_sym___stdcall] = ACTIONS(1482), + [anon_sym___fastcall] = ACTIONS(1482), + [anon_sym___thiscall] = ACTIONS(1482), + [anon_sym___vectorcall] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_signed] = ACTIONS(1482), + [anon_sym_unsigned] = ACTIONS(1482), + [anon_sym_long] = ACTIONS(1482), + [anon_sym_short] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1482), + [anon_sym_auto] = ACTIONS(1482), + [anon_sym_register] = ACTIONS(1482), + [anon_sym_inline] = ACTIONS(1482), + [anon_sym___inline] = ACTIONS(1482), + [anon_sym___inline__] = ACTIONS(1482), + [anon_sym___forceinline] = ACTIONS(1482), + [anon_sym_thread_local] = ACTIONS(1482), + [anon_sym___thread] = ACTIONS(1482), + [anon_sym_const] = ACTIONS(1482), + [anon_sym_constexpr] = ACTIONS(1482), + [anon_sym_volatile] = ACTIONS(1482), + [anon_sym_restrict] = ACTIONS(1482), + [anon_sym___restrict__] = ACTIONS(1482), + [anon_sym__Atomic] = ACTIONS(1482), + [anon_sym__Noreturn] = ACTIONS(1482), + [anon_sym_noreturn] = ACTIONS(1482), + [anon_sym_alignas] = ACTIONS(1482), + [anon_sym__Alignas] = ACTIONS(1482), + [sym_primitive_type] = ACTIONS(1482), + [anon_sym_enum] = ACTIONS(1482), + [anon_sym_struct] = ACTIONS(1482), + [anon_sym_union] = ACTIONS(1482), + [anon_sym_if] = ACTIONS(1482), + [anon_sym_switch] = ACTIONS(1482), + [anon_sym_case] = ACTIONS(1482), + [anon_sym_default] = ACTIONS(1482), + [anon_sym_while] = ACTIONS(1482), + [anon_sym_do] = ACTIONS(1482), + [anon_sym_for] = ACTIONS(1482), + [anon_sym_return] = ACTIONS(1482), + [anon_sym_break] = ACTIONS(1482), + [anon_sym_continue] = ACTIONS(1482), + [anon_sym_goto] = ACTIONS(1482), + [anon_sym___try] = ACTIONS(1482), + [anon_sym___leave] = ACTIONS(1482), + [anon_sym_DASH_DASH] = ACTIONS(1484), + [anon_sym_PLUS_PLUS] = ACTIONS(1484), + [anon_sym_sizeof] = ACTIONS(1482), + [anon_sym___alignof__] = ACTIONS(1482), + [anon_sym___alignof] = ACTIONS(1482), + [anon_sym__alignof] = ACTIONS(1482), + [anon_sym_alignof] = ACTIONS(1482), + [anon_sym__Alignof] = ACTIONS(1482), + [anon_sym_offsetof] = ACTIONS(1482), + [anon_sym__Generic] = ACTIONS(1482), + [anon_sym_asm] = ACTIONS(1482), + [anon_sym___asm__] = ACTIONS(1482), + [sym_number_literal] = ACTIONS(1484), + [anon_sym_L_SQUOTE] = ACTIONS(1484), + [anon_sym_u_SQUOTE] = ACTIONS(1484), + [anon_sym_U_SQUOTE] = ACTIONS(1484), + [anon_sym_u8_SQUOTE] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_L_DQUOTE] = ACTIONS(1484), + [anon_sym_u_DQUOTE] = ACTIONS(1484), + [anon_sym_U_DQUOTE] = ACTIONS(1484), + [anon_sym_u8_DQUOTE] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [sym_true] = ACTIONS(1482), + [sym_false] = ACTIONS(1482), + [anon_sym_NULL] = ACTIONS(1482), + [anon_sym_nullptr] = ACTIONS(1482), [sym_comment] = ACTIONS(5), }, - [416] = { - [sym_attribute_declaration] = STATE(434), - [sym_compound_statement] = STATE(99), - [sym_attributed_statement] = STATE(99), - [sym_statement] = STATE(80), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym_seh_try_statement] = STATE(99), - [sym_seh_leave_statement] = STATE(99), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(434), - [sym_identifier] = ACTIONS(1604), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(131), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_if] = ACTIONS(141), - [anon_sym_switch] = ACTIONS(143), - [anon_sym_case] = ACTIONS(145), - [anon_sym_default] = ACTIONS(147), - [anon_sym_while] = ACTIONS(149), - [anon_sym_do] = ACTIONS(151), - [anon_sym_for] = ACTIONS(153), - [anon_sym_return] = ACTIONS(155), - [anon_sym_break] = ACTIONS(157), - [anon_sym_continue] = ACTIONS(159), - [anon_sym_goto] = ACTIONS(161), - [anon_sym___try] = ACTIONS(163), - [anon_sym___leave] = ACTIONS(165), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [353] = { + [sym_identifier] = ACTIONS(1478), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1478), + [aux_sym_preproc_def_token1] = ACTIONS(1478), + [aux_sym_preproc_if_token1] = ACTIONS(1478), + [aux_sym_preproc_if_token2] = ACTIONS(1478), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1478), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1478), + [sym_preproc_directive] = ACTIONS(1478), + [anon_sym_LPAREN2] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_TILDE] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym___extension__] = ACTIONS(1478), + [anon_sym_typedef] = ACTIONS(1478), + [anon_sym_extern] = ACTIONS(1478), + [anon_sym___attribute__] = ACTIONS(1478), + [anon_sym___scanf] = ACTIONS(1478), + [anon_sym___printf] = ACTIONS(1478), + [anon_sym___read_mostly] = ACTIONS(1478), + [anon_sym___must_hold] = ACTIONS(1478), + [anon_sym___ro_after_init] = ACTIONS(1478), + [anon_sym___noreturn] = ACTIONS(1478), + [anon_sym___cold] = ACTIONS(1478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1480), + [anon_sym___declspec] = ACTIONS(1478), + [anon_sym___init] = ACTIONS(1478), + [anon_sym___exit] = ACTIONS(1478), + [anon_sym___cdecl] = ACTIONS(1478), + [anon_sym___clrcall] = ACTIONS(1478), + [anon_sym___stdcall] = ACTIONS(1478), + [anon_sym___fastcall] = ACTIONS(1478), + [anon_sym___thiscall] = ACTIONS(1478), + [anon_sym___vectorcall] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_signed] = ACTIONS(1478), + [anon_sym_unsigned] = ACTIONS(1478), + [anon_sym_long] = ACTIONS(1478), + [anon_sym_short] = ACTIONS(1478), + [anon_sym_static] = ACTIONS(1478), + [anon_sym_auto] = ACTIONS(1478), + [anon_sym_register] = ACTIONS(1478), + [anon_sym_inline] = ACTIONS(1478), + [anon_sym___inline] = ACTIONS(1478), + [anon_sym___inline__] = ACTIONS(1478), + [anon_sym___forceinline] = ACTIONS(1478), + [anon_sym_thread_local] = ACTIONS(1478), + [anon_sym___thread] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1478), + [anon_sym_constexpr] = ACTIONS(1478), + [anon_sym_volatile] = ACTIONS(1478), + [anon_sym_restrict] = ACTIONS(1478), + [anon_sym___restrict__] = ACTIONS(1478), + [anon_sym__Atomic] = ACTIONS(1478), + [anon_sym__Noreturn] = ACTIONS(1478), + [anon_sym_noreturn] = ACTIONS(1478), + [anon_sym_alignas] = ACTIONS(1478), + [anon_sym__Alignas] = ACTIONS(1478), + [sym_primitive_type] = ACTIONS(1478), + [anon_sym_enum] = ACTIONS(1478), + [anon_sym_struct] = ACTIONS(1478), + [anon_sym_union] = ACTIONS(1478), + [anon_sym_if] = ACTIONS(1478), + [anon_sym_switch] = ACTIONS(1478), + [anon_sym_case] = ACTIONS(1478), + [anon_sym_default] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1478), + [anon_sym_do] = ACTIONS(1478), + [anon_sym_for] = ACTIONS(1478), + [anon_sym_return] = ACTIONS(1478), + [anon_sym_break] = ACTIONS(1478), + [anon_sym_continue] = ACTIONS(1478), + [anon_sym_goto] = ACTIONS(1478), + [anon_sym___try] = ACTIONS(1478), + [anon_sym___leave] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1480), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_sizeof] = ACTIONS(1478), + [anon_sym___alignof__] = ACTIONS(1478), + [anon_sym___alignof] = ACTIONS(1478), + [anon_sym__alignof] = ACTIONS(1478), + [anon_sym_alignof] = ACTIONS(1478), + [anon_sym__Alignof] = ACTIONS(1478), + [anon_sym_offsetof] = ACTIONS(1478), + [anon_sym__Generic] = ACTIONS(1478), + [anon_sym_asm] = ACTIONS(1478), + [anon_sym___asm__] = ACTIONS(1478), + [sym_number_literal] = ACTIONS(1480), + [anon_sym_L_SQUOTE] = ACTIONS(1480), + [anon_sym_u_SQUOTE] = ACTIONS(1480), + [anon_sym_U_SQUOTE] = ACTIONS(1480), + [anon_sym_u8_SQUOTE] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_L_DQUOTE] = ACTIONS(1480), + [anon_sym_u_DQUOTE] = ACTIONS(1480), + [anon_sym_U_DQUOTE] = ACTIONS(1480), + [anon_sym_u8_DQUOTE] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [sym_true] = ACTIONS(1478), + [sym_false] = ACTIONS(1478), + [anon_sym_NULL] = ACTIONS(1478), + [anon_sym_nullptr] = ACTIONS(1478), [sym_comment] = ACTIONS(5), }, - [417] = { - [sym_attribute_declaration] = STATE(434), - [sym_compound_statement] = STATE(99), - [sym_attributed_statement] = STATE(99), - [sym_statement] = STATE(117), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym_seh_try_statement] = STATE(99), - [sym_seh_leave_statement] = STATE(99), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(434), - [sym_identifier] = ACTIONS(1604), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(131), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_if] = ACTIONS(141), - [anon_sym_switch] = ACTIONS(143), - [anon_sym_case] = ACTIONS(145), - [anon_sym_default] = ACTIONS(147), - [anon_sym_while] = ACTIONS(149), - [anon_sym_do] = ACTIONS(151), - [anon_sym_for] = ACTIONS(153), - [anon_sym_return] = ACTIONS(155), - [anon_sym_break] = ACTIONS(157), - [anon_sym_continue] = ACTIONS(159), - [anon_sym_goto] = ACTIONS(161), - [anon_sym___try] = ACTIONS(163), - [anon_sym___leave] = ACTIONS(165), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [354] = { + [sym_identifier] = ACTIONS(1462), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1462), + [aux_sym_preproc_def_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token2] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1462), + [sym_preproc_directive] = ACTIONS(1462), + [anon_sym_LPAREN2] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym___extension__] = ACTIONS(1462), + [anon_sym_typedef] = ACTIONS(1462), + [anon_sym_extern] = ACTIONS(1462), + [anon_sym___attribute__] = ACTIONS(1462), + [anon_sym___scanf] = ACTIONS(1462), + [anon_sym___printf] = ACTIONS(1462), + [anon_sym___read_mostly] = ACTIONS(1462), + [anon_sym___must_hold] = ACTIONS(1462), + [anon_sym___ro_after_init] = ACTIONS(1462), + [anon_sym___noreturn] = ACTIONS(1462), + [anon_sym___cold] = ACTIONS(1462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1464), + [anon_sym___declspec] = ACTIONS(1462), + [anon_sym___init] = ACTIONS(1462), + [anon_sym___exit] = ACTIONS(1462), + [anon_sym___cdecl] = ACTIONS(1462), + [anon_sym___clrcall] = ACTIONS(1462), + [anon_sym___stdcall] = ACTIONS(1462), + [anon_sym___fastcall] = ACTIONS(1462), + [anon_sym___thiscall] = ACTIONS(1462), + [anon_sym___vectorcall] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_signed] = ACTIONS(1462), + [anon_sym_unsigned] = ACTIONS(1462), + [anon_sym_long] = ACTIONS(1462), + [anon_sym_short] = ACTIONS(1462), + [anon_sym_static] = ACTIONS(1462), + [anon_sym_auto] = ACTIONS(1462), + [anon_sym_register] = ACTIONS(1462), + [anon_sym_inline] = ACTIONS(1462), + [anon_sym___inline] = ACTIONS(1462), + [anon_sym___inline__] = ACTIONS(1462), + [anon_sym___forceinline] = ACTIONS(1462), + [anon_sym_thread_local] = ACTIONS(1462), + [anon_sym___thread] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1462), + [anon_sym_constexpr] = ACTIONS(1462), + [anon_sym_volatile] = ACTIONS(1462), + [anon_sym_restrict] = ACTIONS(1462), + [anon_sym___restrict__] = ACTIONS(1462), + [anon_sym__Atomic] = ACTIONS(1462), + [anon_sym__Noreturn] = ACTIONS(1462), + [anon_sym_noreturn] = ACTIONS(1462), + [anon_sym_alignas] = ACTIONS(1462), + [anon_sym__Alignas] = ACTIONS(1462), + [sym_primitive_type] = ACTIONS(1462), + [anon_sym_enum] = ACTIONS(1462), + [anon_sym_struct] = ACTIONS(1462), + [anon_sym_union] = ACTIONS(1462), + [anon_sym_if] = ACTIONS(1462), + [anon_sym_switch] = ACTIONS(1462), + [anon_sym_case] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1462), + [anon_sym_do] = ACTIONS(1462), + [anon_sym_for] = ACTIONS(1462), + [anon_sym_return] = ACTIONS(1462), + [anon_sym_break] = ACTIONS(1462), + [anon_sym_continue] = ACTIONS(1462), + [anon_sym_goto] = ACTIONS(1462), + [anon_sym___try] = ACTIONS(1462), + [anon_sym___leave] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1464), + [anon_sym_PLUS_PLUS] = ACTIONS(1464), + [anon_sym_sizeof] = ACTIONS(1462), + [anon_sym___alignof__] = ACTIONS(1462), + [anon_sym___alignof] = ACTIONS(1462), + [anon_sym__alignof] = ACTIONS(1462), + [anon_sym_alignof] = ACTIONS(1462), + [anon_sym__Alignof] = ACTIONS(1462), + [anon_sym_offsetof] = ACTIONS(1462), + [anon_sym__Generic] = ACTIONS(1462), + [anon_sym_asm] = ACTIONS(1462), + [anon_sym___asm__] = ACTIONS(1462), + [sym_number_literal] = ACTIONS(1464), + [anon_sym_L_SQUOTE] = ACTIONS(1464), + [anon_sym_u_SQUOTE] = ACTIONS(1464), + [anon_sym_U_SQUOTE] = ACTIONS(1464), + [anon_sym_u8_SQUOTE] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_L_DQUOTE] = ACTIONS(1464), + [anon_sym_u_DQUOTE] = ACTIONS(1464), + [anon_sym_U_DQUOTE] = ACTIONS(1464), + [anon_sym_u8_DQUOTE] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(1464), + [sym_true] = ACTIONS(1462), + [sym_false] = ACTIONS(1462), + [anon_sym_NULL] = ACTIONS(1462), + [anon_sym_nullptr] = ACTIONS(1462), [sym_comment] = ACTIONS(5), }, - [418] = { - [sym_attribute_declaration] = STATE(440), - [sym_compound_statement] = STATE(242), - [sym_attributed_statement] = STATE(242), - [sym_statement] = STATE(277), - [sym_labeled_statement] = STATE(242), - [sym_expression_statement] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_switch_statement] = STATE(242), - [sym_case_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_do_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_return_statement] = STATE(242), - [sym_break_statement] = STATE(242), - [sym_continue_statement] = STATE(242), - [sym_goto_statement] = STATE(242), - [sym_seh_try_statement] = STATE(242), - [sym_seh_leave_statement] = STATE(242), - [sym_expression] = STATE(1603), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3235), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [sym_identifier] = ACTIONS(1606), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_if] = ACTIONS(67), - [anon_sym_switch] = ACTIONS(69), - [anon_sym_case] = ACTIONS(71), - [anon_sym_default] = ACTIONS(73), - [anon_sym_while] = ACTIONS(75), - [anon_sym_do] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_return] = ACTIONS(81), - [anon_sym_break] = ACTIONS(83), - [anon_sym_continue] = ACTIONS(85), - [anon_sym_goto] = ACTIONS(87), - [anon_sym___try] = ACTIONS(966), - [anon_sym___leave] = ACTIONS(968), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [355] = { + [sym_identifier] = ACTIONS(1490), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1490), + [aux_sym_preproc_def_token1] = ACTIONS(1490), + [aux_sym_preproc_if_token1] = ACTIONS(1490), + [aux_sym_preproc_if_token2] = ACTIONS(1490), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1490), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1490), + [sym_preproc_directive] = ACTIONS(1490), + [anon_sym_LPAREN2] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym___extension__] = ACTIONS(1490), + [anon_sym_typedef] = ACTIONS(1490), + [anon_sym_extern] = ACTIONS(1490), + [anon_sym___attribute__] = ACTIONS(1490), + [anon_sym___scanf] = ACTIONS(1490), + [anon_sym___printf] = ACTIONS(1490), + [anon_sym___read_mostly] = ACTIONS(1490), + [anon_sym___must_hold] = ACTIONS(1490), + [anon_sym___ro_after_init] = ACTIONS(1490), + [anon_sym___noreturn] = ACTIONS(1490), + [anon_sym___cold] = ACTIONS(1490), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1492), + [anon_sym___declspec] = ACTIONS(1490), + [anon_sym___init] = ACTIONS(1490), + [anon_sym___exit] = ACTIONS(1490), + [anon_sym___cdecl] = ACTIONS(1490), + [anon_sym___clrcall] = ACTIONS(1490), + [anon_sym___stdcall] = ACTIONS(1490), + [anon_sym___fastcall] = ACTIONS(1490), + [anon_sym___thiscall] = ACTIONS(1490), + [anon_sym___vectorcall] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_signed] = ACTIONS(1490), + [anon_sym_unsigned] = ACTIONS(1490), + [anon_sym_long] = ACTIONS(1490), + [anon_sym_short] = ACTIONS(1490), + [anon_sym_static] = ACTIONS(1490), + [anon_sym_auto] = ACTIONS(1490), + [anon_sym_register] = ACTIONS(1490), + [anon_sym_inline] = ACTIONS(1490), + [anon_sym___inline] = ACTIONS(1490), + [anon_sym___inline__] = ACTIONS(1490), + [anon_sym___forceinline] = ACTIONS(1490), + [anon_sym_thread_local] = ACTIONS(1490), + [anon_sym___thread] = ACTIONS(1490), + [anon_sym_const] = ACTIONS(1490), + [anon_sym_constexpr] = ACTIONS(1490), + [anon_sym_volatile] = ACTIONS(1490), + [anon_sym_restrict] = ACTIONS(1490), + [anon_sym___restrict__] = ACTIONS(1490), + [anon_sym__Atomic] = ACTIONS(1490), + [anon_sym__Noreturn] = ACTIONS(1490), + [anon_sym_noreturn] = ACTIONS(1490), + [anon_sym_alignas] = ACTIONS(1490), + [anon_sym__Alignas] = ACTIONS(1490), + [sym_primitive_type] = ACTIONS(1490), + [anon_sym_enum] = ACTIONS(1490), + [anon_sym_struct] = ACTIONS(1490), + [anon_sym_union] = ACTIONS(1490), + [anon_sym_if] = ACTIONS(1490), + [anon_sym_switch] = ACTIONS(1490), + [anon_sym_case] = ACTIONS(1490), + [anon_sym_default] = ACTIONS(1490), + [anon_sym_while] = ACTIONS(1490), + [anon_sym_do] = ACTIONS(1490), + [anon_sym_for] = ACTIONS(1490), + [anon_sym_return] = ACTIONS(1490), + [anon_sym_break] = ACTIONS(1490), + [anon_sym_continue] = ACTIONS(1490), + [anon_sym_goto] = ACTIONS(1490), + [anon_sym___try] = ACTIONS(1490), + [anon_sym___leave] = ACTIONS(1490), + [anon_sym_DASH_DASH] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1492), + [anon_sym_sizeof] = ACTIONS(1490), + [anon_sym___alignof__] = ACTIONS(1490), + [anon_sym___alignof] = ACTIONS(1490), + [anon_sym__alignof] = ACTIONS(1490), + [anon_sym_alignof] = ACTIONS(1490), + [anon_sym__Alignof] = ACTIONS(1490), + [anon_sym_offsetof] = ACTIONS(1490), + [anon_sym__Generic] = ACTIONS(1490), + [anon_sym_asm] = ACTIONS(1490), + [anon_sym___asm__] = ACTIONS(1490), + [sym_number_literal] = ACTIONS(1492), + [anon_sym_L_SQUOTE] = ACTIONS(1492), + [anon_sym_u_SQUOTE] = ACTIONS(1492), + [anon_sym_U_SQUOTE] = ACTIONS(1492), + [anon_sym_u8_SQUOTE] = ACTIONS(1492), + [anon_sym_SQUOTE] = ACTIONS(1492), + [anon_sym_L_DQUOTE] = ACTIONS(1492), + [anon_sym_u_DQUOTE] = ACTIONS(1492), + [anon_sym_U_DQUOTE] = ACTIONS(1492), + [anon_sym_u8_DQUOTE] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [sym_true] = ACTIONS(1490), + [sym_false] = ACTIONS(1490), + [anon_sym_NULL] = ACTIONS(1490), + [anon_sym_nullptr] = ACTIONS(1490), [sym_comment] = ACTIONS(5), }, - [419] = { - [sym_attribute_declaration] = STATE(434), - [sym_compound_statement] = STATE(99), - [sym_attributed_statement] = STATE(99), - [sym_statement] = STATE(115), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym_seh_try_statement] = STATE(99), - [sym_seh_leave_statement] = STATE(99), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(434), - [sym_identifier] = ACTIONS(1604), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(131), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_if] = ACTIONS(141), - [anon_sym_switch] = ACTIONS(143), - [anon_sym_case] = ACTIONS(145), - [anon_sym_default] = ACTIONS(147), - [anon_sym_while] = ACTIONS(149), - [anon_sym_do] = ACTIONS(151), - [anon_sym_for] = ACTIONS(153), - [anon_sym_return] = ACTIONS(155), - [anon_sym_break] = ACTIONS(157), - [anon_sym_continue] = ACTIONS(159), - [anon_sym_goto] = ACTIONS(161), - [anon_sym___try] = ACTIONS(163), - [anon_sym___leave] = ACTIONS(165), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [356] = { + [sym_identifier] = ACTIONS(1462), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1462), + [aux_sym_preproc_def_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1462), + [sym_preproc_directive] = ACTIONS(1462), + [anon_sym_LPAREN2] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym___extension__] = ACTIONS(1462), + [anon_sym_typedef] = ACTIONS(1462), + [anon_sym_extern] = ACTIONS(1462), + [anon_sym___attribute__] = ACTIONS(1462), + [anon_sym___scanf] = ACTIONS(1462), + [anon_sym___printf] = ACTIONS(1462), + [anon_sym___read_mostly] = ACTIONS(1462), + [anon_sym___must_hold] = ACTIONS(1462), + [anon_sym___ro_after_init] = ACTIONS(1462), + [anon_sym___noreturn] = ACTIONS(1462), + [anon_sym___cold] = ACTIONS(1462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1464), + [anon_sym___declspec] = ACTIONS(1462), + [anon_sym___init] = ACTIONS(1462), + [anon_sym___exit] = ACTIONS(1462), + [anon_sym___cdecl] = ACTIONS(1462), + [anon_sym___clrcall] = ACTIONS(1462), + [anon_sym___stdcall] = ACTIONS(1462), + [anon_sym___fastcall] = ACTIONS(1462), + [anon_sym___thiscall] = ACTIONS(1462), + [anon_sym___vectorcall] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_RBRACE] = ACTIONS(1464), + [anon_sym_signed] = ACTIONS(1462), + [anon_sym_unsigned] = ACTIONS(1462), + [anon_sym_long] = ACTIONS(1462), + [anon_sym_short] = ACTIONS(1462), + [anon_sym_static] = ACTIONS(1462), + [anon_sym_auto] = ACTIONS(1462), + [anon_sym_register] = ACTIONS(1462), + [anon_sym_inline] = ACTIONS(1462), + [anon_sym___inline] = ACTIONS(1462), + [anon_sym___inline__] = ACTIONS(1462), + [anon_sym___forceinline] = ACTIONS(1462), + [anon_sym_thread_local] = ACTIONS(1462), + [anon_sym___thread] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1462), + [anon_sym_constexpr] = ACTIONS(1462), + [anon_sym_volatile] = ACTIONS(1462), + [anon_sym_restrict] = ACTIONS(1462), + [anon_sym___restrict__] = ACTIONS(1462), + [anon_sym__Atomic] = ACTIONS(1462), + [anon_sym__Noreturn] = ACTIONS(1462), + [anon_sym_noreturn] = ACTIONS(1462), + [anon_sym_alignas] = ACTIONS(1462), + [anon_sym__Alignas] = ACTIONS(1462), + [sym_primitive_type] = ACTIONS(1462), + [anon_sym_enum] = ACTIONS(1462), + [anon_sym_struct] = ACTIONS(1462), + [anon_sym_union] = ACTIONS(1462), + [anon_sym_if] = ACTIONS(1462), + [anon_sym_switch] = ACTIONS(1462), + [anon_sym_case] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1462), + [anon_sym_do] = ACTIONS(1462), + [anon_sym_for] = ACTIONS(1462), + [anon_sym_return] = ACTIONS(1462), + [anon_sym_break] = ACTIONS(1462), + [anon_sym_continue] = ACTIONS(1462), + [anon_sym_goto] = ACTIONS(1462), + [anon_sym___try] = ACTIONS(1462), + [anon_sym___leave] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1464), + [anon_sym_PLUS_PLUS] = ACTIONS(1464), + [anon_sym_sizeof] = ACTIONS(1462), + [anon_sym___alignof__] = ACTIONS(1462), + [anon_sym___alignof] = ACTIONS(1462), + [anon_sym__alignof] = ACTIONS(1462), + [anon_sym_alignof] = ACTIONS(1462), + [anon_sym__Alignof] = ACTIONS(1462), + [anon_sym_offsetof] = ACTIONS(1462), + [anon_sym__Generic] = ACTIONS(1462), + [anon_sym_asm] = ACTIONS(1462), + [anon_sym___asm__] = ACTIONS(1462), + [sym_number_literal] = ACTIONS(1464), + [anon_sym_L_SQUOTE] = ACTIONS(1464), + [anon_sym_u_SQUOTE] = ACTIONS(1464), + [anon_sym_U_SQUOTE] = ACTIONS(1464), + [anon_sym_u8_SQUOTE] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_L_DQUOTE] = ACTIONS(1464), + [anon_sym_u_DQUOTE] = ACTIONS(1464), + [anon_sym_U_DQUOTE] = ACTIONS(1464), + [anon_sym_u8_DQUOTE] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(1464), + [sym_true] = ACTIONS(1462), + [sym_false] = ACTIONS(1462), + [anon_sym_NULL] = ACTIONS(1462), + [anon_sym_nullptr] = ACTIONS(1462), [sym_comment] = ACTIONS(5), }, - [420] = { - [sym_attribute_declaration] = STATE(457), - [sym_compound_statement] = STATE(2752), - [sym_attributed_statement] = STATE(2752), - [sym_statement] = STATE(2794), - [sym_labeled_statement] = STATE(2752), - [sym_expression_statement] = STATE(2752), - [sym_if_statement] = STATE(2752), - [sym_switch_statement] = STATE(2752), - [sym_case_statement] = STATE(2752), - [sym_while_statement] = STATE(2752), - [sym_do_statement] = STATE(2752), - [sym_for_statement] = STATE(2752), - [sym_return_statement] = STATE(2752), - [sym_break_statement] = STATE(2752), - [sym_continue_statement] = STATE(2752), - [sym_goto_statement] = STATE(2752), - [sym_seh_try_statement] = STATE(2752), - [sym_seh_leave_statement] = STATE(2752), - [sym_expression] = STATE(1565), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3107), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(457), - [sym_identifier] = ACTIONS(1564), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(1566), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1570), - [anon_sym_if] = ACTIONS(1572), - [anon_sym_switch] = ACTIONS(1574), - [anon_sym_case] = ACTIONS(1576), - [anon_sym_default] = ACTIONS(1578), - [anon_sym_while] = ACTIONS(1580), - [anon_sym_do] = ACTIONS(1582), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1586), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1590), - [anon_sym_goto] = ACTIONS(1592), - [anon_sym___try] = ACTIONS(1594), - [anon_sym___leave] = ACTIONS(1596), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [357] = { + [sym_identifier] = ACTIONS(1410), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1410), + [aux_sym_preproc_def_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token2] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), + [sym_preproc_directive] = ACTIONS(1410), + [anon_sym_LPAREN2] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym___extension__] = ACTIONS(1410), + [anon_sym_typedef] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym___attribute__] = ACTIONS(1410), + [anon_sym___scanf] = ACTIONS(1410), + [anon_sym___printf] = ACTIONS(1410), + [anon_sym___read_mostly] = ACTIONS(1410), + [anon_sym___must_hold] = ACTIONS(1410), + [anon_sym___ro_after_init] = ACTIONS(1410), + [anon_sym___noreturn] = ACTIONS(1410), + [anon_sym___cold] = ACTIONS(1410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), + [anon_sym___declspec] = ACTIONS(1410), + [anon_sym___init] = ACTIONS(1410), + [anon_sym___exit] = ACTIONS(1410), + [anon_sym___cdecl] = ACTIONS(1410), + [anon_sym___clrcall] = ACTIONS(1410), + [anon_sym___stdcall] = ACTIONS(1410), + [anon_sym___fastcall] = ACTIONS(1410), + [anon_sym___thiscall] = ACTIONS(1410), + [anon_sym___vectorcall] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_auto] = ACTIONS(1410), + [anon_sym_register] = ACTIONS(1410), + [anon_sym_inline] = ACTIONS(1410), + [anon_sym___inline] = ACTIONS(1410), + [anon_sym___inline__] = ACTIONS(1410), + [anon_sym___forceinline] = ACTIONS(1410), + [anon_sym_thread_local] = ACTIONS(1410), + [anon_sym___thread] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_constexpr] = ACTIONS(1410), + [anon_sym_volatile] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), + [anon_sym___restrict__] = ACTIONS(1410), + [anon_sym__Atomic] = ACTIONS(1410), + [anon_sym__Noreturn] = ACTIONS(1410), + [anon_sym_noreturn] = ACTIONS(1410), + [anon_sym_alignas] = ACTIONS(1410), + [anon_sym__Alignas] = ACTIONS(1410), + [sym_primitive_type] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_switch] = ACTIONS(1410), + [anon_sym_case] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_do] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_goto] = ACTIONS(1410), + [anon_sym___try] = ACTIONS(1410), + [anon_sym___leave] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_sizeof] = ACTIONS(1410), + [anon_sym___alignof__] = ACTIONS(1410), + [anon_sym___alignof] = ACTIONS(1410), + [anon_sym__alignof] = ACTIONS(1410), + [anon_sym_alignof] = ACTIONS(1410), + [anon_sym__Alignof] = ACTIONS(1410), + [anon_sym_offsetof] = ACTIONS(1410), + [anon_sym__Generic] = ACTIONS(1410), + [anon_sym_asm] = ACTIONS(1410), + [anon_sym___asm__] = ACTIONS(1410), + [sym_number_literal] = ACTIONS(1412), + [anon_sym_L_SQUOTE] = ACTIONS(1412), + [anon_sym_u_SQUOTE] = ACTIONS(1412), + [anon_sym_U_SQUOTE] = ACTIONS(1412), + [anon_sym_u8_SQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_L_DQUOTE] = ACTIONS(1412), + [anon_sym_u_DQUOTE] = ACTIONS(1412), + [anon_sym_U_DQUOTE] = ACTIONS(1412), + [anon_sym_u8_DQUOTE] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_true] = ACTIONS(1410), + [sym_false] = ACTIONS(1410), + [anon_sym_NULL] = ACTIONS(1410), + [anon_sym_nullptr] = ACTIONS(1410), [sym_comment] = ACTIONS(5), }, - [421] = { - [sym_attribute_declaration] = STATE(433), - [sym_compound_statement] = STATE(179), - [sym_attributed_statement] = STATE(179), - [sym_statement] = STATE(208), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [sym_identifier] = ACTIONS(1600), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(385), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_switch] = ACTIONS(399), - [anon_sym_case] = ACTIONS(401), - [anon_sym_default] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_goto] = ACTIONS(417), - [anon_sym___try] = ACTIONS(419), - [anon_sym___leave] = ACTIONS(421), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [358] = { + [sym_identifier] = ACTIONS(1446), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1446), + [aux_sym_preproc_def_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token1] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), + [sym_preproc_directive] = ACTIONS(1446), + [anon_sym_LPAREN2] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym___extension__] = ACTIONS(1446), + [anon_sym_typedef] = ACTIONS(1446), + [anon_sym_extern] = ACTIONS(1446), + [anon_sym___attribute__] = ACTIONS(1446), + [anon_sym___scanf] = ACTIONS(1446), + [anon_sym___printf] = ACTIONS(1446), + [anon_sym___read_mostly] = ACTIONS(1446), + [anon_sym___must_hold] = ACTIONS(1446), + [anon_sym___ro_after_init] = ACTIONS(1446), + [anon_sym___noreturn] = ACTIONS(1446), + [anon_sym___cold] = ACTIONS(1446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym___declspec] = ACTIONS(1446), + [anon_sym___init] = ACTIONS(1446), + [anon_sym___exit] = ACTIONS(1446), + [anon_sym___cdecl] = ACTIONS(1446), + [anon_sym___clrcall] = ACTIONS(1446), + [anon_sym___stdcall] = ACTIONS(1446), + [anon_sym___fastcall] = ACTIONS(1446), + [anon_sym___thiscall] = ACTIONS(1446), + [anon_sym___vectorcall] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1448), + [anon_sym_signed] = ACTIONS(1446), + [anon_sym_unsigned] = ACTIONS(1446), + [anon_sym_long] = ACTIONS(1446), + [anon_sym_short] = ACTIONS(1446), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_auto] = ACTIONS(1446), + [anon_sym_register] = ACTIONS(1446), + [anon_sym_inline] = ACTIONS(1446), + [anon_sym___inline] = ACTIONS(1446), + [anon_sym___inline__] = ACTIONS(1446), + [anon_sym___forceinline] = ACTIONS(1446), + [anon_sym_thread_local] = ACTIONS(1446), + [anon_sym___thread] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_constexpr] = ACTIONS(1446), + [anon_sym_volatile] = ACTIONS(1446), + [anon_sym_restrict] = ACTIONS(1446), + [anon_sym___restrict__] = ACTIONS(1446), + [anon_sym__Atomic] = ACTIONS(1446), + [anon_sym__Noreturn] = ACTIONS(1446), + [anon_sym_noreturn] = ACTIONS(1446), + [anon_sym_alignas] = ACTIONS(1446), + [anon_sym__Alignas] = ACTIONS(1446), + [sym_primitive_type] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_switch] = ACTIONS(1446), + [anon_sym_case] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_do] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_goto] = ACTIONS(1446), + [anon_sym___try] = ACTIONS(1446), + [anon_sym___leave] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1446), + [anon_sym___alignof__] = ACTIONS(1446), + [anon_sym___alignof] = ACTIONS(1446), + [anon_sym__alignof] = ACTIONS(1446), + [anon_sym_alignof] = ACTIONS(1446), + [anon_sym__Alignof] = ACTIONS(1446), + [anon_sym_offsetof] = ACTIONS(1446), + [anon_sym__Generic] = ACTIONS(1446), + [anon_sym_asm] = ACTIONS(1446), + [anon_sym___asm__] = ACTIONS(1446), + [sym_number_literal] = ACTIONS(1448), + [anon_sym_L_SQUOTE] = ACTIONS(1448), + [anon_sym_u_SQUOTE] = ACTIONS(1448), + [anon_sym_U_SQUOTE] = ACTIONS(1448), + [anon_sym_u8_SQUOTE] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_L_DQUOTE] = ACTIONS(1448), + [anon_sym_u_DQUOTE] = ACTIONS(1448), + [anon_sym_U_DQUOTE] = ACTIONS(1448), + [anon_sym_u8_DQUOTE] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_true] = ACTIONS(1446), + [sym_false] = ACTIONS(1446), + [anon_sym_NULL] = ACTIONS(1446), + [anon_sym_nullptr] = ACTIONS(1446), [sym_comment] = ACTIONS(5), }, - [422] = { - [sym_attribute_declaration] = STATE(429), - [sym_compound_statement] = STATE(182), - [sym_attributed_statement] = STATE(182), - [sym_statement] = STATE(214), - [sym_labeled_statement] = STATE(182), - [sym_expression_statement] = STATE(182), - [sym_if_statement] = STATE(182), - [sym_switch_statement] = STATE(182), - [sym_case_statement] = STATE(182), - [sym_while_statement] = STATE(182), - [sym_do_statement] = STATE(182), - [sym_for_statement] = STATE(182), - [sym_return_statement] = STATE(182), - [sym_break_statement] = STATE(182), - [sym_continue_statement] = STATE(182), - [sym_goto_statement] = STATE(182), - [sym_seh_try_statement] = STATE(182), - [sym_seh_leave_statement] = STATE(182), - [sym_expression] = STATE(1588), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3193), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(429), - [sym_identifier] = ACTIONS(1602), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(455), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_switch] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [anon_sym_default] = ACTIONS(471), - [anon_sym_while] = ACTIONS(473), - [anon_sym_do] = ACTIONS(475), - [anon_sym_for] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_break] = ACTIONS(481), - [anon_sym_continue] = ACTIONS(483), - [anon_sym_goto] = ACTIONS(485), - [anon_sym___try] = ACTIONS(487), - [anon_sym___leave] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [359] = { + [sym_identifier] = ACTIONS(1458), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1458), + [aux_sym_preproc_def_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token2] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1458), + [sym_preproc_directive] = ACTIONS(1458), + [anon_sym_LPAREN2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym___extension__] = ACTIONS(1458), + [anon_sym_typedef] = ACTIONS(1458), + [anon_sym_extern] = ACTIONS(1458), + [anon_sym___attribute__] = ACTIONS(1458), + [anon_sym___scanf] = ACTIONS(1458), + [anon_sym___printf] = ACTIONS(1458), + [anon_sym___read_mostly] = ACTIONS(1458), + [anon_sym___must_hold] = ACTIONS(1458), + [anon_sym___ro_after_init] = ACTIONS(1458), + [anon_sym___noreturn] = ACTIONS(1458), + [anon_sym___cold] = ACTIONS(1458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1460), + [anon_sym___declspec] = ACTIONS(1458), + [anon_sym___init] = ACTIONS(1458), + [anon_sym___exit] = ACTIONS(1458), + [anon_sym___cdecl] = ACTIONS(1458), + [anon_sym___clrcall] = ACTIONS(1458), + [anon_sym___stdcall] = ACTIONS(1458), + [anon_sym___fastcall] = ACTIONS(1458), + [anon_sym___thiscall] = ACTIONS(1458), + [anon_sym___vectorcall] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_signed] = ACTIONS(1458), + [anon_sym_unsigned] = ACTIONS(1458), + [anon_sym_long] = ACTIONS(1458), + [anon_sym_short] = ACTIONS(1458), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_auto] = ACTIONS(1458), + [anon_sym_register] = ACTIONS(1458), + [anon_sym_inline] = ACTIONS(1458), + [anon_sym___inline] = ACTIONS(1458), + [anon_sym___inline__] = ACTIONS(1458), + [anon_sym___forceinline] = ACTIONS(1458), + [anon_sym_thread_local] = ACTIONS(1458), + [anon_sym___thread] = ACTIONS(1458), + [anon_sym_const] = ACTIONS(1458), + [anon_sym_constexpr] = ACTIONS(1458), + [anon_sym_volatile] = ACTIONS(1458), + [anon_sym_restrict] = ACTIONS(1458), + [anon_sym___restrict__] = ACTIONS(1458), + [anon_sym__Atomic] = ACTIONS(1458), + [anon_sym__Noreturn] = ACTIONS(1458), + [anon_sym_noreturn] = ACTIONS(1458), + [anon_sym_alignas] = ACTIONS(1458), + [anon_sym__Alignas] = ACTIONS(1458), + [sym_primitive_type] = ACTIONS(1458), + [anon_sym_enum] = ACTIONS(1458), + [anon_sym_struct] = ACTIONS(1458), + [anon_sym_union] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1458), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), + [anon_sym_while] = ACTIONS(1458), + [anon_sym_do] = ACTIONS(1458), + [anon_sym_for] = ACTIONS(1458), + [anon_sym_return] = ACTIONS(1458), + [anon_sym_break] = ACTIONS(1458), + [anon_sym_continue] = ACTIONS(1458), + [anon_sym_goto] = ACTIONS(1458), + [anon_sym___try] = ACTIONS(1458), + [anon_sym___leave] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [anon_sym_sizeof] = ACTIONS(1458), + [anon_sym___alignof__] = ACTIONS(1458), + [anon_sym___alignof] = ACTIONS(1458), + [anon_sym__alignof] = ACTIONS(1458), + [anon_sym_alignof] = ACTIONS(1458), + [anon_sym__Alignof] = ACTIONS(1458), + [anon_sym_offsetof] = ACTIONS(1458), + [anon_sym__Generic] = ACTIONS(1458), + [anon_sym_asm] = ACTIONS(1458), + [anon_sym___asm__] = ACTIONS(1458), + [sym_number_literal] = ACTIONS(1460), + [anon_sym_L_SQUOTE] = ACTIONS(1460), + [anon_sym_u_SQUOTE] = ACTIONS(1460), + [anon_sym_U_SQUOTE] = ACTIONS(1460), + [anon_sym_u8_SQUOTE] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_L_DQUOTE] = ACTIONS(1460), + [anon_sym_u_DQUOTE] = ACTIONS(1460), + [anon_sym_U_DQUOTE] = ACTIONS(1460), + [anon_sym_u8_DQUOTE] = ACTIONS(1460), + [anon_sym_DQUOTE] = ACTIONS(1460), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [anon_sym_NULL] = ACTIONS(1458), + [anon_sym_nullptr] = ACTIONS(1458), [sym_comment] = ACTIONS(5), }, - [423] = { - [sym_attribute_declaration] = STATE(440), - [sym_compound_statement] = STATE(242), - [sym_attributed_statement] = STATE(242), - [sym_statement] = STATE(219), - [sym_labeled_statement] = STATE(242), - [sym_expression_statement] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_switch_statement] = STATE(242), - [sym_case_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_do_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_return_statement] = STATE(242), - [sym_break_statement] = STATE(242), - [sym_continue_statement] = STATE(242), - [sym_goto_statement] = STATE(242), - [sym_seh_try_statement] = STATE(242), - [sym_seh_leave_statement] = STATE(242), - [sym_expression] = STATE(1603), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3235), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [sym_identifier] = ACTIONS(1606), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_if] = ACTIONS(67), - [anon_sym_switch] = ACTIONS(69), - [anon_sym_case] = ACTIONS(71), - [anon_sym_default] = ACTIONS(73), - [anon_sym_while] = ACTIONS(75), - [anon_sym_do] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_return] = ACTIONS(81), - [anon_sym_break] = ACTIONS(83), - [anon_sym_continue] = ACTIONS(85), - [anon_sym_goto] = ACTIONS(87), - [anon_sym___try] = ACTIONS(966), - [anon_sym___leave] = ACTIONS(968), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [360] = { + [sym_identifier] = ACTIONS(1430), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1430), + [aux_sym_preproc_def_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token2] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), + [sym_preproc_directive] = ACTIONS(1430), + [anon_sym_LPAREN2] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym___extension__] = ACTIONS(1430), + [anon_sym_typedef] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym___attribute__] = ACTIONS(1430), + [anon_sym___scanf] = ACTIONS(1430), + [anon_sym___printf] = ACTIONS(1430), + [anon_sym___read_mostly] = ACTIONS(1430), + [anon_sym___must_hold] = ACTIONS(1430), + [anon_sym___ro_after_init] = ACTIONS(1430), + [anon_sym___noreturn] = ACTIONS(1430), + [anon_sym___cold] = ACTIONS(1430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), + [anon_sym___declspec] = ACTIONS(1430), + [anon_sym___init] = ACTIONS(1430), + [anon_sym___exit] = ACTIONS(1430), + [anon_sym___cdecl] = ACTIONS(1430), + [anon_sym___clrcall] = ACTIONS(1430), + [anon_sym___stdcall] = ACTIONS(1430), + [anon_sym___fastcall] = ACTIONS(1430), + [anon_sym___thiscall] = ACTIONS(1430), + [anon_sym___vectorcall] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_signed] = ACTIONS(1430), + [anon_sym_unsigned] = ACTIONS(1430), + [anon_sym_long] = ACTIONS(1430), + [anon_sym_short] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_auto] = ACTIONS(1430), + [anon_sym_register] = ACTIONS(1430), + [anon_sym_inline] = ACTIONS(1430), + [anon_sym___inline] = ACTIONS(1430), + [anon_sym___inline__] = ACTIONS(1430), + [anon_sym___forceinline] = ACTIONS(1430), + [anon_sym_thread_local] = ACTIONS(1430), + [anon_sym___thread] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_constexpr] = ACTIONS(1430), + [anon_sym_volatile] = ACTIONS(1430), + [anon_sym_restrict] = ACTIONS(1430), + [anon_sym___restrict__] = ACTIONS(1430), + [anon_sym__Atomic] = ACTIONS(1430), + [anon_sym__Noreturn] = ACTIONS(1430), + [anon_sym_noreturn] = ACTIONS(1430), + [anon_sym_alignas] = ACTIONS(1430), + [anon_sym__Alignas] = ACTIONS(1430), + [sym_primitive_type] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_switch] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_do] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_goto] = ACTIONS(1430), + [anon_sym___try] = ACTIONS(1430), + [anon_sym___leave] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1430), + [anon_sym___alignof__] = ACTIONS(1430), + [anon_sym___alignof] = ACTIONS(1430), + [anon_sym__alignof] = ACTIONS(1430), + [anon_sym_alignof] = ACTIONS(1430), + [anon_sym__Alignof] = ACTIONS(1430), + [anon_sym_offsetof] = ACTIONS(1430), + [anon_sym__Generic] = ACTIONS(1430), + [anon_sym_asm] = ACTIONS(1430), + [anon_sym___asm__] = ACTIONS(1430), + [sym_number_literal] = ACTIONS(1432), + [anon_sym_L_SQUOTE] = ACTIONS(1432), + [anon_sym_u_SQUOTE] = ACTIONS(1432), + [anon_sym_U_SQUOTE] = ACTIONS(1432), + [anon_sym_u8_SQUOTE] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_L_DQUOTE] = ACTIONS(1432), + [anon_sym_u_DQUOTE] = ACTIONS(1432), + [anon_sym_U_DQUOTE] = ACTIONS(1432), + [anon_sym_u8_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1432), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [anon_sym_NULL] = ACTIONS(1430), + [anon_sym_nullptr] = ACTIONS(1430), [sym_comment] = ACTIONS(5), }, - [424] = { - [sym_attribute_declaration] = STATE(457), - [sym_compound_statement] = STATE(2752), - [sym_attributed_statement] = STATE(2752), - [sym_statement] = STATE(3400), - [sym_labeled_statement] = STATE(2752), - [sym_expression_statement] = STATE(2752), - [sym_if_statement] = STATE(2752), - [sym_switch_statement] = STATE(2752), - [sym_case_statement] = STATE(2752), - [sym_while_statement] = STATE(2752), - [sym_do_statement] = STATE(2752), - [sym_for_statement] = STATE(2752), - [sym_return_statement] = STATE(2752), - [sym_break_statement] = STATE(2752), - [sym_continue_statement] = STATE(2752), - [sym_goto_statement] = STATE(2752), - [sym_seh_try_statement] = STATE(2752), - [sym_seh_leave_statement] = STATE(2752), - [sym_expression] = STATE(1565), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3107), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(457), - [sym_identifier] = ACTIONS(1564), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(1566), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1570), - [anon_sym_if] = ACTIONS(1572), - [anon_sym_switch] = ACTIONS(1574), - [anon_sym_case] = ACTIONS(1576), - [anon_sym_default] = ACTIONS(1578), - [anon_sym_while] = ACTIONS(1580), - [anon_sym_do] = ACTIONS(1582), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1586), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1590), - [anon_sym_goto] = ACTIONS(1592), - [anon_sym___try] = ACTIONS(1594), - [anon_sym___leave] = ACTIONS(1596), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [361] = { + [sym_identifier] = ACTIONS(1450), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1450), + [aux_sym_preproc_def_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token2] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), + [sym_preproc_directive] = ACTIONS(1450), + [anon_sym_LPAREN2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym___extension__] = ACTIONS(1450), + [anon_sym_typedef] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym___attribute__] = ACTIONS(1450), + [anon_sym___scanf] = ACTIONS(1450), + [anon_sym___printf] = ACTIONS(1450), + [anon_sym___read_mostly] = ACTIONS(1450), + [anon_sym___must_hold] = ACTIONS(1450), + [anon_sym___ro_after_init] = ACTIONS(1450), + [anon_sym___noreturn] = ACTIONS(1450), + [anon_sym___cold] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), + [anon_sym___declspec] = ACTIONS(1450), + [anon_sym___init] = ACTIONS(1450), + [anon_sym___exit] = ACTIONS(1450), + [anon_sym___cdecl] = ACTIONS(1450), + [anon_sym___clrcall] = ACTIONS(1450), + [anon_sym___stdcall] = ACTIONS(1450), + [anon_sym___fastcall] = ACTIONS(1450), + [anon_sym___thiscall] = ACTIONS(1450), + [anon_sym___vectorcall] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_signed] = ACTIONS(1450), + [anon_sym_unsigned] = ACTIONS(1450), + [anon_sym_long] = ACTIONS(1450), + [anon_sym_short] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_auto] = ACTIONS(1450), + [anon_sym_register] = ACTIONS(1450), + [anon_sym_inline] = ACTIONS(1450), + [anon_sym___inline] = ACTIONS(1450), + [anon_sym___inline__] = ACTIONS(1450), + [anon_sym___forceinline] = ACTIONS(1450), + [anon_sym_thread_local] = ACTIONS(1450), + [anon_sym___thread] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_constexpr] = ACTIONS(1450), + [anon_sym_volatile] = ACTIONS(1450), + [anon_sym_restrict] = ACTIONS(1450), + [anon_sym___restrict__] = ACTIONS(1450), + [anon_sym__Atomic] = ACTIONS(1450), + [anon_sym__Noreturn] = ACTIONS(1450), + [anon_sym_noreturn] = ACTIONS(1450), + [anon_sym_alignas] = ACTIONS(1450), + [anon_sym__Alignas] = ACTIONS(1450), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_switch] = ACTIONS(1450), + [anon_sym_case] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_do] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_goto] = ACTIONS(1450), + [anon_sym___try] = ACTIONS(1450), + [anon_sym___leave] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [anon_sym_sizeof] = ACTIONS(1450), + [anon_sym___alignof__] = ACTIONS(1450), + [anon_sym___alignof] = ACTIONS(1450), + [anon_sym__alignof] = ACTIONS(1450), + [anon_sym_alignof] = ACTIONS(1450), + [anon_sym__Alignof] = ACTIONS(1450), + [anon_sym_offsetof] = ACTIONS(1450), + [anon_sym__Generic] = ACTIONS(1450), + [anon_sym_asm] = ACTIONS(1450), + [anon_sym___asm__] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(1452), + [anon_sym_L_SQUOTE] = ACTIONS(1452), + [anon_sym_u_SQUOTE] = ACTIONS(1452), + [anon_sym_U_SQUOTE] = ACTIONS(1452), + [anon_sym_u8_SQUOTE] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_L_DQUOTE] = ACTIONS(1452), + [anon_sym_u_DQUOTE] = ACTIONS(1452), + [anon_sym_U_DQUOTE] = ACTIONS(1452), + [anon_sym_u8_DQUOTE] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [sym_true] = ACTIONS(1450), + [sym_false] = ACTIONS(1450), + [anon_sym_NULL] = ACTIONS(1450), + [anon_sym_nullptr] = ACTIONS(1450), [sym_comment] = ACTIONS(5), }, - [425] = { - [sym_attribute_declaration] = STATE(457), - [sym_compound_statement] = STATE(2752), - [sym_attributed_statement] = STATE(2752), - [sym_statement] = STATE(3427), - [sym_labeled_statement] = STATE(2752), - [sym_expression_statement] = STATE(2752), - [sym_if_statement] = STATE(2752), - [sym_switch_statement] = STATE(2752), - [sym_case_statement] = STATE(2752), - [sym_while_statement] = STATE(2752), - [sym_do_statement] = STATE(2752), - [sym_for_statement] = STATE(2752), - [sym_return_statement] = STATE(2752), - [sym_break_statement] = STATE(2752), - [sym_continue_statement] = STATE(2752), - [sym_goto_statement] = STATE(2752), - [sym_seh_try_statement] = STATE(2752), - [sym_seh_leave_statement] = STATE(2752), - [sym_expression] = STATE(1565), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3107), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(457), - [sym_identifier] = ACTIONS(1564), + [362] = { + [sym_identifier] = ACTIONS(1478), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1478), + [aux_sym_preproc_def_token1] = ACTIONS(1478), + [aux_sym_preproc_if_token1] = ACTIONS(1478), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1478), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1478), + [sym_preproc_directive] = ACTIONS(1478), + [anon_sym_LPAREN2] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_TILDE] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym___extension__] = ACTIONS(1478), + [anon_sym_typedef] = ACTIONS(1478), + [anon_sym_extern] = ACTIONS(1478), + [anon_sym___attribute__] = ACTIONS(1478), + [anon_sym___scanf] = ACTIONS(1478), + [anon_sym___printf] = ACTIONS(1478), + [anon_sym___read_mostly] = ACTIONS(1478), + [anon_sym___must_hold] = ACTIONS(1478), + [anon_sym___ro_after_init] = ACTIONS(1478), + [anon_sym___noreturn] = ACTIONS(1478), + [anon_sym___cold] = ACTIONS(1478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1480), + [anon_sym___declspec] = ACTIONS(1478), + [anon_sym___init] = ACTIONS(1478), + [anon_sym___exit] = ACTIONS(1478), + [anon_sym___cdecl] = ACTIONS(1478), + [anon_sym___clrcall] = ACTIONS(1478), + [anon_sym___stdcall] = ACTIONS(1478), + [anon_sym___fastcall] = ACTIONS(1478), + [anon_sym___thiscall] = ACTIONS(1478), + [anon_sym___vectorcall] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_RBRACE] = ACTIONS(1480), + [anon_sym_signed] = ACTIONS(1478), + [anon_sym_unsigned] = ACTIONS(1478), + [anon_sym_long] = ACTIONS(1478), + [anon_sym_short] = ACTIONS(1478), + [anon_sym_static] = ACTIONS(1478), + [anon_sym_auto] = ACTIONS(1478), + [anon_sym_register] = ACTIONS(1478), + [anon_sym_inline] = ACTIONS(1478), + [anon_sym___inline] = ACTIONS(1478), + [anon_sym___inline__] = ACTIONS(1478), + [anon_sym___forceinline] = ACTIONS(1478), + [anon_sym_thread_local] = ACTIONS(1478), + [anon_sym___thread] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1478), + [anon_sym_constexpr] = ACTIONS(1478), + [anon_sym_volatile] = ACTIONS(1478), + [anon_sym_restrict] = ACTIONS(1478), + [anon_sym___restrict__] = ACTIONS(1478), + [anon_sym__Atomic] = ACTIONS(1478), + [anon_sym__Noreturn] = ACTIONS(1478), + [anon_sym_noreturn] = ACTIONS(1478), + [anon_sym_alignas] = ACTIONS(1478), + [anon_sym__Alignas] = ACTIONS(1478), + [sym_primitive_type] = ACTIONS(1478), + [anon_sym_enum] = ACTIONS(1478), + [anon_sym_struct] = ACTIONS(1478), + [anon_sym_union] = ACTIONS(1478), + [anon_sym_if] = ACTIONS(1478), + [anon_sym_switch] = ACTIONS(1478), + [anon_sym_case] = ACTIONS(1478), + [anon_sym_default] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1478), + [anon_sym_do] = ACTIONS(1478), + [anon_sym_for] = ACTIONS(1478), + [anon_sym_return] = ACTIONS(1478), + [anon_sym_break] = ACTIONS(1478), + [anon_sym_continue] = ACTIONS(1478), + [anon_sym_goto] = ACTIONS(1478), + [anon_sym___try] = ACTIONS(1478), + [anon_sym___leave] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1480), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_sizeof] = ACTIONS(1478), + [anon_sym___alignof__] = ACTIONS(1478), + [anon_sym___alignof] = ACTIONS(1478), + [anon_sym__alignof] = ACTIONS(1478), + [anon_sym_alignof] = ACTIONS(1478), + [anon_sym__Alignof] = ACTIONS(1478), + [anon_sym_offsetof] = ACTIONS(1478), + [anon_sym__Generic] = ACTIONS(1478), + [anon_sym_asm] = ACTIONS(1478), + [anon_sym___asm__] = ACTIONS(1478), + [sym_number_literal] = ACTIONS(1480), + [anon_sym_L_SQUOTE] = ACTIONS(1480), + [anon_sym_u_SQUOTE] = ACTIONS(1480), + [anon_sym_U_SQUOTE] = ACTIONS(1480), + [anon_sym_u8_SQUOTE] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_L_DQUOTE] = ACTIONS(1480), + [anon_sym_u_DQUOTE] = ACTIONS(1480), + [anon_sym_U_DQUOTE] = ACTIONS(1480), + [anon_sym_u8_DQUOTE] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [sym_true] = ACTIONS(1478), + [sym_false] = ACTIONS(1478), + [anon_sym_NULL] = ACTIONS(1478), + [anon_sym_nullptr] = ACTIONS(1478), + [sym_comment] = ACTIONS(5), + }, + [363] = { + [sym_identifier] = ACTIONS(1426), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1426), + [aux_sym_preproc_def_token1] = ACTIONS(1426), + [aux_sym_preproc_if_token1] = ACTIONS(1426), + [aux_sym_preproc_if_token2] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), + [sym_preproc_directive] = ACTIONS(1426), + [anon_sym_LPAREN2] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym___extension__] = ACTIONS(1426), + [anon_sym_typedef] = ACTIONS(1426), + [anon_sym_extern] = ACTIONS(1426), + [anon_sym___attribute__] = ACTIONS(1426), + [anon_sym___scanf] = ACTIONS(1426), + [anon_sym___printf] = ACTIONS(1426), + [anon_sym___read_mostly] = ACTIONS(1426), + [anon_sym___must_hold] = ACTIONS(1426), + [anon_sym___ro_after_init] = ACTIONS(1426), + [anon_sym___noreturn] = ACTIONS(1426), + [anon_sym___cold] = ACTIONS(1426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), + [anon_sym___declspec] = ACTIONS(1426), + [anon_sym___init] = ACTIONS(1426), + [anon_sym___exit] = ACTIONS(1426), + [anon_sym___cdecl] = ACTIONS(1426), + [anon_sym___clrcall] = ACTIONS(1426), + [anon_sym___stdcall] = ACTIONS(1426), + [anon_sym___fastcall] = ACTIONS(1426), + [anon_sym___thiscall] = ACTIONS(1426), + [anon_sym___vectorcall] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_signed] = ACTIONS(1426), + [anon_sym_unsigned] = ACTIONS(1426), + [anon_sym_long] = ACTIONS(1426), + [anon_sym_short] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1426), + [anon_sym_auto] = ACTIONS(1426), + [anon_sym_register] = ACTIONS(1426), + [anon_sym_inline] = ACTIONS(1426), + [anon_sym___inline] = ACTIONS(1426), + [anon_sym___inline__] = ACTIONS(1426), + [anon_sym___forceinline] = ACTIONS(1426), + [anon_sym_thread_local] = ACTIONS(1426), + [anon_sym___thread] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_constexpr] = ACTIONS(1426), + [anon_sym_volatile] = ACTIONS(1426), + [anon_sym_restrict] = ACTIONS(1426), + [anon_sym___restrict__] = ACTIONS(1426), + [anon_sym__Atomic] = ACTIONS(1426), + [anon_sym__Noreturn] = ACTIONS(1426), + [anon_sym_noreturn] = ACTIONS(1426), + [anon_sym_alignas] = ACTIONS(1426), + [anon_sym__Alignas] = ACTIONS(1426), + [sym_primitive_type] = ACTIONS(1426), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1426), + [anon_sym_union] = ACTIONS(1426), + [anon_sym_if] = ACTIONS(1426), + [anon_sym_switch] = ACTIONS(1426), + [anon_sym_case] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1426), + [anon_sym_while] = ACTIONS(1426), + [anon_sym_do] = ACTIONS(1426), + [anon_sym_for] = ACTIONS(1426), + [anon_sym_return] = ACTIONS(1426), + [anon_sym_break] = ACTIONS(1426), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_goto] = ACTIONS(1426), + [anon_sym___try] = ACTIONS(1426), + [anon_sym___leave] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [anon_sym_sizeof] = ACTIONS(1426), + [anon_sym___alignof__] = ACTIONS(1426), + [anon_sym___alignof] = ACTIONS(1426), + [anon_sym__alignof] = ACTIONS(1426), + [anon_sym_alignof] = ACTIONS(1426), + [anon_sym__Alignof] = ACTIONS(1426), + [anon_sym_offsetof] = ACTIONS(1426), + [anon_sym__Generic] = ACTIONS(1426), + [anon_sym_asm] = ACTIONS(1426), + [anon_sym___asm__] = ACTIONS(1426), + [sym_number_literal] = ACTIONS(1428), + [anon_sym_L_SQUOTE] = ACTIONS(1428), + [anon_sym_u_SQUOTE] = ACTIONS(1428), + [anon_sym_U_SQUOTE] = ACTIONS(1428), + [anon_sym_u8_SQUOTE] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_L_DQUOTE] = ACTIONS(1428), + [anon_sym_u_DQUOTE] = ACTIONS(1428), + [anon_sym_U_DQUOTE] = ACTIONS(1428), + [anon_sym_u8_DQUOTE] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [sym_true] = ACTIONS(1426), + [sym_false] = ACTIONS(1426), + [anon_sym_NULL] = ACTIONS(1426), + [anon_sym_nullptr] = ACTIONS(1426), + [sym_comment] = ACTIONS(5), + }, + [364] = { + [sym_identifier] = ACTIONS(1422), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1422), + [aux_sym_preproc_def_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token2] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [sym_preproc_directive] = ACTIONS(1422), + [anon_sym_LPAREN2] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_PLUS] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym___extension__] = ACTIONS(1422), + [anon_sym_typedef] = ACTIONS(1422), + [anon_sym_extern] = ACTIONS(1422), + [anon_sym___attribute__] = ACTIONS(1422), + [anon_sym___scanf] = ACTIONS(1422), + [anon_sym___printf] = ACTIONS(1422), + [anon_sym___read_mostly] = ACTIONS(1422), + [anon_sym___must_hold] = ACTIONS(1422), + [anon_sym___ro_after_init] = ACTIONS(1422), + [anon_sym___noreturn] = ACTIONS(1422), + [anon_sym___cold] = ACTIONS(1422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), + [anon_sym___declspec] = ACTIONS(1422), + [anon_sym___init] = ACTIONS(1422), + [anon_sym___exit] = ACTIONS(1422), + [anon_sym___cdecl] = ACTIONS(1422), + [anon_sym___clrcall] = ACTIONS(1422), + [anon_sym___stdcall] = ACTIONS(1422), + [anon_sym___fastcall] = ACTIONS(1422), + [anon_sym___thiscall] = ACTIONS(1422), + [anon_sym___vectorcall] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_signed] = ACTIONS(1422), + [anon_sym_unsigned] = ACTIONS(1422), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_short] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_auto] = ACTIONS(1422), + [anon_sym_register] = ACTIONS(1422), + [anon_sym_inline] = ACTIONS(1422), + [anon_sym___inline] = ACTIONS(1422), + [anon_sym___inline__] = ACTIONS(1422), + [anon_sym___forceinline] = ACTIONS(1422), + [anon_sym_thread_local] = ACTIONS(1422), + [anon_sym___thread] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_constexpr] = ACTIONS(1422), + [anon_sym_volatile] = ACTIONS(1422), + [anon_sym_restrict] = ACTIONS(1422), + [anon_sym___restrict__] = ACTIONS(1422), + [anon_sym__Atomic] = ACTIONS(1422), + [anon_sym__Noreturn] = ACTIONS(1422), + [anon_sym_noreturn] = ACTIONS(1422), + [anon_sym_alignas] = ACTIONS(1422), + [anon_sym__Alignas] = ACTIONS(1422), + [sym_primitive_type] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1422), + [anon_sym_switch] = ACTIONS(1422), + [anon_sym_case] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_while] = ACTIONS(1422), + [anon_sym_do] = ACTIONS(1422), + [anon_sym_for] = ACTIONS(1422), + [anon_sym_return] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1422), + [anon_sym_continue] = ACTIONS(1422), + [anon_sym_goto] = ACTIONS(1422), + [anon_sym___try] = ACTIONS(1422), + [anon_sym___leave] = ACTIONS(1422), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1422), + [anon_sym___alignof__] = ACTIONS(1422), + [anon_sym___alignof] = ACTIONS(1422), + [anon_sym__alignof] = ACTIONS(1422), + [anon_sym_alignof] = ACTIONS(1422), + [anon_sym__Alignof] = ACTIONS(1422), + [anon_sym_offsetof] = ACTIONS(1422), + [anon_sym__Generic] = ACTIONS(1422), + [anon_sym_asm] = ACTIONS(1422), + [anon_sym___asm__] = ACTIONS(1422), + [sym_number_literal] = ACTIONS(1424), + [anon_sym_L_SQUOTE] = ACTIONS(1424), + [anon_sym_u_SQUOTE] = ACTIONS(1424), + [anon_sym_U_SQUOTE] = ACTIONS(1424), + [anon_sym_u8_SQUOTE] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_L_DQUOTE] = ACTIONS(1424), + [anon_sym_u_DQUOTE] = ACTIONS(1424), + [anon_sym_U_DQUOTE] = ACTIONS(1424), + [anon_sym_u8_DQUOTE] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [sym_true] = ACTIONS(1422), + [sym_false] = ACTIONS(1422), + [anon_sym_NULL] = ACTIONS(1422), + [anon_sym_nullptr] = ACTIONS(1422), + [sym_comment] = ACTIONS(5), + }, + [365] = { + [sym_identifier] = ACTIONS(1398), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1398), + [aux_sym_preproc_def_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token2] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), + [sym_preproc_directive] = ACTIONS(1398), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym___extension__] = ACTIONS(1398), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym___scanf] = ACTIONS(1398), + [anon_sym___printf] = ACTIONS(1398), + [anon_sym___read_mostly] = ACTIONS(1398), + [anon_sym___must_hold] = ACTIONS(1398), + [anon_sym___ro_after_init] = ACTIONS(1398), + [anon_sym___noreturn] = ACTIONS(1398), + [anon_sym___cold] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___init] = ACTIONS(1398), + [anon_sym___exit] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym___inline] = ACTIONS(1398), + [anon_sym___inline__] = ACTIONS(1398), + [anon_sym___forceinline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym___thread] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [anon_sym_alignas] = ACTIONS(1398), + [anon_sym__Alignas] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_switch] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_do] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_goto] = ACTIONS(1398), + [anon_sym___try] = ACTIONS(1398), + [anon_sym___leave] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym___alignof__] = ACTIONS(1398), + [anon_sym___alignof] = ACTIONS(1398), + [anon_sym__alignof] = ACTIONS(1398), + [anon_sym_alignof] = ACTIONS(1398), + [anon_sym__Alignof] = ACTIONS(1398), + [anon_sym_offsetof] = ACTIONS(1398), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1398), + [anon_sym___asm__] = ACTIONS(1398), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1400), + [anon_sym_u_SQUOTE] = ACTIONS(1400), + [anon_sym_U_SQUOTE] = ACTIONS(1400), + [anon_sym_u8_SQUOTE] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_L_DQUOTE] = ACTIONS(1400), + [anon_sym_u_DQUOTE] = ACTIONS(1400), + [anon_sym_U_DQUOTE] = ACTIONS(1400), + [anon_sym_u8_DQUOTE] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [anon_sym_NULL] = ACTIONS(1398), + [anon_sym_nullptr] = ACTIONS(1398), + [sym_comment] = ACTIONS(5), + }, + [366] = { + [sym_identifier] = ACTIONS(1402), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1402), + [aux_sym_preproc_def_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token2] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), + [sym_preproc_directive] = ACTIONS(1402), + [anon_sym_LPAREN2] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym___extension__] = ACTIONS(1402), + [anon_sym_typedef] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1402), + [anon_sym___scanf] = ACTIONS(1402), + [anon_sym___printf] = ACTIONS(1402), + [anon_sym___read_mostly] = ACTIONS(1402), + [anon_sym___must_hold] = ACTIONS(1402), + [anon_sym___ro_after_init] = ACTIONS(1402), + [anon_sym___noreturn] = ACTIONS(1402), + [anon_sym___cold] = ACTIONS(1402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1402), + [anon_sym___init] = ACTIONS(1402), + [anon_sym___exit] = ACTIONS(1402), + [anon_sym___cdecl] = ACTIONS(1402), + [anon_sym___clrcall] = ACTIONS(1402), + [anon_sym___stdcall] = ACTIONS(1402), + [anon_sym___fastcall] = ACTIONS(1402), + [anon_sym___thiscall] = ACTIONS(1402), + [anon_sym___vectorcall] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_auto] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1402), + [anon_sym_inline] = ACTIONS(1402), + [anon_sym___inline] = ACTIONS(1402), + [anon_sym___inline__] = ACTIONS(1402), + [anon_sym___forceinline] = ACTIONS(1402), + [anon_sym_thread_local] = ACTIONS(1402), + [anon_sym___thread] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_constexpr] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1402), + [anon_sym_restrict] = ACTIONS(1402), + [anon_sym___restrict__] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1402), + [anon_sym__Noreturn] = ACTIONS(1402), + [anon_sym_noreturn] = ACTIONS(1402), + [anon_sym_alignas] = ACTIONS(1402), + [anon_sym__Alignas] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_switch] = ACTIONS(1402), + [anon_sym_case] = ACTIONS(1402), + [anon_sym_default] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1402), + [anon_sym_do] = ACTIONS(1402), + [anon_sym_for] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_break] = ACTIONS(1402), + [anon_sym_continue] = ACTIONS(1402), + [anon_sym_goto] = ACTIONS(1402), + [anon_sym___try] = ACTIONS(1402), + [anon_sym___leave] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1402), + [anon_sym___alignof__] = ACTIONS(1402), + [anon_sym___alignof] = ACTIONS(1402), + [anon_sym__alignof] = ACTIONS(1402), + [anon_sym_alignof] = ACTIONS(1402), + [anon_sym__Alignof] = ACTIONS(1402), + [anon_sym_offsetof] = ACTIONS(1402), + [anon_sym__Generic] = ACTIONS(1402), + [anon_sym_asm] = ACTIONS(1402), + [anon_sym___asm__] = ACTIONS(1402), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1404), + [anon_sym_u_SQUOTE] = ACTIONS(1404), + [anon_sym_U_SQUOTE] = ACTIONS(1404), + [anon_sym_u8_SQUOTE] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_L_DQUOTE] = ACTIONS(1404), + [anon_sym_u_DQUOTE] = ACTIONS(1404), + [anon_sym_U_DQUOTE] = ACTIONS(1404), + [anon_sym_u8_DQUOTE] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [anon_sym_NULL] = ACTIONS(1402), + [anon_sym_nullptr] = ACTIONS(1402), + [sym_comment] = ACTIONS(5), + }, + [367] = { + [sym_identifier] = ACTIONS(1382), [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(1566), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1570), - [anon_sym_if] = ACTIONS(1572), - [anon_sym_switch] = ACTIONS(1574), - [anon_sym_case] = ACTIONS(1576), - [anon_sym_default] = ACTIONS(1578), - [anon_sym_while] = ACTIONS(1580), - [anon_sym_do] = ACTIONS(1582), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1586), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1590), - [anon_sym_goto] = ACTIONS(1592), - [anon_sym___try] = ACTIONS(1594), - [anon_sym___leave] = ACTIONS(1596), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [aux_sym_preproc_include_token1] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token2] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), + [sym_preproc_directive] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym___extension__] = ACTIONS(1382), + [anon_sym_typedef] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1382), + [anon_sym___scanf] = ACTIONS(1382), + [anon_sym___printf] = ACTIONS(1382), + [anon_sym___read_mostly] = ACTIONS(1382), + [anon_sym___must_hold] = ACTIONS(1382), + [anon_sym___ro_after_init] = ACTIONS(1382), + [anon_sym___noreturn] = ACTIONS(1382), + [anon_sym___cold] = ACTIONS(1382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), + [anon_sym___declspec] = ACTIONS(1382), + [anon_sym___init] = ACTIONS(1382), + [anon_sym___exit] = ACTIONS(1382), + [anon_sym___cdecl] = ACTIONS(1382), + [anon_sym___clrcall] = ACTIONS(1382), + [anon_sym___stdcall] = ACTIONS(1382), + [anon_sym___fastcall] = ACTIONS(1382), + [anon_sym___thiscall] = ACTIONS(1382), + [anon_sym___vectorcall] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_signed] = ACTIONS(1382), + [anon_sym_unsigned] = ACTIONS(1382), + [anon_sym_long] = ACTIONS(1382), + [anon_sym_short] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_auto] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym___inline] = ACTIONS(1382), + [anon_sym___inline__] = ACTIONS(1382), + [anon_sym___forceinline] = ACTIONS(1382), + [anon_sym_thread_local] = ACTIONS(1382), + [anon_sym___thread] = ACTIONS(1382), + [anon_sym_const] = ACTIONS(1382), + [anon_sym_constexpr] = ACTIONS(1382), + [anon_sym_volatile] = ACTIONS(1382), + [anon_sym_restrict] = ACTIONS(1382), + [anon_sym___restrict__] = ACTIONS(1382), + [anon_sym__Atomic] = ACTIONS(1382), + [anon_sym__Noreturn] = ACTIONS(1382), + [anon_sym_noreturn] = ACTIONS(1382), + [anon_sym_alignas] = ACTIONS(1382), + [anon_sym__Alignas] = ACTIONS(1382), + [sym_primitive_type] = ACTIONS(1382), + [anon_sym_enum] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_do] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_goto] = ACTIONS(1382), + [anon_sym___try] = ACTIONS(1382), + [anon_sym___leave] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym___alignof__] = ACTIONS(1382), + [anon_sym___alignof] = ACTIONS(1382), + [anon_sym__alignof] = ACTIONS(1382), + [anon_sym_alignof] = ACTIONS(1382), + [anon_sym__Alignof] = ACTIONS(1382), + [anon_sym_offsetof] = ACTIONS(1382), + [anon_sym__Generic] = ACTIONS(1382), + [anon_sym_asm] = ACTIONS(1382), + [anon_sym___asm__] = ACTIONS(1382), + [sym_number_literal] = ACTIONS(1384), + [anon_sym_L_SQUOTE] = ACTIONS(1384), + [anon_sym_u_SQUOTE] = ACTIONS(1384), + [anon_sym_U_SQUOTE] = ACTIONS(1384), + [anon_sym_u8_SQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_L_DQUOTE] = ACTIONS(1384), + [anon_sym_u_DQUOTE] = ACTIONS(1384), + [anon_sym_U_DQUOTE] = ACTIONS(1384), + [anon_sym_u8_DQUOTE] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [anon_sym_NULL] = ACTIONS(1382), + [anon_sym_nullptr] = ACTIONS(1382), [sym_comment] = ACTIONS(5), }, - [426] = { - [sym_attribute_declaration] = STATE(426), - [sym_compound_statement] = STATE(2752), - [sym_attributed_statement] = STATE(2752), - [sym_statement] = STATE(2779), - [sym_labeled_statement] = STATE(2752), - [sym_expression_statement] = STATE(2752), - [sym_if_statement] = STATE(2752), - [sym_switch_statement] = STATE(2752), - [sym_case_statement] = STATE(2752), - [sym_while_statement] = STATE(2752), - [sym_do_statement] = STATE(2752), - [sym_for_statement] = STATE(2752), - [sym_return_statement] = STATE(2752), - [sym_break_statement] = STATE(2752), - [sym_continue_statement] = STATE(2752), - [sym_goto_statement] = STATE(2752), - [sym_seh_try_statement] = STATE(2752), - [sym_seh_leave_statement] = STATE(2752), - [sym_expression] = STATE(1565), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3107), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [sym_identifier] = ACTIONS(1608), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1611), - [anon_sym_BANG] = ACTIONS(1614), - [anon_sym_TILDE] = ACTIONS(1614), - [anon_sym_DASH] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_AMP] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(1629), - [anon_sym_if] = ACTIONS(1632), - [anon_sym_switch] = ACTIONS(1635), - [anon_sym_case] = ACTIONS(1638), - [anon_sym_default] = ACTIONS(1641), - [anon_sym_while] = ACTIONS(1644), - [anon_sym_do] = ACTIONS(1647), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1653), - [anon_sym_break] = ACTIONS(1656), - [anon_sym_continue] = ACTIONS(1659), - [anon_sym_goto] = ACTIONS(1662), - [anon_sym___try] = ACTIONS(1665), - [anon_sym___leave] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_sizeof] = ACTIONS(1674), - [anon_sym___alignof__] = ACTIONS(1677), - [anon_sym___alignof] = ACTIONS(1677), - [anon_sym__alignof] = ACTIONS(1677), - [anon_sym_alignof] = ACTIONS(1677), - [anon_sym__Alignof] = ACTIONS(1677), - [anon_sym_offsetof] = ACTIONS(1680), - [anon_sym__Generic] = ACTIONS(1683), - [anon_sym_asm] = ACTIONS(1686), - [anon_sym___asm__] = ACTIONS(1686), - [sym_number_literal] = ACTIONS(1689), - [anon_sym_L_SQUOTE] = ACTIONS(1692), - [anon_sym_u_SQUOTE] = ACTIONS(1692), - [anon_sym_U_SQUOTE] = ACTIONS(1692), - [anon_sym_u8_SQUOTE] = ACTIONS(1692), - [anon_sym_SQUOTE] = ACTIONS(1692), - [anon_sym_L_DQUOTE] = ACTIONS(1695), - [anon_sym_u_DQUOTE] = ACTIONS(1695), - [anon_sym_U_DQUOTE] = ACTIONS(1695), - [anon_sym_u8_DQUOTE] = ACTIONS(1695), - [anon_sym_DQUOTE] = ACTIONS(1695), - [sym_true] = ACTIONS(1698), - [sym_false] = ACTIONS(1698), - [anon_sym_NULL] = ACTIONS(1701), - [anon_sym_nullptr] = ACTIONS(1701), + [368] = { + [sym_identifier] = ACTIONS(1450), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1450), + [aux_sym_preproc_def_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token2] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), + [sym_preproc_directive] = ACTIONS(1450), + [anon_sym_LPAREN2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym___extension__] = ACTIONS(1450), + [anon_sym_typedef] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym___attribute__] = ACTIONS(1450), + [anon_sym___scanf] = ACTIONS(1450), + [anon_sym___printf] = ACTIONS(1450), + [anon_sym___read_mostly] = ACTIONS(1450), + [anon_sym___must_hold] = ACTIONS(1450), + [anon_sym___ro_after_init] = ACTIONS(1450), + [anon_sym___noreturn] = ACTIONS(1450), + [anon_sym___cold] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), + [anon_sym___declspec] = ACTIONS(1450), + [anon_sym___init] = ACTIONS(1450), + [anon_sym___exit] = ACTIONS(1450), + [anon_sym___cdecl] = ACTIONS(1450), + [anon_sym___clrcall] = ACTIONS(1450), + [anon_sym___stdcall] = ACTIONS(1450), + [anon_sym___fastcall] = ACTIONS(1450), + [anon_sym___thiscall] = ACTIONS(1450), + [anon_sym___vectorcall] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_signed] = ACTIONS(1450), + [anon_sym_unsigned] = ACTIONS(1450), + [anon_sym_long] = ACTIONS(1450), + [anon_sym_short] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_auto] = ACTIONS(1450), + [anon_sym_register] = ACTIONS(1450), + [anon_sym_inline] = ACTIONS(1450), + [anon_sym___inline] = ACTIONS(1450), + [anon_sym___inline__] = ACTIONS(1450), + [anon_sym___forceinline] = ACTIONS(1450), + [anon_sym_thread_local] = ACTIONS(1450), + [anon_sym___thread] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_constexpr] = ACTIONS(1450), + [anon_sym_volatile] = ACTIONS(1450), + [anon_sym_restrict] = ACTIONS(1450), + [anon_sym___restrict__] = ACTIONS(1450), + [anon_sym__Atomic] = ACTIONS(1450), + [anon_sym__Noreturn] = ACTIONS(1450), + [anon_sym_noreturn] = ACTIONS(1450), + [anon_sym_alignas] = ACTIONS(1450), + [anon_sym__Alignas] = ACTIONS(1450), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_switch] = ACTIONS(1450), + [anon_sym_case] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_do] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_goto] = ACTIONS(1450), + [anon_sym___try] = ACTIONS(1450), + [anon_sym___leave] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [anon_sym_sizeof] = ACTIONS(1450), + [anon_sym___alignof__] = ACTIONS(1450), + [anon_sym___alignof] = ACTIONS(1450), + [anon_sym__alignof] = ACTIONS(1450), + [anon_sym_alignof] = ACTIONS(1450), + [anon_sym__Alignof] = ACTIONS(1450), + [anon_sym_offsetof] = ACTIONS(1450), + [anon_sym__Generic] = ACTIONS(1450), + [anon_sym_asm] = ACTIONS(1450), + [anon_sym___asm__] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(1452), + [anon_sym_L_SQUOTE] = ACTIONS(1452), + [anon_sym_u_SQUOTE] = ACTIONS(1452), + [anon_sym_U_SQUOTE] = ACTIONS(1452), + [anon_sym_u8_SQUOTE] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_L_DQUOTE] = ACTIONS(1452), + [anon_sym_u_DQUOTE] = ACTIONS(1452), + [anon_sym_U_DQUOTE] = ACTIONS(1452), + [anon_sym_u8_DQUOTE] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [sym_true] = ACTIONS(1450), + [sym_false] = ACTIONS(1450), + [anon_sym_NULL] = ACTIONS(1450), + [anon_sym_nullptr] = ACTIONS(1450), [sym_comment] = ACTIONS(5), }, - [427] = { - [sym_attribute_declaration] = STATE(457), - [sym_compound_statement] = STATE(2752), - [sym_attributed_statement] = STATE(2752), - [sym_statement] = STATE(2805), - [sym_labeled_statement] = STATE(2752), - [sym_expression_statement] = STATE(2752), - [sym_if_statement] = STATE(2752), - [sym_switch_statement] = STATE(2752), - [sym_case_statement] = STATE(2752), - [sym_while_statement] = STATE(2752), - [sym_do_statement] = STATE(2752), - [sym_for_statement] = STATE(2752), - [sym_return_statement] = STATE(2752), - [sym_break_statement] = STATE(2752), - [sym_continue_statement] = STATE(2752), - [sym_goto_statement] = STATE(2752), - [sym_seh_try_statement] = STATE(2752), - [sym_seh_leave_statement] = STATE(2752), - [sym_expression] = STATE(1565), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3107), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(457), - [sym_identifier] = ACTIONS(1564), + [369] = { + [sym_identifier] = ACTIONS(1434), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1434), + [aux_sym_preproc_def_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token2] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), + [sym_preproc_directive] = ACTIONS(1434), + [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym___extension__] = ACTIONS(1434), + [anon_sym_typedef] = ACTIONS(1434), + [anon_sym_extern] = ACTIONS(1434), + [anon_sym___attribute__] = ACTIONS(1434), + [anon_sym___scanf] = ACTIONS(1434), + [anon_sym___printf] = ACTIONS(1434), + [anon_sym___read_mostly] = ACTIONS(1434), + [anon_sym___must_hold] = ACTIONS(1434), + [anon_sym___ro_after_init] = ACTIONS(1434), + [anon_sym___noreturn] = ACTIONS(1434), + [anon_sym___cold] = ACTIONS(1434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), + [anon_sym___declspec] = ACTIONS(1434), + [anon_sym___init] = ACTIONS(1434), + [anon_sym___exit] = ACTIONS(1434), + [anon_sym___cdecl] = ACTIONS(1434), + [anon_sym___clrcall] = ACTIONS(1434), + [anon_sym___stdcall] = ACTIONS(1434), + [anon_sym___fastcall] = ACTIONS(1434), + [anon_sym___thiscall] = ACTIONS(1434), + [anon_sym___vectorcall] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1434), + [anon_sym_unsigned] = ACTIONS(1434), + [anon_sym_long] = ACTIONS(1434), + [anon_sym_short] = ACTIONS(1434), + [anon_sym_static] = ACTIONS(1434), + [anon_sym_auto] = ACTIONS(1434), + [anon_sym_register] = ACTIONS(1434), + [anon_sym_inline] = ACTIONS(1434), + [anon_sym___inline] = ACTIONS(1434), + [anon_sym___inline__] = ACTIONS(1434), + [anon_sym___forceinline] = ACTIONS(1434), + [anon_sym_thread_local] = ACTIONS(1434), + [anon_sym___thread] = ACTIONS(1434), + [anon_sym_const] = ACTIONS(1434), + [anon_sym_constexpr] = ACTIONS(1434), + [anon_sym_volatile] = ACTIONS(1434), + [anon_sym_restrict] = ACTIONS(1434), + [anon_sym___restrict__] = ACTIONS(1434), + [anon_sym__Atomic] = ACTIONS(1434), + [anon_sym__Noreturn] = ACTIONS(1434), + [anon_sym_noreturn] = ACTIONS(1434), + [anon_sym_alignas] = ACTIONS(1434), + [anon_sym__Alignas] = ACTIONS(1434), + [sym_primitive_type] = ACTIONS(1434), + [anon_sym_enum] = ACTIONS(1434), + [anon_sym_struct] = ACTIONS(1434), + [anon_sym_union] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1434), + [anon_sym_switch] = ACTIONS(1434), + [anon_sym_case] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_while] = ACTIONS(1434), + [anon_sym_do] = ACTIONS(1434), + [anon_sym_for] = ACTIONS(1434), + [anon_sym_return] = ACTIONS(1434), + [anon_sym_break] = ACTIONS(1434), + [anon_sym_continue] = ACTIONS(1434), + [anon_sym_goto] = ACTIONS(1434), + [anon_sym___try] = ACTIONS(1434), + [anon_sym___leave] = ACTIONS(1434), + [anon_sym_DASH_DASH] = ACTIONS(1436), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1434), + [anon_sym___alignof__] = ACTIONS(1434), + [anon_sym___alignof] = ACTIONS(1434), + [anon_sym__alignof] = ACTIONS(1434), + [anon_sym_alignof] = ACTIONS(1434), + [anon_sym__Alignof] = ACTIONS(1434), + [anon_sym_offsetof] = ACTIONS(1434), + [anon_sym__Generic] = ACTIONS(1434), + [anon_sym_asm] = ACTIONS(1434), + [anon_sym___asm__] = ACTIONS(1434), + [sym_number_literal] = ACTIONS(1436), + [anon_sym_L_SQUOTE] = ACTIONS(1436), + [anon_sym_u_SQUOTE] = ACTIONS(1436), + [anon_sym_U_SQUOTE] = ACTIONS(1436), + [anon_sym_u8_SQUOTE] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_L_DQUOTE] = ACTIONS(1436), + [anon_sym_u_DQUOTE] = ACTIONS(1436), + [anon_sym_U_DQUOTE] = ACTIONS(1436), + [anon_sym_u8_DQUOTE] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [anon_sym_NULL] = ACTIONS(1434), + [anon_sym_nullptr] = ACTIONS(1434), + [sym_comment] = ACTIONS(5), + }, + [370] = { + [sym_identifier] = ACTIONS(1386), [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(1566), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1570), - [anon_sym_if] = ACTIONS(1572), - [anon_sym_switch] = ACTIONS(1574), - [anon_sym_case] = ACTIONS(1576), - [anon_sym_default] = ACTIONS(1578), - [anon_sym_while] = ACTIONS(1580), - [anon_sym_do] = ACTIONS(1582), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1586), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1590), - [anon_sym_goto] = ACTIONS(1592), - [anon_sym___try] = ACTIONS(1594), - [anon_sym___leave] = ACTIONS(1596), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [aux_sym_preproc_include_token1] = ACTIONS(1386), + [aux_sym_preproc_def_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token2] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), + [sym_preproc_directive] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym___extension__] = ACTIONS(1386), + [anon_sym_typedef] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym___attribute__] = ACTIONS(1386), + [anon_sym___scanf] = ACTIONS(1386), + [anon_sym___printf] = ACTIONS(1386), + [anon_sym___read_mostly] = ACTIONS(1386), + [anon_sym___must_hold] = ACTIONS(1386), + [anon_sym___ro_after_init] = ACTIONS(1386), + [anon_sym___noreturn] = ACTIONS(1386), + [anon_sym___cold] = ACTIONS(1386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), + [anon_sym___declspec] = ACTIONS(1386), + [anon_sym___init] = ACTIONS(1386), + [anon_sym___exit] = ACTIONS(1386), + [anon_sym___cdecl] = ACTIONS(1386), + [anon_sym___clrcall] = ACTIONS(1386), + [anon_sym___stdcall] = ACTIONS(1386), + [anon_sym___fastcall] = ACTIONS(1386), + [anon_sym___thiscall] = ACTIONS(1386), + [anon_sym___vectorcall] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_signed] = ACTIONS(1386), + [anon_sym_unsigned] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_auto] = ACTIONS(1386), + [anon_sym_register] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym___inline] = ACTIONS(1386), + [anon_sym___inline__] = ACTIONS(1386), + [anon_sym___forceinline] = ACTIONS(1386), + [anon_sym_thread_local] = ACTIONS(1386), + [anon_sym___thread] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(1386), + [anon_sym_constexpr] = ACTIONS(1386), + [anon_sym_volatile] = ACTIONS(1386), + [anon_sym_restrict] = ACTIONS(1386), + [anon_sym___restrict__] = ACTIONS(1386), + [anon_sym__Atomic] = ACTIONS(1386), + [anon_sym__Noreturn] = ACTIONS(1386), + [anon_sym_noreturn] = ACTIONS(1386), + [anon_sym_alignas] = ACTIONS(1386), + [anon_sym__Alignas] = ACTIONS(1386), + [sym_primitive_type] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_union] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_switch] = ACTIONS(1386), + [anon_sym_case] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_goto] = ACTIONS(1386), + [anon_sym___try] = ACTIONS(1386), + [anon_sym___leave] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_sizeof] = ACTIONS(1386), + [anon_sym___alignof__] = ACTIONS(1386), + [anon_sym___alignof] = ACTIONS(1386), + [anon_sym__alignof] = ACTIONS(1386), + [anon_sym_alignof] = ACTIONS(1386), + [anon_sym__Alignof] = ACTIONS(1386), + [anon_sym_offsetof] = ACTIONS(1386), + [anon_sym__Generic] = ACTIONS(1386), + [anon_sym_asm] = ACTIONS(1386), + [anon_sym___asm__] = ACTIONS(1386), + [sym_number_literal] = ACTIONS(1388), + [anon_sym_L_SQUOTE] = ACTIONS(1388), + [anon_sym_u_SQUOTE] = ACTIONS(1388), + [anon_sym_U_SQUOTE] = ACTIONS(1388), + [anon_sym_u8_SQUOTE] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_L_DQUOTE] = ACTIONS(1388), + [anon_sym_u_DQUOTE] = ACTIONS(1388), + [anon_sym_U_DQUOTE] = ACTIONS(1388), + [anon_sym_u8_DQUOTE] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), + [anon_sym_NULL] = ACTIONS(1386), + [anon_sym_nullptr] = ACTIONS(1386), [sym_comment] = ACTIONS(5), }, - [428] = { - [sym_attribute_declaration] = STATE(428), - [sym_compound_statement] = STATE(182), - [sym_attributed_statement] = STATE(182), - [sym_statement] = STATE(197), - [sym_labeled_statement] = STATE(182), - [sym_expression_statement] = STATE(182), - [sym_if_statement] = STATE(182), - [sym_switch_statement] = STATE(182), - [sym_case_statement] = STATE(182), - [sym_while_statement] = STATE(182), - [sym_do_statement] = STATE(182), - [sym_for_statement] = STATE(182), - [sym_return_statement] = STATE(182), - [sym_break_statement] = STATE(182), - [sym_continue_statement] = STATE(182), - [sym_goto_statement] = STATE(182), - [sym_seh_try_statement] = STATE(182), - [sym_seh_leave_statement] = STATE(182), - [sym_expression] = STATE(1588), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3193), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(428), - [sym_identifier] = ACTIONS(1704), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1611), - [anon_sym_BANG] = ACTIONS(1614), - [anon_sym_TILDE] = ACTIONS(1614), - [anon_sym_DASH] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_AMP] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(1713), - [anon_sym_switch] = ACTIONS(1716), - [anon_sym_case] = ACTIONS(1719), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1728), - [anon_sym_for] = ACTIONS(1731), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1737), - [anon_sym_continue] = ACTIONS(1740), - [anon_sym_goto] = ACTIONS(1743), - [anon_sym___try] = ACTIONS(1746), - [anon_sym___leave] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_sizeof] = ACTIONS(1674), - [anon_sym___alignof__] = ACTIONS(1677), - [anon_sym___alignof] = ACTIONS(1677), - [anon_sym__alignof] = ACTIONS(1677), - [anon_sym_alignof] = ACTIONS(1677), - [anon_sym__Alignof] = ACTIONS(1677), - [anon_sym_offsetof] = ACTIONS(1680), - [anon_sym__Generic] = ACTIONS(1683), - [anon_sym_asm] = ACTIONS(1686), - [anon_sym___asm__] = ACTIONS(1686), - [sym_number_literal] = ACTIONS(1689), - [anon_sym_L_SQUOTE] = ACTIONS(1692), - [anon_sym_u_SQUOTE] = ACTIONS(1692), - [anon_sym_U_SQUOTE] = ACTIONS(1692), - [anon_sym_u8_SQUOTE] = ACTIONS(1692), - [anon_sym_SQUOTE] = ACTIONS(1692), - [anon_sym_L_DQUOTE] = ACTIONS(1695), - [anon_sym_u_DQUOTE] = ACTIONS(1695), - [anon_sym_U_DQUOTE] = ACTIONS(1695), - [anon_sym_u8_DQUOTE] = ACTIONS(1695), - [anon_sym_DQUOTE] = ACTIONS(1695), - [sym_true] = ACTIONS(1698), - [sym_false] = ACTIONS(1698), - [anon_sym_NULL] = ACTIONS(1701), - [anon_sym_nullptr] = ACTIONS(1701), + [371] = { + [sym_identifier] = ACTIONS(1418), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token2] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___extension__] = ACTIONS(1418), + [anon_sym_typedef] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym___attribute__] = ACTIONS(1418), + [anon_sym___scanf] = ACTIONS(1418), + [anon_sym___printf] = ACTIONS(1418), + [anon_sym___read_mostly] = ACTIONS(1418), + [anon_sym___must_hold] = ACTIONS(1418), + [anon_sym___ro_after_init] = ACTIONS(1418), + [anon_sym___noreturn] = ACTIONS(1418), + [anon_sym___cold] = ACTIONS(1418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), + [anon_sym___declspec] = ACTIONS(1418), + [anon_sym___init] = ACTIONS(1418), + [anon_sym___exit] = ACTIONS(1418), + [anon_sym___cdecl] = ACTIONS(1418), + [anon_sym___clrcall] = ACTIONS(1418), + [anon_sym___stdcall] = ACTIONS(1418), + [anon_sym___fastcall] = ACTIONS(1418), + [anon_sym___thiscall] = ACTIONS(1418), + [anon_sym___vectorcall] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_inline] = ACTIONS(1418), + [anon_sym___inline] = ACTIONS(1418), + [anon_sym___inline__] = ACTIONS(1418), + [anon_sym___forceinline] = ACTIONS(1418), + [anon_sym_thread_local] = ACTIONS(1418), + [anon_sym___thread] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_constexpr] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym___restrict__] = ACTIONS(1418), + [anon_sym__Atomic] = ACTIONS(1418), + [anon_sym__Noreturn] = ACTIONS(1418), + [anon_sym_noreturn] = ACTIONS(1418), + [anon_sym_alignas] = ACTIONS(1418), + [anon_sym__Alignas] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym___try] = ACTIONS(1418), + [anon_sym___leave] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(1418), + [anon_sym___alignof__] = ACTIONS(1418), + [anon_sym___alignof] = ACTIONS(1418), + [anon_sym__alignof] = ACTIONS(1418), + [anon_sym_alignof] = ACTIONS(1418), + [anon_sym__Alignof] = ACTIONS(1418), + [anon_sym_offsetof] = ACTIONS(1418), + [anon_sym__Generic] = ACTIONS(1418), + [anon_sym_asm] = ACTIONS(1418), + [anon_sym___asm__] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(1420), + [anon_sym_L_SQUOTE] = ACTIONS(1420), + [anon_sym_u_SQUOTE] = ACTIONS(1420), + [anon_sym_U_SQUOTE] = ACTIONS(1420), + [anon_sym_u8_SQUOTE] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_L_DQUOTE] = ACTIONS(1420), + [anon_sym_u_DQUOTE] = ACTIONS(1420), + [anon_sym_U_DQUOTE] = ACTIONS(1420), + [anon_sym_u8_DQUOTE] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [sym_true] = ACTIONS(1418), + [sym_false] = ACTIONS(1418), + [anon_sym_NULL] = ACTIONS(1418), + [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(5), }, - [429] = { - [sym_attribute_declaration] = STATE(428), - [sym_compound_statement] = STATE(182), - [sym_attributed_statement] = STATE(182), - [sym_statement] = STATE(197), - [sym_labeled_statement] = STATE(182), - [sym_expression_statement] = STATE(182), - [sym_if_statement] = STATE(182), - [sym_switch_statement] = STATE(182), - [sym_case_statement] = STATE(182), - [sym_while_statement] = STATE(182), - [sym_do_statement] = STATE(182), - [sym_for_statement] = STATE(182), - [sym_return_statement] = STATE(182), - [sym_break_statement] = STATE(182), - [sym_continue_statement] = STATE(182), - [sym_goto_statement] = STATE(182), - [sym_seh_try_statement] = STATE(182), - [sym_seh_leave_statement] = STATE(182), - [sym_expression] = STATE(1588), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3193), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(428), - [sym_identifier] = ACTIONS(1602), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(455), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_switch] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [anon_sym_default] = ACTIONS(471), - [anon_sym_while] = ACTIONS(473), - [anon_sym_do] = ACTIONS(475), - [anon_sym_for] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_break] = ACTIONS(481), - [anon_sym_continue] = ACTIONS(483), - [anon_sym_goto] = ACTIONS(485), - [anon_sym___try] = ACTIONS(487), - [anon_sym___leave] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [372] = { + [sym_identifier] = ACTIONS(1414), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token2] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym___extension__] = ACTIONS(1414), + [anon_sym_typedef] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym___attribute__] = ACTIONS(1414), + [anon_sym___scanf] = ACTIONS(1414), + [anon_sym___printf] = ACTIONS(1414), + [anon_sym___read_mostly] = ACTIONS(1414), + [anon_sym___must_hold] = ACTIONS(1414), + [anon_sym___ro_after_init] = ACTIONS(1414), + [anon_sym___noreturn] = ACTIONS(1414), + [anon_sym___cold] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), + [anon_sym___declspec] = ACTIONS(1414), + [anon_sym___init] = ACTIONS(1414), + [anon_sym___exit] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym___inline] = ACTIONS(1414), + [anon_sym___inline__] = ACTIONS(1414), + [anon_sym___forceinline] = ACTIONS(1414), + [anon_sym_thread_local] = ACTIONS(1414), + [anon_sym___thread] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_constexpr] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym___restrict__] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym__Noreturn] = ACTIONS(1414), + [anon_sym_noreturn] = ACTIONS(1414), + [anon_sym_alignas] = ACTIONS(1414), + [anon_sym__Alignas] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym___try] = ACTIONS(1414), + [anon_sym___leave] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym___alignof__] = ACTIONS(1414), + [anon_sym___alignof] = ACTIONS(1414), + [anon_sym__alignof] = ACTIONS(1414), + [anon_sym_alignof] = ACTIONS(1414), + [anon_sym__Alignof] = ACTIONS(1414), + [anon_sym_offsetof] = ACTIONS(1414), + [anon_sym__Generic] = ACTIONS(1414), + [anon_sym_asm] = ACTIONS(1414), + [anon_sym___asm__] = ACTIONS(1414), + [sym_number_literal] = ACTIONS(1416), + [anon_sym_L_SQUOTE] = ACTIONS(1416), + [anon_sym_u_SQUOTE] = ACTIONS(1416), + [anon_sym_U_SQUOTE] = ACTIONS(1416), + [anon_sym_u8_SQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_L_DQUOTE] = ACTIONS(1416), + [anon_sym_u_DQUOTE] = ACTIONS(1416), + [anon_sym_U_DQUOTE] = ACTIONS(1416), + [anon_sym_u8_DQUOTE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [anon_sym_NULL] = ACTIONS(1414), + [anon_sym_nullptr] = ACTIONS(1414), [sym_comment] = ACTIONS(5), }, - [430] = { - [sym_attribute_declaration] = STATE(457), - [sym_compound_statement] = STATE(2752), - [sym_attributed_statement] = STATE(2752), - [sym_statement] = STATE(3331), - [sym_labeled_statement] = STATE(2752), - [sym_expression_statement] = STATE(2752), - [sym_if_statement] = STATE(2752), - [sym_switch_statement] = STATE(2752), - [sym_case_statement] = STATE(2752), - [sym_while_statement] = STATE(2752), - [sym_do_statement] = STATE(2752), - [sym_for_statement] = STATE(2752), - [sym_return_statement] = STATE(2752), - [sym_break_statement] = STATE(2752), - [sym_continue_statement] = STATE(2752), - [sym_goto_statement] = STATE(2752), - [sym_seh_try_statement] = STATE(2752), - [sym_seh_leave_statement] = STATE(2752), - [sym_expression] = STATE(1565), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3107), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(457), - [sym_identifier] = ACTIONS(1564), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(1566), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1570), - [anon_sym_if] = ACTIONS(1572), - [anon_sym_switch] = ACTIONS(1574), - [anon_sym_case] = ACTIONS(1576), - [anon_sym_default] = ACTIONS(1578), - [anon_sym_while] = ACTIONS(1580), - [anon_sym_do] = ACTIONS(1582), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1586), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1590), - [anon_sym_goto] = ACTIONS(1592), - [anon_sym___try] = ACTIONS(1594), - [anon_sym___leave] = ACTIONS(1596), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [373] = { + [sym_identifier] = ACTIONS(1402), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1402), + [aux_sym_preproc_def_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token2] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), + [sym_preproc_directive] = ACTIONS(1402), + [anon_sym_LPAREN2] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym___extension__] = ACTIONS(1402), + [anon_sym_typedef] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1402), + [anon_sym___scanf] = ACTIONS(1402), + [anon_sym___printf] = ACTIONS(1402), + [anon_sym___read_mostly] = ACTIONS(1402), + [anon_sym___must_hold] = ACTIONS(1402), + [anon_sym___ro_after_init] = ACTIONS(1402), + [anon_sym___noreturn] = ACTIONS(1402), + [anon_sym___cold] = ACTIONS(1402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1402), + [anon_sym___init] = ACTIONS(1402), + [anon_sym___exit] = ACTIONS(1402), + [anon_sym___cdecl] = ACTIONS(1402), + [anon_sym___clrcall] = ACTIONS(1402), + [anon_sym___stdcall] = ACTIONS(1402), + [anon_sym___fastcall] = ACTIONS(1402), + [anon_sym___thiscall] = ACTIONS(1402), + [anon_sym___vectorcall] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_auto] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1402), + [anon_sym_inline] = ACTIONS(1402), + [anon_sym___inline] = ACTIONS(1402), + [anon_sym___inline__] = ACTIONS(1402), + [anon_sym___forceinline] = ACTIONS(1402), + [anon_sym_thread_local] = ACTIONS(1402), + [anon_sym___thread] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_constexpr] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1402), + [anon_sym_restrict] = ACTIONS(1402), + [anon_sym___restrict__] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1402), + [anon_sym__Noreturn] = ACTIONS(1402), + [anon_sym_noreturn] = ACTIONS(1402), + [anon_sym_alignas] = ACTIONS(1402), + [anon_sym__Alignas] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_switch] = ACTIONS(1402), + [anon_sym_case] = ACTIONS(1402), + [anon_sym_default] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1402), + [anon_sym_do] = ACTIONS(1402), + [anon_sym_for] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_break] = ACTIONS(1402), + [anon_sym_continue] = ACTIONS(1402), + [anon_sym_goto] = ACTIONS(1402), + [anon_sym___try] = ACTIONS(1402), + [anon_sym___leave] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1402), + [anon_sym___alignof__] = ACTIONS(1402), + [anon_sym___alignof] = ACTIONS(1402), + [anon_sym__alignof] = ACTIONS(1402), + [anon_sym_alignof] = ACTIONS(1402), + [anon_sym__Alignof] = ACTIONS(1402), + [anon_sym_offsetof] = ACTIONS(1402), + [anon_sym__Generic] = ACTIONS(1402), + [anon_sym_asm] = ACTIONS(1402), + [anon_sym___asm__] = ACTIONS(1402), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1404), + [anon_sym_u_SQUOTE] = ACTIONS(1404), + [anon_sym_U_SQUOTE] = ACTIONS(1404), + [anon_sym_u8_SQUOTE] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_L_DQUOTE] = ACTIONS(1404), + [anon_sym_u_DQUOTE] = ACTIONS(1404), + [anon_sym_U_DQUOTE] = ACTIONS(1404), + [anon_sym_u8_DQUOTE] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [anon_sym_NULL] = ACTIONS(1402), + [anon_sym_nullptr] = ACTIONS(1402), [sym_comment] = ACTIONS(5), }, - [431] = { - [sym_attribute_declaration] = STATE(431), - [sym_compound_statement] = STATE(179), - [sym_attributed_statement] = STATE(179), - [sym_statement] = STATE(191), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(431), - [sym_identifier] = ACTIONS(1752), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1611), - [anon_sym_BANG] = ACTIONS(1614), - [anon_sym_TILDE] = ACTIONS(1614), - [anon_sym_DASH] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_AMP] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1755), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_if] = ACTIONS(1761), - [anon_sym_switch] = ACTIONS(1764), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1773), - [anon_sym_do] = ACTIONS(1776), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1782), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1788), - [anon_sym_goto] = ACTIONS(1791), - [anon_sym___try] = ACTIONS(1794), - [anon_sym___leave] = ACTIONS(1797), - [anon_sym_DASH_DASH] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_sizeof] = ACTIONS(1674), - [anon_sym___alignof__] = ACTIONS(1677), - [anon_sym___alignof] = ACTIONS(1677), - [anon_sym__alignof] = ACTIONS(1677), - [anon_sym_alignof] = ACTIONS(1677), - [anon_sym__Alignof] = ACTIONS(1677), - [anon_sym_offsetof] = ACTIONS(1680), - [anon_sym__Generic] = ACTIONS(1683), - [anon_sym_asm] = ACTIONS(1686), - [anon_sym___asm__] = ACTIONS(1686), - [sym_number_literal] = ACTIONS(1689), - [anon_sym_L_SQUOTE] = ACTIONS(1692), - [anon_sym_u_SQUOTE] = ACTIONS(1692), - [anon_sym_U_SQUOTE] = ACTIONS(1692), - [anon_sym_u8_SQUOTE] = ACTIONS(1692), - [anon_sym_SQUOTE] = ACTIONS(1692), - [anon_sym_L_DQUOTE] = ACTIONS(1695), - [anon_sym_u_DQUOTE] = ACTIONS(1695), - [anon_sym_U_DQUOTE] = ACTIONS(1695), - [anon_sym_u8_DQUOTE] = ACTIONS(1695), - [anon_sym_DQUOTE] = ACTIONS(1695), - [sym_true] = ACTIONS(1698), - [sym_false] = ACTIONS(1698), - [anon_sym_NULL] = ACTIONS(1701), - [anon_sym_nullptr] = ACTIONS(1701), + [374] = { + [sym_identifier] = ACTIONS(1398), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1398), + [aux_sym_preproc_def_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token2] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), + [sym_preproc_directive] = ACTIONS(1398), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym___extension__] = ACTIONS(1398), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym___scanf] = ACTIONS(1398), + [anon_sym___printf] = ACTIONS(1398), + [anon_sym___read_mostly] = ACTIONS(1398), + [anon_sym___must_hold] = ACTIONS(1398), + [anon_sym___ro_after_init] = ACTIONS(1398), + [anon_sym___noreturn] = ACTIONS(1398), + [anon_sym___cold] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___init] = ACTIONS(1398), + [anon_sym___exit] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym___inline] = ACTIONS(1398), + [anon_sym___inline__] = ACTIONS(1398), + [anon_sym___forceinline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym___thread] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [anon_sym_alignas] = ACTIONS(1398), + [anon_sym__Alignas] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_switch] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_do] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_goto] = ACTIONS(1398), + [anon_sym___try] = ACTIONS(1398), + [anon_sym___leave] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym___alignof__] = ACTIONS(1398), + [anon_sym___alignof] = ACTIONS(1398), + [anon_sym__alignof] = ACTIONS(1398), + [anon_sym_alignof] = ACTIONS(1398), + [anon_sym__Alignof] = ACTIONS(1398), + [anon_sym_offsetof] = ACTIONS(1398), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1398), + [anon_sym___asm__] = ACTIONS(1398), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1400), + [anon_sym_u_SQUOTE] = ACTIONS(1400), + [anon_sym_U_SQUOTE] = ACTIONS(1400), + [anon_sym_u8_SQUOTE] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_L_DQUOTE] = ACTIONS(1400), + [anon_sym_u_DQUOTE] = ACTIONS(1400), + [anon_sym_U_DQUOTE] = ACTIONS(1400), + [anon_sym_u8_DQUOTE] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [anon_sym_NULL] = ACTIONS(1398), + [anon_sym_nullptr] = ACTIONS(1398), [sym_comment] = ACTIONS(5), }, - [432] = { - [sym_attribute_declaration] = STATE(440), - [sym_compound_statement] = STATE(242), - [sym_attributed_statement] = STATE(242), - [sym_statement] = STATE(257), - [sym_labeled_statement] = STATE(242), - [sym_expression_statement] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_switch_statement] = STATE(242), - [sym_case_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_do_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_return_statement] = STATE(242), - [sym_break_statement] = STATE(242), - [sym_continue_statement] = STATE(242), - [sym_goto_statement] = STATE(242), - [sym_seh_try_statement] = STATE(242), - [sym_seh_leave_statement] = STATE(242), - [sym_expression] = STATE(1603), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3235), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [sym_identifier] = ACTIONS(1606), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_if] = ACTIONS(67), - [anon_sym_switch] = ACTIONS(69), - [anon_sym_case] = ACTIONS(71), - [anon_sym_default] = ACTIONS(73), - [anon_sym_while] = ACTIONS(75), - [anon_sym_do] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_return] = ACTIONS(81), - [anon_sym_break] = ACTIONS(83), - [anon_sym_continue] = ACTIONS(85), - [anon_sym_goto] = ACTIONS(87), - [anon_sym___try] = ACTIONS(966), - [anon_sym___leave] = ACTIONS(968), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [375] = { + [sym_identifier] = ACTIONS(1394), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1394), + [aux_sym_preproc_def_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token2] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym___extension__] = ACTIONS(1394), + [anon_sym_typedef] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym___attribute__] = ACTIONS(1394), + [anon_sym___scanf] = ACTIONS(1394), + [anon_sym___printf] = ACTIONS(1394), + [anon_sym___read_mostly] = ACTIONS(1394), + [anon_sym___must_hold] = ACTIONS(1394), + [anon_sym___ro_after_init] = ACTIONS(1394), + [anon_sym___noreturn] = ACTIONS(1394), + [anon_sym___cold] = ACTIONS(1394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), + [anon_sym___declspec] = ACTIONS(1394), + [anon_sym___init] = ACTIONS(1394), + [anon_sym___exit] = ACTIONS(1394), + [anon_sym___cdecl] = ACTIONS(1394), + [anon_sym___clrcall] = ACTIONS(1394), + [anon_sym___stdcall] = ACTIONS(1394), + [anon_sym___fastcall] = ACTIONS(1394), + [anon_sym___thiscall] = ACTIONS(1394), + [anon_sym___vectorcall] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_signed] = ACTIONS(1394), + [anon_sym_unsigned] = ACTIONS(1394), + [anon_sym_long] = ACTIONS(1394), + [anon_sym_short] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_auto] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym___inline] = ACTIONS(1394), + [anon_sym___inline__] = ACTIONS(1394), + [anon_sym___forceinline] = ACTIONS(1394), + [anon_sym_thread_local] = ACTIONS(1394), + [anon_sym___thread] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_constexpr] = ACTIONS(1394), + [anon_sym_volatile] = ACTIONS(1394), + [anon_sym_restrict] = ACTIONS(1394), + [anon_sym___restrict__] = ACTIONS(1394), + [anon_sym__Atomic] = ACTIONS(1394), + [anon_sym__Noreturn] = ACTIONS(1394), + [anon_sym_noreturn] = ACTIONS(1394), + [anon_sym_alignas] = ACTIONS(1394), + [anon_sym__Alignas] = ACTIONS(1394), + [sym_primitive_type] = ACTIONS(1394), + [anon_sym_enum] = ACTIONS(1394), + [anon_sym_struct] = ACTIONS(1394), + [anon_sym_union] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_switch] = ACTIONS(1394), + [anon_sym_case] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_goto] = ACTIONS(1394), + [anon_sym___try] = ACTIONS(1394), + [anon_sym___leave] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym___alignof__] = ACTIONS(1394), + [anon_sym___alignof] = ACTIONS(1394), + [anon_sym__alignof] = ACTIONS(1394), + [anon_sym_alignof] = ACTIONS(1394), + [anon_sym__Alignof] = ACTIONS(1394), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1394), + [anon_sym___asm__] = ACTIONS(1394), + [sym_number_literal] = ACTIONS(1396), + [anon_sym_L_SQUOTE] = ACTIONS(1396), + [anon_sym_u_SQUOTE] = ACTIONS(1396), + [anon_sym_U_SQUOTE] = ACTIONS(1396), + [anon_sym_u8_SQUOTE] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_L_DQUOTE] = ACTIONS(1396), + [anon_sym_u_DQUOTE] = ACTIONS(1396), + [anon_sym_U_DQUOTE] = ACTIONS(1396), + [anon_sym_u8_DQUOTE] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [anon_sym_NULL] = ACTIONS(1394), + [anon_sym_nullptr] = ACTIONS(1394), [sym_comment] = ACTIONS(5), }, - [433] = { - [sym_attribute_declaration] = STATE(431), - [sym_compound_statement] = STATE(179), - [sym_attributed_statement] = STATE(179), - [sym_statement] = STATE(191), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(431), - [sym_identifier] = ACTIONS(1600), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(385), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_switch] = ACTIONS(399), - [anon_sym_case] = ACTIONS(401), - [anon_sym_default] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_goto] = ACTIONS(417), - [anon_sym___try] = ACTIONS(419), - [anon_sym___leave] = ACTIONS(421), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [376] = { + [ts_builtin_sym_end] = ACTIONS(1522), + [sym_identifier] = ACTIONS(1524), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1524), + [aux_sym_preproc_def_token1] = ACTIONS(1524), + [aux_sym_preproc_if_token1] = ACTIONS(1524), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1524), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1524), + [sym_preproc_directive] = ACTIONS(1524), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_TILDE] = ACTIONS(1522), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym___extension__] = ACTIONS(1524), + [anon_sym_typedef] = ACTIONS(1524), + [anon_sym_extern] = ACTIONS(1524), + [anon_sym___attribute__] = ACTIONS(1524), + [anon_sym___scanf] = ACTIONS(1524), + [anon_sym___printf] = ACTIONS(1524), + [anon_sym___read_mostly] = ACTIONS(1524), + [anon_sym___must_hold] = ACTIONS(1524), + [anon_sym___ro_after_init] = ACTIONS(1524), + [anon_sym___noreturn] = ACTIONS(1524), + [anon_sym___cold] = ACTIONS(1524), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), + [anon_sym___declspec] = ACTIONS(1524), + [anon_sym___init] = ACTIONS(1524), + [anon_sym___exit] = ACTIONS(1524), + [anon_sym___cdecl] = ACTIONS(1524), + [anon_sym___clrcall] = ACTIONS(1524), + [anon_sym___stdcall] = ACTIONS(1524), + [anon_sym___fastcall] = ACTIONS(1524), + [anon_sym___thiscall] = ACTIONS(1524), + [anon_sym___vectorcall] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_signed] = ACTIONS(1524), + [anon_sym_unsigned] = ACTIONS(1524), + [anon_sym_long] = ACTIONS(1524), + [anon_sym_short] = ACTIONS(1524), + [anon_sym_static] = ACTIONS(1524), + [anon_sym_auto] = ACTIONS(1524), + [anon_sym_register] = ACTIONS(1524), + [anon_sym_inline] = ACTIONS(1524), + [anon_sym___inline] = ACTIONS(1524), + [anon_sym___inline__] = ACTIONS(1524), + [anon_sym___forceinline] = ACTIONS(1524), + [anon_sym_thread_local] = ACTIONS(1524), + [anon_sym___thread] = ACTIONS(1524), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_constexpr] = ACTIONS(1524), + [anon_sym_volatile] = ACTIONS(1524), + [anon_sym_restrict] = ACTIONS(1524), + [anon_sym___restrict__] = ACTIONS(1524), + [anon_sym__Atomic] = ACTIONS(1524), + [anon_sym__Noreturn] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_alignas] = ACTIONS(1524), + [anon_sym__Alignas] = ACTIONS(1524), + [sym_primitive_type] = ACTIONS(1524), + [anon_sym_enum] = ACTIONS(1524), + [anon_sym_struct] = ACTIONS(1524), + [anon_sym_union] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1524), + [anon_sym_switch] = ACTIONS(1524), + [anon_sym_case] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1524), + [anon_sym_do] = ACTIONS(1524), + [anon_sym_for] = ACTIONS(1524), + [anon_sym_return] = ACTIONS(1524), + [anon_sym_break] = ACTIONS(1524), + [anon_sym_continue] = ACTIONS(1524), + [anon_sym_goto] = ACTIONS(1524), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_sizeof] = ACTIONS(1524), + [anon_sym___alignof__] = ACTIONS(1524), + [anon_sym___alignof] = ACTIONS(1524), + [anon_sym__alignof] = ACTIONS(1524), + [anon_sym_alignof] = ACTIONS(1524), + [anon_sym__Alignof] = ACTIONS(1524), + [anon_sym_offsetof] = ACTIONS(1524), + [anon_sym__Generic] = ACTIONS(1524), + [anon_sym_asm] = ACTIONS(1524), + [anon_sym___asm__] = ACTIONS(1524), + [sym_number_literal] = ACTIONS(1522), + [anon_sym_L_SQUOTE] = ACTIONS(1522), + [anon_sym_u_SQUOTE] = ACTIONS(1522), + [anon_sym_U_SQUOTE] = ACTIONS(1522), + [anon_sym_u8_SQUOTE] = ACTIONS(1522), + [anon_sym_SQUOTE] = ACTIONS(1522), + [anon_sym_L_DQUOTE] = ACTIONS(1522), + [anon_sym_u_DQUOTE] = ACTIONS(1522), + [anon_sym_U_DQUOTE] = ACTIONS(1522), + [anon_sym_u8_DQUOTE] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1522), + [sym_true] = ACTIONS(1524), + [sym_false] = ACTIONS(1524), + [anon_sym_NULL] = ACTIONS(1524), + [anon_sym_nullptr] = ACTIONS(1524), [sym_comment] = ACTIONS(5), }, - [434] = { - [sym_attribute_declaration] = STATE(443), - [sym_compound_statement] = STATE(99), - [sym_attributed_statement] = STATE(99), - [sym_statement] = STATE(104), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym_seh_try_statement] = STATE(99), - [sym_seh_leave_statement] = STATE(99), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(443), - [sym_identifier] = ACTIONS(1604), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(131), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_if] = ACTIONS(141), - [anon_sym_switch] = ACTIONS(143), - [anon_sym_case] = ACTIONS(145), - [anon_sym_default] = ACTIONS(147), - [anon_sym_while] = ACTIONS(149), - [anon_sym_do] = ACTIONS(151), - [anon_sym_for] = ACTIONS(153), - [anon_sym_return] = ACTIONS(155), - [anon_sym_break] = ACTIONS(157), - [anon_sym_continue] = ACTIONS(159), - [anon_sym_goto] = ACTIONS(161), - [anon_sym___try] = ACTIONS(163), - [anon_sym___leave] = ACTIONS(165), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [377] = { + [ts_builtin_sym_end] = ACTIONS(1444), + [sym_identifier] = ACTIONS(1442), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1442), + [aux_sym_preproc_def_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token1] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), + [sym_preproc_directive] = ACTIONS(1442), + [anon_sym_LPAREN2] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym___extension__] = ACTIONS(1442), + [anon_sym_typedef] = ACTIONS(1442), + [anon_sym_extern] = ACTIONS(1442), + [anon_sym___attribute__] = ACTIONS(1442), + [anon_sym___scanf] = ACTIONS(1442), + [anon_sym___printf] = ACTIONS(1442), + [anon_sym___read_mostly] = ACTIONS(1442), + [anon_sym___must_hold] = ACTIONS(1442), + [anon_sym___ro_after_init] = ACTIONS(1442), + [anon_sym___noreturn] = ACTIONS(1442), + [anon_sym___cold] = ACTIONS(1442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), + [anon_sym___declspec] = ACTIONS(1442), + [anon_sym___init] = ACTIONS(1442), + [anon_sym___exit] = ACTIONS(1442), + [anon_sym___cdecl] = ACTIONS(1442), + [anon_sym___clrcall] = ACTIONS(1442), + [anon_sym___stdcall] = ACTIONS(1442), + [anon_sym___fastcall] = ACTIONS(1442), + [anon_sym___thiscall] = ACTIONS(1442), + [anon_sym___vectorcall] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_signed] = ACTIONS(1442), + [anon_sym_unsigned] = ACTIONS(1442), + [anon_sym_long] = ACTIONS(1442), + [anon_sym_short] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_auto] = ACTIONS(1442), + [anon_sym_register] = ACTIONS(1442), + [anon_sym_inline] = ACTIONS(1442), + [anon_sym___inline] = ACTIONS(1442), + [anon_sym___inline__] = ACTIONS(1442), + [anon_sym___forceinline] = ACTIONS(1442), + [anon_sym_thread_local] = ACTIONS(1442), + [anon_sym___thread] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_constexpr] = ACTIONS(1442), + [anon_sym_volatile] = ACTIONS(1442), + [anon_sym_restrict] = ACTIONS(1442), + [anon_sym___restrict__] = ACTIONS(1442), + [anon_sym__Atomic] = ACTIONS(1442), + [anon_sym__Noreturn] = ACTIONS(1442), + [anon_sym_noreturn] = ACTIONS(1442), + [anon_sym_alignas] = ACTIONS(1442), + [anon_sym__Alignas] = ACTIONS(1442), + [sym_primitive_type] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_case] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_do] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_goto] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [anon_sym_sizeof] = ACTIONS(1442), + [anon_sym___alignof__] = ACTIONS(1442), + [anon_sym___alignof] = ACTIONS(1442), + [anon_sym__alignof] = ACTIONS(1442), + [anon_sym_alignof] = ACTIONS(1442), + [anon_sym__Alignof] = ACTIONS(1442), + [anon_sym_offsetof] = ACTIONS(1442), + [anon_sym__Generic] = ACTIONS(1442), + [anon_sym_asm] = ACTIONS(1442), + [anon_sym___asm__] = ACTIONS(1442), + [sym_number_literal] = ACTIONS(1444), + [anon_sym_L_SQUOTE] = ACTIONS(1444), + [anon_sym_u_SQUOTE] = ACTIONS(1444), + [anon_sym_U_SQUOTE] = ACTIONS(1444), + [anon_sym_u8_SQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_L_DQUOTE] = ACTIONS(1444), + [anon_sym_u_DQUOTE] = ACTIONS(1444), + [anon_sym_U_DQUOTE] = ACTIONS(1444), + [anon_sym_u8_DQUOTE] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [sym_true] = ACTIONS(1442), + [sym_false] = ACTIONS(1442), + [anon_sym_NULL] = ACTIONS(1442), + [anon_sym_nullptr] = ACTIONS(1442), [sym_comment] = ACTIONS(5), }, - [435] = { - [sym_attribute_declaration] = STATE(433), - [sym_compound_statement] = STATE(179), - [sym_attributed_statement] = STATE(179), - [sym_statement] = STATE(166), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [sym_identifier] = ACTIONS(1600), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(385), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_switch] = ACTIONS(399), - [anon_sym_case] = ACTIONS(401), - [anon_sym_default] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_goto] = ACTIONS(417), - [anon_sym___try] = ACTIONS(419), - [anon_sym___leave] = ACTIONS(421), + [378] = { + [ts_builtin_sym_end] = ACTIONS(1392), + [sym_identifier] = ACTIONS(1390), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), + [sym_preproc_directive] = ACTIONS(1390), + [anon_sym_LPAREN2] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym___extension__] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym___attribute__] = ACTIONS(1390), + [anon_sym___scanf] = ACTIONS(1390), + [anon_sym___printf] = ACTIONS(1390), + [anon_sym___read_mostly] = ACTIONS(1390), + [anon_sym___must_hold] = ACTIONS(1390), + [anon_sym___ro_after_init] = ACTIONS(1390), + [anon_sym___noreturn] = ACTIONS(1390), + [anon_sym___cold] = ACTIONS(1390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), + [anon_sym___declspec] = ACTIONS(1390), + [anon_sym___init] = ACTIONS(1390), + [anon_sym___exit] = ACTIONS(1390), + [anon_sym___cdecl] = ACTIONS(1390), + [anon_sym___clrcall] = ACTIONS(1390), + [anon_sym___stdcall] = ACTIONS(1390), + [anon_sym___fastcall] = ACTIONS(1390), + [anon_sym___thiscall] = ACTIONS(1390), + [anon_sym___vectorcall] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_signed] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_auto] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym___inline] = ACTIONS(1390), + [anon_sym___inline__] = ACTIONS(1390), + [anon_sym___forceinline] = ACTIONS(1390), + [anon_sym_thread_local] = ACTIONS(1390), + [anon_sym___thread] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_constexpr] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_restrict] = ACTIONS(1390), + [anon_sym___restrict__] = ACTIONS(1390), + [anon_sym__Atomic] = ACTIONS(1390), + [anon_sym__Noreturn] = ACTIONS(1390), + [anon_sym_noreturn] = ACTIONS(1390), + [anon_sym_alignas] = ACTIONS(1390), + [anon_sym__Alignas] = ACTIONS(1390), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_goto] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym___alignof__] = ACTIONS(1390), + [anon_sym___alignof] = ACTIONS(1390), + [anon_sym__alignof] = ACTIONS(1390), + [anon_sym_alignof] = ACTIONS(1390), + [anon_sym__Alignof] = ACTIONS(1390), + [anon_sym_offsetof] = ACTIONS(1390), + [anon_sym__Generic] = ACTIONS(1390), + [anon_sym_asm] = ACTIONS(1390), + [anon_sym___asm__] = ACTIONS(1390), + [sym_number_literal] = ACTIONS(1392), + [anon_sym_L_SQUOTE] = ACTIONS(1392), + [anon_sym_u_SQUOTE] = ACTIONS(1392), + [anon_sym_U_SQUOTE] = ACTIONS(1392), + [anon_sym_u8_SQUOTE] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_L_DQUOTE] = ACTIONS(1392), + [anon_sym_u_DQUOTE] = ACTIONS(1392), + [anon_sym_U_DQUOTE] = ACTIONS(1392), + [anon_sym_u8_DQUOTE] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [anon_sym_NULL] = ACTIONS(1390), + [anon_sym_nullptr] = ACTIONS(1390), + [sym_comment] = ACTIONS(5), + }, + [379] = { + [ts_builtin_sym_end] = ACTIONS(1408), + [sym_identifier] = ACTIONS(1406), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1406), + [aux_sym_preproc_def_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), + [sym_preproc_directive] = ACTIONS(1406), + [anon_sym_LPAREN2] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym___extension__] = ACTIONS(1406), + [anon_sym_typedef] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym___attribute__] = ACTIONS(1406), + [anon_sym___scanf] = ACTIONS(1406), + [anon_sym___printf] = ACTIONS(1406), + [anon_sym___read_mostly] = ACTIONS(1406), + [anon_sym___must_hold] = ACTIONS(1406), + [anon_sym___ro_after_init] = ACTIONS(1406), + [anon_sym___noreturn] = ACTIONS(1406), + [anon_sym___cold] = ACTIONS(1406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), + [anon_sym___declspec] = ACTIONS(1406), + [anon_sym___init] = ACTIONS(1406), + [anon_sym___exit] = ACTIONS(1406), + [anon_sym___cdecl] = ACTIONS(1406), + [anon_sym___clrcall] = ACTIONS(1406), + [anon_sym___stdcall] = ACTIONS(1406), + [anon_sym___fastcall] = ACTIONS(1406), + [anon_sym___thiscall] = ACTIONS(1406), + [anon_sym___vectorcall] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_signed] = ACTIONS(1406), + [anon_sym_unsigned] = ACTIONS(1406), + [anon_sym_long] = ACTIONS(1406), + [anon_sym_short] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_auto] = ACTIONS(1406), + [anon_sym_register] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym___inline] = ACTIONS(1406), + [anon_sym___inline__] = ACTIONS(1406), + [anon_sym___forceinline] = ACTIONS(1406), + [anon_sym_thread_local] = ACTIONS(1406), + [anon_sym___thread] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1406), + [anon_sym_constexpr] = ACTIONS(1406), + [anon_sym_volatile] = ACTIONS(1406), + [anon_sym_restrict] = ACTIONS(1406), + [anon_sym___restrict__] = ACTIONS(1406), + [anon_sym__Atomic] = ACTIONS(1406), + [anon_sym__Noreturn] = ACTIONS(1406), + [anon_sym_noreturn] = ACTIONS(1406), + [anon_sym_alignas] = ACTIONS(1406), + [anon_sym__Alignas] = ACTIONS(1406), + [sym_primitive_type] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_switch] = ACTIONS(1406), + [anon_sym_case] = ACTIONS(1406), + [anon_sym_default] = ACTIONS(1406), + [anon_sym_while] = ACTIONS(1406), + [anon_sym_do] = ACTIONS(1406), + [anon_sym_for] = ACTIONS(1406), + [anon_sym_return] = ACTIONS(1406), + [anon_sym_break] = ACTIONS(1406), + [anon_sym_continue] = ACTIONS(1406), + [anon_sym_goto] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1406), + [anon_sym___alignof__] = ACTIONS(1406), + [anon_sym___alignof] = ACTIONS(1406), + [anon_sym__alignof] = ACTIONS(1406), + [anon_sym_alignof] = ACTIONS(1406), + [anon_sym__Alignof] = ACTIONS(1406), + [anon_sym_offsetof] = ACTIONS(1406), + [anon_sym__Generic] = ACTIONS(1406), + [anon_sym_asm] = ACTIONS(1406), + [anon_sym___asm__] = ACTIONS(1406), + [sym_number_literal] = ACTIONS(1408), + [anon_sym_L_SQUOTE] = ACTIONS(1408), + [anon_sym_u_SQUOTE] = ACTIONS(1408), + [anon_sym_U_SQUOTE] = ACTIONS(1408), + [anon_sym_u8_SQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_L_DQUOTE] = ACTIONS(1408), + [anon_sym_u_DQUOTE] = ACTIONS(1408), + [anon_sym_U_DQUOTE] = ACTIONS(1408), + [anon_sym_u8_DQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [sym_true] = ACTIONS(1406), + [sym_false] = ACTIONS(1406), + [anon_sym_NULL] = ACTIONS(1406), + [anon_sym_nullptr] = ACTIONS(1406), + [sym_comment] = ACTIONS(5), + }, + [380] = { + [ts_builtin_sym_end] = ACTIONS(1404), + [sym_identifier] = ACTIONS(1402), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1402), + [aux_sym_preproc_def_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), + [sym_preproc_directive] = ACTIONS(1402), + [anon_sym_LPAREN2] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym___extension__] = ACTIONS(1402), + [anon_sym_typedef] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1402), + [anon_sym___scanf] = ACTIONS(1402), + [anon_sym___printf] = ACTIONS(1402), + [anon_sym___read_mostly] = ACTIONS(1402), + [anon_sym___must_hold] = ACTIONS(1402), + [anon_sym___ro_after_init] = ACTIONS(1402), + [anon_sym___noreturn] = ACTIONS(1402), + [anon_sym___cold] = ACTIONS(1402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1402), + [anon_sym___init] = ACTIONS(1402), + [anon_sym___exit] = ACTIONS(1402), + [anon_sym___cdecl] = ACTIONS(1402), + [anon_sym___clrcall] = ACTIONS(1402), + [anon_sym___stdcall] = ACTIONS(1402), + [anon_sym___fastcall] = ACTIONS(1402), + [anon_sym___thiscall] = ACTIONS(1402), + [anon_sym___vectorcall] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_auto] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1402), + [anon_sym_inline] = ACTIONS(1402), + [anon_sym___inline] = ACTIONS(1402), + [anon_sym___inline__] = ACTIONS(1402), + [anon_sym___forceinline] = ACTIONS(1402), + [anon_sym_thread_local] = ACTIONS(1402), + [anon_sym___thread] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_constexpr] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1402), + [anon_sym_restrict] = ACTIONS(1402), + [anon_sym___restrict__] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1402), + [anon_sym__Noreturn] = ACTIONS(1402), + [anon_sym_noreturn] = ACTIONS(1402), + [anon_sym_alignas] = ACTIONS(1402), + [anon_sym__Alignas] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_switch] = ACTIONS(1402), + [anon_sym_case] = ACTIONS(1402), + [anon_sym_default] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1402), + [anon_sym_do] = ACTIONS(1402), + [anon_sym_for] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_break] = ACTIONS(1402), + [anon_sym_continue] = ACTIONS(1402), + [anon_sym_goto] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1402), + [anon_sym___alignof__] = ACTIONS(1402), + [anon_sym___alignof] = ACTIONS(1402), + [anon_sym__alignof] = ACTIONS(1402), + [anon_sym_alignof] = ACTIONS(1402), + [anon_sym__Alignof] = ACTIONS(1402), + [anon_sym_offsetof] = ACTIONS(1402), + [anon_sym__Generic] = ACTIONS(1402), + [anon_sym_asm] = ACTIONS(1402), + [anon_sym___asm__] = ACTIONS(1402), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1404), + [anon_sym_u_SQUOTE] = ACTIONS(1404), + [anon_sym_U_SQUOTE] = ACTIONS(1404), + [anon_sym_u8_SQUOTE] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_L_DQUOTE] = ACTIONS(1404), + [anon_sym_u_DQUOTE] = ACTIONS(1404), + [anon_sym_U_DQUOTE] = ACTIONS(1404), + [anon_sym_u8_DQUOTE] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [anon_sym_NULL] = ACTIONS(1402), + [anon_sym_nullptr] = ACTIONS(1402), + [sym_comment] = ACTIONS(5), + }, + [381] = { + [ts_builtin_sym_end] = ACTIONS(1404), + [sym_identifier] = ACTIONS(1402), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1402), + [aux_sym_preproc_def_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), + [sym_preproc_directive] = ACTIONS(1402), + [anon_sym_LPAREN2] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym___extension__] = ACTIONS(1402), + [anon_sym_typedef] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1402), + [anon_sym___scanf] = ACTIONS(1402), + [anon_sym___printf] = ACTIONS(1402), + [anon_sym___read_mostly] = ACTIONS(1402), + [anon_sym___must_hold] = ACTIONS(1402), + [anon_sym___ro_after_init] = ACTIONS(1402), + [anon_sym___noreturn] = ACTIONS(1402), + [anon_sym___cold] = ACTIONS(1402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1402), + [anon_sym___init] = ACTIONS(1402), + [anon_sym___exit] = ACTIONS(1402), + [anon_sym___cdecl] = ACTIONS(1402), + [anon_sym___clrcall] = ACTIONS(1402), + [anon_sym___stdcall] = ACTIONS(1402), + [anon_sym___fastcall] = ACTIONS(1402), + [anon_sym___thiscall] = ACTIONS(1402), + [anon_sym___vectorcall] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_auto] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1402), + [anon_sym_inline] = ACTIONS(1402), + [anon_sym___inline] = ACTIONS(1402), + [anon_sym___inline__] = ACTIONS(1402), + [anon_sym___forceinline] = ACTIONS(1402), + [anon_sym_thread_local] = ACTIONS(1402), + [anon_sym___thread] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_constexpr] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1402), + [anon_sym_restrict] = ACTIONS(1402), + [anon_sym___restrict__] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1402), + [anon_sym__Noreturn] = ACTIONS(1402), + [anon_sym_noreturn] = ACTIONS(1402), + [anon_sym_alignas] = ACTIONS(1402), + [anon_sym__Alignas] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_switch] = ACTIONS(1402), + [anon_sym_case] = ACTIONS(1402), + [anon_sym_default] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1402), + [anon_sym_do] = ACTIONS(1402), + [anon_sym_for] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_break] = ACTIONS(1402), + [anon_sym_continue] = ACTIONS(1402), + [anon_sym_goto] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1402), + [anon_sym___alignof__] = ACTIONS(1402), + [anon_sym___alignof] = ACTIONS(1402), + [anon_sym__alignof] = ACTIONS(1402), + [anon_sym_alignof] = ACTIONS(1402), + [anon_sym__Alignof] = ACTIONS(1402), + [anon_sym_offsetof] = ACTIONS(1402), + [anon_sym__Generic] = ACTIONS(1402), + [anon_sym_asm] = ACTIONS(1402), + [anon_sym___asm__] = ACTIONS(1402), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1404), + [anon_sym_u_SQUOTE] = ACTIONS(1404), + [anon_sym_U_SQUOTE] = ACTIONS(1404), + [anon_sym_u8_SQUOTE] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_L_DQUOTE] = ACTIONS(1404), + [anon_sym_u_DQUOTE] = ACTIONS(1404), + [anon_sym_U_DQUOTE] = ACTIONS(1404), + [anon_sym_u8_DQUOTE] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [anon_sym_NULL] = ACTIONS(1402), + [anon_sym_nullptr] = ACTIONS(1402), + [sym_comment] = ACTIONS(5), + }, + [382] = { + [ts_builtin_sym_end] = ACTIONS(1400), + [sym_identifier] = ACTIONS(1398), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1398), + [aux_sym_preproc_def_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), + [sym_preproc_directive] = ACTIONS(1398), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym___extension__] = ACTIONS(1398), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym___scanf] = ACTIONS(1398), + [anon_sym___printf] = ACTIONS(1398), + [anon_sym___read_mostly] = ACTIONS(1398), + [anon_sym___must_hold] = ACTIONS(1398), + [anon_sym___ro_after_init] = ACTIONS(1398), + [anon_sym___noreturn] = ACTIONS(1398), + [anon_sym___cold] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___init] = ACTIONS(1398), + [anon_sym___exit] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym___inline] = ACTIONS(1398), + [anon_sym___inline__] = ACTIONS(1398), + [anon_sym___forceinline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym___thread] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [anon_sym_alignas] = ACTIONS(1398), + [anon_sym__Alignas] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_switch] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_do] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_goto] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym___alignof__] = ACTIONS(1398), + [anon_sym___alignof] = ACTIONS(1398), + [anon_sym__alignof] = ACTIONS(1398), + [anon_sym_alignof] = ACTIONS(1398), + [anon_sym__Alignof] = ACTIONS(1398), + [anon_sym_offsetof] = ACTIONS(1398), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1398), + [anon_sym___asm__] = ACTIONS(1398), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1400), + [anon_sym_u_SQUOTE] = ACTIONS(1400), + [anon_sym_U_SQUOTE] = ACTIONS(1400), + [anon_sym_u8_SQUOTE] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_L_DQUOTE] = ACTIONS(1400), + [anon_sym_u_DQUOTE] = ACTIONS(1400), + [anon_sym_U_DQUOTE] = ACTIONS(1400), + [anon_sym_u8_DQUOTE] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [anon_sym_NULL] = ACTIONS(1398), + [anon_sym_nullptr] = ACTIONS(1398), + [sym_comment] = ACTIONS(5), + }, + [383] = { + [ts_builtin_sym_end] = ACTIONS(1488), + [sym_identifier] = ACTIONS(1486), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1486), + [aux_sym_preproc_def_token1] = ACTIONS(1486), + [aux_sym_preproc_if_token1] = ACTIONS(1486), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1486), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1486), + [sym_preproc_directive] = ACTIONS(1486), + [anon_sym_LPAREN2] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym___extension__] = ACTIONS(1486), + [anon_sym_typedef] = ACTIONS(1486), + [anon_sym_extern] = ACTIONS(1486), + [anon_sym___attribute__] = ACTIONS(1486), + [anon_sym___scanf] = ACTIONS(1486), + [anon_sym___printf] = ACTIONS(1486), + [anon_sym___read_mostly] = ACTIONS(1486), + [anon_sym___must_hold] = ACTIONS(1486), + [anon_sym___ro_after_init] = ACTIONS(1486), + [anon_sym___noreturn] = ACTIONS(1486), + [anon_sym___cold] = ACTIONS(1486), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1488), + [anon_sym___declspec] = ACTIONS(1486), + [anon_sym___init] = ACTIONS(1486), + [anon_sym___exit] = ACTIONS(1486), + [anon_sym___cdecl] = ACTIONS(1486), + [anon_sym___clrcall] = ACTIONS(1486), + [anon_sym___stdcall] = ACTIONS(1486), + [anon_sym___fastcall] = ACTIONS(1486), + [anon_sym___thiscall] = ACTIONS(1486), + [anon_sym___vectorcall] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_signed] = ACTIONS(1486), + [anon_sym_unsigned] = ACTIONS(1486), + [anon_sym_long] = ACTIONS(1486), + [anon_sym_short] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_auto] = ACTIONS(1486), + [anon_sym_register] = ACTIONS(1486), + [anon_sym_inline] = ACTIONS(1486), + [anon_sym___inline] = ACTIONS(1486), + [anon_sym___inline__] = ACTIONS(1486), + [anon_sym___forceinline] = ACTIONS(1486), + [anon_sym_thread_local] = ACTIONS(1486), + [anon_sym___thread] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_constexpr] = ACTIONS(1486), + [anon_sym_volatile] = ACTIONS(1486), + [anon_sym_restrict] = ACTIONS(1486), + [anon_sym___restrict__] = ACTIONS(1486), + [anon_sym__Atomic] = ACTIONS(1486), + [anon_sym__Noreturn] = ACTIONS(1486), + [anon_sym_noreturn] = ACTIONS(1486), + [anon_sym_alignas] = ACTIONS(1486), + [anon_sym__Alignas] = ACTIONS(1486), + [sym_primitive_type] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [anon_sym_struct] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(1486), + [anon_sym_if] = ACTIONS(1486), + [anon_sym_switch] = ACTIONS(1486), + [anon_sym_case] = ACTIONS(1486), + [anon_sym_default] = ACTIONS(1486), + [anon_sym_while] = ACTIONS(1486), + [anon_sym_do] = ACTIONS(1486), + [anon_sym_for] = ACTIONS(1486), + [anon_sym_return] = ACTIONS(1486), + [anon_sym_break] = ACTIONS(1486), + [anon_sym_continue] = ACTIONS(1486), + [anon_sym_goto] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_sizeof] = ACTIONS(1486), + [anon_sym___alignof__] = ACTIONS(1486), + [anon_sym___alignof] = ACTIONS(1486), + [anon_sym__alignof] = ACTIONS(1486), + [anon_sym_alignof] = ACTIONS(1486), + [anon_sym__Alignof] = ACTIONS(1486), + [anon_sym_offsetof] = ACTIONS(1486), + [anon_sym__Generic] = ACTIONS(1486), + [anon_sym_asm] = ACTIONS(1486), + [anon_sym___asm__] = ACTIONS(1486), + [sym_number_literal] = ACTIONS(1488), + [anon_sym_L_SQUOTE] = ACTIONS(1488), + [anon_sym_u_SQUOTE] = ACTIONS(1488), + [anon_sym_U_SQUOTE] = ACTIONS(1488), + [anon_sym_u8_SQUOTE] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_L_DQUOTE] = ACTIONS(1488), + [anon_sym_u_DQUOTE] = ACTIONS(1488), + [anon_sym_U_DQUOTE] = ACTIONS(1488), + [anon_sym_u8_DQUOTE] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [sym_true] = ACTIONS(1486), + [sym_false] = ACTIONS(1486), + [anon_sym_NULL] = ACTIONS(1486), + [anon_sym_nullptr] = ACTIONS(1486), + [sym_comment] = ACTIONS(5), + }, + [384] = { + [ts_builtin_sym_end] = ACTIONS(1424), + [sym_identifier] = ACTIONS(1422), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1422), + [aux_sym_preproc_def_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [sym_preproc_directive] = ACTIONS(1422), + [anon_sym_LPAREN2] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_PLUS] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym___extension__] = ACTIONS(1422), + [anon_sym_typedef] = ACTIONS(1422), + [anon_sym_extern] = ACTIONS(1422), + [anon_sym___attribute__] = ACTIONS(1422), + [anon_sym___scanf] = ACTIONS(1422), + [anon_sym___printf] = ACTIONS(1422), + [anon_sym___read_mostly] = ACTIONS(1422), + [anon_sym___must_hold] = ACTIONS(1422), + [anon_sym___ro_after_init] = ACTIONS(1422), + [anon_sym___noreturn] = ACTIONS(1422), + [anon_sym___cold] = ACTIONS(1422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), + [anon_sym___declspec] = ACTIONS(1422), + [anon_sym___init] = ACTIONS(1422), + [anon_sym___exit] = ACTIONS(1422), + [anon_sym___cdecl] = ACTIONS(1422), + [anon_sym___clrcall] = ACTIONS(1422), + [anon_sym___stdcall] = ACTIONS(1422), + [anon_sym___fastcall] = ACTIONS(1422), + [anon_sym___thiscall] = ACTIONS(1422), + [anon_sym___vectorcall] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_signed] = ACTIONS(1422), + [anon_sym_unsigned] = ACTIONS(1422), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_short] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_auto] = ACTIONS(1422), + [anon_sym_register] = ACTIONS(1422), + [anon_sym_inline] = ACTIONS(1422), + [anon_sym___inline] = ACTIONS(1422), + [anon_sym___inline__] = ACTIONS(1422), + [anon_sym___forceinline] = ACTIONS(1422), + [anon_sym_thread_local] = ACTIONS(1422), + [anon_sym___thread] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_constexpr] = ACTIONS(1422), + [anon_sym_volatile] = ACTIONS(1422), + [anon_sym_restrict] = ACTIONS(1422), + [anon_sym___restrict__] = ACTIONS(1422), + [anon_sym__Atomic] = ACTIONS(1422), + [anon_sym__Noreturn] = ACTIONS(1422), + [anon_sym_noreturn] = ACTIONS(1422), + [anon_sym_alignas] = ACTIONS(1422), + [anon_sym__Alignas] = ACTIONS(1422), + [sym_primitive_type] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1422), + [anon_sym_switch] = ACTIONS(1422), + [anon_sym_case] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_while] = ACTIONS(1422), + [anon_sym_do] = ACTIONS(1422), + [anon_sym_for] = ACTIONS(1422), + [anon_sym_return] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1422), + [anon_sym_continue] = ACTIONS(1422), + [anon_sym_goto] = ACTIONS(1422), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1422), + [anon_sym___alignof__] = ACTIONS(1422), + [anon_sym___alignof] = ACTIONS(1422), + [anon_sym__alignof] = ACTIONS(1422), + [anon_sym_alignof] = ACTIONS(1422), + [anon_sym__Alignof] = ACTIONS(1422), + [anon_sym_offsetof] = ACTIONS(1422), + [anon_sym__Generic] = ACTIONS(1422), + [anon_sym_asm] = ACTIONS(1422), + [anon_sym___asm__] = ACTIONS(1422), + [sym_number_literal] = ACTIONS(1424), + [anon_sym_L_SQUOTE] = ACTIONS(1424), + [anon_sym_u_SQUOTE] = ACTIONS(1424), + [anon_sym_U_SQUOTE] = ACTIONS(1424), + [anon_sym_u8_SQUOTE] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_L_DQUOTE] = ACTIONS(1424), + [anon_sym_u_DQUOTE] = ACTIONS(1424), + [anon_sym_U_DQUOTE] = ACTIONS(1424), + [anon_sym_u8_DQUOTE] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [sym_true] = ACTIONS(1422), + [sym_false] = ACTIONS(1422), + [anon_sym_NULL] = ACTIONS(1422), + [anon_sym_nullptr] = ACTIONS(1422), + [sym_comment] = ACTIONS(5), + }, + [385] = { + [ts_builtin_sym_end] = ACTIONS(1416), + [sym_identifier] = ACTIONS(1414), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym___extension__] = ACTIONS(1414), + [anon_sym_typedef] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym___attribute__] = ACTIONS(1414), + [anon_sym___scanf] = ACTIONS(1414), + [anon_sym___printf] = ACTIONS(1414), + [anon_sym___read_mostly] = ACTIONS(1414), + [anon_sym___must_hold] = ACTIONS(1414), + [anon_sym___ro_after_init] = ACTIONS(1414), + [anon_sym___noreturn] = ACTIONS(1414), + [anon_sym___cold] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), + [anon_sym___declspec] = ACTIONS(1414), + [anon_sym___init] = ACTIONS(1414), + [anon_sym___exit] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym___inline] = ACTIONS(1414), + [anon_sym___inline__] = ACTIONS(1414), + [anon_sym___forceinline] = ACTIONS(1414), + [anon_sym_thread_local] = ACTIONS(1414), + [anon_sym___thread] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_constexpr] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym___restrict__] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym__Noreturn] = ACTIONS(1414), + [anon_sym_noreturn] = ACTIONS(1414), + [anon_sym_alignas] = ACTIONS(1414), + [anon_sym__Alignas] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym___alignof__] = ACTIONS(1414), + [anon_sym___alignof] = ACTIONS(1414), + [anon_sym__alignof] = ACTIONS(1414), + [anon_sym_alignof] = ACTIONS(1414), + [anon_sym__Alignof] = ACTIONS(1414), + [anon_sym_offsetof] = ACTIONS(1414), + [anon_sym__Generic] = ACTIONS(1414), + [anon_sym_asm] = ACTIONS(1414), + [anon_sym___asm__] = ACTIONS(1414), + [sym_number_literal] = ACTIONS(1416), + [anon_sym_L_SQUOTE] = ACTIONS(1416), + [anon_sym_u_SQUOTE] = ACTIONS(1416), + [anon_sym_U_SQUOTE] = ACTIONS(1416), + [anon_sym_u8_SQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_L_DQUOTE] = ACTIONS(1416), + [anon_sym_u_DQUOTE] = ACTIONS(1416), + [anon_sym_U_DQUOTE] = ACTIONS(1416), + [anon_sym_u8_DQUOTE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [anon_sym_NULL] = ACTIONS(1414), + [anon_sym_nullptr] = ACTIONS(1414), + [sym_comment] = ACTIONS(5), + }, + [386] = { + [ts_builtin_sym_end] = ACTIONS(1428), + [sym_identifier] = ACTIONS(1426), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1426), + [aux_sym_preproc_def_token1] = ACTIONS(1426), + [aux_sym_preproc_if_token1] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), + [sym_preproc_directive] = ACTIONS(1426), + [anon_sym_LPAREN2] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym___extension__] = ACTIONS(1426), + [anon_sym_typedef] = ACTIONS(1426), + [anon_sym_extern] = ACTIONS(1426), + [anon_sym___attribute__] = ACTIONS(1426), + [anon_sym___scanf] = ACTIONS(1426), + [anon_sym___printf] = ACTIONS(1426), + [anon_sym___read_mostly] = ACTIONS(1426), + [anon_sym___must_hold] = ACTIONS(1426), + [anon_sym___ro_after_init] = ACTIONS(1426), + [anon_sym___noreturn] = ACTIONS(1426), + [anon_sym___cold] = ACTIONS(1426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), + [anon_sym___declspec] = ACTIONS(1426), + [anon_sym___init] = ACTIONS(1426), + [anon_sym___exit] = ACTIONS(1426), + [anon_sym___cdecl] = ACTIONS(1426), + [anon_sym___clrcall] = ACTIONS(1426), + [anon_sym___stdcall] = ACTIONS(1426), + [anon_sym___fastcall] = ACTIONS(1426), + [anon_sym___thiscall] = ACTIONS(1426), + [anon_sym___vectorcall] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_signed] = ACTIONS(1426), + [anon_sym_unsigned] = ACTIONS(1426), + [anon_sym_long] = ACTIONS(1426), + [anon_sym_short] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1426), + [anon_sym_auto] = ACTIONS(1426), + [anon_sym_register] = ACTIONS(1426), + [anon_sym_inline] = ACTIONS(1426), + [anon_sym___inline] = ACTIONS(1426), + [anon_sym___inline__] = ACTIONS(1426), + [anon_sym___forceinline] = ACTIONS(1426), + [anon_sym_thread_local] = ACTIONS(1426), + [anon_sym___thread] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_constexpr] = ACTIONS(1426), + [anon_sym_volatile] = ACTIONS(1426), + [anon_sym_restrict] = ACTIONS(1426), + [anon_sym___restrict__] = ACTIONS(1426), + [anon_sym__Atomic] = ACTIONS(1426), + [anon_sym__Noreturn] = ACTIONS(1426), + [anon_sym_noreturn] = ACTIONS(1426), + [anon_sym_alignas] = ACTIONS(1426), + [anon_sym__Alignas] = ACTIONS(1426), + [sym_primitive_type] = ACTIONS(1426), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1426), + [anon_sym_union] = ACTIONS(1426), + [anon_sym_if] = ACTIONS(1426), + [anon_sym_switch] = ACTIONS(1426), + [anon_sym_case] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1426), + [anon_sym_while] = ACTIONS(1426), + [anon_sym_do] = ACTIONS(1426), + [anon_sym_for] = ACTIONS(1426), + [anon_sym_return] = ACTIONS(1426), + [anon_sym_break] = ACTIONS(1426), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_goto] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [anon_sym_sizeof] = ACTIONS(1426), + [anon_sym___alignof__] = ACTIONS(1426), + [anon_sym___alignof] = ACTIONS(1426), + [anon_sym__alignof] = ACTIONS(1426), + [anon_sym_alignof] = ACTIONS(1426), + [anon_sym__Alignof] = ACTIONS(1426), + [anon_sym_offsetof] = ACTIONS(1426), + [anon_sym__Generic] = ACTIONS(1426), + [anon_sym_asm] = ACTIONS(1426), + [anon_sym___asm__] = ACTIONS(1426), + [sym_number_literal] = ACTIONS(1428), + [anon_sym_L_SQUOTE] = ACTIONS(1428), + [anon_sym_u_SQUOTE] = ACTIONS(1428), + [anon_sym_U_SQUOTE] = ACTIONS(1428), + [anon_sym_u8_SQUOTE] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_L_DQUOTE] = ACTIONS(1428), + [anon_sym_u_DQUOTE] = ACTIONS(1428), + [anon_sym_U_DQUOTE] = ACTIONS(1428), + [anon_sym_u8_DQUOTE] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [sym_true] = ACTIONS(1426), + [sym_false] = ACTIONS(1426), + [anon_sym_NULL] = ACTIONS(1426), + [anon_sym_nullptr] = ACTIONS(1426), + [sym_comment] = ACTIONS(5), + }, + [387] = { + [ts_builtin_sym_end] = ACTIONS(1514), + [sym_identifier] = ACTIONS(1512), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1512), + [aux_sym_preproc_def_token1] = ACTIONS(1512), + [aux_sym_preproc_if_token1] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1512), + [sym_preproc_directive] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1514), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1514), + [anon_sym___extension__] = ACTIONS(1512), + [anon_sym_typedef] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym___attribute__] = ACTIONS(1512), + [anon_sym___scanf] = ACTIONS(1512), + [anon_sym___printf] = ACTIONS(1512), + [anon_sym___read_mostly] = ACTIONS(1512), + [anon_sym___must_hold] = ACTIONS(1512), + [anon_sym___ro_after_init] = ACTIONS(1512), + [anon_sym___noreturn] = ACTIONS(1512), + [anon_sym___cold] = ACTIONS(1512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1514), + [anon_sym___declspec] = ACTIONS(1512), + [anon_sym___init] = ACTIONS(1512), + [anon_sym___exit] = ACTIONS(1512), + [anon_sym___cdecl] = ACTIONS(1512), + [anon_sym___clrcall] = ACTIONS(1512), + [anon_sym___stdcall] = ACTIONS(1512), + [anon_sym___fastcall] = ACTIONS(1512), + [anon_sym___thiscall] = ACTIONS(1512), + [anon_sym___vectorcall] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_signed] = ACTIONS(1512), + [anon_sym_unsigned] = ACTIONS(1512), + [anon_sym_long] = ACTIONS(1512), + [anon_sym_short] = ACTIONS(1512), + [anon_sym_static] = ACTIONS(1512), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_register] = ACTIONS(1512), + [anon_sym_inline] = ACTIONS(1512), + [anon_sym___inline] = ACTIONS(1512), + [anon_sym___inline__] = ACTIONS(1512), + [anon_sym___forceinline] = ACTIONS(1512), + [anon_sym_thread_local] = ACTIONS(1512), + [anon_sym___thread] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [anon_sym_constexpr] = ACTIONS(1512), + [anon_sym_volatile] = ACTIONS(1512), + [anon_sym_restrict] = ACTIONS(1512), + [anon_sym___restrict__] = ACTIONS(1512), + [anon_sym__Atomic] = ACTIONS(1512), + [anon_sym__Noreturn] = ACTIONS(1512), + [anon_sym_noreturn] = ACTIONS(1512), + [anon_sym_alignas] = ACTIONS(1512), + [anon_sym__Alignas] = ACTIONS(1512), + [sym_primitive_type] = ACTIONS(1512), + [anon_sym_enum] = ACTIONS(1512), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_switch] = ACTIONS(1512), + [anon_sym_case] = ACTIONS(1512), + [anon_sym_default] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_do] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_goto] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1512), + [anon_sym___alignof__] = ACTIONS(1512), + [anon_sym___alignof] = ACTIONS(1512), + [anon_sym__alignof] = ACTIONS(1512), + [anon_sym_alignof] = ACTIONS(1512), + [anon_sym__Alignof] = ACTIONS(1512), + [anon_sym_offsetof] = ACTIONS(1512), + [anon_sym__Generic] = ACTIONS(1512), + [anon_sym_asm] = ACTIONS(1512), + [anon_sym___asm__] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(1514), + [anon_sym_L_SQUOTE] = ACTIONS(1514), + [anon_sym_u_SQUOTE] = ACTIONS(1514), + [anon_sym_U_SQUOTE] = ACTIONS(1514), + [anon_sym_u8_SQUOTE] = ACTIONS(1514), + [anon_sym_SQUOTE] = ACTIONS(1514), + [anon_sym_L_DQUOTE] = ACTIONS(1514), + [anon_sym_u_DQUOTE] = ACTIONS(1514), + [anon_sym_U_DQUOTE] = ACTIONS(1514), + [anon_sym_u8_DQUOTE] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym_true] = ACTIONS(1512), + [sym_false] = ACTIONS(1512), + [anon_sym_NULL] = ACTIONS(1512), + [anon_sym_nullptr] = ACTIONS(1512), + [sym_comment] = ACTIONS(5), + }, + [388] = { + [ts_builtin_sym_end] = ACTIONS(1460), + [sym_identifier] = ACTIONS(1458), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1458), + [aux_sym_preproc_def_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token1] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1458), + [sym_preproc_directive] = ACTIONS(1458), + [anon_sym_LPAREN2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym___extension__] = ACTIONS(1458), + [anon_sym_typedef] = ACTIONS(1458), + [anon_sym_extern] = ACTIONS(1458), + [anon_sym___attribute__] = ACTIONS(1458), + [anon_sym___scanf] = ACTIONS(1458), + [anon_sym___printf] = ACTIONS(1458), + [anon_sym___read_mostly] = ACTIONS(1458), + [anon_sym___must_hold] = ACTIONS(1458), + [anon_sym___ro_after_init] = ACTIONS(1458), + [anon_sym___noreturn] = ACTIONS(1458), + [anon_sym___cold] = ACTIONS(1458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1460), + [anon_sym___declspec] = ACTIONS(1458), + [anon_sym___init] = ACTIONS(1458), + [anon_sym___exit] = ACTIONS(1458), + [anon_sym___cdecl] = ACTIONS(1458), + [anon_sym___clrcall] = ACTIONS(1458), + [anon_sym___stdcall] = ACTIONS(1458), + [anon_sym___fastcall] = ACTIONS(1458), + [anon_sym___thiscall] = ACTIONS(1458), + [anon_sym___vectorcall] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_signed] = ACTIONS(1458), + [anon_sym_unsigned] = ACTIONS(1458), + [anon_sym_long] = ACTIONS(1458), + [anon_sym_short] = ACTIONS(1458), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_auto] = ACTIONS(1458), + [anon_sym_register] = ACTIONS(1458), + [anon_sym_inline] = ACTIONS(1458), + [anon_sym___inline] = ACTIONS(1458), + [anon_sym___inline__] = ACTIONS(1458), + [anon_sym___forceinline] = ACTIONS(1458), + [anon_sym_thread_local] = ACTIONS(1458), + [anon_sym___thread] = ACTIONS(1458), + [anon_sym_const] = ACTIONS(1458), + [anon_sym_constexpr] = ACTIONS(1458), + [anon_sym_volatile] = ACTIONS(1458), + [anon_sym_restrict] = ACTIONS(1458), + [anon_sym___restrict__] = ACTIONS(1458), + [anon_sym__Atomic] = ACTIONS(1458), + [anon_sym__Noreturn] = ACTIONS(1458), + [anon_sym_noreturn] = ACTIONS(1458), + [anon_sym_alignas] = ACTIONS(1458), + [anon_sym__Alignas] = ACTIONS(1458), + [sym_primitive_type] = ACTIONS(1458), + [anon_sym_enum] = ACTIONS(1458), + [anon_sym_struct] = ACTIONS(1458), + [anon_sym_union] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1458), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), + [anon_sym_while] = ACTIONS(1458), + [anon_sym_do] = ACTIONS(1458), + [anon_sym_for] = ACTIONS(1458), + [anon_sym_return] = ACTIONS(1458), + [anon_sym_break] = ACTIONS(1458), + [anon_sym_continue] = ACTIONS(1458), + [anon_sym_goto] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [anon_sym_sizeof] = ACTIONS(1458), + [anon_sym___alignof__] = ACTIONS(1458), + [anon_sym___alignof] = ACTIONS(1458), + [anon_sym__alignof] = ACTIONS(1458), + [anon_sym_alignof] = ACTIONS(1458), + [anon_sym__Alignof] = ACTIONS(1458), + [anon_sym_offsetof] = ACTIONS(1458), + [anon_sym__Generic] = ACTIONS(1458), + [anon_sym_asm] = ACTIONS(1458), + [anon_sym___asm__] = ACTIONS(1458), + [sym_number_literal] = ACTIONS(1460), + [anon_sym_L_SQUOTE] = ACTIONS(1460), + [anon_sym_u_SQUOTE] = ACTIONS(1460), + [anon_sym_U_SQUOTE] = ACTIONS(1460), + [anon_sym_u8_SQUOTE] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_L_DQUOTE] = ACTIONS(1460), + [anon_sym_u_DQUOTE] = ACTIONS(1460), + [anon_sym_U_DQUOTE] = ACTIONS(1460), + [anon_sym_u8_DQUOTE] = ACTIONS(1460), + [anon_sym_DQUOTE] = ACTIONS(1460), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [anon_sym_NULL] = ACTIONS(1458), + [anon_sym_nullptr] = ACTIONS(1458), + [sym_comment] = ACTIONS(5), + }, + [389] = { + [ts_builtin_sym_end] = ACTIONS(1484), + [sym_identifier] = ACTIONS(1482), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1482), + [aux_sym_preproc_def_token1] = ACTIONS(1482), + [aux_sym_preproc_if_token1] = ACTIONS(1482), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1482), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1482), + [sym_preproc_directive] = ACTIONS(1482), + [anon_sym_LPAREN2] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_TILDE] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym___extension__] = ACTIONS(1482), + [anon_sym_typedef] = ACTIONS(1482), + [anon_sym_extern] = ACTIONS(1482), + [anon_sym___attribute__] = ACTIONS(1482), + [anon_sym___scanf] = ACTIONS(1482), + [anon_sym___printf] = ACTIONS(1482), + [anon_sym___read_mostly] = ACTIONS(1482), + [anon_sym___must_hold] = ACTIONS(1482), + [anon_sym___ro_after_init] = ACTIONS(1482), + [anon_sym___noreturn] = ACTIONS(1482), + [anon_sym___cold] = ACTIONS(1482), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1484), + [anon_sym___declspec] = ACTIONS(1482), + [anon_sym___init] = ACTIONS(1482), + [anon_sym___exit] = ACTIONS(1482), + [anon_sym___cdecl] = ACTIONS(1482), + [anon_sym___clrcall] = ACTIONS(1482), + [anon_sym___stdcall] = ACTIONS(1482), + [anon_sym___fastcall] = ACTIONS(1482), + [anon_sym___thiscall] = ACTIONS(1482), + [anon_sym___vectorcall] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_signed] = ACTIONS(1482), + [anon_sym_unsigned] = ACTIONS(1482), + [anon_sym_long] = ACTIONS(1482), + [anon_sym_short] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1482), + [anon_sym_auto] = ACTIONS(1482), + [anon_sym_register] = ACTIONS(1482), + [anon_sym_inline] = ACTIONS(1482), + [anon_sym___inline] = ACTIONS(1482), + [anon_sym___inline__] = ACTIONS(1482), + [anon_sym___forceinline] = ACTIONS(1482), + [anon_sym_thread_local] = ACTIONS(1482), + [anon_sym___thread] = ACTIONS(1482), + [anon_sym_const] = ACTIONS(1482), + [anon_sym_constexpr] = ACTIONS(1482), + [anon_sym_volatile] = ACTIONS(1482), + [anon_sym_restrict] = ACTIONS(1482), + [anon_sym___restrict__] = ACTIONS(1482), + [anon_sym__Atomic] = ACTIONS(1482), + [anon_sym__Noreturn] = ACTIONS(1482), + [anon_sym_noreturn] = ACTIONS(1482), + [anon_sym_alignas] = ACTIONS(1482), + [anon_sym__Alignas] = ACTIONS(1482), + [sym_primitive_type] = ACTIONS(1482), + [anon_sym_enum] = ACTIONS(1482), + [anon_sym_struct] = ACTIONS(1482), + [anon_sym_union] = ACTIONS(1482), + [anon_sym_if] = ACTIONS(1482), + [anon_sym_switch] = ACTIONS(1482), + [anon_sym_case] = ACTIONS(1482), + [anon_sym_default] = ACTIONS(1482), + [anon_sym_while] = ACTIONS(1482), + [anon_sym_do] = ACTIONS(1482), + [anon_sym_for] = ACTIONS(1482), + [anon_sym_return] = ACTIONS(1482), + [anon_sym_break] = ACTIONS(1482), + [anon_sym_continue] = ACTIONS(1482), + [anon_sym_goto] = ACTIONS(1482), + [anon_sym_DASH_DASH] = ACTIONS(1484), + [anon_sym_PLUS_PLUS] = ACTIONS(1484), + [anon_sym_sizeof] = ACTIONS(1482), + [anon_sym___alignof__] = ACTIONS(1482), + [anon_sym___alignof] = ACTIONS(1482), + [anon_sym__alignof] = ACTIONS(1482), + [anon_sym_alignof] = ACTIONS(1482), + [anon_sym__Alignof] = ACTIONS(1482), + [anon_sym_offsetof] = ACTIONS(1482), + [anon_sym__Generic] = ACTIONS(1482), + [anon_sym_asm] = ACTIONS(1482), + [anon_sym___asm__] = ACTIONS(1482), + [sym_number_literal] = ACTIONS(1484), + [anon_sym_L_SQUOTE] = ACTIONS(1484), + [anon_sym_u_SQUOTE] = ACTIONS(1484), + [anon_sym_U_SQUOTE] = ACTIONS(1484), + [anon_sym_u8_SQUOTE] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_L_DQUOTE] = ACTIONS(1484), + [anon_sym_u_DQUOTE] = ACTIONS(1484), + [anon_sym_U_DQUOTE] = ACTIONS(1484), + [anon_sym_u8_DQUOTE] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [sym_true] = ACTIONS(1482), + [sym_false] = ACTIONS(1482), + [anon_sym_NULL] = ACTIONS(1482), + [anon_sym_nullptr] = ACTIONS(1482), + [sym_comment] = ACTIONS(5), + }, + [390] = { + [ts_builtin_sym_end] = ACTIONS(1510), + [sym_identifier] = ACTIONS(1508), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1508), + [aux_sym_preproc_def_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1508), + [sym_preproc_directive] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_TILDE] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1510), + [anon_sym___extension__] = ACTIONS(1508), + [anon_sym_typedef] = ACTIONS(1508), + [anon_sym_extern] = ACTIONS(1508), + [anon_sym___attribute__] = ACTIONS(1508), + [anon_sym___scanf] = ACTIONS(1508), + [anon_sym___printf] = ACTIONS(1508), + [anon_sym___read_mostly] = ACTIONS(1508), + [anon_sym___must_hold] = ACTIONS(1508), + [anon_sym___ro_after_init] = ACTIONS(1508), + [anon_sym___noreturn] = ACTIONS(1508), + [anon_sym___cold] = ACTIONS(1508), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1510), + [anon_sym___declspec] = ACTIONS(1508), + [anon_sym___init] = ACTIONS(1508), + [anon_sym___exit] = ACTIONS(1508), + [anon_sym___cdecl] = ACTIONS(1508), + [anon_sym___clrcall] = ACTIONS(1508), + [anon_sym___stdcall] = ACTIONS(1508), + [anon_sym___fastcall] = ACTIONS(1508), + [anon_sym___thiscall] = ACTIONS(1508), + [anon_sym___vectorcall] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_signed] = ACTIONS(1508), + [anon_sym_unsigned] = ACTIONS(1508), + [anon_sym_long] = ACTIONS(1508), + [anon_sym_short] = ACTIONS(1508), + [anon_sym_static] = ACTIONS(1508), + [anon_sym_auto] = ACTIONS(1508), + [anon_sym_register] = ACTIONS(1508), + [anon_sym_inline] = ACTIONS(1508), + [anon_sym___inline] = ACTIONS(1508), + [anon_sym___inline__] = ACTIONS(1508), + [anon_sym___forceinline] = ACTIONS(1508), + [anon_sym_thread_local] = ACTIONS(1508), + [anon_sym___thread] = ACTIONS(1508), + [anon_sym_const] = ACTIONS(1508), + [anon_sym_constexpr] = ACTIONS(1508), + [anon_sym_volatile] = ACTIONS(1508), + [anon_sym_restrict] = ACTIONS(1508), + [anon_sym___restrict__] = ACTIONS(1508), + [anon_sym__Atomic] = ACTIONS(1508), + [anon_sym__Noreturn] = ACTIONS(1508), + [anon_sym_noreturn] = ACTIONS(1508), + [anon_sym_alignas] = ACTIONS(1508), + [anon_sym__Alignas] = ACTIONS(1508), + [sym_primitive_type] = ACTIONS(1508), + [anon_sym_enum] = ACTIONS(1508), + [anon_sym_struct] = ACTIONS(1508), + [anon_sym_union] = ACTIONS(1508), + [anon_sym_if] = ACTIONS(1508), + [anon_sym_switch] = ACTIONS(1508), + [anon_sym_case] = ACTIONS(1508), + [anon_sym_default] = ACTIONS(1508), + [anon_sym_while] = ACTIONS(1508), + [anon_sym_do] = ACTIONS(1508), + [anon_sym_for] = ACTIONS(1508), + [anon_sym_return] = ACTIONS(1508), + [anon_sym_break] = ACTIONS(1508), + [anon_sym_continue] = ACTIONS(1508), + [anon_sym_goto] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1510), + [anon_sym_PLUS_PLUS] = ACTIONS(1510), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym___alignof__] = ACTIONS(1508), + [anon_sym___alignof] = ACTIONS(1508), + [anon_sym__alignof] = ACTIONS(1508), + [anon_sym_alignof] = ACTIONS(1508), + [anon_sym__Alignof] = ACTIONS(1508), + [anon_sym_offsetof] = ACTIONS(1508), + [anon_sym__Generic] = ACTIONS(1508), + [anon_sym_asm] = ACTIONS(1508), + [anon_sym___asm__] = ACTIONS(1508), + [sym_number_literal] = ACTIONS(1510), + [anon_sym_L_SQUOTE] = ACTIONS(1510), + [anon_sym_u_SQUOTE] = ACTIONS(1510), + [anon_sym_U_SQUOTE] = ACTIONS(1510), + [anon_sym_u8_SQUOTE] = ACTIONS(1510), + [anon_sym_SQUOTE] = ACTIONS(1510), + [anon_sym_L_DQUOTE] = ACTIONS(1510), + [anon_sym_u_DQUOTE] = ACTIONS(1510), + [anon_sym_U_DQUOTE] = ACTIONS(1510), + [anon_sym_u8_DQUOTE] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [sym_true] = ACTIONS(1508), + [sym_false] = ACTIONS(1508), + [anon_sym_NULL] = ACTIONS(1508), + [anon_sym_nullptr] = ACTIONS(1508), + [sym_comment] = ACTIONS(5), + }, + [391] = { + [ts_builtin_sym_end] = ACTIONS(1388), + [sym_identifier] = ACTIONS(1386), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1386), + [aux_sym_preproc_def_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), + [sym_preproc_directive] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym___extension__] = ACTIONS(1386), + [anon_sym_typedef] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym___attribute__] = ACTIONS(1386), + [anon_sym___scanf] = ACTIONS(1386), + [anon_sym___printf] = ACTIONS(1386), + [anon_sym___read_mostly] = ACTIONS(1386), + [anon_sym___must_hold] = ACTIONS(1386), + [anon_sym___ro_after_init] = ACTIONS(1386), + [anon_sym___noreturn] = ACTIONS(1386), + [anon_sym___cold] = ACTIONS(1386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), + [anon_sym___declspec] = ACTIONS(1386), + [anon_sym___init] = ACTIONS(1386), + [anon_sym___exit] = ACTIONS(1386), + [anon_sym___cdecl] = ACTIONS(1386), + [anon_sym___clrcall] = ACTIONS(1386), + [anon_sym___stdcall] = ACTIONS(1386), + [anon_sym___fastcall] = ACTIONS(1386), + [anon_sym___thiscall] = ACTIONS(1386), + [anon_sym___vectorcall] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_signed] = ACTIONS(1386), + [anon_sym_unsigned] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_auto] = ACTIONS(1386), + [anon_sym_register] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym___inline] = ACTIONS(1386), + [anon_sym___inline__] = ACTIONS(1386), + [anon_sym___forceinline] = ACTIONS(1386), + [anon_sym_thread_local] = ACTIONS(1386), + [anon_sym___thread] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(1386), + [anon_sym_constexpr] = ACTIONS(1386), + [anon_sym_volatile] = ACTIONS(1386), + [anon_sym_restrict] = ACTIONS(1386), + [anon_sym___restrict__] = ACTIONS(1386), + [anon_sym__Atomic] = ACTIONS(1386), + [anon_sym__Noreturn] = ACTIONS(1386), + [anon_sym_noreturn] = ACTIONS(1386), + [anon_sym_alignas] = ACTIONS(1386), + [anon_sym__Alignas] = ACTIONS(1386), + [sym_primitive_type] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_union] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_switch] = ACTIONS(1386), + [anon_sym_case] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_goto] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_sizeof] = ACTIONS(1386), + [anon_sym___alignof__] = ACTIONS(1386), + [anon_sym___alignof] = ACTIONS(1386), + [anon_sym__alignof] = ACTIONS(1386), + [anon_sym_alignof] = ACTIONS(1386), + [anon_sym__Alignof] = ACTIONS(1386), + [anon_sym_offsetof] = ACTIONS(1386), + [anon_sym__Generic] = ACTIONS(1386), + [anon_sym_asm] = ACTIONS(1386), + [anon_sym___asm__] = ACTIONS(1386), + [sym_number_literal] = ACTIONS(1388), + [anon_sym_L_SQUOTE] = ACTIONS(1388), + [anon_sym_u_SQUOTE] = ACTIONS(1388), + [anon_sym_U_SQUOTE] = ACTIONS(1388), + [anon_sym_u8_SQUOTE] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_L_DQUOTE] = ACTIONS(1388), + [anon_sym_u_DQUOTE] = ACTIONS(1388), + [anon_sym_U_DQUOTE] = ACTIONS(1388), + [anon_sym_u8_DQUOTE] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), + [anon_sym_NULL] = ACTIONS(1386), + [anon_sym_nullptr] = ACTIONS(1386), + [sym_comment] = ACTIONS(5), + }, + [392] = { + [ts_builtin_sym_end] = ACTIONS(1436), + [sym_identifier] = ACTIONS(1434), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1434), + [aux_sym_preproc_def_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), + [sym_preproc_directive] = ACTIONS(1434), + [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym___extension__] = ACTIONS(1434), + [anon_sym_typedef] = ACTIONS(1434), + [anon_sym_extern] = ACTIONS(1434), + [anon_sym___attribute__] = ACTIONS(1434), + [anon_sym___scanf] = ACTIONS(1434), + [anon_sym___printf] = ACTIONS(1434), + [anon_sym___read_mostly] = ACTIONS(1434), + [anon_sym___must_hold] = ACTIONS(1434), + [anon_sym___ro_after_init] = ACTIONS(1434), + [anon_sym___noreturn] = ACTIONS(1434), + [anon_sym___cold] = ACTIONS(1434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), + [anon_sym___declspec] = ACTIONS(1434), + [anon_sym___init] = ACTIONS(1434), + [anon_sym___exit] = ACTIONS(1434), + [anon_sym___cdecl] = ACTIONS(1434), + [anon_sym___clrcall] = ACTIONS(1434), + [anon_sym___stdcall] = ACTIONS(1434), + [anon_sym___fastcall] = ACTIONS(1434), + [anon_sym___thiscall] = ACTIONS(1434), + [anon_sym___vectorcall] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1434), + [anon_sym_unsigned] = ACTIONS(1434), + [anon_sym_long] = ACTIONS(1434), + [anon_sym_short] = ACTIONS(1434), + [anon_sym_static] = ACTIONS(1434), + [anon_sym_auto] = ACTIONS(1434), + [anon_sym_register] = ACTIONS(1434), + [anon_sym_inline] = ACTIONS(1434), + [anon_sym___inline] = ACTIONS(1434), + [anon_sym___inline__] = ACTIONS(1434), + [anon_sym___forceinline] = ACTIONS(1434), + [anon_sym_thread_local] = ACTIONS(1434), + [anon_sym___thread] = ACTIONS(1434), + [anon_sym_const] = ACTIONS(1434), + [anon_sym_constexpr] = ACTIONS(1434), + [anon_sym_volatile] = ACTIONS(1434), + [anon_sym_restrict] = ACTIONS(1434), + [anon_sym___restrict__] = ACTIONS(1434), + [anon_sym__Atomic] = ACTIONS(1434), + [anon_sym__Noreturn] = ACTIONS(1434), + [anon_sym_noreturn] = ACTIONS(1434), + [anon_sym_alignas] = ACTIONS(1434), + [anon_sym__Alignas] = ACTIONS(1434), + [sym_primitive_type] = ACTIONS(1434), + [anon_sym_enum] = ACTIONS(1434), + [anon_sym_struct] = ACTIONS(1434), + [anon_sym_union] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1434), + [anon_sym_switch] = ACTIONS(1434), + [anon_sym_case] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_while] = ACTIONS(1434), + [anon_sym_do] = ACTIONS(1434), + [anon_sym_for] = ACTIONS(1434), + [anon_sym_return] = ACTIONS(1434), + [anon_sym_break] = ACTIONS(1434), + [anon_sym_continue] = ACTIONS(1434), + [anon_sym_goto] = ACTIONS(1434), + [anon_sym_DASH_DASH] = ACTIONS(1436), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1434), + [anon_sym___alignof__] = ACTIONS(1434), + [anon_sym___alignof] = ACTIONS(1434), + [anon_sym__alignof] = ACTIONS(1434), + [anon_sym_alignof] = ACTIONS(1434), + [anon_sym__Alignof] = ACTIONS(1434), + [anon_sym_offsetof] = ACTIONS(1434), + [anon_sym__Generic] = ACTIONS(1434), + [anon_sym_asm] = ACTIONS(1434), + [anon_sym___asm__] = ACTIONS(1434), + [sym_number_literal] = ACTIONS(1436), + [anon_sym_L_SQUOTE] = ACTIONS(1436), + [anon_sym_u_SQUOTE] = ACTIONS(1436), + [anon_sym_U_SQUOTE] = ACTIONS(1436), + [anon_sym_u8_SQUOTE] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_L_DQUOTE] = ACTIONS(1436), + [anon_sym_u_DQUOTE] = ACTIONS(1436), + [anon_sym_U_DQUOTE] = ACTIONS(1436), + [anon_sym_u8_DQUOTE] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [anon_sym_NULL] = ACTIONS(1434), + [anon_sym_nullptr] = ACTIONS(1434), + [sym_comment] = ACTIONS(5), + }, + [393] = { + [ts_builtin_sym_end] = ACTIONS(1440), + [sym_identifier] = ACTIONS(1438), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1438), + [aux_sym_preproc_def_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), + [sym_preproc_directive] = ACTIONS(1438), + [anon_sym_LPAREN2] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_TILDE] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym___extension__] = ACTIONS(1438), + [anon_sym_typedef] = ACTIONS(1438), + [anon_sym_extern] = ACTIONS(1438), + [anon_sym___attribute__] = ACTIONS(1438), + [anon_sym___scanf] = ACTIONS(1438), + [anon_sym___printf] = ACTIONS(1438), + [anon_sym___read_mostly] = ACTIONS(1438), + [anon_sym___must_hold] = ACTIONS(1438), + [anon_sym___ro_after_init] = ACTIONS(1438), + [anon_sym___noreturn] = ACTIONS(1438), + [anon_sym___cold] = ACTIONS(1438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), + [anon_sym___declspec] = ACTIONS(1438), + [anon_sym___init] = ACTIONS(1438), + [anon_sym___exit] = ACTIONS(1438), + [anon_sym___cdecl] = ACTIONS(1438), + [anon_sym___clrcall] = ACTIONS(1438), + [anon_sym___stdcall] = ACTIONS(1438), + [anon_sym___fastcall] = ACTIONS(1438), + [anon_sym___thiscall] = ACTIONS(1438), + [anon_sym___vectorcall] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_signed] = ACTIONS(1438), + [anon_sym_unsigned] = ACTIONS(1438), + [anon_sym_long] = ACTIONS(1438), + [anon_sym_short] = ACTIONS(1438), + [anon_sym_static] = ACTIONS(1438), + [anon_sym_auto] = ACTIONS(1438), + [anon_sym_register] = ACTIONS(1438), + [anon_sym_inline] = ACTIONS(1438), + [anon_sym___inline] = ACTIONS(1438), + [anon_sym___inline__] = ACTIONS(1438), + [anon_sym___forceinline] = ACTIONS(1438), + [anon_sym_thread_local] = ACTIONS(1438), + [anon_sym___thread] = ACTIONS(1438), + [anon_sym_const] = ACTIONS(1438), + [anon_sym_constexpr] = ACTIONS(1438), + [anon_sym_volatile] = ACTIONS(1438), + [anon_sym_restrict] = ACTIONS(1438), + [anon_sym___restrict__] = ACTIONS(1438), + [anon_sym__Atomic] = ACTIONS(1438), + [anon_sym__Noreturn] = ACTIONS(1438), + [anon_sym_noreturn] = ACTIONS(1438), + [anon_sym_alignas] = ACTIONS(1438), + [anon_sym__Alignas] = ACTIONS(1438), + [sym_primitive_type] = ACTIONS(1438), + [anon_sym_enum] = ACTIONS(1438), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_union] = ACTIONS(1438), + [anon_sym_if] = ACTIONS(1438), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1438), + [anon_sym_do] = ACTIONS(1438), + [anon_sym_for] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_goto] = ACTIONS(1438), + [anon_sym_DASH_DASH] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1440), + [anon_sym_sizeof] = ACTIONS(1438), + [anon_sym___alignof__] = ACTIONS(1438), + [anon_sym___alignof] = ACTIONS(1438), + [anon_sym__alignof] = ACTIONS(1438), + [anon_sym_alignof] = ACTIONS(1438), + [anon_sym__Alignof] = ACTIONS(1438), + [anon_sym_offsetof] = ACTIONS(1438), + [anon_sym__Generic] = ACTIONS(1438), + [anon_sym_asm] = ACTIONS(1438), + [anon_sym___asm__] = ACTIONS(1438), + [sym_number_literal] = ACTIONS(1440), + [anon_sym_L_SQUOTE] = ACTIONS(1440), + [anon_sym_u_SQUOTE] = ACTIONS(1440), + [anon_sym_U_SQUOTE] = ACTIONS(1440), + [anon_sym_u8_SQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1440), + [anon_sym_L_DQUOTE] = ACTIONS(1440), + [anon_sym_u_DQUOTE] = ACTIONS(1440), + [anon_sym_U_DQUOTE] = ACTIONS(1440), + [anon_sym_u8_DQUOTE] = ACTIONS(1440), + [anon_sym_DQUOTE] = ACTIONS(1440), + [sym_true] = ACTIONS(1438), + [sym_false] = ACTIONS(1438), + [anon_sym_NULL] = ACTIONS(1438), + [anon_sym_nullptr] = ACTIONS(1438), + [sym_comment] = ACTIONS(5), + }, + [394] = { + [ts_builtin_sym_end] = ACTIONS(1452), + [sym_identifier] = ACTIONS(1450), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1450), + [aux_sym_preproc_def_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), + [sym_preproc_directive] = ACTIONS(1450), + [anon_sym_LPAREN2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym___extension__] = ACTIONS(1450), + [anon_sym_typedef] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym___attribute__] = ACTIONS(1450), + [anon_sym___scanf] = ACTIONS(1450), + [anon_sym___printf] = ACTIONS(1450), + [anon_sym___read_mostly] = ACTIONS(1450), + [anon_sym___must_hold] = ACTIONS(1450), + [anon_sym___ro_after_init] = ACTIONS(1450), + [anon_sym___noreturn] = ACTIONS(1450), + [anon_sym___cold] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), + [anon_sym___declspec] = ACTIONS(1450), + [anon_sym___init] = ACTIONS(1450), + [anon_sym___exit] = ACTIONS(1450), + [anon_sym___cdecl] = ACTIONS(1450), + [anon_sym___clrcall] = ACTIONS(1450), + [anon_sym___stdcall] = ACTIONS(1450), + [anon_sym___fastcall] = ACTIONS(1450), + [anon_sym___thiscall] = ACTIONS(1450), + [anon_sym___vectorcall] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_signed] = ACTIONS(1450), + [anon_sym_unsigned] = ACTIONS(1450), + [anon_sym_long] = ACTIONS(1450), + [anon_sym_short] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_auto] = ACTIONS(1450), + [anon_sym_register] = ACTIONS(1450), + [anon_sym_inline] = ACTIONS(1450), + [anon_sym___inline] = ACTIONS(1450), + [anon_sym___inline__] = ACTIONS(1450), + [anon_sym___forceinline] = ACTIONS(1450), + [anon_sym_thread_local] = ACTIONS(1450), + [anon_sym___thread] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_constexpr] = ACTIONS(1450), + [anon_sym_volatile] = ACTIONS(1450), + [anon_sym_restrict] = ACTIONS(1450), + [anon_sym___restrict__] = ACTIONS(1450), + [anon_sym__Atomic] = ACTIONS(1450), + [anon_sym__Noreturn] = ACTIONS(1450), + [anon_sym_noreturn] = ACTIONS(1450), + [anon_sym_alignas] = ACTIONS(1450), + [anon_sym__Alignas] = ACTIONS(1450), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_switch] = ACTIONS(1450), + [anon_sym_case] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_do] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_goto] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [anon_sym_sizeof] = ACTIONS(1450), + [anon_sym___alignof__] = ACTIONS(1450), + [anon_sym___alignof] = ACTIONS(1450), + [anon_sym__alignof] = ACTIONS(1450), + [anon_sym_alignof] = ACTIONS(1450), + [anon_sym__Alignof] = ACTIONS(1450), + [anon_sym_offsetof] = ACTIONS(1450), + [anon_sym__Generic] = ACTIONS(1450), + [anon_sym_asm] = ACTIONS(1450), + [anon_sym___asm__] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(1452), + [anon_sym_L_SQUOTE] = ACTIONS(1452), + [anon_sym_u_SQUOTE] = ACTIONS(1452), + [anon_sym_U_SQUOTE] = ACTIONS(1452), + [anon_sym_u8_SQUOTE] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_L_DQUOTE] = ACTIONS(1452), + [anon_sym_u_DQUOTE] = ACTIONS(1452), + [anon_sym_U_DQUOTE] = ACTIONS(1452), + [anon_sym_u8_DQUOTE] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [sym_true] = ACTIONS(1450), + [sym_false] = ACTIONS(1450), + [anon_sym_NULL] = ACTIONS(1450), + [anon_sym_nullptr] = ACTIONS(1450), + [sym_comment] = ACTIONS(5), + }, + [395] = { + [ts_builtin_sym_end] = ACTIONS(1384), + [sym_identifier] = ACTIONS(1382), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), + [sym_preproc_directive] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym___extension__] = ACTIONS(1382), + [anon_sym_typedef] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1382), + [anon_sym___scanf] = ACTIONS(1382), + [anon_sym___printf] = ACTIONS(1382), + [anon_sym___read_mostly] = ACTIONS(1382), + [anon_sym___must_hold] = ACTIONS(1382), + [anon_sym___ro_after_init] = ACTIONS(1382), + [anon_sym___noreturn] = ACTIONS(1382), + [anon_sym___cold] = ACTIONS(1382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), + [anon_sym___declspec] = ACTIONS(1382), + [anon_sym___init] = ACTIONS(1382), + [anon_sym___exit] = ACTIONS(1382), + [anon_sym___cdecl] = ACTIONS(1382), + [anon_sym___clrcall] = ACTIONS(1382), + [anon_sym___stdcall] = ACTIONS(1382), + [anon_sym___fastcall] = ACTIONS(1382), + [anon_sym___thiscall] = ACTIONS(1382), + [anon_sym___vectorcall] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_signed] = ACTIONS(1382), + [anon_sym_unsigned] = ACTIONS(1382), + [anon_sym_long] = ACTIONS(1382), + [anon_sym_short] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_auto] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym___inline] = ACTIONS(1382), + [anon_sym___inline__] = ACTIONS(1382), + [anon_sym___forceinline] = ACTIONS(1382), + [anon_sym_thread_local] = ACTIONS(1382), + [anon_sym___thread] = ACTIONS(1382), + [anon_sym_const] = ACTIONS(1382), + [anon_sym_constexpr] = ACTIONS(1382), + [anon_sym_volatile] = ACTIONS(1382), + [anon_sym_restrict] = ACTIONS(1382), + [anon_sym___restrict__] = ACTIONS(1382), + [anon_sym__Atomic] = ACTIONS(1382), + [anon_sym__Noreturn] = ACTIONS(1382), + [anon_sym_noreturn] = ACTIONS(1382), + [anon_sym_alignas] = ACTIONS(1382), + [anon_sym__Alignas] = ACTIONS(1382), + [sym_primitive_type] = ACTIONS(1382), + [anon_sym_enum] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_do] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_goto] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym___alignof__] = ACTIONS(1382), + [anon_sym___alignof] = ACTIONS(1382), + [anon_sym__alignof] = ACTIONS(1382), + [anon_sym_alignof] = ACTIONS(1382), + [anon_sym__Alignof] = ACTIONS(1382), + [anon_sym_offsetof] = ACTIONS(1382), + [anon_sym__Generic] = ACTIONS(1382), + [anon_sym_asm] = ACTIONS(1382), + [anon_sym___asm__] = ACTIONS(1382), + [sym_number_literal] = ACTIONS(1384), + [anon_sym_L_SQUOTE] = ACTIONS(1384), + [anon_sym_u_SQUOTE] = ACTIONS(1384), + [anon_sym_U_SQUOTE] = ACTIONS(1384), + [anon_sym_u8_SQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_L_DQUOTE] = ACTIONS(1384), + [anon_sym_u_DQUOTE] = ACTIONS(1384), + [anon_sym_U_DQUOTE] = ACTIONS(1384), + [anon_sym_u8_DQUOTE] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [anon_sym_NULL] = ACTIONS(1382), + [anon_sym_nullptr] = ACTIONS(1382), + [sym_comment] = ACTIONS(5), + }, + [396] = { + [ts_builtin_sym_end] = ACTIONS(1526), + [sym_identifier] = ACTIONS(1528), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1528), + [aux_sym_preproc_def_token1] = ACTIONS(1528), + [aux_sym_preproc_if_token1] = ACTIONS(1528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1528), + [sym_preproc_directive] = ACTIONS(1528), + [anon_sym_LPAREN2] = ACTIONS(1526), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_PLUS] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1526), + [anon_sym___extension__] = ACTIONS(1528), + [anon_sym_typedef] = ACTIONS(1528), + [anon_sym_extern] = ACTIONS(1528), + [anon_sym___attribute__] = ACTIONS(1528), + [anon_sym___scanf] = ACTIONS(1528), + [anon_sym___printf] = ACTIONS(1528), + [anon_sym___read_mostly] = ACTIONS(1528), + [anon_sym___must_hold] = ACTIONS(1528), + [anon_sym___ro_after_init] = ACTIONS(1528), + [anon_sym___noreturn] = ACTIONS(1528), + [anon_sym___cold] = ACTIONS(1528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1526), + [anon_sym___declspec] = ACTIONS(1528), + [anon_sym___init] = ACTIONS(1528), + [anon_sym___exit] = ACTIONS(1528), + [anon_sym___cdecl] = ACTIONS(1528), + [anon_sym___clrcall] = ACTIONS(1528), + [anon_sym___stdcall] = ACTIONS(1528), + [anon_sym___fastcall] = ACTIONS(1528), + [anon_sym___thiscall] = ACTIONS(1528), + [anon_sym___vectorcall] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1526), + [anon_sym_signed] = ACTIONS(1528), + [anon_sym_unsigned] = ACTIONS(1528), + [anon_sym_long] = ACTIONS(1528), + [anon_sym_short] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_auto] = ACTIONS(1528), + [anon_sym_register] = ACTIONS(1528), + [anon_sym_inline] = ACTIONS(1528), + [anon_sym___inline] = ACTIONS(1528), + [anon_sym___inline__] = ACTIONS(1528), + [anon_sym___forceinline] = ACTIONS(1528), + [anon_sym_thread_local] = ACTIONS(1528), + [anon_sym___thread] = ACTIONS(1528), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_constexpr] = ACTIONS(1528), + [anon_sym_volatile] = ACTIONS(1528), + [anon_sym_restrict] = ACTIONS(1528), + [anon_sym___restrict__] = ACTIONS(1528), + [anon_sym__Atomic] = ACTIONS(1528), + [anon_sym__Noreturn] = ACTIONS(1528), + [anon_sym_noreturn] = ACTIONS(1528), + [anon_sym_alignas] = ACTIONS(1528), + [anon_sym__Alignas] = ACTIONS(1528), + [sym_primitive_type] = ACTIONS(1528), + [anon_sym_enum] = ACTIONS(1528), + [anon_sym_struct] = ACTIONS(1528), + [anon_sym_union] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1528), + [anon_sym_switch] = ACTIONS(1528), + [anon_sym_case] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1528), + [anon_sym_while] = ACTIONS(1528), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(1528), + [anon_sym_break] = ACTIONS(1528), + [anon_sym_continue] = ACTIONS(1528), + [anon_sym_goto] = ACTIONS(1528), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_sizeof] = ACTIONS(1528), + [anon_sym___alignof__] = ACTIONS(1528), + [anon_sym___alignof] = ACTIONS(1528), + [anon_sym__alignof] = ACTIONS(1528), + [anon_sym_alignof] = ACTIONS(1528), + [anon_sym__Alignof] = ACTIONS(1528), + [anon_sym_offsetof] = ACTIONS(1528), + [anon_sym__Generic] = ACTIONS(1528), + [anon_sym_asm] = ACTIONS(1528), + [anon_sym___asm__] = ACTIONS(1528), + [sym_number_literal] = ACTIONS(1526), + [anon_sym_L_SQUOTE] = ACTIONS(1526), + [anon_sym_u_SQUOTE] = ACTIONS(1526), + [anon_sym_U_SQUOTE] = ACTIONS(1526), + [anon_sym_u8_SQUOTE] = ACTIONS(1526), + [anon_sym_SQUOTE] = ACTIONS(1526), + [anon_sym_L_DQUOTE] = ACTIONS(1526), + [anon_sym_u_DQUOTE] = ACTIONS(1526), + [anon_sym_U_DQUOTE] = ACTIONS(1526), + [anon_sym_u8_DQUOTE] = ACTIONS(1526), + [anon_sym_DQUOTE] = ACTIONS(1526), + [sym_true] = ACTIONS(1528), + [sym_false] = ACTIONS(1528), + [anon_sym_NULL] = ACTIONS(1528), + [anon_sym_nullptr] = ACTIONS(1528), + [sym_comment] = ACTIONS(5), + }, + [397] = { + [ts_builtin_sym_end] = ACTIONS(1396), + [sym_identifier] = ACTIONS(1394), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1394), + [aux_sym_preproc_def_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym___extension__] = ACTIONS(1394), + [anon_sym_typedef] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym___attribute__] = ACTIONS(1394), + [anon_sym___scanf] = ACTIONS(1394), + [anon_sym___printf] = ACTIONS(1394), + [anon_sym___read_mostly] = ACTIONS(1394), + [anon_sym___must_hold] = ACTIONS(1394), + [anon_sym___ro_after_init] = ACTIONS(1394), + [anon_sym___noreturn] = ACTIONS(1394), + [anon_sym___cold] = ACTIONS(1394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), + [anon_sym___declspec] = ACTIONS(1394), + [anon_sym___init] = ACTIONS(1394), + [anon_sym___exit] = ACTIONS(1394), + [anon_sym___cdecl] = ACTIONS(1394), + [anon_sym___clrcall] = ACTIONS(1394), + [anon_sym___stdcall] = ACTIONS(1394), + [anon_sym___fastcall] = ACTIONS(1394), + [anon_sym___thiscall] = ACTIONS(1394), + [anon_sym___vectorcall] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_signed] = ACTIONS(1394), + [anon_sym_unsigned] = ACTIONS(1394), + [anon_sym_long] = ACTIONS(1394), + [anon_sym_short] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_auto] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym___inline] = ACTIONS(1394), + [anon_sym___inline__] = ACTIONS(1394), + [anon_sym___forceinline] = ACTIONS(1394), + [anon_sym_thread_local] = ACTIONS(1394), + [anon_sym___thread] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_constexpr] = ACTIONS(1394), + [anon_sym_volatile] = ACTIONS(1394), + [anon_sym_restrict] = ACTIONS(1394), + [anon_sym___restrict__] = ACTIONS(1394), + [anon_sym__Atomic] = ACTIONS(1394), + [anon_sym__Noreturn] = ACTIONS(1394), + [anon_sym_noreturn] = ACTIONS(1394), + [anon_sym_alignas] = ACTIONS(1394), + [anon_sym__Alignas] = ACTIONS(1394), + [sym_primitive_type] = ACTIONS(1394), + [anon_sym_enum] = ACTIONS(1394), + [anon_sym_struct] = ACTIONS(1394), + [anon_sym_union] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_switch] = ACTIONS(1394), + [anon_sym_case] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_goto] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym___alignof__] = ACTIONS(1394), + [anon_sym___alignof] = ACTIONS(1394), + [anon_sym__alignof] = ACTIONS(1394), + [anon_sym_alignof] = ACTIONS(1394), + [anon_sym__Alignof] = ACTIONS(1394), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1394), + [anon_sym___asm__] = ACTIONS(1394), + [sym_number_literal] = ACTIONS(1396), + [anon_sym_L_SQUOTE] = ACTIONS(1396), + [anon_sym_u_SQUOTE] = ACTIONS(1396), + [anon_sym_U_SQUOTE] = ACTIONS(1396), + [anon_sym_u8_SQUOTE] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_L_DQUOTE] = ACTIONS(1396), + [anon_sym_u_DQUOTE] = ACTIONS(1396), + [anon_sym_U_DQUOTE] = ACTIONS(1396), + [anon_sym_u8_DQUOTE] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [anon_sym_NULL] = ACTIONS(1394), + [anon_sym_nullptr] = ACTIONS(1394), + [sym_comment] = ACTIONS(5), + }, + [398] = { + [ts_builtin_sym_end] = ACTIONS(1400), + [sym_identifier] = ACTIONS(1398), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1398), + [aux_sym_preproc_def_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), + [sym_preproc_directive] = ACTIONS(1398), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym___extension__] = ACTIONS(1398), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym___scanf] = ACTIONS(1398), + [anon_sym___printf] = ACTIONS(1398), + [anon_sym___read_mostly] = ACTIONS(1398), + [anon_sym___must_hold] = ACTIONS(1398), + [anon_sym___ro_after_init] = ACTIONS(1398), + [anon_sym___noreturn] = ACTIONS(1398), + [anon_sym___cold] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___init] = ACTIONS(1398), + [anon_sym___exit] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym___inline] = ACTIONS(1398), + [anon_sym___inline__] = ACTIONS(1398), + [anon_sym___forceinline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym___thread] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [anon_sym_alignas] = ACTIONS(1398), + [anon_sym__Alignas] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_switch] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_do] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_goto] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym___alignof__] = ACTIONS(1398), + [anon_sym___alignof] = ACTIONS(1398), + [anon_sym__alignof] = ACTIONS(1398), + [anon_sym_alignof] = ACTIONS(1398), + [anon_sym__Alignof] = ACTIONS(1398), + [anon_sym_offsetof] = ACTIONS(1398), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1398), + [anon_sym___asm__] = ACTIONS(1398), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1400), + [anon_sym_u_SQUOTE] = ACTIONS(1400), + [anon_sym_U_SQUOTE] = ACTIONS(1400), + [anon_sym_u8_SQUOTE] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_L_DQUOTE] = ACTIONS(1400), + [anon_sym_u_DQUOTE] = ACTIONS(1400), + [anon_sym_U_DQUOTE] = ACTIONS(1400), + [anon_sym_u8_DQUOTE] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [anon_sym_NULL] = ACTIONS(1398), + [anon_sym_nullptr] = ACTIONS(1398), + [sym_comment] = ACTIONS(5), + }, + [399] = { + [ts_builtin_sym_end] = ACTIONS(1420), + [sym_identifier] = ACTIONS(1418), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym___extension__] = ACTIONS(1418), + [anon_sym_typedef] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym___attribute__] = ACTIONS(1418), + [anon_sym___scanf] = ACTIONS(1418), + [anon_sym___printf] = ACTIONS(1418), + [anon_sym___read_mostly] = ACTIONS(1418), + [anon_sym___must_hold] = ACTIONS(1418), + [anon_sym___ro_after_init] = ACTIONS(1418), + [anon_sym___noreturn] = ACTIONS(1418), + [anon_sym___cold] = ACTIONS(1418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), + [anon_sym___declspec] = ACTIONS(1418), + [anon_sym___init] = ACTIONS(1418), + [anon_sym___exit] = ACTIONS(1418), + [anon_sym___cdecl] = ACTIONS(1418), + [anon_sym___clrcall] = ACTIONS(1418), + [anon_sym___stdcall] = ACTIONS(1418), + [anon_sym___fastcall] = ACTIONS(1418), + [anon_sym___thiscall] = ACTIONS(1418), + [anon_sym___vectorcall] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_inline] = ACTIONS(1418), + [anon_sym___inline] = ACTIONS(1418), + [anon_sym___inline__] = ACTIONS(1418), + [anon_sym___forceinline] = ACTIONS(1418), + [anon_sym_thread_local] = ACTIONS(1418), + [anon_sym___thread] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_constexpr] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym___restrict__] = ACTIONS(1418), + [anon_sym__Atomic] = ACTIONS(1418), + [anon_sym__Noreturn] = ACTIONS(1418), + [anon_sym_noreturn] = ACTIONS(1418), + [anon_sym_alignas] = ACTIONS(1418), + [anon_sym__Alignas] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(1418), + [anon_sym___alignof__] = ACTIONS(1418), + [anon_sym___alignof] = ACTIONS(1418), + [anon_sym__alignof] = ACTIONS(1418), + [anon_sym_alignof] = ACTIONS(1418), + [anon_sym__Alignof] = ACTIONS(1418), + [anon_sym_offsetof] = ACTIONS(1418), + [anon_sym__Generic] = ACTIONS(1418), + [anon_sym_asm] = ACTIONS(1418), + [anon_sym___asm__] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(1420), + [anon_sym_L_SQUOTE] = ACTIONS(1420), + [anon_sym_u_SQUOTE] = ACTIONS(1420), + [anon_sym_U_SQUOTE] = ACTIONS(1420), + [anon_sym_u8_SQUOTE] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_L_DQUOTE] = ACTIONS(1420), + [anon_sym_u_DQUOTE] = ACTIONS(1420), + [anon_sym_U_DQUOTE] = ACTIONS(1420), + [anon_sym_u8_DQUOTE] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [sym_true] = ACTIONS(1418), + [sym_false] = ACTIONS(1418), + [anon_sym_NULL] = ACTIONS(1418), + [anon_sym_nullptr] = ACTIONS(1418), + [sym_comment] = ACTIONS(5), + }, + [400] = { + [ts_builtin_sym_end] = ACTIONS(1500), + [sym_identifier] = ACTIONS(1498), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1498), + [aux_sym_preproc_def_token1] = ACTIONS(1498), + [aux_sym_preproc_if_token1] = ACTIONS(1498), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1498), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1498), + [sym_preproc_directive] = ACTIONS(1498), + [anon_sym_LPAREN2] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_TILDE] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym___extension__] = ACTIONS(1498), + [anon_sym_typedef] = ACTIONS(1498), + [anon_sym_extern] = ACTIONS(1498), + [anon_sym___attribute__] = ACTIONS(1498), + [anon_sym___scanf] = ACTIONS(1498), + [anon_sym___printf] = ACTIONS(1498), + [anon_sym___read_mostly] = ACTIONS(1498), + [anon_sym___must_hold] = ACTIONS(1498), + [anon_sym___ro_after_init] = ACTIONS(1498), + [anon_sym___noreturn] = ACTIONS(1498), + [anon_sym___cold] = ACTIONS(1498), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1500), + [anon_sym___declspec] = ACTIONS(1498), + [anon_sym___init] = ACTIONS(1498), + [anon_sym___exit] = ACTIONS(1498), + [anon_sym___cdecl] = ACTIONS(1498), + [anon_sym___clrcall] = ACTIONS(1498), + [anon_sym___stdcall] = ACTIONS(1498), + [anon_sym___fastcall] = ACTIONS(1498), + [anon_sym___thiscall] = ACTIONS(1498), + [anon_sym___vectorcall] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1500), + [anon_sym_signed] = ACTIONS(1498), + [anon_sym_unsigned] = ACTIONS(1498), + [anon_sym_long] = ACTIONS(1498), + [anon_sym_short] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_auto] = ACTIONS(1498), + [anon_sym_register] = ACTIONS(1498), + [anon_sym_inline] = ACTIONS(1498), + [anon_sym___inline] = ACTIONS(1498), + [anon_sym___inline__] = ACTIONS(1498), + [anon_sym___forceinline] = ACTIONS(1498), + [anon_sym_thread_local] = ACTIONS(1498), + [anon_sym___thread] = ACTIONS(1498), + [anon_sym_const] = ACTIONS(1498), + [anon_sym_constexpr] = ACTIONS(1498), + [anon_sym_volatile] = ACTIONS(1498), + [anon_sym_restrict] = ACTIONS(1498), + [anon_sym___restrict__] = ACTIONS(1498), + [anon_sym__Atomic] = ACTIONS(1498), + [anon_sym__Noreturn] = ACTIONS(1498), + [anon_sym_noreturn] = ACTIONS(1498), + [anon_sym_alignas] = ACTIONS(1498), + [anon_sym__Alignas] = ACTIONS(1498), + [sym_primitive_type] = ACTIONS(1498), + [anon_sym_enum] = ACTIONS(1498), + [anon_sym_struct] = ACTIONS(1498), + [anon_sym_union] = ACTIONS(1498), + [anon_sym_if] = ACTIONS(1498), + [anon_sym_switch] = ACTIONS(1498), + [anon_sym_case] = ACTIONS(1498), + [anon_sym_default] = ACTIONS(1498), + [anon_sym_while] = ACTIONS(1498), + [anon_sym_do] = ACTIONS(1498), + [anon_sym_for] = ACTIONS(1498), + [anon_sym_return] = ACTIONS(1498), + [anon_sym_break] = ACTIONS(1498), + [anon_sym_continue] = ACTIONS(1498), + [anon_sym_goto] = ACTIONS(1498), + [anon_sym_DASH_DASH] = ACTIONS(1500), + [anon_sym_PLUS_PLUS] = ACTIONS(1500), + [anon_sym_sizeof] = ACTIONS(1498), + [anon_sym___alignof__] = ACTIONS(1498), + [anon_sym___alignof] = ACTIONS(1498), + [anon_sym__alignof] = ACTIONS(1498), + [anon_sym_alignof] = ACTIONS(1498), + [anon_sym__Alignof] = ACTIONS(1498), + [anon_sym_offsetof] = ACTIONS(1498), + [anon_sym__Generic] = ACTIONS(1498), + [anon_sym_asm] = ACTIONS(1498), + [anon_sym___asm__] = ACTIONS(1498), + [sym_number_literal] = ACTIONS(1500), + [anon_sym_L_SQUOTE] = ACTIONS(1500), + [anon_sym_u_SQUOTE] = ACTIONS(1500), + [anon_sym_U_SQUOTE] = ACTIONS(1500), + [anon_sym_u8_SQUOTE] = ACTIONS(1500), + [anon_sym_SQUOTE] = ACTIONS(1500), + [anon_sym_L_DQUOTE] = ACTIONS(1500), + [anon_sym_u_DQUOTE] = ACTIONS(1500), + [anon_sym_U_DQUOTE] = ACTIONS(1500), + [anon_sym_u8_DQUOTE] = ACTIONS(1500), + [anon_sym_DQUOTE] = ACTIONS(1500), + [sym_true] = ACTIONS(1498), + [sym_false] = ACTIONS(1498), + [anon_sym_NULL] = ACTIONS(1498), + [anon_sym_nullptr] = ACTIONS(1498), + [sym_comment] = ACTIONS(5), + }, + [401] = { + [ts_builtin_sym_end] = ACTIONS(1476), + [sym_identifier] = ACTIONS(1474), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1474), + [aux_sym_preproc_def_token1] = ACTIONS(1474), + [aux_sym_preproc_if_token1] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1474), + [sym_preproc_directive] = ACTIONS(1474), + [anon_sym_LPAREN2] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym___extension__] = ACTIONS(1474), + [anon_sym_typedef] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym___attribute__] = ACTIONS(1474), + [anon_sym___scanf] = ACTIONS(1474), + [anon_sym___printf] = ACTIONS(1474), + [anon_sym___read_mostly] = ACTIONS(1474), + [anon_sym___must_hold] = ACTIONS(1474), + [anon_sym___ro_after_init] = ACTIONS(1474), + [anon_sym___noreturn] = ACTIONS(1474), + [anon_sym___cold] = ACTIONS(1474), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1476), + [anon_sym___declspec] = ACTIONS(1474), + [anon_sym___init] = ACTIONS(1474), + [anon_sym___exit] = ACTIONS(1474), + [anon_sym___cdecl] = ACTIONS(1474), + [anon_sym___clrcall] = ACTIONS(1474), + [anon_sym___stdcall] = ACTIONS(1474), + [anon_sym___fastcall] = ACTIONS(1474), + [anon_sym___thiscall] = ACTIONS(1474), + [anon_sym___vectorcall] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_signed] = ACTIONS(1474), + [anon_sym_unsigned] = ACTIONS(1474), + [anon_sym_long] = ACTIONS(1474), + [anon_sym_short] = ACTIONS(1474), + [anon_sym_static] = ACTIONS(1474), + [anon_sym_auto] = ACTIONS(1474), + [anon_sym_register] = ACTIONS(1474), + [anon_sym_inline] = ACTIONS(1474), + [anon_sym___inline] = ACTIONS(1474), + [anon_sym___inline__] = ACTIONS(1474), + [anon_sym___forceinline] = ACTIONS(1474), + [anon_sym_thread_local] = ACTIONS(1474), + [anon_sym___thread] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_constexpr] = ACTIONS(1474), + [anon_sym_volatile] = ACTIONS(1474), + [anon_sym_restrict] = ACTIONS(1474), + [anon_sym___restrict__] = ACTIONS(1474), + [anon_sym__Atomic] = ACTIONS(1474), + [anon_sym__Noreturn] = ACTIONS(1474), + [anon_sym_noreturn] = ACTIONS(1474), + [anon_sym_alignas] = ACTIONS(1474), + [anon_sym__Alignas] = ACTIONS(1474), + [sym_primitive_type] = ACTIONS(1474), + [anon_sym_enum] = ACTIONS(1474), + [anon_sym_struct] = ACTIONS(1474), + [anon_sym_union] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_switch] = ACTIONS(1474), + [anon_sym_case] = ACTIONS(1474), + [anon_sym_default] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_do] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_goto] = ACTIONS(1474), + [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_PLUS_PLUS] = ACTIONS(1476), + [anon_sym_sizeof] = ACTIONS(1474), + [anon_sym___alignof__] = ACTIONS(1474), + [anon_sym___alignof] = ACTIONS(1474), + [anon_sym__alignof] = ACTIONS(1474), + [anon_sym_alignof] = ACTIONS(1474), + [anon_sym__Alignof] = ACTIONS(1474), + [anon_sym_offsetof] = ACTIONS(1474), + [anon_sym__Generic] = ACTIONS(1474), + [anon_sym_asm] = ACTIONS(1474), + [anon_sym___asm__] = ACTIONS(1474), + [sym_number_literal] = ACTIONS(1476), + [anon_sym_L_SQUOTE] = ACTIONS(1476), + [anon_sym_u_SQUOTE] = ACTIONS(1476), + [anon_sym_U_SQUOTE] = ACTIONS(1476), + [anon_sym_u8_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_L_DQUOTE] = ACTIONS(1476), + [anon_sym_u_DQUOTE] = ACTIONS(1476), + [anon_sym_U_DQUOTE] = ACTIONS(1476), + [anon_sym_u8_DQUOTE] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [sym_true] = ACTIONS(1474), + [sym_false] = ACTIONS(1474), + [anon_sym_NULL] = ACTIONS(1474), + [anon_sym_nullptr] = ACTIONS(1474), + [sym_comment] = ACTIONS(5), + }, + [402] = { + [ts_builtin_sym_end] = ACTIONS(1492), + [sym_identifier] = ACTIONS(1490), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1490), + [aux_sym_preproc_def_token1] = ACTIONS(1490), + [aux_sym_preproc_if_token1] = ACTIONS(1490), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1490), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1490), + [sym_preproc_directive] = ACTIONS(1490), + [anon_sym_LPAREN2] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym___extension__] = ACTIONS(1490), + [anon_sym_typedef] = ACTIONS(1490), + [anon_sym_extern] = ACTIONS(1490), + [anon_sym___attribute__] = ACTIONS(1490), + [anon_sym___scanf] = ACTIONS(1490), + [anon_sym___printf] = ACTIONS(1490), + [anon_sym___read_mostly] = ACTIONS(1490), + [anon_sym___must_hold] = ACTIONS(1490), + [anon_sym___ro_after_init] = ACTIONS(1490), + [anon_sym___noreturn] = ACTIONS(1490), + [anon_sym___cold] = ACTIONS(1490), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1492), + [anon_sym___declspec] = ACTIONS(1490), + [anon_sym___init] = ACTIONS(1490), + [anon_sym___exit] = ACTIONS(1490), + [anon_sym___cdecl] = ACTIONS(1490), + [anon_sym___clrcall] = ACTIONS(1490), + [anon_sym___stdcall] = ACTIONS(1490), + [anon_sym___fastcall] = ACTIONS(1490), + [anon_sym___thiscall] = ACTIONS(1490), + [anon_sym___vectorcall] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_signed] = ACTIONS(1490), + [anon_sym_unsigned] = ACTIONS(1490), + [anon_sym_long] = ACTIONS(1490), + [anon_sym_short] = ACTIONS(1490), + [anon_sym_static] = ACTIONS(1490), + [anon_sym_auto] = ACTIONS(1490), + [anon_sym_register] = ACTIONS(1490), + [anon_sym_inline] = ACTIONS(1490), + [anon_sym___inline] = ACTIONS(1490), + [anon_sym___inline__] = ACTIONS(1490), + [anon_sym___forceinline] = ACTIONS(1490), + [anon_sym_thread_local] = ACTIONS(1490), + [anon_sym___thread] = ACTIONS(1490), + [anon_sym_const] = ACTIONS(1490), + [anon_sym_constexpr] = ACTIONS(1490), + [anon_sym_volatile] = ACTIONS(1490), + [anon_sym_restrict] = ACTIONS(1490), + [anon_sym___restrict__] = ACTIONS(1490), + [anon_sym__Atomic] = ACTIONS(1490), + [anon_sym__Noreturn] = ACTIONS(1490), + [anon_sym_noreturn] = ACTIONS(1490), + [anon_sym_alignas] = ACTIONS(1490), + [anon_sym__Alignas] = ACTIONS(1490), + [sym_primitive_type] = ACTIONS(1490), + [anon_sym_enum] = ACTIONS(1490), + [anon_sym_struct] = ACTIONS(1490), + [anon_sym_union] = ACTIONS(1490), + [anon_sym_if] = ACTIONS(1490), + [anon_sym_switch] = ACTIONS(1490), + [anon_sym_case] = ACTIONS(1490), + [anon_sym_default] = ACTIONS(1490), + [anon_sym_while] = ACTIONS(1490), + [anon_sym_do] = ACTIONS(1490), + [anon_sym_for] = ACTIONS(1490), + [anon_sym_return] = ACTIONS(1490), + [anon_sym_break] = ACTIONS(1490), + [anon_sym_continue] = ACTIONS(1490), + [anon_sym_goto] = ACTIONS(1490), + [anon_sym_DASH_DASH] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1492), + [anon_sym_sizeof] = ACTIONS(1490), + [anon_sym___alignof__] = ACTIONS(1490), + [anon_sym___alignof] = ACTIONS(1490), + [anon_sym__alignof] = ACTIONS(1490), + [anon_sym_alignof] = ACTIONS(1490), + [anon_sym__Alignof] = ACTIONS(1490), + [anon_sym_offsetof] = ACTIONS(1490), + [anon_sym__Generic] = ACTIONS(1490), + [anon_sym_asm] = ACTIONS(1490), + [anon_sym___asm__] = ACTIONS(1490), + [sym_number_literal] = ACTIONS(1492), + [anon_sym_L_SQUOTE] = ACTIONS(1492), + [anon_sym_u_SQUOTE] = ACTIONS(1492), + [anon_sym_U_SQUOTE] = ACTIONS(1492), + [anon_sym_u8_SQUOTE] = ACTIONS(1492), + [anon_sym_SQUOTE] = ACTIONS(1492), + [anon_sym_L_DQUOTE] = ACTIONS(1492), + [anon_sym_u_DQUOTE] = ACTIONS(1492), + [anon_sym_U_DQUOTE] = ACTIONS(1492), + [anon_sym_u8_DQUOTE] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [sym_true] = ACTIONS(1490), + [sym_false] = ACTIONS(1490), + [anon_sym_NULL] = ACTIONS(1490), + [anon_sym_nullptr] = ACTIONS(1490), + [sym_comment] = ACTIONS(5), + }, + [403] = { + [ts_builtin_sym_end] = ACTIONS(1496), + [sym_identifier] = ACTIONS(1494), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1494), + [aux_sym_preproc_def_token1] = ACTIONS(1494), + [aux_sym_preproc_if_token1] = ACTIONS(1494), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1494), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1494), + [sym_preproc_directive] = ACTIONS(1494), + [anon_sym_LPAREN2] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_TILDE] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_STAR] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [anon_sym___extension__] = ACTIONS(1494), + [anon_sym_typedef] = ACTIONS(1494), + [anon_sym_extern] = ACTIONS(1494), + [anon_sym___attribute__] = ACTIONS(1494), + [anon_sym___scanf] = ACTIONS(1494), + [anon_sym___printf] = ACTIONS(1494), + [anon_sym___read_mostly] = ACTIONS(1494), + [anon_sym___must_hold] = ACTIONS(1494), + [anon_sym___ro_after_init] = ACTIONS(1494), + [anon_sym___noreturn] = ACTIONS(1494), + [anon_sym___cold] = ACTIONS(1494), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1496), + [anon_sym___declspec] = ACTIONS(1494), + [anon_sym___init] = ACTIONS(1494), + [anon_sym___exit] = ACTIONS(1494), + [anon_sym___cdecl] = ACTIONS(1494), + [anon_sym___clrcall] = ACTIONS(1494), + [anon_sym___stdcall] = ACTIONS(1494), + [anon_sym___fastcall] = ACTIONS(1494), + [anon_sym___thiscall] = ACTIONS(1494), + [anon_sym___vectorcall] = ACTIONS(1494), + [anon_sym_LBRACE] = ACTIONS(1496), + [anon_sym_signed] = ACTIONS(1494), + [anon_sym_unsigned] = ACTIONS(1494), + [anon_sym_long] = ACTIONS(1494), + [anon_sym_short] = ACTIONS(1494), + [anon_sym_static] = ACTIONS(1494), + [anon_sym_auto] = ACTIONS(1494), + [anon_sym_register] = ACTIONS(1494), + [anon_sym_inline] = ACTIONS(1494), + [anon_sym___inline] = ACTIONS(1494), + [anon_sym___inline__] = ACTIONS(1494), + [anon_sym___forceinline] = ACTIONS(1494), + [anon_sym_thread_local] = ACTIONS(1494), + [anon_sym___thread] = ACTIONS(1494), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_constexpr] = ACTIONS(1494), + [anon_sym_volatile] = ACTIONS(1494), + [anon_sym_restrict] = ACTIONS(1494), + [anon_sym___restrict__] = ACTIONS(1494), + [anon_sym__Atomic] = ACTIONS(1494), + [anon_sym__Noreturn] = ACTIONS(1494), + [anon_sym_noreturn] = ACTIONS(1494), + [anon_sym_alignas] = ACTIONS(1494), + [anon_sym__Alignas] = ACTIONS(1494), + [sym_primitive_type] = ACTIONS(1494), + [anon_sym_enum] = ACTIONS(1494), + [anon_sym_struct] = ACTIONS(1494), + [anon_sym_union] = ACTIONS(1494), + [anon_sym_if] = ACTIONS(1494), + [anon_sym_switch] = ACTIONS(1494), + [anon_sym_case] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(1494), + [anon_sym_while] = ACTIONS(1494), + [anon_sym_do] = ACTIONS(1494), + [anon_sym_for] = ACTIONS(1494), + [anon_sym_return] = ACTIONS(1494), + [anon_sym_break] = ACTIONS(1494), + [anon_sym_continue] = ACTIONS(1494), + [anon_sym_goto] = ACTIONS(1494), + [anon_sym_DASH_DASH] = ACTIONS(1496), + [anon_sym_PLUS_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1494), + [anon_sym___alignof__] = ACTIONS(1494), + [anon_sym___alignof] = ACTIONS(1494), + [anon_sym__alignof] = ACTIONS(1494), + [anon_sym_alignof] = ACTIONS(1494), + [anon_sym__Alignof] = ACTIONS(1494), + [anon_sym_offsetof] = ACTIONS(1494), + [anon_sym__Generic] = ACTIONS(1494), + [anon_sym_asm] = ACTIONS(1494), + [anon_sym___asm__] = ACTIONS(1494), + [sym_number_literal] = ACTIONS(1496), + [anon_sym_L_SQUOTE] = ACTIONS(1496), + [anon_sym_u_SQUOTE] = ACTIONS(1496), + [anon_sym_U_SQUOTE] = ACTIONS(1496), + [anon_sym_u8_SQUOTE] = ACTIONS(1496), + [anon_sym_SQUOTE] = ACTIONS(1496), + [anon_sym_L_DQUOTE] = ACTIONS(1496), + [anon_sym_u_DQUOTE] = ACTIONS(1496), + [anon_sym_U_DQUOTE] = ACTIONS(1496), + [anon_sym_u8_DQUOTE] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [sym_true] = ACTIONS(1494), + [sym_false] = ACTIONS(1494), + [anon_sym_NULL] = ACTIONS(1494), + [anon_sym_nullptr] = ACTIONS(1494), + [sym_comment] = ACTIONS(5), + }, + [404] = { + [ts_builtin_sym_end] = ACTIONS(1530), + [sym_identifier] = ACTIONS(1533), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1533), + [aux_sym_preproc_def_token1] = ACTIONS(1533), + [aux_sym_preproc_if_token1] = ACTIONS(1533), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), + [sym_preproc_directive] = ACTIONS(1533), + [anon_sym_LPAREN2] = ACTIONS(1530), + [anon_sym_BANG] = ACTIONS(1530), + [anon_sym_TILDE] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1530), + [anon_sym___extension__] = ACTIONS(1533), + [anon_sym_typedef] = ACTIONS(1533), + [anon_sym_extern] = ACTIONS(1533), + [anon_sym___attribute__] = ACTIONS(1533), + [anon_sym___scanf] = ACTIONS(1533), + [anon_sym___printf] = ACTIONS(1533), + [anon_sym___read_mostly] = ACTIONS(1533), + [anon_sym___must_hold] = ACTIONS(1533), + [anon_sym___ro_after_init] = ACTIONS(1533), + [anon_sym___noreturn] = ACTIONS(1533), + [anon_sym___cold] = ACTIONS(1533), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym___declspec] = ACTIONS(1533), + [anon_sym___init] = ACTIONS(1533), + [anon_sym___exit] = ACTIONS(1533), + [anon_sym___cdecl] = ACTIONS(1533), + [anon_sym___clrcall] = ACTIONS(1533), + [anon_sym___stdcall] = ACTIONS(1533), + [anon_sym___fastcall] = ACTIONS(1533), + [anon_sym___thiscall] = ACTIONS(1533), + [anon_sym___vectorcall] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [anon_sym_static] = ACTIONS(1533), + [anon_sym_auto] = ACTIONS(1533), + [anon_sym_register] = ACTIONS(1533), + [anon_sym_inline] = ACTIONS(1533), + [anon_sym___inline] = ACTIONS(1533), + [anon_sym___inline__] = ACTIONS(1533), + [anon_sym___forceinline] = ACTIONS(1533), + [anon_sym_thread_local] = ACTIONS(1533), + [anon_sym___thread] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_constexpr] = ACTIONS(1533), + [anon_sym_volatile] = ACTIONS(1533), + [anon_sym_restrict] = ACTIONS(1533), + [anon_sym___restrict__] = ACTIONS(1533), + [anon_sym__Atomic] = ACTIONS(1533), + [anon_sym__Noreturn] = ACTIONS(1533), + [anon_sym_noreturn] = ACTIONS(1533), + [anon_sym_alignas] = ACTIONS(1533), + [anon_sym__Alignas] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1533), + [anon_sym_enum] = ACTIONS(1533), + [anon_sym_struct] = ACTIONS(1533), + [anon_sym_union] = ACTIONS(1533), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_switch] = ACTIONS(1533), + [anon_sym_case] = ACTIONS(1533), + [anon_sym_default] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [anon_sym_do] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_goto] = ACTIONS(1533), + [anon_sym_DASH_DASH] = ACTIONS(1530), + [anon_sym_PLUS_PLUS] = ACTIONS(1530), + [anon_sym_sizeof] = ACTIONS(1533), + [anon_sym___alignof__] = ACTIONS(1533), + [anon_sym___alignof] = ACTIONS(1533), + [anon_sym__alignof] = ACTIONS(1533), + [anon_sym_alignof] = ACTIONS(1533), + [anon_sym__Alignof] = ACTIONS(1533), + [anon_sym_offsetof] = ACTIONS(1533), + [anon_sym__Generic] = ACTIONS(1533), + [anon_sym_asm] = ACTIONS(1533), + [anon_sym___asm__] = ACTIONS(1533), + [sym_number_literal] = ACTIONS(1530), + [anon_sym_L_SQUOTE] = ACTIONS(1530), + [anon_sym_u_SQUOTE] = ACTIONS(1530), + [anon_sym_U_SQUOTE] = ACTIONS(1530), + [anon_sym_u8_SQUOTE] = ACTIONS(1530), + [anon_sym_SQUOTE] = ACTIONS(1530), + [anon_sym_L_DQUOTE] = ACTIONS(1530), + [anon_sym_u_DQUOTE] = ACTIONS(1530), + [anon_sym_U_DQUOTE] = ACTIONS(1530), + [anon_sym_u8_DQUOTE] = ACTIONS(1530), + [anon_sym_DQUOTE] = ACTIONS(1530), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [anon_sym_NULL] = ACTIONS(1533), + [anon_sym_nullptr] = ACTIONS(1533), + [sym_comment] = ACTIONS(5), + }, + [405] = { + [ts_builtin_sym_end] = ACTIONS(1472), + [sym_identifier] = ACTIONS(1470), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1470), + [aux_sym_preproc_def_token1] = ACTIONS(1470), + [aux_sym_preproc_if_token1] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1470), + [sym_preproc_directive] = ACTIONS(1470), + [anon_sym_LPAREN2] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym___extension__] = ACTIONS(1470), + [anon_sym_typedef] = ACTIONS(1470), + [anon_sym_extern] = ACTIONS(1470), + [anon_sym___attribute__] = ACTIONS(1470), + [anon_sym___scanf] = ACTIONS(1470), + [anon_sym___printf] = ACTIONS(1470), + [anon_sym___read_mostly] = ACTIONS(1470), + [anon_sym___must_hold] = ACTIONS(1470), + [anon_sym___ro_after_init] = ACTIONS(1470), + [anon_sym___noreturn] = ACTIONS(1470), + [anon_sym___cold] = ACTIONS(1470), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1472), + [anon_sym___declspec] = ACTIONS(1470), + [anon_sym___init] = ACTIONS(1470), + [anon_sym___exit] = ACTIONS(1470), + [anon_sym___cdecl] = ACTIONS(1470), + [anon_sym___clrcall] = ACTIONS(1470), + [anon_sym___stdcall] = ACTIONS(1470), + [anon_sym___fastcall] = ACTIONS(1470), + [anon_sym___thiscall] = ACTIONS(1470), + [anon_sym___vectorcall] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_signed] = ACTIONS(1470), + [anon_sym_unsigned] = ACTIONS(1470), + [anon_sym_long] = ACTIONS(1470), + [anon_sym_short] = ACTIONS(1470), + [anon_sym_static] = ACTIONS(1470), + [anon_sym_auto] = ACTIONS(1470), + [anon_sym_register] = ACTIONS(1470), + [anon_sym_inline] = ACTIONS(1470), + [anon_sym___inline] = ACTIONS(1470), + [anon_sym___inline__] = ACTIONS(1470), + [anon_sym___forceinline] = ACTIONS(1470), + [anon_sym_thread_local] = ACTIONS(1470), + [anon_sym___thread] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_constexpr] = ACTIONS(1470), + [anon_sym_volatile] = ACTIONS(1470), + [anon_sym_restrict] = ACTIONS(1470), + [anon_sym___restrict__] = ACTIONS(1470), + [anon_sym__Atomic] = ACTIONS(1470), + [anon_sym__Noreturn] = ACTIONS(1470), + [anon_sym_noreturn] = ACTIONS(1470), + [anon_sym_alignas] = ACTIONS(1470), + [anon_sym__Alignas] = ACTIONS(1470), + [sym_primitive_type] = ACTIONS(1470), + [anon_sym_enum] = ACTIONS(1470), + [anon_sym_struct] = ACTIONS(1470), + [anon_sym_union] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_case] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_do] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_continue] = ACTIONS(1470), + [anon_sym_goto] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_sizeof] = ACTIONS(1470), + [anon_sym___alignof__] = ACTIONS(1470), + [anon_sym___alignof] = ACTIONS(1470), + [anon_sym__alignof] = ACTIONS(1470), + [anon_sym_alignof] = ACTIONS(1470), + [anon_sym__Alignof] = ACTIONS(1470), + [anon_sym_offsetof] = ACTIONS(1470), + [anon_sym__Generic] = ACTIONS(1470), + [anon_sym_asm] = ACTIONS(1470), + [anon_sym___asm__] = ACTIONS(1470), + [sym_number_literal] = ACTIONS(1472), + [anon_sym_L_SQUOTE] = ACTIONS(1472), + [anon_sym_u_SQUOTE] = ACTIONS(1472), + [anon_sym_U_SQUOTE] = ACTIONS(1472), + [anon_sym_u8_SQUOTE] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_L_DQUOTE] = ACTIONS(1472), + [anon_sym_u_DQUOTE] = ACTIONS(1472), + [anon_sym_U_DQUOTE] = ACTIONS(1472), + [anon_sym_u8_DQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [anon_sym_NULL] = ACTIONS(1470), + [anon_sym_nullptr] = ACTIONS(1470), + [sym_comment] = ACTIONS(5), + }, + [406] = { + [ts_builtin_sym_end] = ACTIONS(1464), + [sym_identifier] = ACTIONS(1462), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1462), + [aux_sym_preproc_def_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1462), + [sym_preproc_directive] = ACTIONS(1462), + [anon_sym_LPAREN2] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym___extension__] = ACTIONS(1462), + [anon_sym_typedef] = ACTIONS(1462), + [anon_sym_extern] = ACTIONS(1462), + [anon_sym___attribute__] = ACTIONS(1462), + [anon_sym___scanf] = ACTIONS(1462), + [anon_sym___printf] = ACTIONS(1462), + [anon_sym___read_mostly] = ACTIONS(1462), + [anon_sym___must_hold] = ACTIONS(1462), + [anon_sym___ro_after_init] = ACTIONS(1462), + [anon_sym___noreturn] = ACTIONS(1462), + [anon_sym___cold] = ACTIONS(1462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1464), + [anon_sym___declspec] = ACTIONS(1462), + [anon_sym___init] = ACTIONS(1462), + [anon_sym___exit] = ACTIONS(1462), + [anon_sym___cdecl] = ACTIONS(1462), + [anon_sym___clrcall] = ACTIONS(1462), + [anon_sym___stdcall] = ACTIONS(1462), + [anon_sym___fastcall] = ACTIONS(1462), + [anon_sym___thiscall] = ACTIONS(1462), + [anon_sym___vectorcall] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_signed] = ACTIONS(1462), + [anon_sym_unsigned] = ACTIONS(1462), + [anon_sym_long] = ACTIONS(1462), + [anon_sym_short] = ACTIONS(1462), + [anon_sym_static] = ACTIONS(1462), + [anon_sym_auto] = ACTIONS(1462), + [anon_sym_register] = ACTIONS(1462), + [anon_sym_inline] = ACTIONS(1462), + [anon_sym___inline] = ACTIONS(1462), + [anon_sym___inline__] = ACTIONS(1462), + [anon_sym___forceinline] = ACTIONS(1462), + [anon_sym_thread_local] = ACTIONS(1462), + [anon_sym___thread] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1462), + [anon_sym_constexpr] = ACTIONS(1462), + [anon_sym_volatile] = ACTIONS(1462), + [anon_sym_restrict] = ACTIONS(1462), + [anon_sym___restrict__] = ACTIONS(1462), + [anon_sym__Atomic] = ACTIONS(1462), + [anon_sym__Noreturn] = ACTIONS(1462), + [anon_sym_noreturn] = ACTIONS(1462), + [anon_sym_alignas] = ACTIONS(1462), + [anon_sym__Alignas] = ACTIONS(1462), + [sym_primitive_type] = ACTIONS(1462), + [anon_sym_enum] = ACTIONS(1462), + [anon_sym_struct] = ACTIONS(1462), + [anon_sym_union] = ACTIONS(1462), + [anon_sym_if] = ACTIONS(1462), + [anon_sym_switch] = ACTIONS(1462), + [anon_sym_case] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1462), + [anon_sym_do] = ACTIONS(1462), + [anon_sym_for] = ACTIONS(1462), + [anon_sym_return] = ACTIONS(1462), + [anon_sym_break] = ACTIONS(1462), + [anon_sym_continue] = ACTIONS(1462), + [anon_sym_goto] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1464), + [anon_sym_PLUS_PLUS] = ACTIONS(1464), + [anon_sym_sizeof] = ACTIONS(1462), + [anon_sym___alignof__] = ACTIONS(1462), + [anon_sym___alignof] = ACTIONS(1462), + [anon_sym__alignof] = ACTIONS(1462), + [anon_sym_alignof] = ACTIONS(1462), + [anon_sym__Alignof] = ACTIONS(1462), + [anon_sym_offsetof] = ACTIONS(1462), + [anon_sym__Generic] = ACTIONS(1462), + [anon_sym_asm] = ACTIONS(1462), + [anon_sym___asm__] = ACTIONS(1462), + [sym_number_literal] = ACTIONS(1464), + [anon_sym_L_SQUOTE] = ACTIONS(1464), + [anon_sym_u_SQUOTE] = ACTIONS(1464), + [anon_sym_U_SQUOTE] = ACTIONS(1464), + [anon_sym_u8_SQUOTE] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_L_DQUOTE] = ACTIONS(1464), + [anon_sym_u_DQUOTE] = ACTIONS(1464), + [anon_sym_U_DQUOTE] = ACTIONS(1464), + [anon_sym_u8_DQUOTE] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(1464), + [sym_true] = ACTIONS(1462), + [sym_false] = ACTIONS(1462), + [anon_sym_NULL] = ACTIONS(1462), + [anon_sym_nullptr] = ACTIONS(1462), + [sym_comment] = ACTIONS(5), + }, + [407] = { + [ts_builtin_sym_end] = ACTIONS(1452), + [sym_identifier] = ACTIONS(1450), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1450), + [aux_sym_preproc_def_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), + [sym_preproc_directive] = ACTIONS(1450), + [anon_sym_LPAREN2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym___extension__] = ACTIONS(1450), + [anon_sym_typedef] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym___attribute__] = ACTIONS(1450), + [anon_sym___scanf] = ACTIONS(1450), + [anon_sym___printf] = ACTIONS(1450), + [anon_sym___read_mostly] = ACTIONS(1450), + [anon_sym___must_hold] = ACTIONS(1450), + [anon_sym___ro_after_init] = ACTIONS(1450), + [anon_sym___noreturn] = ACTIONS(1450), + [anon_sym___cold] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), + [anon_sym___declspec] = ACTIONS(1450), + [anon_sym___init] = ACTIONS(1450), + [anon_sym___exit] = ACTIONS(1450), + [anon_sym___cdecl] = ACTIONS(1450), + [anon_sym___clrcall] = ACTIONS(1450), + [anon_sym___stdcall] = ACTIONS(1450), + [anon_sym___fastcall] = ACTIONS(1450), + [anon_sym___thiscall] = ACTIONS(1450), + [anon_sym___vectorcall] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_signed] = ACTIONS(1450), + [anon_sym_unsigned] = ACTIONS(1450), + [anon_sym_long] = ACTIONS(1450), + [anon_sym_short] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_auto] = ACTIONS(1450), + [anon_sym_register] = ACTIONS(1450), + [anon_sym_inline] = ACTIONS(1450), + [anon_sym___inline] = ACTIONS(1450), + [anon_sym___inline__] = ACTIONS(1450), + [anon_sym___forceinline] = ACTIONS(1450), + [anon_sym_thread_local] = ACTIONS(1450), + [anon_sym___thread] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_constexpr] = ACTIONS(1450), + [anon_sym_volatile] = ACTIONS(1450), + [anon_sym_restrict] = ACTIONS(1450), + [anon_sym___restrict__] = ACTIONS(1450), + [anon_sym__Atomic] = ACTIONS(1450), + [anon_sym__Noreturn] = ACTIONS(1450), + [anon_sym_noreturn] = ACTIONS(1450), + [anon_sym_alignas] = ACTIONS(1450), + [anon_sym__Alignas] = ACTIONS(1450), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_switch] = ACTIONS(1450), + [anon_sym_case] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_do] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_goto] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [anon_sym_sizeof] = ACTIONS(1450), + [anon_sym___alignof__] = ACTIONS(1450), + [anon_sym___alignof] = ACTIONS(1450), + [anon_sym__alignof] = ACTIONS(1450), + [anon_sym_alignof] = ACTIONS(1450), + [anon_sym__Alignof] = ACTIONS(1450), + [anon_sym_offsetof] = ACTIONS(1450), + [anon_sym__Generic] = ACTIONS(1450), + [anon_sym_asm] = ACTIONS(1450), + [anon_sym___asm__] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(1452), + [anon_sym_L_SQUOTE] = ACTIONS(1452), + [anon_sym_u_SQUOTE] = ACTIONS(1452), + [anon_sym_U_SQUOTE] = ACTIONS(1452), + [anon_sym_u8_SQUOTE] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_L_DQUOTE] = ACTIONS(1452), + [anon_sym_u_DQUOTE] = ACTIONS(1452), + [anon_sym_U_DQUOTE] = ACTIONS(1452), + [anon_sym_u8_DQUOTE] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [sym_true] = ACTIONS(1450), + [sym_false] = ACTIONS(1450), + [anon_sym_NULL] = ACTIONS(1450), + [anon_sym_nullptr] = ACTIONS(1450), + [sym_comment] = ACTIONS(5), + }, + [408] = { + [ts_builtin_sym_end] = ACTIONS(1464), + [sym_identifier] = ACTIONS(1462), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1462), + [aux_sym_preproc_def_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1462), + [sym_preproc_directive] = ACTIONS(1462), + [anon_sym_LPAREN2] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym___extension__] = ACTIONS(1462), + [anon_sym_typedef] = ACTIONS(1462), + [anon_sym_extern] = ACTIONS(1462), + [anon_sym___attribute__] = ACTIONS(1462), + [anon_sym___scanf] = ACTIONS(1462), + [anon_sym___printf] = ACTIONS(1462), + [anon_sym___read_mostly] = ACTIONS(1462), + [anon_sym___must_hold] = ACTIONS(1462), + [anon_sym___ro_after_init] = ACTIONS(1462), + [anon_sym___noreturn] = ACTIONS(1462), + [anon_sym___cold] = ACTIONS(1462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1464), + [anon_sym___declspec] = ACTIONS(1462), + [anon_sym___init] = ACTIONS(1462), + [anon_sym___exit] = ACTIONS(1462), + [anon_sym___cdecl] = ACTIONS(1462), + [anon_sym___clrcall] = ACTIONS(1462), + [anon_sym___stdcall] = ACTIONS(1462), + [anon_sym___fastcall] = ACTIONS(1462), + [anon_sym___thiscall] = ACTIONS(1462), + [anon_sym___vectorcall] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_signed] = ACTIONS(1462), + [anon_sym_unsigned] = ACTIONS(1462), + [anon_sym_long] = ACTIONS(1462), + [anon_sym_short] = ACTIONS(1462), + [anon_sym_static] = ACTIONS(1462), + [anon_sym_auto] = ACTIONS(1462), + [anon_sym_register] = ACTIONS(1462), + [anon_sym_inline] = ACTIONS(1462), + [anon_sym___inline] = ACTIONS(1462), + [anon_sym___inline__] = ACTIONS(1462), + [anon_sym___forceinline] = ACTIONS(1462), + [anon_sym_thread_local] = ACTIONS(1462), + [anon_sym___thread] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1462), + [anon_sym_constexpr] = ACTIONS(1462), + [anon_sym_volatile] = ACTIONS(1462), + [anon_sym_restrict] = ACTIONS(1462), + [anon_sym___restrict__] = ACTIONS(1462), + [anon_sym__Atomic] = ACTIONS(1462), + [anon_sym__Noreturn] = ACTIONS(1462), + [anon_sym_noreturn] = ACTIONS(1462), + [anon_sym_alignas] = ACTIONS(1462), + [anon_sym__Alignas] = ACTIONS(1462), + [sym_primitive_type] = ACTIONS(1462), + [anon_sym_enum] = ACTIONS(1462), + [anon_sym_struct] = ACTIONS(1462), + [anon_sym_union] = ACTIONS(1462), + [anon_sym_if] = ACTIONS(1462), + [anon_sym_switch] = ACTIONS(1462), + [anon_sym_case] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1462), + [anon_sym_do] = ACTIONS(1462), + [anon_sym_for] = ACTIONS(1462), + [anon_sym_return] = ACTIONS(1462), + [anon_sym_break] = ACTIONS(1462), + [anon_sym_continue] = ACTIONS(1462), + [anon_sym_goto] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1464), + [anon_sym_PLUS_PLUS] = ACTIONS(1464), + [anon_sym_sizeof] = ACTIONS(1462), + [anon_sym___alignof__] = ACTIONS(1462), + [anon_sym___alignof] = ACTIONS(1462), + [anon_sym__alignof] = ACTIONS(1462), + [anon_sym_alignof] = ACTIONS(1462), + [anon_sym__Alignof] = ACTIONS(1462), + [anon_sym_offsetof] = ACTIONS(1462), + [anon_sym__Generic] = ACTIONS(1462), + [anon_sym_asm] = ACTIONS(1462), + [anon_sym___asm__] = ACTIONS(1462), + [sym_number_literal] = ACTIONS(1464), + [anon_sym_L_SQUOTE] = ACTIONS(1464), + [anon_sym_u_SQUOTE] = ACTIONS(1464), + [anon_sym_U_SQUOTE] = ACTIONS(1464), + [anon_sym_u8_SQUOTE] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_L_DQUOTE] = ACTIONS(1464), + [anon_sym_u_DQUOTE] = ACTIONS(1464), + [anon_sym_U_DQUOTE] = ACTIONS(1464), + [anon_sym_u8_DQUOTE] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(1464), + [sym_true] = ACTIONS(1462), + [sym_false] = ACTIONS(1462), + [anon_sym_NULL] = ACTIONS(1462), + [anon_sym_nullptr] = ACTIONS(1462), + [sym_comment] = ACTIONS(5), + }, + [409] = { + [ts_builtin_sym_end] = ACTIONS(1432), + [sym_identifier] = ACTIONS(1430), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1430), + [aux_sym_preproc_def_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), + [sym_preproc_directive] = ACTIONS(1430), + [anon_sym_LPAREN2] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym___extension__] = ACTIONS(1430), + [anon_sym_typedef] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym___attribute__] = ACTIONS(1430), + [anon_sym___scanf] = ACTIONS(1430), + [anon_sym___printf] = ACTIONS(1430), + [anon_sym___read_mostly] = ACTIONS(1430), + [anon_sym___must_hold] = ACTIONS(1430), + [anon_sym___ro_after_init] = ACTIONS(1430), + [anon_sym___noreturn] = ACTIONS(1430), + [anon_sym___cold] = ACTIONS(1430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), + [anon_sym___declspec] = ACTIONS(1430), + [anon_sym___init] = ACTIONS(1430), + [anon_sym___exit] = ACTIONS(1430), + [anon_sym___cdecl] = ACTIONS(1430), + [anon_sym___clrcall] = ACTIONS(1430), + [anon_sym___stdcall] = ACTIONS(1430), + [anon_sym___fastcall] = ACTIONS(1430), + [anon_sym___thiscall] = ACTIONS(1430), + [anon_sym___vectorcall] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_signed] = ACTIONS(1430), + [anon_sym_unsigned] = ACTIONS(1430), + [anon_sym_long] = ACTIONS(1430), + [anon_sym_short] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_auto] = ACTIONS(1430), + [anon_sym_register] = ACTIONS(1430), + [anon_sym_inline] = ACTIONS(1430), + [anon_sym___inline] = ACTIONS(1430), + [anon_sym___inline__] = ACTIONS(1430), + [anon_sym___forceinline] = ACTIONS(1430), + [anon_sym_thread_local] = ACTIONS(1430), + [anon_sym___thread] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_constexpr] = ACTIONS(1430), + [anon_sym_volatile] = ACTIONS(1430), + [anon_sym_restrict] = ACTIONS(1430), + [anon_sym___restrict__] = ACTIONS(1430), + [anon_sym__Atomic] = ACTIONS(1430), + [anon_sym__Noreturn] = ACTIONS(1430), + [anon_sym_noreturn] = ACTIONS(1430), + [anon_sym_alignas] = ACTIONS(1430), + [anon_sym__Alignas] = ACTIONS(1430), + [sym_primitive_type] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_switch] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_do] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_goto] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1430), + [anon_sym___alignof__] = ACTIONS(1430), + [anon_sym___alignof] = ACTIONS(1430), + [anon_sym__alignof] = ACTIONS(1430), + [anon_sym_alignof] = ACTIONS(1430), + [anon_sym__Alignof] = ACTIONS(1430), + [anon_sym_offsetof] = ACTIONS(1430), + [anon_sym__Generic] = ACTIONS(1430), + [anon_sym_asm] = ACTIONS(1430), + [anon_sym___asm__] = ACTIONS(1430), + [sym_number_literal] = ACTIONS(1432), + [anon_sym_L_SQUOTE] = ACTIONS(1432), + [anon_sym_u_SQUOTE] = ACTIONS(1432), + [anon_sym_U_SQUOTE] = ACTIONS(1432), + [anon_sym_u8_SQUOTE] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_L_DQUOTE] = ACTIONS(1432), + [anon_sym_u_DQUOTE] = ACTIONS(1432), + [anon_sym_U_DQUOTE] = ACTIONS(1432), + [anon_sym_u8_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1432), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [anon_sym_NULL] = ACTIONS(1430), + [anon_sym_nullptr] = ACTIONS(1430), + [sym_comment] = ACTIONS(5), + }, + [410] = { + [ts_builtin_sym_end] = ACTIONS(1468), + [sym_identifier] = ACTIONS(1466), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1466), + [aux_sym_preproc_def_token1] = ACTIONS(1466), + [aux_sym_preproc_if_token1] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1466), + [sym_preproc_directive] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym___extension__] = ACTIONS(1466), + [anon_sym_typedef] = ACTIONS(1466), + [anon_sym_extern] = ACTIONS(1466), + [anon_sym___attribute__] = ACTIONS(1466), + [anon_sym___scanf] = ACTIONS(1466), + [anon_sym___printf] = ACTIONS(1466), + [anon_sym___read_mostly] = ACTIONS(1466), + [anon_sym___must_hold] = ACTIONS(1466), + [anon_sym___ro_after_init] = ACTIONS(1466), + [anon_sym___noreturn] = ACTIONS(1466), + [anon_sym___cold] = ACTIONS(1466), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1468), + [anon_sym___declspec] = ACTIONS(1466), + [anon_sym___init] = ACTIONS(1466), + [anon_sym___exit] = ACTIONS(1466), + [anon_sym___cdecl] = ACTIONS(1466), + [anon_sym___clrcall] = ACTIONS(1466), + [anon_sym___stdcall] = ACTIONS(1466), + [anon_sym___fastcall] = ACTIONS(1466), + [anon_sym___thiscall] = ACTIONS(1466), + [anon_sym___vectorcall] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_signed] = ACTIONS(1466), + [anon_sym_unsigned] = ACTIONS(1466), + [anon_sym_long] = ACTIONS(1466), + [anon_sym_short] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_auto] = ACTIONS(1466), + [anon_sym_register] = ACTIONS(1466), + [anon_sym_inline] = ACTIONS(1466), + [anon_sym___inline] = ACTIONS(1466), + [anon_sym___inline__] = ACTIONS(1466), + [anon_sym___forceinline] = ACTIONS(1466), + [anon_sym_thread_local] = ACTIONS(1466), + [anon_sym___thread] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(1466), + [anon_sym_constexpr] = ACTIONS(1466), + [anon_sym_volatile] = ACTIONS(1466), + [anon_sym_restrict] = ACTIONS(1466), + [anon_sym___restrict__] = ACTIONS(1466), + [anon_sym__Atomic] = ACTIONS(1466), + [anon_sym__Noreturn] = ACTIONS(1466), + [anon_sym_noreturn] = ACTIONS(1466), + [anon_sym_alignas] = ACTIONS(1466), + [anon_sym__Alignas] = ACTIONS(1466), + [sym_primitive_type] = ACTIONS(1466), + [anon_sym_enum] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1466), + [anon_sym_union] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1466), + [anon_sym_switch] = ACTIONS(1466), + [anon_sym_case] = ACTIONS(1466), + [anon_sym_default] = ACTIONS(1466), + [anon_sym_while] = ACTIONS(1466), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1466), + [anon_sym_return] = ACTIONS(1466), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1466), + [anon_sym_goto] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_sizeof] = ACTIONS(1466), + [anon_sym___alignof__] = ACTIONS(1466), + [anon_sym___alignof] = ACTIONS(1466), + [anon_sym__alignof] = ACTIONS(1466), + [anon_sym_alignof] = ACTIONS(1466), + [anon_sym__Alignof] = ACTIONS(1466), + [anon_sym_offsetof] = ACTIONS(1466), + [anon_sym__Generic] = ACTIONS(1466), + [anon_sym_asm] = ACTIONS(1466), + [anon_sym___asm__] = ACTIONS(1466), + [sym_number_literal] = ACTIONS(1468), + [anon_sym_L_SQUOTE] = ACTIONS(1468), + [anon_sym_u_SQUOTE] = ACTIONS(1468), + [anon_sym_U_SQUOTE] = ACTIONS(1468), + [anon_sym_u8_SQUOTE] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_L_DQUOTE] = ACTIONS(1468), + [anon_sym_u_DQUOTE] = ACTIONS(1468), + [anon_sym_U_DQUOTE] = ACTIONS(1468), + [anon_sym_u8_DQUOTE] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1468), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [anon_sym_NULL] = ACTIONS(1466), + [anon_sym_nullptr] = ACTIONS(1466), + [sym_comment] = ACTIONS(5), + }, + [411] = { + [ts_builtin_sym_end] = ACTIONS(1412), + [sym_identifier] = ACTIONS(1410), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1410), + [aux_sym_preproc_def_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), + [sym_preproc_directive] = ACTIONS(1410), + [anon_sym_LPAREN2] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym___extension__] = ACTIONS(1410), + [anon_sym_typedef] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym___attribute__] = ACTIONS(1410), + [anon_sym___scanf] = ACTIONS(1410), + [anon_sym___printf] = ACTIONS(1410), + [anon_sym___read_mostly] = ACTIONS(1410), + [anon_sym___must_hold] = ACTIONS(1410), + [anon_sym___ro_after_init] = ACTIONS(1410), + [anon_sym___noreturn] = ACTIONS(1410), + [anon_sym___cold] = ACTIONS(1410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), + [anon_sym___declspec] = ACTIONS(1410), + [anon_sym___init] = ACTIONS(1410), + [anon_sym___exit] = ACTIONS(1410), + [anon_sym___cdecl] = ACTIONS(1410), + [anon_sym___clrcall] = ACTIONS(1410), + [anon_sym___stdcall] = ACTIONS(1410), + [anon_sym___fastcall] = ACTIONS(1410), + [anon_sym___thiscall] = ACTIONS(1410), + [anon_sym___vectorcall] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_auto] = ACTIONS(1410), + [anon_sym_register] = ACTIONS(1410), + [anon_sym_inline] = ACTIONS(1410), + [anon_sym___inline] = ACTIONS(1410), + [anon_sym___inline__] = ACTIONS(1410), + [anon_sym___forceinline] = ACTIONS(1410), + [anon_sym_thread_local] = ACTIONS(1410), + [anon_sym___thread] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_constexpr] = ACTIONS(1410), + [anon_sym_volatile] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), + [anon_sym___restrict__] = ACTIONS(1410), + [anon_sym__Atomic] = ACTIONS(1410), + [anon_sym__Noreturn] = ACTIONS(1410), + [anon_sym_noreturn] = ACTIONS(1410), + [anon_sym_alignas] = ACTIONS(1410), + [anon_sym__Alignas] = ACTIONS(1410), + [sym_primitive_type] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_switch] = ACTIONS(1410), + [anon_sym_case] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_do] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_goto] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_sizeof] = ACTIONS(1410), + [anon_sym___alignof__] = ACTIONS(1410), + [anon_sym___alignof] = ACTIONS(1410), + [anon_sym__alignof] = ACTIONS(1410), + [anon_sym_alignof] = ACTIONS(1410), + [anon_sym__Alignof] = ACTIONS(1410), + [anon_sym_offsetof] = ACTIONS(1410), + [anon_sym__Generic] = ACTIONS(1410), + [anon_sym_asm] = ACTIONS(1410), + [anon_sym___asm__] = ACTIONS(1410), + [sym_number_literal] = ACTIONS(1412), + [anon_sym_L_SQUOTE] = ACTIONS(1412), + [anon_sym_u_SQUOTE] = ACTIONS(1412), + [anon_sym_U_SQUOTE] = ACTIONS(1412), + [anon_sym_u8_SQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_L_DQUOTE] = ACTIONS(1412), + [anon_sym_u_DQUOTE] = ACTIONS(1412), + [anon_sym_U_DQUOTE] = ACTIONS(1412), + [anon_sym_u8_DQUOTE] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_true] = ACTIONS(1410), + [sym_false] = ACTIONS(1410), + [anon_sym_NULL] = ACTIONS(1410), + [anon_sym_nullptr] = ACTIONS(1410), + [sym_comment] = ACTIONS(5), + }, + [412] = { + [ts_builtin_sym_end] = ACTIONS(1480), + [sym_identifier] = ACTIONS(1478), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1478), + [aux_sym_preproc_def_token1] = ACTIONS(1478), + [aux_sym_preproc_if_token1] = ACTIONS(1478), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1478), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1478), + [sym_preproc_directive] = ACTIONS(1478), + [anon_sym_LPAREN2] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_TILDE] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym___extension__] = ACTIONS(1478), + [anon_sym_typedef] = ACTIONS(1478), + [anon_sym_extern] = ACTIONS(1478), + [anon_sym___attribute__] = ACTIONS(1478), + [anon_sym___scanf] = ACTIONS(1478), + [anon_sym___printf] = ACTIONS(1478), + [anon_sym___read_mostly] = ACTIONS(1478), + [anon_sym___must_hold] = ACTIONS(1478), + [anon_sym___ro_after_init] = ACTIONS(1478), + [anon_sym___noreturn] = ACTIONS(1478), + [anon_sym___cold] = ACTIONS(1478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1480), + [anon_sym___declspec] = ACTIONS(1478), + [anon_sym___init] = ACTIONS(1478), + [anon_sym___exit] = ACTIONS(1478), + [anon_sym___cdecl] = ACTIONS(1478), + [anon_sym___clrcall] = ACTIONS(1478), + [anon_sym___stdcall] = ACTIONS(1478), + [anon_sym___fastcall] = ACTIONS(1478), + [anon_sym___thiscall] = ACTIONS(1478), + [anon_sym___vectorcall] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_signed] = ACTIONS(1478), + [anon_sym_unsigned] = ACTIONS(1478), + [anon_sym_long] = ACTIONS(1478), + [anon_sym_short] = ACTIONS(1478), + [anon_sym_static] = ACTIONS(1478), + [anon_sym_auto] = ACTIONS(1478), + [anon_sym_register] = ACTIONS(1478), + [anon_sym_inline] = ACTIONS(1478), + [anon_sym___inline] = ACTIONS(1478), + [anon_sym___inline__] = ACTIONS(1478), + [anon_sym___forceinline] = ACTIONS(1478), + [anon_sym_thread_local] = ACTIONS(1478), + [anon_sym___thread] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1478), + [anon_sym_constexpr] = ACTIONS(1478), + [anon_sym_volatile] = ACTIONS(1478), + [anon_sym_restrict] = ACTIONS(1478), + [anon_sym___restrict__] = ACTIONS(1478), + [anon_sym__Atomic] = ACTIONS(1478), + [anon_sym__Noreturn] = ACTIONS(1478), + [anon_sym_noreturn] = ACTIONS(1478), + [anon_sym_alignas] = ACTIONS(1478), + [anon_sym__Alignas] = ACTIONS(1478), + [sym_primitive_type] = ACTIONS(1478), + [anon_sym_enum] = ACTIONS(1478), + [anon_sym_struct] = ACTIONS(1478), + [anon_sym_union] = ACTIONS(1478), + [anon_sym_if] = ACTIONS(1478), + [anon_sym_switch] = ACTIONS(1478), + [anon_sym_case] = ACTIONS(1478), + [anon_sym_default] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1478), + [anon_sym_do] = ACTIONS(1478), + [anon_sym_for] = ACTIONS(1478), + [anon_sym_return] = ACTIONS(1478), + [anon_sym_break] = ACTIONS(1478), + [anon_sym_continue] = ACTIONS(1478), + [anon_sym_goto] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1480), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_sizeof] = ACTIONS(1478), + [anon_sym___alignof__] = ACTIONS(1478), + [anon_sym___alignof] = ACTIONS(1478), + [anon_sym__alignof] = ACTIONS(1478), + [anon_sym_alignof] = ACTIONS(1478), + [anon_sym__Alignof] = ACTIONS(1478), + [anon_sym_offsetof] = ACTIONS(1478), + [anon_sym__Generic] = ACTIONS(1478), + [anon_sym_asm] = ACTIONS(1478), + [anon_sym___asm__] = ACTIONS(1478), + [sym_number_literal] = ACTIONS(1480), + [anon_sym_L_SQUOTE] = ACTIONS(1480), + [anon_sym_u_SQUOTE] = ACTIONS(1480), + [anon_sym_U_SQUOTE] = ACTIONS(1480), + [anon_sym_u8_SQUOTE] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_L_DQUOTE] = ACTIONS(1480), + [anon_sym_u_DQUOTE] = ACTIONS(1480), + [anon_sym_U_DQUOTE] = ACTIONS(1480), + [anon_sym_u8_DQUOTE] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [sym_true] = ACTIONS(1478), + [sym_false] = ACTIONS(1478), + [anon_sym_NULL] = ACTIONS(1478), + [anon_sym_nullptr] = ACTIONS(1478), + [sym_comment] = ACTIONS(5), + }, + [413] = { + [ts_builtin_sym_end] = ACTIONS(1456), + [sym_identifier] = ACTIONS(1454), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1454), + [aux_sym_preproc_def_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), + [sym_preproc_directive] = ACTIONS(1454), + [anon_sym_LPAREN2] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym___extension__] = ACTIONS(1454), + [anon_sym_typedef] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym___attribute__] = ACTIONS(1454), + [anon_sym___scanf] = ACTIONS(1454), + [anon_sym___printf] = ACTIONS(1454), + [anon_sym___read_mostly] = ACTIONS(1454), + [anon_sym___must_hold] = ACTIONS(1454), + [anon_sym___ro_after_init] = ACTIONS(1454), + [anon_sym___noreturn] = ACTIONS(1454), + [anon_sym___cold] = ACTIONS(1454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), + [anon_sym___declspec] = ACTIONS(1454), + [anon_sym___init] = ACTIONS(1454), + [anon_sym___exit] = ACTIONS(1454), + [anon_sym___cdecl] = ACTIONS(1454), + [anon_sym___clrcall] = ACTIONS(1454), + [anon_sym___stdcall] = ACTIONS(1454), + [anon_sym___fastcall] = ACTIONS(1454), + [anon_sym___thiscall] = ACTIONS(1454), + [anon_sym___vectorcall] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_signed] = ACTIONS(1454), + [anon_sym_unsigned] = ACTIONS(1454), + [anon_sym_long] = ACTIONS(1454), + [anon_sym_short] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_auto] = ACTIONS(1454), + [anon_sym_register] = ACTIONS(1454), + [anon_sym_inline] = ACTIONS(1454), + [anon_sym___inline] = ACTIONS(1454), + [anon_sym___inline__] = ACTIONS(1454), + [anon_sym___forceinline] = ACTIONS(1454), + [anon_sym_thread_local] = ACTIONS(1454), + [anon_sym___thread] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_constexpr] = ACTIONS(1454), + [anon_sym_volatile] = ACTIONS(1454), + [anon_sym_restrict] = ACTIONS(1454), + [anon_sym___restrict__] = ACTIONS(1454), + [anon_sym__Atomic] = ACTIONS(1454), + [anon_sym__Noreturn] = ACTIONS(1454), + [anon_sym_noreturn] = ACTIONS(1454), + [anon_sym_alignas] = ACTIONS(1454), + [anon_sym__Alignas] = ACTIONS(1454), + [sym_primitive_type] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_switch] = ACTIONS(1454), + [anon_sym_case] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_do] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_goto] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [anon_sym_sizeof] = ACTIONS(1454), + [anon_sym___alignof__] = ACTIONS(1454), + [anon_sym___alignof] = ACTIONS(1454), + [anon_sym__alignof] = ACTIONS(1454), + [anon_sym_alignof] = ACTIONS(1454), + [anon_sym__Alignof] = ACTIONS(1454), + [anon_sym_offsetof] = ACTIONS(1454), + [anon_sym__Generic] = ACTIONS(1454), + [anon_sym_asm] = ACTIONS(1454), + [anon_sym___asm__] = ACTIONS(1454), + [sym_number_literal] = ACTIONS(1456), + [anon_sym_L_SQUOTE] = ACTIONS(1456), + [anon_sym_u_SQUOTE] = ACTIONS(1456), + [anon_sym_U_SQUOTE] = ACTIONS(1456), + [anon_sym_u8_SQUOTE] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_L_DQUOTE] = ACTIONS(1456), + [anon_sym_u_DQUOTE] = ACTIONS(1456), + [anon_sym_U_DQUOTE] = ACTIONS(1456), + [anon_sym_u8_DQUOTE] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [anon_sym_NULL] = ACTIONS(1454), + [anon_sym_nullptr] = ACTIONS(1454), + [sym_comment] = ACTIONS(5), + }, + [414] = { + [sym_expression] = STATE(1022), + [sym__string] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_assignment_expression] = STATE(1069), + [sym_pointer_expression] = STATE(1056), + [sym_unary_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_update_expression] = STATE(1069), + [sym_cast_expression] = STATE(1069), + [sym_sizeof_expression] = STATE(1069), + [sym_alignof_expression] = STATE(1069), + [sym_offsetof_expression] = STATE(1069), + [sym_generic_expression] = STATE(1069), + [sym_subscript_expression] = STATE(1056), + [sym_call_expression] = STATE(1056), + [sym_gnu_asm_expression] = STATE(1069), + [sym_field_expression] = STATE(1056), + [sym_compound_literal_expression] = STATE(1069), + [sym_parenthesized_expression] = STATE(1056), + [sym_initializer_list] = STATE(1087), + [sym_char_literal] = STATE(1069), + [sym_concatenated_string] = STATE(1069), + [sym_string_literal] = STATE(913), + [sym_null] = STATE(1069), + [sym_identifier] = ACTIONS(1536), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_TILDE] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1544), + [anon_sym_SLASH] = ACTIONS(1544), + [anon_sym_PERCENT] = ACTIONS(1544), + [anon_sym_PIPE_PIPE] = ACTIONS(1538), + [anon_sym_AMP_AMP] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_CARET] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1544), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_LT_LT] = ACTIONS(1544), + [anon_sym_GT_GT] = ACTIONS(1544), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym___attribute__] = ACTIONS(1544), + [anon_sym___scanf] = ACTIONS(1544), + [anon_sym___printf] = ACTIONS(1544), + [anon_sym___read_mostly] = ACTIONS(1544), + [anon_sym___must_hold] = ACTIONS(1544), + [anon_sym___ro_after_init] = ACTIONS(1544), + [anon_sym___noreturn] = ACTIONS(1544), + [anon_sym___cold] = ACTIONS(1544), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_EQ] = ACTIONS(1544), + [anon_sym_QMARK] = ACTIONS(1538), + [anon_sym_STAR_EQ] = ACTIONS(1538), + [anon_sym_SLASH_EQ] = ACTIONS(1538), + [anon_sym_PERCENT_EQ] = ACTIONS(1538), + [anon_sym_PLUS_EQ] = ACTIONS(1538), + [anon_sym_DASH_EQ] = ACTIONS(1538), + [anon_sym_LT_LT_EQ] = ACTIONS(1538), + [anon_sym_GT_GT_EQ] = ACTIONS(1538), + [anon_sym_AMP_EQ] = ACTIONS(1538), + [anon_sym_CARET_EQ] = ACTIONS(1538), + [anon_sym_PIPE_EQ] = ACTIONS(1538), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_sizeof] = ACTIONS(1548), + [anon_sym___alignof__] = ACTIONS(1550), + [anon_sym___alignof] = ACTIONS(1550), + [anon_sym__alignof] = ACTIONS(1550), + [anon_sym_alignof] = ACTIONS(1550), + [anon_sym__Alignof] = ACTIONS(1550), + [anon_sym_offsetof] = ACTIONS(1552), + [anon_sym__Generic] = ACTIONS(1554), + [anon_sym_asm] = ACTIONS(1556), + [anon_sym___asm__] = ACTIONS(1556), + [anon_sym_DOT] = ACTIONS(1544), + [anon_sym_DASH_GT] = ACTIONS(1538), + [sym_number_literal] = ACTIONS(1558), + [anon_sym_L_SQUOTE] = ACTIONS(1560), + [anon_sym_u_SQUOTE] = ACTIONS(1560), + [anon_sym_U_SQUOTE] = ACTIONS(1560), + [anon_sym_u8_SQUOTE] = ACTIONS(1560), + [anon_sym_SQUOTE] = ACTIONS(1560), + [anon_sym_L_DQUOTE] = ACTIONS(1562), + [anon_sym_u_DQUOTE] = ACTIONS(1562), + [anon_sym_U_DQUOTE] = ACTIONS(1562), + [anon_sym_u8_DQUOTE] = ACTIONS(1562), + [anon_sym_DQUOTE] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [anon_sym_NULL] = ACTIONS(1566), + [anon_sym_nullptr] = ACTIONS(1566), + [sym_comment] = ACTIONS(5), + }, + [415] = { + [sym_expression] = STATE(1634), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_identifier] = ACTIONS(1568), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym___extension__] = ACTIONS(1571), + [anon_sym_extern] = ACTIONS(1571), + [anon_sym___attribute__] = ACTIONS(1571), + [anon_sym___scanf] = ACTIONS(1571), + [anon_sym___printf] = ACTIONS(1571), + [anon_sym___read_mostly] = ACTIONS(1571), + [anon_sym___must_hold] = ACTIONS(1571), + [anon_sym___ro_after_init] = ACTIONS(1571), + [anon_sym___noreturn] = ACTIONS(1571), + [anon_sym___cold] = ACTIONS(1571), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), + [anon_sym___declspec] = ACTIONS(1571), + [anon_sym_signed] = ACTIONS(1571), + [anon_sym_unsigned] = ACTIONS(1571), + [anon_sym_long] = ACTIONS(1571), + [anon_sym_short] = ACTIONS(1571), + [anon_sym_static] = ACTIONS(1571), + [anon_sym_auto] = ACTIONS(1571), + [anon_sym_register] = ACTIONS(1571), + [anon_sym_inline] = ACTIONS(1571), + [anon_sym___inline] = ACTIONS(1571), + [anon_sym___inline__] = ACTIONS(1571), + [anon_sym___forceinline] = ACTIONS(1571), + [anon_sym_thread_local] = ACTIONS(1571), + [anon_sym___thread] = ACTIONS(1571), + [anon_sym_const] = ACTIONS(1571), + [anon_sym_constexpr] = ACTIONS(1571), + [anon_sym_volatile] = ACTIONS(1571), + [anon_sym_restrict] = ACTIONS(1571), + [anon_sym___restrict__] = ACTIONS(1571), + [anon_sym__Atomic] = ACTIONS(1571), + [anon_sym__Noreturn] = ACTIONS(1571), + [anon_sym_noreturn] = ACTIONS(1571), + [anon_sym_alignas] = ACTIONS(1571), + [anon_sym__Alignas] = ACTIONS(1571), + [sym_primitive_type] = ACTIONS(1571), + [anon_sym_enum] = ACTIONS(1571), + [anon_sym_struct] = ACTIONS(1571), + [anon_sym_union] = ACTIONS(1571), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -69715,51 +67934,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [436] = { - [sym_attribute_declaration] = STATE(429), - [sym_compound_statement] = STATE(182), - [sym_attributed_statement] = STATE(182), - [sym_statement] = STATE(234), - [sym_labeled_statement] = STATE(182), - [sym_expression_statement] = STATE(182), - [sym_if_statement] = STATE(182), - [sym_switch_statement] = STATE(182), - [sym_case_statement] = STATE(182), - [sym_while_statement] = STATE(182), - [sym_do_statement] = STATE(182), - [sym_for_statement] = STATE(182), - [sym_return_statement] = STATE(182), - [sym_break_statement] = STATE(182), - [sym_continue_statement] = STATE(182), - [sym_goto_statement] = STATE(182), - [sym_seh_try_statement] = STATE(182), - [sym_seh_leave_statement] = STATE(182), - [sym_expression] = STATE(1588), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3193), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(429), - [sym_identifier] = ACTIONS(1602), + [416] = { + [sym_expression] = STATE(1548), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_identifier] = ACTIONS(1568), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -69768,22 +67967,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(455), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_switch] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [anon_sym_default] = ACTIONS(471), - [anon_sym_while] = ACTIONS(473), - [anon_sym_do] = ACTIONS(475), - [anon_sym_for] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_break] = ACTIONS(481), - [anon_sym_continue] = ACTIONS(483), - [anon_sym_goto] = ACTIONS(485), - [anon_sym___try] = ACTIONS(487), - [anon_sym___leave] = ACTIONS(489), + [anon_sym___extension__] = ACTIONS(1571), + [anon_sym_extern] = ACTIONS(1571), + [anon_sym___attribute__] = ACTIONS(1571), + [anon_sym___scanf] = ACTIONS(1571), + [anon_sym___printf] = ACTIONS(1571), + [anon_sym___read_mostly] = ACTIONS(1571), + [anon_sym___must_hold] = ACTIONS(1571), + [anon_sym___ro_after_init] = ACTIONS(1571), + [anon_sym___noreturn] = ACTIONS(1571), + [anon_sym___cold] = ACTIONS(1571), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), + [anon_sym___declspec] = ACTIONS(1571), + [anon_sym_signed] = ACTIONS(1571), + [anon_sym_unsigned] = ACTIONS(1571), + [anon_sym_long] = ACTIONS(1571), + [anon_sym_short] = ACTIONS(1571), + [anon_sym_static] = ACTIONS(1571), + [anon_sym_auto] = ACTIONS(1571), + [anon_sym_register] = ACTIONS(1571), + [anon_sym_inline] = ACTIONS(1571), + [anon_sym___inline] = ACTIONS(1571), + [anon_sym___inline__] = ACTIONS(1571), + [anon_sym___forceinline] = ACTIONS(1571), + [anon_sym_thread_local] = ACTIONS(1571), + [anon_sym___thread] = ACTIONS(1571), + [anon_sym_const] = ACTIONS(1571), + [anon_sym_constexpr] = ACTIONS(1571), + [anon_sym_volatile] = ACTIONS(1571), + [anon_sym_restrict] = ACTIONS(1571), + [anon_sym___restrict__] = ACTIONS(1571), + [anon_sym__Atomic] = ACTIONS(1571), + [anon_sym__Noreturn] = ACTIONS(1571), + [anon_sym_noreturn] = ACTIONS(1571), + [anon_sym_alignas] = ACTIONS(1571), + [anon_sym__Alignas] = ACTIONS(1571), + [sym_primitive_type] = ACTIONS(1571), + [anon_sym_enum] = ACTIONS(1571), + [anon_sym_struct] = ACTIONS(1571), + [anon_sym_union] = ACTIONS(1571), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -69813,51 +68035,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [437] = { - [sym_attribute_declaration] = STATE(444), - [sym_compound_statement] = STATE(472), - [sym_attributed_statement] = STATE(472), - [sym_statement] = STATE(491), - [sym_labeled_statement] = STATE(472), - [sym_expression_statement] = STATE(472), - [sym_if_statement] = STATE(472), - [sym_switch_statement] = STATE(472), - [sym_case_statement] = STATE(472), - [sym_while_statement] = STATE(472), - [sym_do_statement] = STATE(472), - [sym_for_statement] = STATE(472), - [sym_return_statement] = STATE(472), - [sym_break_statement] = STATE(472), - [sym_continue_statement] = STATE(472), - [sym_goto_statement] = STATE(472), - [sym_seh_try_statement] = STATE(472), - [sym_seh_leave_statement] = STATE(472), - [sym_expression] = STATE(1606), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(2956), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(444), - [sym_identifier] = ACTIONS(1598), + [417] = { + [sym_expression] = STATE(1562), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_identifier] = ACTIONS(1568), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -69866,22 +68068,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_if] = ACTIONS(1136), - [anon_sym_switch] = ACTIONS(1138), - [anon_sym_case] = ACTIONS(1576), - [anon_sym_default] = ACTIONS(1578), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(1142), - [anon_sym_for] = ACTIONS(1144), - [anon_sym_return] = ACTIONS(1146), - [anon_sym_break] = ACTIONS(1148), - [anon_sym_continue] = ACTIONS(1150), - [anon_sym_goto] = ACTIONS(1152), - [anon_sym___try] = ACTIONS(1154), - [anon_sym___leave] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1571), + [anon_sym_extern] = ACTIONS(1571), + [anon_sym___attribute__] = ACTIONS(1571), + [anon_sym___scanf] = ACTIONS(1571), + [anon_sym___printf] = ACTIONS(1571), + [anon_sym___read_mostly] = ACTIONS(1571), + [anon_sym___must_hold] = ACTIONS(1571), + [anon_sym___ro_after_init] = ACTIONS(1571), + [anon_sym___noreturn] = ACTIONS(1571), + [anon_sym___cold] = ACTIONS(1571), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), + [anon_sym___declspec] = ACTIONS(1571), + [anon_sym_signed] = ACTIONS(1571), + [anon_sym_unsigned] = ACTIONS(1571), + [anon_sym_long] = ACTIONS(1571), + [anon_sym_short] = ACTIONS(1571), + [anon_sym_static] = ACTIONS(1571), + [anon_sym_auto] = ACTIONS(1571), + [anon_sym_register] = ACTIONS(1571), + [anon_sym_inline] = ACTIONS(1571), + [anon_sym___inline] = ACTIONS(1571), + [anon_sym___inline__] = ACTIONS(1571), + [anon_sym___forceinline] = ACTIONS(1571), + [anon_sym_thread_local] = ACTIONS(1571), + [anon_sym___thread] = ACTIONS(1571), + [anon_sym_const] = ACTIONS(1571), + [anon_sym_constexpr] = ACTIONS(1571), + [anon_sym_volatile] = ACTIONS(1571), + [anon_sym_restrict] = ACTIONS(1571), + [anon_sym___restrict__] = ACTIONS(1571), + [anon_sym__Atomic] = ACTIONS(1571), + [anon_sym__Noreturn] = ACTIONS(1571), + [anon_sym_noreturn] = ACTIONS(1571), + [anon_sym_alignas] = ACTIONS(1571), + [anon_sym__Alignas] = ACTIONS(1571), + [sym_primitive_type] = ACTIONS(1571), + [anon_sym_enum] = ACTIONS(1571), + [anon_sym_struct] = ACTIONS(1571), + [anon_sym_union] = ACTIONS(1571), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -69911,51 +68136,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [438] = { - [sym_attribute_declaration] = STATE(433), - [sym_compound_statement] = STATE(179), - [sym_attributed_statement] = STATE(179), - [sym_statement] = STATE(284), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [sym_identifier] = ACTIONS(1600), + [418] = { + [sym_expression] = STATE(1575), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_identifier] = ACTIONS(1568), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -69964,22 +68169,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(385), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_switch] = ACTIONS(399), - [anon_sym_case] = ACTIONS(401), - [anon_sym_default] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_goto] = ACTIONS(417), - [anon_sym___try] = ACTIONS(419), - [anon_sym___leave] = ACTIONS(421), + [anon_sym___extension__] = ACTIONS(1571), + [anon_sym_extern] = ACTIONS(1571), + [anon_sym___attribute__] = ACTIONS(1571), + [anon_sym___scanf] = ACTIONS(1571), + [anon_sym___printf] = ACTIONS(1571), + [anon_sym___read_mostly] = ACTIONS(1571), + [anon_sym___must_hold] = ACTIONS(1571), + [anon_sym___ro_after_init] = ACTIONS(1571), + [anon_sym___noreturn] = ACTIONS(1571), + [anon_sym___cold] = ACTIONS(1571), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), + [anon_sym___declspec] = ACTIONS(1571), + [anon_sym_signed] = ACTIONS(1571), + [anon_sym_unsigned] = ACTIONS(1571), + [anon_sym_long] = ACTIONS(1571), + [anon_sym_short] = ACTIONS(1571), + [anon_sym_static] = ACTIONS(1571), + [anon_sym_auto] = ACTIONS(1571), + [anon_sym_register] = ACTIONS(1571), + [anon_sym_inline] = ACTIONS(1571), + [anon_sym___inline] = ACTIONS(1571), + [anon_sym___inline__] = ACTIONS(1571), + [anon_sym___forceinline] = ACTIONS(1571), + [anon_sym_thread_local] = ACTIONS(1571), + [anon_sym___thread] = ACTIONS(1571), + [anon_sym_const] = ACTIONS(1571), + [anon_sym_constexpr] = ACTIONS(1571), + [anon_sym_volatile] = ACTIONS(1571), + [anon_sym_restrict] = ACTIONS(1571), + [anon_sym___restrict__] = ACTIONS(1571), + [anon_sym__Atomic] = ACTIONS(1571), + [anon_sym__Noreturn] = ACTIONS(1571), + [anon_sym_noreturn] = ACTIONS(1571), + [anon_sym_alignas] = ACTIONS(1571), + [anon_sym__Alignas] = ACTIONS(1571), + [sym_primitive_type] = ACTIONS(1571), + [anon_sym_enum] = ACTIONS(1571), + [anon_sym_struct] = ACTIONS(1571), + [anon_sym_union] = ACTIONS(1571), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -70009,51 +68237,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [439] = { - [sym_attribute_declaration] = STATE(434), - [sym_compound_statement] = STATE(99), - [sym_attributed_statement] = STATE(99), - [sym_statement] = STATE(121), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym_seh_try_statement] = STATE(99), - [sym_seh_leave_statement] = STATE(99), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(434), - [sym_identifier] = ACTIONS(1604), + [419] = { + [sym_expression] = STATE(1160), + [sym__string] = STATE(1225), + [sym_conditional_expression] = STATE(1225), + [sym_assignment_expression] = STATE(1225), + [sym_pointer_expression] = STATE(1237), + [sym_unary_expression] = STATE(1225), + [sym_binary_expression] = STATE(1225), + [sym_update_expression] = STATE(1225), + [sym_cast_expression] = STATE(1225), + [sym_sizeof_expression] = STATE(1225), + [sym_alignof_expression] = STATE(1225), + [sym_offsetof_expression] = STATE(1225), + [sym_generic_expression] = STATE(1225), + [sym_subscript_expression] = STATE(1237), + [sym_call_expression] = STATE(1237), + [sym_gnu_asm_expression] = STATE(1225), + [sym_field_expression] = STATE(1237), + [sym_compound_literal_expression] = STATE(1225), + [sym_parenthesized_expression] = STATE(1237), + [sym_initializer_list] = STATE(1211), + [sym_char_literal] = STATE(1225), + [sym_concatenated_string] = STATE(1225), + [sym_string_literal] = STATE(993), + [sym_null] = STATE(1225), + [sym_identifier] = ACTIONS(1544), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1538), + [aux_sym_preproc_if_token2] = ACTIONS(1538), + [aux_sym_preproc_else_token1] = ACTIONS(1538), + [aux_sym_preproc_elif_token1] = ACTIONS(1544), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1538), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1575), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1544), + [anon_sym_SLASH] = ACTIONS(1544), + [anon_sym_PERCENT] = ACTIONS(1544), + [anon_sym_PIPE_PIPE] = ACTIONS(1538), + [anon_sym_AMP_AMP] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_CARET] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1544), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_LT_LT] = ACTIONS(1544), + [anon_sym_GT_GT] = ACTIONS(1544), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_EQ] = ACTIONS(1544), + [anon_sym_QMARK] = ACTIONS(1538), + [anon_sym_STAR_EQ] = ACTIONS(1538), + [anon_sym_SLASH_EQ] = ACTIONS(1538), + [anon_sym_PERCENT_EQ] = ACTIONS(1538), + [anon_sym_PLUS_EQ] = ACTIONS(1538), + [anon_sym_DASH_EQ] = ACTIONS(1538), + [anon_sym_LT_LT_EQ] = ACTIONS(1538), + [anon_sym_GT_GT_EQ] = ACTIONS(1538), + [anon_sym_AMP_EQ] = ACTIONS(1538), + [anon_sym_CARET_EQ] = ACTIONS(1538), + [anon_sym_PIPE_EQ] = ACTIONS(1538), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_sizeof] = ACTIONS(1581), + [anon_sym___alignof__] = ACTIONS(1583), + [anon_sym___alignof] = ACTIONS(1583), + [anon_sym__alignof] = ACTIONS(1583), + [anon_sym_alignof] = ACTIONS(1583), + [anon_sym__Alignof] = ACTIONS(1583), + [anon_sym_offsetof] = ACTIONS(1585), + [anon_sym__Generic] = ACTIONS(1587), + [anon_sym_asm] = ACTIONS(1589), + [anon_sym___asm__] = ACTIONS(1589), + [anon_sym_DOT] = ACTIONS(1544), + [anon_sym_DASH_GT] = ACTIONS(1538), + [sym_number_literal] = ACTIONS(1591), + [anon_sym_L_SQUOTE] = ACTIONS(1593), + [anon_sym_u_SQUOTE] = ACTIONS(1593), + [anon_sym_U_SQUOTE] = ACTIONS(1593), + [anon_sym_u8_SQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1593), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(1595), + [sym_false] = ACTIONS(1595), + [anon_sym_NULL] = ACTIONS(1597), + [anon_sym_nullptr] = ACTIONS(1597), + [sym_comment] = ACTIONS(5), + }, + [420] = { + [sym_attribute_declaration] = STATE(453), + [sym_compound_statement] = STATE(89), + [sym_attributed_statement] = STATE(89), + [sym_statement] = STATE(119), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(453), + [sym_identifier] = ACTIONS(1599), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -70063,7 +68390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), [anon_sym_SEMI] = ACTIONS(131), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), [anon_sym_LBRACE] = ACTIONS(139), [anon_sym_if] = ACTIONS(141), [anon_sym_switch] = ACTIONS(143), @@ -70107,51 +68434,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [440] = { - [sym_attribute_declaration] = STATE(451), - [sym_compound_statement] = STATE(242), - [sym_attributed_statement] = STATE(242), - [sym_statement] = STATE(206), - [sym_labeled_statement] = STATE(242), - [sym_expression_statement] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_switch_statement] = STATE(242), - [sym_case_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_do_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_return_statement] = STATE(242), - [sym_break_statement] = STATE(242), - [sym_continue_statement] = STATE(242), - [sym_goto_statement] = STATE(242), - [sym_seh_try_statement] = STATE(242), - [sym_seh_leave_statement] = STATE(242), - [sym_expression] = STATE(1603), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3235), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(451), - [sym_identifier] = ACTIONS(1606), + [421] = { + [sym_attribute_declaration] = STATE(440), + [sym_compound_statement] = STATE(223), + [sym_attributed_statement] = STATE(223), + [sym_statement] = STATE(167), + [sym_labeled_statement] = STATE(223), + [sym_expression_statement] = STATE(223), + [sym_if_statement] = STATE(223), + [sym_switch_statement] = STATE(223), + [sym_case_statement] = STATE(223), + [sym_while_statement] = STATE(223), + [sym_do_statement] = STATE(223), + [sym_for_statement] = STATE(223), + [sym_return_statement] = STATE(223), + [sym_break_statement] = STATE(223), + [sym_continue_statement] = STATE(223), + [sym_goto_statement] = STATE(223), + [sym_seh_try_statement] = STATE(223), + [sym_seh_leave_statement] = STATE(223), + [sym_expression] = STATE(1613), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3217), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(1603), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -70160,22 +68487,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_if] = ACTIONS(67), - [anon_sym_switch] = ACTIONS(69), - [anon_sym_case] = ACTIONS(71), - [anon_sym_default] = ACTIONS(73), - [anon_sym_while] = ACTIONS(75), - [anon_sym_do] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_return] = ACTIONS(81), - [anon_sym_break] = ACTIONS(83), - [anon_sym_continue] = ACTIONS(85), - [anon_sym_goto] = ACTIONS(87), - [anon_sym___try] = ACTIONS(966), - [anon_sym___leave] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(625), + [anon_sym_if] = ACTIONS(627), + [anon_sym_switch] = ACTIONS(629), + [anon_sym_case] = ACTIONS(631), + [anon_sym_default] = ACTIONS(633), + [anon_sym_while] = ACTIONS(635), + [anon_sym_do] = ACTIONS(637), + [anon_sym_for] = ACTIONS(639), + [anon_sym_return] = ACTIONS(641), + [anon_sym_break] = ACTIONS(643), + [anon_sym_continue] = ACTIONS(645), + [anon_sym_goto] = ACTIONS(647), + [anon_sym___try] = ACTIONS(649), + [anon_sym___leave] = ACTIONS(651), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -70205,51 +68532,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [441] = { - [sym_attribute_declaration] = STATE(440), - [sym_compound_statement] = STATE(242), - [sym_attributed_statement] = STATE(242), - [sym_statement] = STATE(162), - [sym_labeled_statement] = STATE(242), - [sym_expression_statement] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_switch_statement] = STATE(242), - [sym_case_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_do_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_return_statement] = STATE(242), - [sym_break_statement] = STATE(242), - [sym_continue_statement] = STATE(242), - [sym_goto_statement] = STATE(242), - [sym_seh_try_statement] = STATE(242), - [sym_seh_leave_statement] = STATE(242), - [sym_expression] = STATE(1603), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3235), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [sym_identifier] = ACTIONS(1606), + [422] = { + [sym_attribute_declaration] = STATE(430), + [sym_compound_statement] = STATE(522), + [sym_attributed_statement] = STATE(522), + [sym_statement] = STATE(526), + [sym_labeled_statement] = STATE(522), + [sym_expression_statement] = STATE(522), + [sym_if_statement] = STATE(522), + [sym_switch_statement] = STATE(522), + [sym_case_statement] = STATE(522), + [sym_while_statement] = STATE(522), + [sym_do_statement] = STATE(522), + [sym_for_statement] = STATE(522), + [sym_return_statement] = STATE(522), + [sym_break_statement] = STATE(522), + [sym_continue_statement] = STATE(522), + [sym_goto_statement] = STATE(522), + [sym_seh_try_statement] = STATE(522), + [sym_seh_leave_statement] = STATE(522), + [sym_expression] = STATE(1605), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3113), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1605), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -70258,22 +68585,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_if] = ACTIONS(67), - [anon_sym_switch] = ACTIONS(69), - [anon_sym_case] = ACTIONS(71), - [anon_sym_default] = ACTIONS(73), - [anon_sym_while] = ACTIONS(75), - [anon_sym_do] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_return] = ACTIONS(81), - [anon_sym_break] = ACTIONS(83), - [anon_sym_continue] = ACTIONS(85), - [anon_sym_goto] = ACTIONS(87), - [anon_sym___try] = ACTIONS(966), - [anon_sym___leave] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_if] = ACTIONS(1136), + [anon_sym_switch] = ACTIONS(1138), + [anon_sym_case] = ACTIONS(1607), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1140), + [anon_sym_do] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1144), + [anon_sym_return] = ACTIONS(1146), + [anon_sym_break] = ACTIONS(1148), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_goto] = ACTIONS(1152), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1156), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -70303,76 +68630,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [442] = { - [sym_expression] = STATE(1270), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1250), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1250), - [sym_call_expression] = STATE(1250), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1250), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1250), - [sym_initializer_list] = STATE(1252), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_identifier] = ACTIONS(1800), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1510), - [anon_sym_RPAREN] = ACTIONS(1510), - [anon_sym_LPAREN2] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1802), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1516), - [anon_sym_PERCENT] = ACTIONS(1516), - [anon_sym_PIPE_PIPE] = ACTIONS(1510), - [anon_sym_AMP_AMP] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_CARET] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_EQ_EQ] = ACTIONS(1510), - [anon_sym_BANG_EQ] = ACTIONS(1510), - [anon_sym_GT] = ACTIONS(1516), - [anon_sym_GT_EQ] = ACTIONS(1510), - [anon_sym_LT_EQ] = ACTIONS(1510), - [anon_sym_LT] = ACTIONS(1516), - [anon_sym_LT_LT] = ACTIONS(1516), - [anon_sym_GT_GT] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_EQ] = ACTIONS(1516), - [anon_sym_COLON] = ACTIONS(1510), - [anon_sym_QMARK] = ACTIONS(1510), - [anon_sym_STAR_EQ] = ACTIONS(1510), - [anon_sym_SLASH_EQ] = ACTIONS(1510), - [anon_sym_PERCENT_EQ] = ACTIONS(1510), - [anon_sym_PLUS_EQ] = ACTIONS(1510), - [anon_sym_DASH_EQ] = ACTIONS(1510), - [anon_sym_LT_LT_EQ] = ACTIONS(1510), - [anon_sym_GT_GT_EQ] = ACTIONS(1510), - [anon_sym_AMP_EQ] = ACTIONS(1510), - [anon_sym_CARET_EQ] = ACTIONS(1510), - [anon_sym_PIPE_EQ] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_sizeof] = ACTIONS(1808), + [423] = { + [sym_attribute_declaration] = STATE(423), + [sym_compound_statement] = STATE(522), + [sym_attributed_statement] = STATE(522), + [sym_statement] = STATE(536), + [sym_labeled_statement] = STATE(522), + [sym_expression_statement] = STATE(522), + [sym_if_statement] = STATE(522), + [sym_switch_statement] = STATE(522), + [sym_case_statement] = STATE(522), + [sym_while_statement] = STATE(522), + [sym_do_statement] = STATE(522), + [sym_for_statement] = STATE(522), + [sym_return_statement] = STATE(522), + [sym_break_statement] = STATE(522), + [sym_continue_statement] = STATE(522), + [sym_goto_statement] = STATE(522), + [sym_seh_try_statement] = STATE(522), + [sym_seh_leave_statement] = STATE(522), + [sym_expression] = STATE(1605), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3113), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(1611), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1614), + [anon_sym_BANG] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1626), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_if] = ACTIONS(1635), + [anon_sym_switch] = ACTIONS(1638), + [anon_sym_case] = ACTIONS(1641), + [anon_sym_default] = ACTIONS(1644), + [anon_sym_while] = ACTIONS(1647), + [anon_sym_do] = ACTIONS(1650), + [anon_sym_for] = ACTIONS(1653), + [anon_sym_return] = ACTIONS(1656), + [anon_sym_break] = ACTIONS(1659), + [anon_sym_continue] = ACTIONS(1662), + [anon_sym_goto] = ACTIONS(1665), + [anon_sym___try] = ACTIONS(1668), + [anon_sym___leave] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1677), + [anon_sym___alignof__] = ACTIONS(1680), + [anon_sym___alignof] = ACTIONS(1680), + [anon_sym__alignof] = ACTIONS(1680), + [anon_sym_alignof] = ACTIONS(1680), + [anon_sym__Alignof] = ACTIONS(1680), + [anon_sym_offsetof] = ACTIONS(1683), + [anon_sym__Generic] = ACTIONS(1686), + [anon_sym_asm] = ACTIONS(1689), + [anon_sym___asm__] = ACTIONS(1689), + [sym_number_literal] = ACTIONS(1692), + [anon_sym_L_SQUOTE] = ACTIONS(1695), + [anon_sym_u_SQUOTE] = ACTIONS(1695), + [anon_sym_U_SQUOTE] = ACTIONS(1695), + [anon_sym_u8_SQUOTE] = ACTIONS(1695), + [anon_sym_SQUOTE] = ACTIONS(1695), + [anon_sym_L_DQUOTE] = ACTIONS(1698), + [anon_sym_u_DQUOTE] = ACTIONS(1698), + [anon_sym_U_DQUOTE] = ACTIONS(1698), + [anon_sym_u8_DQUOTE] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [sym_true] = ACTIONS(1701), + [sym_false] = ACTIONS(1701), + [anon_sym_NULL] = ACTIONS(1704), + [anon_sym_nullptr] = ACTIONS(1704), + [sym_comment] = ACTIONS(5), + }, + [424] = { + [sym_attribute_declaration] = STATE(457), + [sym_compound_statement] = STATE(251), + [sym_attributed_statement] = STATE(251), + [sym_statement] = STATE(291), + [sym_labeled_statement] = STATE(251), + [sym_expression_statement] = STATE(251), + [sym_if_statement] = STATE(251), + [sym_switch_statement] = STATE(251), + [sym_case_statement] = STATE(251), + [sym_while_statement] = STATE(251), + [sym_do_statement] = STATE(251), + [sym_for_statement] = STATE(251), + [sym_return_statement] = STATE(251), + [sym_break_statement] = STATE(251), + [sym_continue_statement] = STATE(251), + [sym_goto_statement] = STATE(251), + [sym_seh_try_statement] = STATE(251), + [sym_seh_leave_statement] = STATE(251), + [sym_expression] = STATE(1615), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3118), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(457), + [sym_identifier] = ACTIONS(1707), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_if] = ACTIONS(67), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_case] = ACTIONS(71), + [anon_sym_default] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_do] = ACTIONS(77), + [anon_sym_for] = ACTIONS(79), + [anon_sym_return] = ACTIONS(81), + [anon_sym_break] = ACTIONS(83), + [anon_sym_continue] = ACTIONS(85), + [anon_sym_goto] = ACTIONS(87), + [anon_sym___try] = ACTIONS(968), + [anon_sym___leave] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), [anon_sym___alignof__] = ACTIONS(93), [anon_sym___alignof] = ACTIONS(93), [anon_sym__alignof] = ACTIONS(93), @@ -70382,8 +68809,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(97), [anon_sym_asm] = ACTIONS(99), [anon_sym___asm__] = ACTIONS(99), - [anon_sym_DOT] = ACTIONS(1516), - [anon_sym_DASH_GT] = ACTIONS(1510), [sym_number_literal] = ACTIONS(167), [anon_sym_L_SQUOTE] = ACTIONS(103), [anon_sym_u_SQUOTE] = ACTIONS(103), @@ -70401,149 +68826,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [443] = { - [sym_attribute_declaration] = STATE(443), - [sym_compound_statement] = STATE(99), - [sym_attributed_statement] = STATE(99), - [sym_statement] = STATE(104), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym_seh_try_statement] = STATE(99), - [sym_seh_leave_statement] = STATE(99), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(443), - [sym_identifier] = ACTIONS(1810), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1611), - [anon_sym_BANG] = ACTIONS(1614), - [anon_sym_TILDE] = ACTIONS(1614), - [anon_sym_DASH] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_AMP] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1813), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1819), - [anon_sym_switch] = ACTIONS(1822), - [anon_sym_case] = ACTIONS(1825), - [anon_sym_default] = ACTIONS(1828), - [anon_sym_while] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1834), - [anon_sym_for] = ACTIONS(1837), - [anon_sym_return] = ACTIONS(1840), - [anon_sym_break] = ACTIONS(1843), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1849), - [anon_sym___try] = ACTIONS(1852), - [anon_sym___leave] = ACTIONS(1855), - [anon_sym_DASH_DASH] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_sizeof] = ACTIONS(1674), - [anon_sym___alignof__] = ACTIONS(1677), - [anon_sym___alignof] = ACTIONS(1677), - [anon_sym__alignof] = ACTIONS(1677), - [anon_sym_alignof] = ACTIONS(1677), - [anon_sym__Alignof] = ACTIONS(1677), - [anon_sym_offsetof] = ACTIONS(1680), - [anon_sym__Generic] = ACTIONS(1683), - [anon_sym_asm] = ACTIONS(1686), - [anon_sym___asm__] = ACTIONS(1686), - [sym_number_literal] = ACTIONS(1689), - [anon_sym_L_SQUOTE] = ACTIONS(1692), - [anon_sym_u_SQUOTE] = ACTIONS(1692), - [anon_sym_U_SQUOTE] = ACTIONS(1692), - [anon_sym_u8_SQUOTE] = ACTIONS(1692), - [anon_sym_SQUOTE] = ACTIONS(1692), - [anon_sym_L_DQUOTE] = ACTIONS(1695), - [anon_sym_u_DQUOTE] = ACTIONS(1695), - [anon_sym_U_DQUOTE] = ACTIONS(1695), - [anon_sym_u8_DQUOTE] = ACTIONS(1695), - [anon_sym_DQUOTE] = ACTIONS(1695), - [sym_true] = ACTIONS(1698), - [sym_false] = ACTIONS(1698), - [anon_sym_NULL] = ACTIONS(1701), - [anon_sym_nullptr] = ACTIONS(1701), - [sym_comment] = ACTIONS(5), - }, - [444] = { - [sym_attribute_declaration] = STATE(446), - [sym_compound_statement] = STATE(472), - [sym_attributed_statement] = STATE(472), - [sym_statement] = STATE(511), - [sym_labeled_statement] = STATE(472), - [sym_expression_statement] = STATE(472), - [sym_if_statement] = STATE(472), - [sym_switch_statement] = STATE(472), - [sym_case_statement] = STATE(472), - [sym_while_statement] = STATE(472), - [sym_do_statement] = STATE(472), - [sym_for_statement] = STATE(472), - [sym_return_statement] = STATE(472), - [sym_break_statement] = STATE(472), - [sym_continue_statement] = STATE(472), - [sym_goto_statement] = STATE(472), - [sym_seh_try_statement] = STATE(472), - [sym_seh_leave_statement] = STATE(472), - [sym_expression] = STATE(1606), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(2956), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(446), - [sym_identifier] = ACTIONS(1598), + [425] = { + [sym_attribute_declaration] = STATE(457), + [sym_compound_statement] = STATE(251), + [sym_attributed_statement] = STATE(251), + [sym_statement] = STATE(169), + [sym_labeled_statement] = STATE(251), + [sym_expression_statement] = STATE(251), + [sym_if_statement] = STATE(251), + [sym_switch_statement] = STATE(251), + [sym_case_statement] = STATE(251), + [sym_while_statement] = STATE(251), + [sym_do_statement] = STATE(251), + [sym_for_statement] = STATE(251), + [sym_return_statement] = STATE(251), + [sym_break_statement] = STATE(251), + [sym_continue_statement] = STATE(251), + [sym_goto_statement] = STATE(251), + [sym_seh_try_statement] = STATE(251), + [sym_seh_leave_statement] = STATE(251), + [sym_expression] = STATE(1615), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3118), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(457), + [sym_identifier] = ACTIONS(1707), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -70552,22 +68879,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_if] = ACTIONS(1136), - [anon_sym_switch] = ACTIONS(1138), - [anon_sym_case] = ACTIONS(1576), - [anon_sym_default] = ACTIONS(1578), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(1142), - [anon_sym_for] = ACTIONS(1144), - [anon_sym_return] = ACTIONS(1146), - [anon_sym_break] = ACTIONS(1148), - [anon_sym_continue] = ACTIONS(1150), - [anon_sym_goto] = ACTIONS(1152), - [anon_sym___try] = ACTIONS(1154), - [anon_sym___leave] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_if] = ACTIONS(67), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_case] = ACTIONS(71), + [anon_sym_default] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_do] = ACTIONS(77), + [anon_sym_for] = ACTIONS(79), + [anon_sym_return] = ACTIONS(81), + [anon_sym_break] = ACTIONS(83), + [anon_sym_continue] = ACTIONS(85), + [anon_sym_goto] = ACTIONS(87), + [anon_sym___try] = ACTIONS(968), + [anon_sym___leave] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -70597,51 +68924,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [445] = { - [sym_attribute_declaration] = STATE(429), - [sym_compound_statement] = STATE(182), - [sym_attributed_statement] = STATE(182), - [sym_statement] = STATE(164), - [sym_labeled_statement] = STATE(182), - [sym_expression_statement] = STATE(182), - [sym_if_statement] = STATE(182), - [sym_switch_statement] = STATE(182), - [sym_case_statement] = STATE(182), - [sym_while_statement] = STATE(182), - [sym_do_statement] = STATE(182), - [sym_for_statement] = STATE(182), - [sym_return_statement] = STATE(182), - [sym_break_statement] = STATE(182), - [sym_continue_statement] = STATE(182), - [sym_goto_statement] = STATE(182), - [sym_seh_try_statement] = STATE(182), - [sym_seh_leave_statement] = STATE(182), - [sym_expression] = STATE(1588), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3193), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(429), - [sym_identifier] = ACTIONS(1602), + [426] = { + [sym_attribute_declaration] = STATE(462), + [sym_compound_statement] = STATE(2855), + [sym_attributed_statement] = STATE(2855), + [sym_statement] = STATE(3457), + [sym_labeled_statement] = STATE(2855), + [sym_expression_statement] = STATE(2855), + [sym_if_statement] = STATE(2855), + [sym_switch_statement] = STATE(2855), + [sym_case_statement] = STATE(2855), + [sym_while_statement] = STATE(2855), + [sym_do_statement] = STATE(2855), + [sym_for_statement] = STATE(2855), + [sym_return_statement] = STATE(2855), + [sym_break_statement] = STATE(2855), + [sym_continue_statement] = STATE(2855), + [sym_goto_statement] = STATE(2855), + [sym_seh_try_statement] = STATE(2855), + [sym_seh_leave_statement] = STATE(2855), + [sym_expression] = STATE(1602), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3116), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(462), + [sym_identifier] = ACTIONS(1709), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -70650,22 +68977,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(455), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_switch] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [anon_sym_default] = ACTIONS(471), - [anon_sym_while] = ACTIONS(473), - [anon_sym_do] = ACTIONS(475), - [anon_sym_for] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_break] = ACTIONS(481), - [anon_sym_continue] = ACTIONS(483), - [anon_sym_goto] = ACTIONS(485), - [anon_sym___try] = ACTIONS(487), - [anon_sym___leave] = ACTIONS(489), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_switch] = ACTIONS(1717), + [anon_sym_case] = ACTIONS(1607), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1719), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1723), + [anon_sym_return] = ACTIONS(1725), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1729), + [anon_sym_goto] = ACTIONS(1731), + [anon_sym___try] = ACTIONS(1733), + [anon_sym___leave] = ACTIONS(1735), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -70695,149 +69022,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [446] = { - [sym_attribute_declaration] = STATE(446), - [sym_compound_statement] = STATE(472), - [sym_attributed_statement] = STATE(472), - [sym_statement] = STATE(511), - [sym_labeled_statement] = STATE(472), - [sym_expression_statement] = STATE(472), - [sym_if_statement] = STATE(472), - [sym_switch_statement] = STATE(472), - [sym_case_statement] = STATE(472), - [sym_while_statement] = STATE(472), - [sym_do_statement] = STATE(472), - [sym_for_statement] = STATE(472), - [sym_return_statement] = STATE(472), - [sym_break_statement] = STATE(472), - [sym_continue_statement] = STATE(472), - [sym_goto_statement] = STATE(472), - [sym_seh_try_statement] = STATE(472), - [sym_seh_leave_statement] = STATE(472), - [sym_expression] = STATE(1606), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(2956), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(446), - [sym_identifier] = ACTIONS(1858), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1611), - [anon_sym_BANG] = ACTIONS(1614), - [anon_sym_TILDE] = ACTIONS(1614), - [anon_sym_DASH] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_AMP] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_switch] = ACTIONS(1870), - [anon_sym_case] = ACTIONS(1638), - [anon_sym_default] = ACTIONS(1641), - [anon_sym_while] = ACTIONS(1873), - [anon_sym_do] = ACTIONS(1876), - [anon_sym_for] = ACTIONS(1879), - [anon_sym_return] = ACTIONS(1882), - [anon_sym_break] = ACTIONS(1885), - [anon_sym_continue] = ACTIONS(1888), - [anon_sym_goto] = ACTIONS(1891), - [anon_sym___try] = ACTIONS(1894), - [anon_sym___leave] = ACTIONS(1897), - [anon_sym_DASH_DASH] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_sizeof] = ACTIONS(1674), - [anon_sym___alignof__] = ACTIONS(1677), - [anon_sym___alignof] = ACTIONS(1677), - [anon_sym__alignof] = ACTIONS(1677), - [anon_sym_alignof] = ACTIONS(1677), - [anon_sym__Alignof] = ACTIONS(1677), - [anon_sym_offsetof] = ACTIONS(1680), - [anon_sym__Generic] = ACTIONS(1683), - [anon_sym_asm] = ACTIONS(1686), - [anon_sym___asm__] = ACTIONS(1686), - [sym_number_literal] = ACTIONS(1689), - [anon_sym_L_SQUOTE] = ACTIONS(1692), - [anon_sym_u_SQUOTE] = ACTIONS(1692), - [anon_sym_U_SQUOTE] = ACTIONS(1692), - [anon_sym_u8_SQUOTE] = ACTIONS(1692), - [anon_sym_SQUOTE] = ACTIONS(1692), - [anon_sym_L_DQUOTE] = ACTIONS(1695), - [anon_sym_u_DQUOTE] = ACTIONS(1695), - [anon_sym_U_DQUOTE] = ACTIONS(1695), - [anon_sym_u8_DQUOTE] = ACTIONS(1695), - [anon_sym_DQUOTE] = ACTIONS(1695), - [sym_true] = ACTIONS(1698), - [sym_false] = ACTIONS(1698), - [anon_sym_NULL] = ACTIONS(1701), - [anon_sym_nullptr] = ACTIONS(1701), - [sym_comment] = ACTIONS(5), - }, - [447] = { - [sym_attribute_declaration] = STATE(457), - [sym_compound_statement] = STATE(2752), - [sym_attributed_statement] = STATE(2752), - [sym_statement] = STATE(3366), - [sym_labeled_statement] = STATE(2752), - [sym_expression_statement] = STATE(2752), - [sym_if_statement] = STATE(2752), - [sym_switch_statement] = STATE(2752), - [sym_case_statement] = STATE(2752), - [sym_while_statement] = STATE(2752), - [sym_do_statement] = STATE(2752), - [sym_for_statement] = STATE(2752), - [sym_return_statement] = STATE(2752), - [sym_break_statement] = STATE(2752), - [sym_continue_statement] = STATE(2752), - [sym_goto_statement] = STATE(2752), - [sym_seh_try_statement] = STATE(2752), - [sym_seh_leave_statement] = STATE(2752), - [sym_expression] = STATE(1565), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3107), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(457), - [sym_identifier] = ACTIONS(1564), + [427] = { + [sym_attribute_declaration] = STATE(462), + [sym_compound_statement] = STATE(2855), + [sym_attributed_statement] = STATE(2855), + [sym_statement] = STATE(3454), + [sym_labeled_statement] = STATE(2855), + [sym_expression_statement] = STATE(2855), + [sym_if_statement] = STATE(2855), + [sym_switch_statement] = STATE(2855), + [sym_case_statement] = STATE(2855), + [sym_while_statement] = STATE(2855), + [sym_do_statement] = STATE(2855), + [sym_for_statement] = STATE(2855), + [sym_return_statement] = STATE(2855), + [sym_break_statement] = STATE(2855), + [sym_continue_statement] = STATE(2855), + [sym_goto_statement] = STATE(2855), + [sym_seh_try_statement] = STATE(2855), + [sym_seh_leave_statement] = STATE(2855), + [sym_expression] = STATE(1602), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3116), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(462), + [sym_identifier] = ACTIONS(1709), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -70846,22 +69075,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(1566), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1570), - [anon_sym_if] = ACTIONS(1572), - [anon_sym_switch] = ACTIONS(1574), - [anon_sym_case] = ACTIONS(1576), - [anon_sym_default] = ACTIONS(1578), - [anon_sym_while] = ACTIONS(1580), - [anon_sym_do] = ACTIONS(1582), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1586), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1590), - [anon_sym_goto] = ACTIONS(1592), - [anon_sym___try] = ACTIONS(1594), - [anon_sym___leave] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_switch] = ACTIONS(1717), + [anon_sym_case] = ACTIONS(1607), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1719), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1723), + [anon_sym_return] = ACTIONS(1725), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1729), + [anon_sym_goto] = ACTIONS(1731), + [anon_sym___try] = ACTIONS(1733), + [anon_sym___leave] = ACTIONS(1735), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -70891,51 +69120,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [448] = { - [sym_attribute_declaration] = STATE(457), - [sym_compound_statement] = STATE(2752), - [sym_attributed_statement] = STATE(2752), - [sym_statement] = STATE(2713), - [sym_labeled_statement] = STATE(2752), - [sym_expression_statement] = STATE(2752), - [sym_if_statement] = STATE(2752), - [sym_switch_statement] = STATE(2752), - [sym_case_statement] = STATE(2752), - [sym_while_statement] = STATE(2752), - [sym_do_statement] = STATE(2752), - [sym_for_statement] = STATE(2752), - [sym_return_statement] = STATE(2752), - [sym_break_statement] = STATE(2752), - [sym_continue_statement] = STATE(2752), - [sym_goto_statement] = STATE(2752), - [sym_seh_try_statement] = STATE(2752), - [sym_seh_leave_statement] = STATE(2752), - [sym_expression] = STATE(1565), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3107), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(457), - [sym_identifier] = ACTIONS(1564), + [428] = { + [sym_attribute_declaration] = STATE(430), + [sym_compound_statement] = STATE(522), + [sym_attributed_statement] = STATE(522), + [sym_statement] = STATE(488), + [sym_labeled_statement] = STATE(522), + [sym_expression_statement] = STATE(522), + [sym_if_statement] = STATE(522), + [sym_switch_statement] = STATE(522), + [sym_case_statement] = STATE(522), + [sym_while_statement] = STATE(522), + [sym_do_statement] = STATE(522), + [sym_for_statement] = STATE(522), + [sym_return_statement] = STATE(522), + [sym_break_statement] = STATE(522), + [sym_continue_statement] = STATE(522), + [sym_goto_statement] = STATE(522), + [sym_seh_try_statement] = STATE(522), + [sym_seh_leave_statement] = STATE(522), + [sym_expression] = STATE(1605), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3113), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1605), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -70944,120 +69173,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(1566), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1570), - [anon_sym_if] = ACTIONS(1572), - [anon_sym_switch] = ACTIONS(1574), - [anon_sym_case] = ACTIONS(1576), - [anon_sym_default] = ACTIONS(1578), - [anon_sym_while] = ACTIONS(1580), - [anon_sym_do] = ACTIONS(1582), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1586), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1590), - [anon_sym_goto] = ACTIONS(1592), - [anon_sym___try] = ACTIONS(1594), - [anon_sym___leave] = ACTIONS(1596), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), - [sym_comment] = ACTIONS(5), - }, - [449] = { - [sym_attribute_declaration] = STATE(434), - [sym_compound_statement] = STATE(99), - [sym_attributed_statement] = STATE(99), - [sym_statement] = STATE(123), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym_seh_try_statement] = STATE(99), - [sym_seh_leave_statement] = STATE(99), - [sym_expression] = STATE(1575), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3224), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(434), - [sym_identifier] = ACTIONS(1604), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(131), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_if] = ACTIONS(141), - [anon_sym_switch] = ACTIONS(143), - [anon_sym_case] = ACTIONS(145), - [anon_sym_default] = ACTIONS(147), - [anon_sym_while] = ACTIONS(149), - [anon_sym_do] = ACTIONS(151), - [anon_sym_for] = ACTIONS(153), - [anon_sym_return] = ACTIONS(155), - [anon_sym_break] = ACTIONS(157), - [anon_sym_continue] = ACTIONS(159), - [anon_sym_goto] = ACTIONS(161), - [anon_sym___try] = ACTIONS(163), - [anon_sym___leave] = ACTIONS(165), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_if] = ACTIONS(1136), + [anon_sym_switch] = ACTIONS(1138), + [anon_sym_case] = ACTIONS(1607), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1140), + [anon_sym_do] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1144), + [anon_sym_return] = ACTIONS(1146), + [anon_sym_break] = ACTIONS(1148), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_goto] = ACTIONS(1152), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1156), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -71087,51 +69218,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [450] = { - [sym_attribute_declaration] = STATE(457), - [sym_compound_statement] = STATE(2752), - [sym_attributed_statement] = STATE(2752), - [sym_statement] = STATE(2800), - [sym_labeled_statement] = STATE(2752), - [sym_expression_statement] = STATE(2752), - [sym_if_statement] = STATE(2752), - [sym_switch_statement] = STATE(2752), - [sym_case_statement] = STATE(2752), - [sym_while_statement] = STATE(2752), - [sym_do_statement] = STATE(2752), - [sym_for_statement] = STATE(2752), - [sym_return_statement] = STATE(2752), - [sym_break_statement] = STATE(2752), - [sym_continue_statement] = STATE(2752), - [sym_goto_statement] = STATE(2752), - [sym_seh_try_statement] = STATE(2752), - [sym_seh_leave_statement] = STATE(2752), - [sym_expression] = STATE(1565), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3107), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(457), - [sym_identifier] = ACTIONS(1564), + [429] = { + [sym_attribute_declaration] = STATE(462), + [sym_compound_statement] = STATE(2855), + [sym_attributed_statement] = STATE(2855), + [sym_statement] = STATE(3427), + [sym_labeled_statement] = STATE(2855), + [sym_expression_statement] = STATE(2855), + [sym_if_statement] = STATE(2855), + [sym_switch_statement] = STATE(2855), + [sym_case_statement] = STATE(2855), + [sym_while_statement] = STATE(2855), + [sym_do_statement] = STATE(2855), + [sym_for_statement] = STATE(2855), + [sym_return_statement] = STATE(2855), + [sym_break_statement] = STATE(2855), + [sym_continue_statement] = STATE(2855), + [sym_goto_statement] = STATE(2855), + [sym_seh_try_statement] = STATE(2855), + [sym_seh_leave_statement] = STATE(2855), + [sym_expression] = STATE(1602), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3116), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(462), + [sym_identifier] = ACTIONS(1709), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -71140,22 +69271,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(1566), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1570), - [anon_sym_if] = ACTIONS(1572), - [anon_sym_switch] = ACTIONS(1574), - [anon_sym_case] = ACTIONS(1576), - [anon_sym_default] = ACTIONS(1578), - [anon_sym_while] = ACTIONS(1580), - [anon_sym_do] = ACTIONS(1582), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1586), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1590), - [anon_sym_goto] = ACTIONS(1592), - [anon_sym___try] = ACTIONS(1594), - [anon_sym___leave] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_switch] = ACTIONS(1717), + [anon_sym_case] = ACTIONS(1607), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1719), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1723), + [anon_sym_return] = ACTIONS(1725), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1729), + [anon_sym_goto] = ACTIONS(1731), + [anon_sym___try] = ACTIONS(1733), + [anon_sym___leave] = ACTIONS(1735), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -71185,149 +69316,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [451] = { - [sym_attribute_declaration] = STATE(451), - [sym_compound_statement] = STATE(242), - [sym_attributed_statement] = STATE(242), - [sym_statement] = STATE(206), - [sym_labeled_statement] = STATE(242), - [sym_expression_statement] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_switch_statement] = STATE(242), - [sym_case_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_do_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_return_statement] = STATE(242), - [sym_break_statement] = STATE(242), - [sym_continue_statement] = STATE(242), - [sym_goto_statement] = STATE(242), - [sym_seh_try_statement] = STATE(242), - [sym_seh_leave_statement] = STATE(242), - [sym_expression] = STATE(1603), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3235), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(451), - [sym_identifier] = ACTIONS(1900), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1611), - [anon_sym_BANG] = ACTIONS(1614), - [anon_sym_TILDE] = ACTIONS(1614), - [anon_sym_DASH] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_AMP] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1903), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(1909), - [anon_sym_switch] = ACTIONS(1912), - [anon_sym_case] = ACTIONS(1915), - [anon_sym_default] = ACTIONS(1918), - [anon_sym_while] = ACTIONS(1921), - [anon_sym_do] = ACTIONS(1924), - [anon_sym_for] = ACTIONS(1927), - [anon_sym_return] = ACTIONS(1930), - [anon_sym_break] = ACTIONS(1933), - [anon_sym_continue] = ACTIONS(1936), - [anon_sym_goto] = ACTIONS(1939), - [anon_sym___try] = ACTIONS(1942), - [anon_sym___leave] = ACTIONS(1945), - [anon_sym_DASH_DASH] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_sizeof] = ACTIONS(1674), - [anon_sym___alignof__] = ACTIONS(1677), - [anon_sym___alignof] = ACTIONS(1677), - [anon_sym__alignof] = ACTIONS(1677), - [anon_sym_alignof] = ACTIONS(1677), - [anon_sym__Alignof] = ACTIONS(1677), - [anon_sym_offsetof] = ACTIONS(1680), - [anon_sym__Generic] = ACTIONS(1683), - [anon_sym_asm] = ACTIONS(1686), - [anon_sym___asm__] = ACTIONS(1686), - [sym_number_literal] = ACTIONS(1689), - [anon_sym_L_SQUOTE] = ACTIONS(1692), - [anon_sym_u_SQUOTE] = ACTIONS(1692), - [anon_sym_U_SQUOTE] = ACTIONS(1692), - [anon_sym_u8_SQUOTE] = ACTIONS(1692), - [anon_sym_SQUOTE] = ACTIONS(1692), - [anon_sym_L_DQUOTE] = ACTIONS(1695), - [anon_sym_u_DQUOTE] = ACTIONS(1695), - [anon_sym_U_DQUOTE] = ACTIONS(1695), - [anon_sym_u8_DQUOTE] = ACTIONS(1695), - [anon_sym_DQUOTE] = ACTIONS(1695), - [sym_true] = ACTIONS(1698), - [sym_false] = ACTIONS(1698), - [anon_sym_NULL] = ACTIONS(1701), - [anon_sym_nullptr] = ACTIONS(1701), - [sym_comment] = ACTIONS(5), - }, - [452] = { - [sym_attribute_declaration] = STATE(457), - [sym_compound_statement] = STATE(2752), - [sym_attributed_statement] = STATE(2752), - [sym_statement] = STATE(3430), - [sym_labeled_statement] = STATE(2752), - [sym_expression_statement] = STATE(2752), - [sym_if_statement] = STATE(2752), - [sym_switch_statement] = STATE(2752), - [sym_case_statement] = STATE(2752), - [sym_while_statement] = STATE(2752), - [sym_do_statement] = STATE(2752), - [sym_for_statement] = STATE(2752), - [sym_return_statement] = STATE(2752), - [sym_break_statement] = STATE(2752), - [sym_continue_statement] = STATE(2752), - [sym_goto_statement] = STATE(2752), - [sym_seh_try_statement] = STATE(2752), - [sym_seh_leave_statement] = STATE(2752), - [sym_expression] = STATE(1565), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3107), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(457), - [sym_identifier] = ACTIONS(1564), + [430] = { + [sym_attribute_declaration] = STATE(423), + [sym_compound_statement] = STATE(522), + [sym_attributed_statement] = STATE(522), + [sym_statement] = STATE(536), + [sym_labeled_statement] = STATE(522), + [sym_expression_statement] = STATE(522), + [sym_if_statement] = STATE(522), + [sym_switch_statement] = STATE(522), + [sym_case_statement] = STATE(522), + [sym_while_statement] = STATE(522), + [sym_do_statement] = STATE(522), + [sym_for_statement] = STATE(522), + [sym_return_statement] = STATE(522), + [sym_break_statement] = STATE(522), + [sym_continue_statement] = STATE(522), + [sym_goto_statement] = STATE(522), + [sym_seh_try_statement] = STATE(522), + [sym_seh_leave_statement] = STATE(522), + [sym_expression] = STATE(1605), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3113), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(1605), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -71336,22 +69369,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(1566), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1570), - [anon_sym_if] = ACTIONS(1572), - [anon_sym_switch] = ACTIONS(1574), - [anon_sym_case] = ACTIONS(1576), - [anon_sym_default] = ACTIONS(1578), - [anon_sym_while] = ACTIONS(1580), - [anon_sym_do] = ACTIONS(1582), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1586), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1590), - [anon_sym_goto] = ACTIONS(1592), - [anon_sym___try] = ACTIONS(1594), - [anon_sym___leave] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_if] = ACTIONS(1136), + [anon_sym_switch] = ACTIONS(1138), + [anon_sym_case] = ACTIONS(1607), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1140), + [anon_sym_do] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1144), + [anon_sym_return] = ACTIONS(1146), + [anon_sym_break] = ACTIONS(1148), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_goto] = ACTIONS(1152), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1156), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -71381,51 +69414,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [453] = { - [sym_attribute_declaration] = STATE(444), - [sym_compound_statement] = STATE(472), - [sym_attributed_statement] = STATE(472), - [sym_statement] = STATE(532), - [sym_labeled_statement] = STATE(472), - [sym_expression_statement] = STATE(472), - [sym_if_statement] = STATE(472), - [sym_switch_statement] = STATE(472), - [sym_case_statement] = STATE(472), - [sym_while_statement] = STATE(472), - [sym_do_statement] = STATE(472), - [sym_for_statement] = STATE(472), - [sym_return_statement] = STATE(472), - [sym_break_statement] = STATE(472), - [sym_continue_statement] = STATE(472), - [sym_goto_statement] = STATE(472), - [sym_seh_try_statement] = STATE(472), - [sym_seh_leave_statement] = STATE(472), - [sym_expression] = STATE(1606), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(2956), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(444), - [sym_identifier] = ACTIONS(1598), + [431] = { + [sym_attribute_declaration] = STATE(430), + [sym_compound_statement] = STATE(522), + [sym_attributed_statement] = STATE(522), + [sym_statement] = STATE(490), + [sym_labeled_statement] = STATE(522), + [sym_expression_statement] = STATE(522), + [sym_if_statement] = STATE(522), + [sym_switch_statement] = STATE(522), + [sym_case_statement] = STATE(522), + [sym_while_statement] = STATE(522), + [sym_do_statement] = STATE(522), + [sym_for_statement] = STATE(522), + [sym_return_statement] = STATE(522), + [sym_break_statement] = STATE(522), + [sym_continue_statement] = STATE(522), + [sym_goto_statement] = STATE(522), + [sym_seh_try_statement] = STATE(522), + [sym_seh_leave_statement] = STATE(522), + [sym_expression] = STATE(1605), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3113), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1605), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -71435,12 +69468,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), [anon_sym_LBRACE] = ACTIONS(1134), [anon_sym_if] = ACTIONS(1136), [anon_sym_switch] = ACTIONS(1138), - [anon_sym_case] = ACTIONS(1576), - [anon_sym_default] = ACTIONS(1578), + [anon_sym_case] = ACTIONS(1607), + [anon_sym_default] = ACTIONS(1609), [anon_sym_while] = ACTIONS(1140), [anon_sym_do] = ACTIONS(1142), [anon_sym_for] = ACTIONS(1144), @@ -71479,78 +69512,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [454] = { - [sym_attribute_declaration] = STATE(444), - [sym_compound_statement] = STATE(472), - [sym_attributed_statement] = STATE(472), - [sym_statement] = STATE(486), - [sym_labeled_statement] = STATE(472), - [sym_expression_statement] = STATE(472), - [sym_if_statement] = STATE(472), - [sym_switch_statement] = STATE(472), - [sym_case_statement] = STATE(472), - [sym_while_statement] = STATE(472), - [sym_do_statement] = STATE(472), - [sym_for_statement] = STATE(472), - [sym_return_statement] = STATE(472), - [sym_break_statement] = STATE(472), - [sym_continue_statement] = STATE(472), - [sym_goto_statement] = STATE(472), - [sym_seh_try_statement] = STATE(472), - [sym_seh_leave_statement] = STATE(472), - [sym_expression] = STATE(1606), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(2956), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(444), - [sym_identifier] = ACTIONS(1598), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_if] = ACTIONS(1136), - [anon_sym_switch] = ACTIONS(1138), - [anon_sym_case] = ACTIONS(1576), - [anon_sym_default] = ACTIONS(1578), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(1142), - [anon_sym_for] = ACTIONS(1144), - [anon_sym_return] = ACTIONS(1146), - [anon_sym_break] = ACTIONS(1148), - [anon_sym_continue] = ACTIONS(1150), - [anon_sym_goto] = ACTIONS(1152), - [anon_sym___try] = ACTIONS(1154), - [anon_sym___leave] = ACTIONS(1156), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), + [432] = { + [sym_expression] = STATE(1296), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1224), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1224), + [sym_call_expression] = STATE(1224), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1224), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1224), + [sym_initializer_list] = STATE(1212), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_identifier] = ACTIONS(1737), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_TILDE] = ACTIONS(1741), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1544), + [anon_sym_SLASH] = ACTIONS(1544), + [anon_sym_PERCENT] = ACTIONS(1544), + [anon_sym_PIPE_PIPE] = ACTIONS(1538), + [anon_sym_AMP_AMP] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_CARET] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1544), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_LT_LT] = ACTIONS(1544), + [anon_sym_GT_GT] = ACTIONS(1544), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1743), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_EQ] = ACTIONS(1544), + [anon_sym_COLON] = ACTIONS(1538), + [anon_sym_QMARK] = ACTIONS(1538), + [anon_sym_STAR_EQ] = ACTIONS(1538), + [anon_sym_SLASH_EQ] = ACTIONS(1538), + [anon_sym_PERCENT_EQ] = ACTIONS(1538), + [anon_sym_PLUS_EQ] = ACTIONS(1538), + [anon_sym_DASH_EQ] = ACTIONS(1538), + [anon_sym_LT_LT_EQ] = ACTIONS(1538), + [anon_sym_GT_GT_EQ] = ACTIONS(1538), + [anon_sym_AMP_EQ] = ACTIONS(1538), + [anon_sym_CARET_EQ] = ACTIONS(1538), + [anon_sym_PIPE_EQ] = ACTIONS(1538), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_sizeof] = ACTIONS(1745), [anon_sym___alignof__] = ACTIONS(93), [anon_sym___alignof] = ACTIONS(93), [anon_sym__alignof] = ACTIONS(93), @@ -71560,6 +69591,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(97), [anon_sym_asm] = ACTIONS(99), [anon_sym___asm__] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(1544), + [anon_sym_DASH_GT] = ACTIONS(1538), [sym_number_literal] = ACTIONS(167), [anon_sym_L_SQUOTE] = ACTIONS(103), [anon_sym_u_SQUOTE] = ACTIONS(103), @@ -71577,51 +69610,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [455] = { - [sym_attribute_declaration] = STATE(429), - [sym_compound_statement] = STATE(182), - [sym_attributed_statement] = STATE(182), - [sym_statement] = STATE(220), - [sym_labeled_statement] = STATE(182), - [sym_expression_statement] = STATE(182), - [sym_if_statement] = STATE(182), - [sym_switch_statement] = STATE(182), - [sym_case_statement] = STATE(182), - [sym_while_statement] = STATE(182), - [sym_do_statement] = STATE(182), - [sym_for_statement] = STATE(182), - [sym_return_statement] = STATE(182), - [sym_break_statement] = STATE(182), - [sym_continue_statement] = STATE(182), - [sym_goto_statement] = STATE(182), - [sym_seh_try_statement] = STATE(182), - [sym_seh_leave_statement] = STATE(182), - [sym_expression] = STATE(1588), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3193), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(429), - [sym_identifier] = ACTIONS(1602), + [433] = { + [sym_attribute_declaration] = STATE(462), + [sym_compound_statement] = STATE(2855), + [sym_attributed_statement] = STATE(2855), + [sym_statement] = STATE(3393), + [sym_labeled_statement] = STATE(2855), + [sym_expression_statement] = STATE(2855), + [sym_if_statement] = STATE(2855), + [sym_switch_statement] = STATE(2855), + [sym_case_statement] = STATE(2855), + [sym_while_statement] = STATE(2855), + [sym_do_statement] = STATE(2855), + [sym_for_statement] = STATE(2855), + [sym_return_statement] = STATE(2855), + [sym_break_statement] = STATE(2855), + [sym_continue_statement] = STATE(2855), + [sym_goto_statement] = STATE(2855), + [sym_seh_try_statement] = STATE(2855), + [sym_seh_leave_statement] = STATE(2855), + [sym_expression] = STATE(1602), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3116), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(462), + [sym_identifier] = ACTIONS(1709), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -71630,22 +69663,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(455), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_switch] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [anon_sym_default] = ACTIONS(471), - [anon_sym_while] = ACTIONS(473), - [anon_sym_do] = ACTIONS(475), - [anon_sym_for] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_break] = ACTIONS(481), - [anon_sym_continue] = ACTIONS(483), - [anon_sym_goto] = ACTIONS(485), - [anon_sym___try] = ACTIONS(487), - [anon_sym___leave] = ACTIONS(489), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_switch] = ACTIONS(1717), + [anon_sym_case] = ACTIONS(1607), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1719), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1723), + [anon_sym_return] = ACTIONS(1725), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1729), + [anon_sym_goto] = ACTIONS(1731), + [anon_sym___try] = ACTIONS(1733), + [anon_sym___leave] = ACTIONS(1735), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -71675,51 +69708,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [456] = { - [sym_attribute_declaration] = STATE(433), - [sym_compound_statement] = STATE(179), - [sym_attributed_statement] = STATE(179), - [sym_statement] = STATE(163), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym_expression] = STATE(1561), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3368), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [sym_identifier] = ACTIONS(1600), + [434] = { + [sym_attribute_declaration] = STATE(452), + [sym_compound_statement] = STATE(170), + [sym_attributed_statement] = STATE(170), + [sym_statement] = STATE(282), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_seh_try_statement] = STATE(170), + [sym_seh_leave_statement] = STATE(170), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [sym_identifier] = ACTIONS(1747), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -71729,7 +69762,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), [anon_sym_SEMI] = ACTIONS(385), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), [anon_sym_LBRACE] = ACTIONS(393), [anon_sym_if] = ACTIONS(397), [anon_sym_switch] = ACTIONS(399), @@ -71773,51 +69806,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [457] = { - [sym_attribute_declaration] = STATE(426), - [sym_compound_statement] = STATE(2752), - [sym_attributed_statement] = STATE(2752), - [sym_statement] = STATE(2779), - [sym_labeled_statement] = STATE(2752), - [sym_expression_statement] = STATE(2752), - [sym_if_statement] = STATE(2752), - [sym_switch_statement] = STATE(2752), - [sym_case_statement] = STATE(2752), - [sym_while_statement] = STATE(2752), - [sym_do_statement] = STATE(2752), - [sym_for_statement] = STATE(2752), - [sym_return_statement] = STATE(2752), - [sym_break_statement] = STATE(2752), - [sym_continue_statement] = STATE(2752), - [sym_goto_statement] = STATE(2752), - [sym_seh_try_statement] = STATE(2752), - [sym_seh_leave_statement] = STATE(2752), - [sym_expression] = STATE(1565), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3107), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [sym_identifier] = ACTIONS(1564), + [435] = { + [sym_attribute_declaration] = STATE(452), + [sym_compound_statement] = STATE(170), + [sym_attributed_statement] = STATE(170), + [sym_statement] = STATE(284), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_seh_try_statement] = STATE(170), + [sym_seh_leave_statement] = STATE(170), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [sym_identifier] = ACTIONS(1747), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -71826,22 +69859,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(1566), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1570), - [anon_sym_if] = ACTIONS(1572), - [anon_sym_switch] = ACTIONS(1574), - [anon_sym_case] = ACTIONS(1576), - [anon_sym_default] = ACTIONS(1578), - [anon_sym_while] = ACTIONS(1580), - [anon_sym_do] = ACTIONS(1582), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1586), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1590), - [anon_sym_goto] = ACTIONS(1592), - [anon_sym___try] = ACTIONS(1594), - [anon_sym___leave] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(385), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_if] = ACTIONS(397), + [anon_sym_switch] = ACTIONS(399), + [anon_sym_case] = ACTIONS(401), + [anon_sym_default] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_for] = ACTIONS(409), + [anon_sym_return] = ACTIONS(411), + [anon_sym_break] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_goto] = ACTIONS(417), + [anon_sym___try] = ACTIONS(419), + [anon_sym___leave] = ACTIONS(421), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -71871,51 +69904,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [458] = { - [sym_attribute_declaration] = STATE(444), - [sym_compound_statement] = STATE(472), - [sym_attributed_statement] = STATE(472), - [sym_statement] = STATE(528), - [sym_labeled_statement] = STATE(472), - [sym_expression_statement] = STATE(472), - [sym_if_statement] = STATE(472), - [sym_switch_statement] = STATE(472), - [sym_case_statement] = STATE(472), - [sym_while_statement] = STATE(472), - [sym_do_statement] = STATE(472), - [sym_for_statement] = STATE(472), - [sym_return_statement] = STATE(472), - [sym_break_statement] = STATE(472), - [sym_continue_statement] = STATE(472), - [sym_goto_statement] = STATE(472), - [sym_seh_try_statement] = STATE(472), - [sym_seh_leave_statement] = STATE(472), - [sym_expression] = STATE(1606), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(2956), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(444), - [sym_identifier] = ACTIONS(1598), + [436] = { + [sym_attribute_declaration] = STATE(430), + [sym_compound_statement] = STATE(522), + [sym_attributed_statement] = STATE(522), + [sym_statement] = STATE(481), + [sym_labeled_statement] = STATE(522), + [sym_expression_statement] = STATE(522), + [sym_if_statement] = STATE(522), + [sym_switch_statement] = STATE(522), + [sym_case_statement] = STATE(522), + [sym_while_statement] = STATE(522), + [sym_do_statement] = STATE(522), + [sym_for_statement] = STATE(522), + [sym_return_statement] = STATE(522), + [sym_break_statement] = STATE(522), + [sym_continue_statement] = STATE(522), + [sym_goto_statement] = STATE(522), + [sym_seh_try_statement] = STATE(522), + [sym_seh_leave_statement] = STATE(522), + [sym_expression] = STATE(1605), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3113), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1605), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -71925,12 +69958,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), [anon_sym_LBRACE] = ACTIONS(1134), [anon_sym_if] = ACTIONS(1136), [anon_sym_switch] = ACTIONS(1138), - [anon_sym_case] = ACTIONS(1576), - [anon_sym_default] = ACTIONS(1578), + [anon_sym_case] = ACTIONS(1607), + [anon_sym_default] = ACTIONS(1609), [anon_sym_while] = ACTIONS(1140), [anon_sym_do] = ACTIONS(1142), [anon_sym_for] = ACTIONS(1144), @@ -71969,51 +70002,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [459] = { - [sym_attribute_declaration] = STATE(440), - [sym_compound_statement] = STATE(242), - [sym_attributed_statement] = STATE(242), - [sym_statement] = STATE(200), - [sym_labeled_statement] = STATE(242), - [sym_expression_statement] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_switch_statement] = STATE(242), - [sym_case_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_do_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_return_statement] = STATE(242), - [sym_break_statement] = STATE(242), - [sym_continue_statement] = STATE(242), - [sym_goto_statement] = STATE(242), - [sym_seh_try_statement] = STATE(242), - [sym_seh_leave_statement] = STATE(242), - [sym_expression] = STATE(1603), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3235), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [sym_identifier] = ACTIONS(1606), + [437] = { + [sym_attribute_declaration] = STATE(457), + [sym_compound_statement] = STATE(251), + [sym_attributed_statement] = STATE(251), + [sym_statement] = STATE(196), + [sym_labeled_statement] = STATE(251), + [sym_expression_statement] = STATE(251), + [sym_if_statement] = STATE(251), + [sym_switch_statement] = STATE(251), + [sym_case_statement] = STATE(251), + [sym_while_statement] = STATE(251), + [sym_do_statement] = STATE(251), + [sym_for_statement] = STATE(251), + [sym_return_statement] = STATE(251), + [sym_break_statement] = STATE(251), + [sym_continue_statement] = STATE(251), + [sym_goto_statement] = STATE(251), + [sym_seh_try_statement] = STATE(251), + [sym_seh_leave_statement] = STATE(251), + [sym_expression] = STATE(1615), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3118), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(457), + [sym_identifier] = ACTIONS(1707), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -72022,8 +70055,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_if] = ACTIONS(67), [anon_sym_switch] = ACTIONS(69), @@ -72036,8 +70069,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(83), [anon_sym_continue] = ACTIONS(85), [anon_sym_goto] = ACTIONS(87), - [anon_sym___try] = ACTIONS(966), - [anon_sym___leave] = ACTIONS(968), + [anon_sym___try] = ACTIONS(968), + [anon_sym___leave] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -72067,73 +70100,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [460] = { - [sym_expression] = STATE(1353), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1250), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1250), - [sym_call_expression] = STATE(1250), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1250), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1250), - [sym_initializer_list] = STATE(1252), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_identifier] = ACTIONS(1800), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1510), - [anon_sym_LPAREN2] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1950), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1516), - [anon_sym_PERCENT] = ACTIONS(1516), - [anon_sym_PIPE_PIPE] = ACTIONS(1510), - [anon_sym_AMP_AMP] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_CARET] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_EQ_EQ] = ACTIONS(1510), - [anon_sym_BANG_EQ] = ACTIONS(1510), - [anon_sym_GT] = ACTIONS(1516), - [anon_sym_GT_EQ] = ACTIONS(1510), - [anon_sym_LT_EQ] = ACTIONS(1510), - [anon_sym_LT] = ACTIONS(1516), - [anon_sym_LT_LT] = ACTIONS(1516), - [anon_sym_GT_GT] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_RBRACK] = ACTIONS(1510), - [anon_sym_EQ] = ACTIONS(1516), - [anon_sym_QMARK] = ACTIONS(1510), - [anon_sym_STAR_EQ] = ACTIONS(1510), - [anon_sym_SLASH_EQ] = ACTIONS(1510), - [anon_sym_PERCENT_EQ] = ACTIONS(1510), - [anon_sym_PLUS_EQ] = ACTIONS(1510), - [anon_sym_DASH_EQ] = ACTIONS(1510), - [anon_sym_LT_LT_EQ] = ACTIONS(1510), - [anon_sym_GT_GT_EQ] = ACTIONS(1510), - [anon_sym_AMP_EQ] = ACTIONS(1510), - [anon_sym_CARET_EQ] = ACTIONS(1510), - [anon_sym_PIPE_EQ] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_sizeof] = ACTIONS(1952), + [438] = { + [sym_attribute_declaration] = STATE(430), + [sym_compound_statement] = STATE(522), + [sym_attributed_statement] = STATE(522), + [sym_statement] = STATE(478), + [sym_labeled_statement] = STATE(522), + [sym_expression_statement] = STATE(522), + [sym_if_statement] = STATE(522), + [sym_switch_statement] = STATE(522), + [sym_case_statement] = STATE(522), + [sym_while_statement] = STATE(522), + [sym_do_statement] = STATE(522), + [sym_for_statement] = STATE(522), + [sym_return_statement] = STATE(522), + [sym_break_statement] = STATE(522), + [sym_continue_statement] = STATE(522), + [sym_goto_statement] = STATE(522), + [sym_seh_try_statement] = STATE(522), + [sym_seh_leave_statement] = STATE(522), + [sym_expression] = STATE(1605), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3113), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1605), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_if] = ACTIONS(1136), + [anon_sym_switch] = ACTIONS(1138), + [anon_sym_case] = ACTIONS(1607), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1140), + [anon_sym_do] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1144), + [anon_sym_return] = ACTIONS(1146), + [anon_sym_break] = ACTIONS(1148), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_goto] = ACTIONS(1152), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), [anon_sym___alignof__] = ACTIONS(93), [anon_sym___alignof] = ACTIONS(93), [anon_sym__alignof] = ACTIONS(93), @@ -72143,8 +70181,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(97), [anon_sym_asm] = ACTIONS(99), [anon_sym___asm__] = ACTIONS(99), - [anon_sym_DOT] = ACTIONS(1516), - [anon_sym_DASH_GT] = ACTIONS(1510), [sym_number_literal] = ACTIONS(167), [anon_sym_L_SQUOTE] = ACTIONS(103), [anon_sym_u_SQUOTE] = ACTIONS(103), @@ -72162,1457 +70198,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [461] = { - [sym_string_literal] = STATE(875), - [aux_sym_sized_type_specifier_repeat1] = STATE(989), - [sym_identifier] = ACTIONS(1954), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1956), - [anon_sym_LPAREN2] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1962), - [anon_sym_PLUS] = ACTIONS(1962), - [anon_sym_STAR] = ACTIONS(1964), - [anon_sym_SLASH] = ACTIONS(1962), - [anon_sym_PERCENT] = ACTIONS(1962), - [anon_sym_PIPE_PIPE] = ACTIONS(1956), - [anon_sym_AMP_AMP] = ACTIONS(1956), - [anon_sym_PIPE] = ACTIONS(1962), - [anon_sym_CARET] = ACTIONS(1962), - [anon_sym_AMP] = ACTIONS(1962), - [anon_sym_EQ_EQ] = ACTIONS(1956), - [anon_sym_BANG_EQ] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(1962), - [anon_sym_GT_EQ] = ACTIONS(1956), - [anon_sym_LT_EQ] = ACTIONS(1956), - [anon_sym_LT] = ACTIONS(1962), - [anon_sym_LT_LT] = ACTIONS(1962), - [anon_sym_GT_GT] = ACTIONS(1962), - [anon_sym_SEMI] = ACTIONS(1956), - [anon_sym___extension__] = ACTIONS(1954), - [anon_sym_extern] = ACTIONS(1954), - [anon_sym___attribute__] = ACTIONS(1954), - [anon_sym___scanf] = ACTIONS(1954), - [anon_sym___printf] = ACTIONS(1954), - [anon_sym___read_mostly] = ACTIONS(1954), - [anon_sym___must_hold] = ACTIONS(1954), - [anon_sym___ro_after_init] = ACTIONS(1954), - [anon_sym___noreturn] = ACTIONS(1954), - [anon_sym___cold] = ACTIONS(1954), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1954), - [anon_sym___based] = ACTIONS(1954), - [anon_sym___init] = ACTIONS(1954), - [anon_sym___exit] = ACTIONS(1954), - [anon_sym___cdecl] = ACTIONS(1954), - [anon_sym___clrcall] = ACTIONS(1954), - [anon_sym___stdcall] = ACTIONS(1954), - [anon_sym___fastcall] = ACTIONS(1954), - [anon_sym___thiscall] = ACTIONS(1954), - [anon_sym___vectorcall] = ACTIONS(1954), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1962), - [anon_sym_static] = ACTIONS(1954), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_auto] = ACTIONS(1954), - [anon_sym_register] = ACTIONS(1954), - [anon_sym_inline] = ACTIONS(1954), - [anon_sym___inline] = ACTIONS(1954), - [anon_sym___inline__] = ACTIONS(1954), - [anon_sym___forceinline] = ACTIONS(1954), - [anon_sym_thread_local] = ACTIONS(1954), - [anon_sym___thread] = ACTIONS(1954), - [anon_sym_const] = ACTIONS(1954), - [anon_sym_constexpr] = ACTIONS(1954), - [anon_sym_volatile] = ACTIONS(1954), - [anon_sym_restrict] = ACTIONS(1954), - [anon_sym___restrict__] = ACTIONS(1954), - [anon_sym__Atomic] = ACTIONS(1954), - [anon_sym__Noreturn] = ACTIONS(1954), - [anon_sym_noreturn] = ACTIONS(1954), - [anon_sym_alignas] = ACTIONS(1954), - [anon_sym__Alignas] = ACTIONS(1954), - [anon_sym_COLON] = ACTIONS(1973), - [anon_sym_QMARK] = ACTIONS(1956), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1956), - [anon_sym_PLUS_PLUS] = ACTIONS(1956), - [anon_sym_DOT] = ACTIONS(1956), - [anon_sym_DASH_GT] = ACTIONS(1956), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_comment] = ACTIONS(5), - }, - [462] = { - [sym_string_literal] = STATE(875), - [aux_sym_sized_type_specifier_repeat1] = STATE(989), - [sym_identifier] = ACTIONS(1954), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1956), - [anon_sym_LPAREN2] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1962), - [anon_sym_PLUS] = ACTIONS(1962), - [anon_sym_STAR] = ACTIONS(1964), - [anon_sym_SLASH] = ACTIONS(1962), - [anon_sym_PERCENT] = ACTIONS(1962), - [anon_sym_PIPE_PIPE] = ACTIONS(1956), - [anon_sym_AMP_AMP] = ACTIONS(1956), - [anon_sym_PIPE] = ACTIONS(1962), - [anon_sym_CARET] = ACTIONS(1962), - [anon_sym_AMP] = ACTIONS(1962), - [anon_sym_EQ_EQ] = ACTIONS(1956), - [anon_sym_BANG_EQ] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(1962), - [anon_sym_GT_EQ] = ACTIONS(1956), - [anon_sym_LT_EQ] = ACTIONS(1956), - [anon_sym_LT] = ACTIONS(1962), - [anon_sym_LT_LT] = ACTIONS(1962), - [anon_sym_GT_GT] = ACTIONS(1962), - [anon_sym_SEMI] = ACTIONS(1977), - [anon_sym___extension__] = ACTIONS(1954), - [anon_sym_extern] = ACTIONS(1954), - [anon_sym___attribute__] = ACTIONS(1954), - [anon_sym___scanf] = ACTIONS(1954), - [anon_sym___printf] = ACTIONS(1954), - [anon_sym___read_mostly] = ACTIONS(1954), - [anon_sym___must_hold] = ACTIONS(1954), - [anon_sym___ro_after_init] = ACTIONS(1954), - [anon_sym___noreturn] = ACTIONS(1954), - [anon_sym___cold] = ACTIONS(1954), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1954), - [anon_sym___based] = ACTIONS(1954), - [anon_sym___init] = ACTIONS(1954), - [anon_sym___exit] = ACTIONS(1954), - [anon_sym___cdecl] = ACTIONS(1954), - [anon_sym___clrcall] = ACTIONS(1954), - [anon_sym___stdcall] = ACTIONS(1954), - [anon_sym___fastcall] = ACTIONS(1954), - [anon_sym___thiscall] = ACTIONS(1954), - [anon_sym___vectorcall] = ACTIONS(1954), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1962), - [anon_sym_static] = ACTIONS(1954), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_auto] = ACTIONS(1954), - [anon_sym_register] = ACTIONS(1954), - [anon_sym_inline] = ACTIONS(1954), - [anon_sym___inline] = ACTIONS(1954), - [anon_sym___inline__] = ACTIONS(1954), - [anon_sym___forceinline] = ACTIONS(1954), - [anon_sym_thread_local] = ACTIONS(1954), - [anon_sym___thread] = ACTIONS(1954), - [anon_sym_const] = ACTIONS(1954), - [anon_sym_constexpr] = ACTIONS(1954), - [anon_sym_volatile] = ACTIONS(1954), - [anon_sym_restrict] = ACTIONS(1954), - [anon_sym___restrict__] = ACTIONS(1954), - [anon_sym__Atomic] = ACTIONS(1954), - [anon_sym__Noreturn] = ACTIONS(1954), - [anon_sym_noreturn] = ACTIONS(1954), - [anon_sym_alignas] = ACTIONS(1954), - [anon_sym__Alignas] = ACTIONS(1954), - [anon_sym_COLON] = ACTIONS(1980), - [anon_sym_QMARK] = ACTIONS(1956), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1956), - [anon_sym_PLUS_PLUS] = ACTIONS(1956), - [anon_sym_DOT] = ACTIONS(1956), - [anon_sym_DASH_GT] = ACTIONS(1956), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_comment] = ACTIONS(5), - }, - [463] = { - [sym_string_literal] = STATE(875), - [aux_sym_sized_type_specifier_repeat1] = STATE(989), - [sym_identifier] = ACTIONS(1954), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1956), - [anon_sym_LPAREN2] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1962), - [anon_sym_PLUS] = ACTIONS(1962), - [anon_sym_STAR] = ACTIONS(1964), - [anon_sym_SLASH] = ACTIONS(1962), - [anon_sym_PERCENT] = ACTIONS(1962), - [anon_sym_PIPE_PIPE] = ACTIONS(1956), - [anon_sym_AMP_AMP] = ACTIONS(1956), - [anon_sym_PIPE] = ACTIONS(1962), - [anon_sym_CARET] = ACTIONS(1962), - [anon_sym_AMP] = ACTIONS(1962), - [anon_sym_EQ_EQ] = ACTIONS(1956), - [anon_sym_BANG_EQ] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(1962), - [anon_sym_GT_EQ] = ACTIONS(1956), - [anon_sym_LT_EQ] = ACTIONS(1956), - [anon_sym_LT] = ACTIONS(1962), - [anon_sym_LT_LT] = ACTIONS(1962), - [anon_sym_GT_GT] = ACTIONS(1962), - [anon_sym_SEMI] = ACTIONS(1956), - [anon_sym___extension__] = ACTIONS(1954), - [anon_sym_extern] = ACTIONS(1954), - [anon_sym___attribute__] = ACTIONS(1954), - [anon_sym___scanf] = ACTIONS(1954), - [anon_sym___printf] = ACTIONS(1954), - [anon_sym___read_mostly] = ACTIONS(1954), - [anon_sym___must_hold] = ACTIONS(1954), - [anon_sym___ro_after_init] = ACTIONS(1954), - [anon_sym___noreturn] = ACTIONS(1954), - [anon_sym___cold] = ACTIONS(1954), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1954), - [anon_sym___based] = ACTIONS(1954), - [anon_sym___init] = ACTIONS(1954), - [anon_sym___exit] = ACTIONS(1954), - [anon_sym___cdecl] = ACTIONS(1954), - [anon_sym___clrcall] = ACTIONS(1954), - [anon_sym___stdcall] = ACTIONS(1954), - [anon_sym___fastcall] = ACTIONS(1954), - [anon_sym___thiscall] = ACTIONS(1954), - [anon_sym___vectorcall] = ACTIONS(1954), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1962), - [anon_sym_static] = ACTIONS(1954), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_auto] = ACTIONS(1954), - [anon_sym_register] = ACTIONS(1954), - [anon_sym_inline] = ACTIONS(1954), - [anon_sym___inline] = ACTIONS(1954), - [anon_sym___inline__] = ACTIONS(1954), - [anon_sym___forceinline] = ACTIONS(1954), - [anon_sym_thread_local] = ACTIONS(1954), - [anon_sym___thread] = ACTIONS(1954), - [anon_sym_const] = ACTIONS(1954), - [anon_sym_constexpr] = ACTIONS(1954), - [anon_sym_volatile] = ACTIONS(1954), - [anon_sym_restrict] = ACTIONS(1954), - [anon_sym___restrict__] = ACTIONS(1954), - [anon_sym__Atomic] = ACTIONS(1954), - [anon_sym__Noreturn] = ACTIONS(1954), - [anon_sym_noreturn] = ACTIONS(1954), - [anon_sym_alignas] = ACTIONS(1954), - [anon_sym__Alignas] = ACTIONS(1954), - [anon_sym_COLON] = ACTIONS(1982), - [anon_sym_QMARK] = ACTIONS(1956), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1956), - [anon_sym_PLUS_PLUS] = ACTIONS(1956), - [anon_sym_DOT] = ACTIONS(1956), - [anon_sym_DASH_GT] = ACTIONS(1956), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_comment] = ACTIONS(5), - }, - [464] = { - [sym_string_literal] = STATE(875), - [aux_sym_sized_type_specifier_repeat1] = STATE(989), - [sym_identifier] = ACTIONS(1954), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1956), - [anon_sym_LPAREN2] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1962), - [anon_sym_PLUS] = ACTIONS(1962), - [anon_sym_STAR] = ACTIONS(1964), - [anon_sym_SLASH] = ACTIONS(1962), - [anon_sym_PERCENT] = ACTIONS(1962), - [anon_sym_PIPE_PIPE] = ACTIONS(1956), - [anon_sym_AMP_AMP] = ACTIONS(1956), - [anon_sym_PIPE] = ACTIONS(1962), - [anon_sym_CARET] = ACTIONS(1962), - [anon_sym_AMP] = ACTIONS(1962), - [anon_sym_EQ_EQ] = ACTIONS(1956), - [anon_sym_BANG_EQ] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(1962), - [anon_sym_GT_EQ] = ACTIONS(1956), - [anon_sym_LT_EQ] = ACTIONS(1956), - [anon_sym_LT] = ACTIONS(1962), - [anon_sym_LT_LT] = ACTIONS(1962), - [anon_sym_GT_GT] = ACTIONS(1962), - [anon_sym_SEMI] = ACTIONS(1977), - [anon_sym___extension__] = ACTIONS(1954), - [anon_sym_extern] = ACTIONS(1954), - [anon_sym___attribute__] = ACTIONS(1954), - [anon_sym___scanf] = ACTIONS(1954), - [anon_sym___printf] = ACTIONS(1954), - [anon_sym___read_mostly] = ACTIONS(1954), - [anon_sym___must_hold] = ACTIONS(1954), - [anon_sym___ro_after_init] = ACTIONS(1954), - [anon_sym___noreturn] = ACTIONS(1954), - [anon_sym___cold] = ACTIONS(1954), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1954), - [anon_sym___based] = ACTIONS(1954), - [anon_sym___init] = ACTIONS(1954), - [anon_sym___exit] = ACTIONS(1954), - [anon_sym___cdecl] = ACTIONS(1954), - [anon_sym___clrcall] = ACTIONS(1954), - [anon_sym___stdcall] = ACTIONS(1954), - [anon_sym___fastcall] = ACTIONS(1954), - [anon_sym___thiscall] = ACTIONS(1954), - [anon_sym___vectorcall] = ACTIONS(1954), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1962), - [anon_sym_static] = ACTIONS(1954), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_auto] = ACTIONS(1954), - [anon_sym_register] = ACTIONS(1954), - [anon_sym_inline] = ACTIONS(1954), - [anon_sym___inline] = ACTIONS(1954), - [anon_sym___inline__] = ACTIONS(1954), - [anon_sym___forceinline] = ACTIONS(1954), - [anon_sym_thread_local] = ACTIONS(1954), - [anon_sym___thread] = ACTIONS(1954), - [anon_sym_const] = ACTIONS(1954), - [anon_sym_constexpr] = ACTIONS(1954), - [anon_sym_volatile] = ACTIONS(1954), - [anon_sym_restrict] = ACTIONS(1954), - [anon_sym___restrict__] = ACTIONS(1954), - [anon_sym__Atomic] = ACTIONS(1954), - [anon_sym__Noreturn] = ACTIONS(1954), - [anon_sym_noreturn] = ACTIONS(1954), - [anon_sym_alignas] = ACTIONS(1954), - [anon_sym__Alignas] = ACTIONS(1954), - [anon_sym_COLON] = ACTIONS(1984), - [anon_sym_QMARK] = ACTIONS(1956), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1956), - [anon_sym_PLUS_PLUS] = ACTIONS(1956), - [anon_sym_DOT] = ACTIONS(1956), - [anon_sym_DASH_GT] = ACTIONS(1956), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_comment] = ACTIONS(5), - }, - [465] = { - [sym_string_literal] = STATE(875), - [aux_sym_sized_type_specifier_repeat1] = STATE(989), - [sym_identifier] = ACTIONS(1954), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1956), - [anon_sym_LPAREN2] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1962), - [anon_sym_PLUS] = ACTIONS(1962), - [anon_sym_STAR] = ACTIONS(1964), - [anon_sym_SLASH] = ACTIONS(1962), - [anon_sym_PERCENT] = ACTIONS(1962), - [anon_sym_PIPE_PIPE] = ACTIONS(1956), - [anon_sym_AMP_AMP] = ACTIONS(1956), - [anon_sym_PIPE] = ACTIONS(1962), - [anon_sym_CARET] = ACTIONS(1962), - [anon_sym_AMP] = ACTIONS(1962), - [anon_sym_EQ_EQ] = ACTIONS(1956), - [anon_sym_BANG_EQ] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(1962), - [anon_sym_GT_EQ] = ACTIONS(1956), - [anon_sym_LT_EQ] = ACTIONS(1956), - [anon_sym_LT] = ACTIONS(1962), - [anon_sym_LT_LT] = ACTIONS(1962), - [anon_sym_GT_GT] = ACTIONS(1962), - [anon_sym_SEMI] = ACTIONS(1977), - [anon_sym___extension__] = ACTIONS(1954), - [anon_sym_extern] = ACTIONS(1954), - [anon_sym___attribute__] = ACTIONS(1954), - [anon_sym___scanf] = ACTIONS(1954), - [anon_sym___printf] = ACTIONS(1954), - [anon_sym___read_mostly] = ACTIONS(1954), - [anon_sym___must_hold] = ACTIONS(1954), - [anon_sym___ro_after_init] = ACTIONS(1954), - [anon_sym___noreturn] = ACTIONS(1954), - [anon_sym___cold] = ACTIONS(1954), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1954), - [anon_sym___based] = ACTIONS(1954), - [anon_sym___init] = ACTIONS(1954), - [anon_sym___exit] = ACTIONS(1954), - [anon_sym___cdecl] = ACTIONS(1954), - [anon_sym___clrcall] = ACTIONS(1954), - [anon_sym___stdcall] = ACTIONS(1954), - [anon_sym___fastcall] = ACTIONS(1954), - [anon_sym___thiscall] = ACTIONS(1954), - [anon_sym___vectorcall] = ACTIONS(1954), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1962), - [anon_sym_static] = ACTIONS(1954), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_auto] = ACTIONS(1954), - [anon_sym_register] = ACTIONS(1954), - [anon_sym_inline] = ACTIONS(1954), - [anon_sym___inline] = ACTIONS(1954), - [anon_sym___inline__] = ACTIONS(1954), - [anon_sym___forceinline] = ACTIONS(1954), - [anon_sym_thread_local] = ACTIONS(1954), - [anon_sym___thread] = ACTIONS(1954), - [anon_sym_const] = ACTIONS(1954), - [anon_sym_constexpr] = ACTIONS(1954), - [anon_sym_volatile] = ACTIONS(1954), - [anon_sym_restrict] = ACTIONS(1954), - [anon_sym___restrict__] = ACTIONS(1954), - [anon_sym__Atomic] = ACTIONS(1954), - [anon_sym__Noreturn] = ACTIONS(1954), - [anon_sym_noreturn] = ACTIONS(1954), - [anon_sym_alignas] = ACTIONS(1954), - [anon_sym__Alignas] = ACTIONS(1954), - [anon_sym_COLON] = ACTIONS(1986), - [anon_sym_QMARK] = ACTIONS(1956), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1956), - [anon_sym_PLUS_PLUS] = ACTIONS(1956), - [anon_sym_DOT] = ACTIONS(1956), - [anon_sym_DASH_GT] = ACTIONS(1956), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_comment] = ACTIONS(5), - }, - [466] = { - [sym_string_literal] = STATE(875), - [aux_sym_sized_type_specifier_repeat1] = STATE(989), - [sym_identifier] = ACTIONS(1954), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1956), - [anon_sym_LPAREN2] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1962), - [anon_sym_PLUS] = ACTIONS(1962), - [anon_sym_STAR] = ACTIONS(1964), - [anon_sym_SLASH] = ACTIONS(1962), - [anon_sym_PERCENT] = ACTIONS(1962), - [anon_sym_PIPE_PIPE] = ACTIONS(1956), - [anon_sym_AMP_AMP] = ACTIONS(1956), - [anon_sym_PIPE] = ACTIONS(1962), - [anon_sym_CARET] = ACTIONS(1962), - [anon_sym_AMP] = ACTIONS(1962), - [anon_sym_EQ_EQ] = ACTIONS(1956), - [anon_sym_BANG_EQ] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(1962), - [anon_sym_GT_EQ] = ACTIONS(1956), - [anon_sym_LT_EQ] = ACTIONS(1956), - [anon_sym_LT] = ACTIONS(1962), - [anon_sym_LT_LT] = ACTIONS(1962), - [anon_sym_GT_GT] = ACTIONS(1962), - [anon_sym_SEMI] = ACTIONS(1956), - [anon_sym___extension__] = ACTIONS(1954), - [anon_sym_extern] = ACTIONS(1954), - [anon_sym___attribute__] = ACTIONS(1954), - [anon_sym___scanf] = ACTIONS(1954), - [anon_sym___printf] = ACTIONS(1954), - [anon_sym___read_mostly] = ACTIONS(1954), - [anon_sym___must_hold] = ACTIONS(1954), - [anon_sym___ro_after_init] = ACTIONS(1954), - [anon_sym___noreturn] = ACTIONS(1954), - [anon_sym___cold] = ACTIONS(1954), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1954), - [anon_sym___based] = ACTIONS(1954), - [anon_sym___init] = ACTIONS(1954), - [anon_sym___exit] = ACTIONS(1954), - [anon_sym___cdecl] = ACTIONS(1954), - [anon_sym___clrcall] = ACTIONS(1954), - [anon_sym___stdcall] = ACTIONS(1954), - [anon_sym___fastcall] = ACTIONS(1954), - [anon_sym___thiscall] = ACTIONS(1954), - [anon_sym___vectorcall] = ACTIONS(1954), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1962), - [anon_sym_static] = ACTIONS(1954), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_auto] = ACTIONS(1954), - [anon_sym_register] = ACTIONS(1954), - [anon_sym_inline] = ACTIONS(1954), - [anon_sym___inline] = ACTIONS(1954), - [anon_sym___inline__] = ACTIONS(1954), - [anon_sym___forceinline] = ACTIONS(1954), - [anon_sym_thread_local] = ACTIONS(1954), - [anon_sym___thread] = ACTIONS(1954), - [anon_sym_const] = ACTIONS(1954), - [anon_sym_constexpr] = ACTIONS(1954), - [anon_sym_volatile] = ACTIONS(1954), - [anon_sym_restrict] = ACTIONS(1954), - [anon_sym___restrict__] = ACTIONS(1954), - [anon_sym__Atomic] = ACTIONS(1954), - [anon_sym__Noreturn] = ACTIONS(1954), - [anon_sym_noreturn] = ACTIONS(1954), - [anon_sym_alignas] = ACTIONS(1954), - [anon_sym__Alignas] = ACTIONS(1954), - [anon_sym_COLON] = ACTIONS(1986), - [anon_sym_QMARK] = ACTIONS(1956), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1956), - [anon_sym_PLUS_PLUS] = ACTIONS(1956), - [anon_sym_DOT] = ACTIONS(1956), - [anon_sym_DASH_GT] = ACTIONS(1956), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_comment] = ACTIONS(5), - }, - [467] = { - [sym_string_literal] = STATE(875), - [aux_sym_sized_type_specifier_repeat1] = STATE(989), - [sym_identifier] = ACTIONS(1954), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1956), - [anon_sym_LPAREN2] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1962), - [anon_sym_PLUS] = ACTIONS(1962), - [anon_sym_STAR] = ACTIONS(1964), - [anon_sym_SLASH] = ACTIONS(1962), - [anon_sym_PERCENT] = ACTIONS(1962), - [anon_sym_PIPE_PIPE] = ACTIONS(1956), - [anon_sym_AMP_AMP] = ACTIONS(1956), - [anon_sym_PIPE] = ACTIONS(1962), - [anon_sym_CARET] = ACTIONS(1962), - [anon_sym_AMP] = ACTIONS(1962), - [anon_sym_EQ_EQ] = ACTIONS(1956), - [anon_sym_BANG_EQ] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(1962), - [anon_sym_GT_EQ] = ACTIONS(1956), - [anon_sym_LT_EQ] = ACTIONS(1956), - [anon_sym_LT] = ACTIONS(1962), - [anon_sym_LT_LT] = ACTIONS(1962), - [anon_sym_GT_GT] = ACTIONS(1962), - [anon_sym_SEMI] = ACTIONS(1956), - [anon_sym___extension__] = ACTIONS(1954), - [anon_sym_extern] = ACTIONS(1954), - [anon_sym___attribute__] = ACTIONS(1954), - [anon_sym___scanf] = ACTIONS(1954), - [anon_sym___printf] = ACTIONS(1954), - [anon_sym___read_mostly] = ACTIONS(1954), - [anon_sym___must_hold] = ACTIONS(1954), - [anon_sym___ro_after_init] = ACTIONS(1954), - [anon_sym___noreturn] = ACTIONS(1954), - [anon_sym___cold] = ACTIONS(1954), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1954), - [anon_sym___based] = ACTIONS(1954), - [anon_sym___init] = ACTIONS(1954), - [anon_sym___exit] = ACTIONS(1954), - [anon_sym___cdecl] = ACTIONS(1954), - [anon_sym___clrcall] = ACTIONS(1954), - [anon_sym___stdcall] = ACTIONS(1954), - [anon_sym___fastcall] = ACTIONS(1954), - [anon_sym___thiscall] = ACTIONS(1954), - [anon_sym___vectorcall] = ACTIONS(1954), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1962), - [anon_sym_static] = ACTIONS(1954), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_auto] = ACTIONS(1954), - [anon_sym_register] = ACTIONS(1954), - [anon_sym_inline] = ACTIONS(1954), - [anon_sym___inline] = ACTIONS(1954), - [anon_sym___inline__] = ACTIONS(1954), - [anon_sym___forceinline] = ACTIONS(1954), - [anon_sym_thread_local] = ACTIONS(1954), - [anon_sym___thread] = ACTIONS(1954), - [anon_sym_const] = ACTIONS(1954), - [anon_sym_constexpr] = ACTIONS(1954), - [anon_sym_volatile] = ACTIONS(1954), - [anon_sym_restrict] = ACTIONS(1954), - [anon_sym___restrict__] = ACTIONS(1954), - [anon_sym__Atomic] = ACTIONS(1954), - [anon_sym__Noreturn] = ACTIONS(1954), - [anon_sym_noreturn] = ACTIONS(1954), - [anon_sym_alignas] = ACTIONS(1954), - [anon_sym__Alignas] = ACTIONS(1954), - [anon_sym_COLON] = ACTIONS(1980), - [anon_sym_QMARK] = ACTIONS(1956), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1956), - [anon_sym_PLUS_PLUS] = ACTIONS(1956), - [anon_sym_DOT] = ACTIONS(1956), - [anon_sym_DASH_GT] = ACTIONS(1956), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_comment] = ACTIONS(5), - }, - [468] = { - [sym_string_literal] = STATE(875), - [aux_sym_sized_type_specifier_repeat1] = STATE(989), - [sym_identifier] = ACTIONS(1954), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1956), - [anon_sym_LPAREN2] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1962), - [anon_sym_PLUS] = ACTIONS(1962), - [anon_sym_STAR] = ACTIONS(1964), - [anon_sym_SLASH] = ACTIONS(1962), - [anon_sym_PERCENT] = ACTIONS(1962), - [anon_sym_PIPE_PIPE] = ACTIONS(1956), - [anon_sym_AMP_AMP] = ACTIONS(1956), - [anon_sym_PIPE] = ACTIONS(1962), - [anon_sym_CARET] = ACTIONS(1962), - [anon_sym_AMP] = ACTIONS(1962), - [anon_sym_EQ_EQ] = ACTIONS(1956), - [anon_sym_BANG_EQ] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(1962), - [anon_sym_GT_EQ] = ACTIONS(1956), - [anon_sym_LT_EQ] = ACTIONS(1956), - [anon_sym_LT] = ACTIONS(1962), - [anon_sym_LT_LT] = ACTIONS(1962), - [anon_sym_GT_GT] = ACTIONS(1962), - [anon_sym_SEMI] = ACTIONS(1956), - [anon_sym___extension__] = ACTIONS(1954), - [anon_sym_extern] = ACTIONS(1954), - [anon_sym___attribute__] = ACTIONS(1954), - [anon_sym___scanf] = ACTIONS(1954), - [anon_sym___printf] = ACTIONS(1954), - [anon_sym___read_mostly] = ACTIONS(1954), - [anon_sym___must_hold] = ACTIONS(1954), - [anon_sym___ro_after_init] = ACTIONS(1954), - [anon_sym___noreturn] = ACTIONS(1954), - [anon_sym___cold] = ACTIONS(1954), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1954), - [anon_sym___based] = ACTIONS(1954), - [anon_sym___init] = ACTIONS(1954), - [anon_sym___exit] = ACTIONS(1954), - [anon_sym___cdecl] = ACTIONS(1954), - [anon_sym___clrcall] = ACTIONS(1954), - [anon_sym___stdcall] = ACTIONS(1954), - [anon_sym___fastcall] = ACTIONS(1954), - [anon_sym___thiscall] = ACTIONS(1954), - [anon_sym___vectorcall] = ACTIONS(1954), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1962), - [anon_sym_static] = ACTIONS(1954), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_auto] = ACTIONS(1954), - [anon_sym_register] = ACTIONS(1954), - [anon_sym_inline] = ACTIONS(1954), - [anon_sym___inline] = ACTIONS(1954), - [anon_sym___inline__] = ACTIONS(1954), - [anon_sym___forceinline] = ACTIONS(1954), - [anon_sym_thread_local] = ACTIONS(1954), - [anon_sym___thread] = ACTIONS(1954), - [anon_sym_const] = ACTIONS(1954), - [anon_sym_constexpr] = ACTIONS(1954), - [anon_sym_volatile] = ACTIONS(1954), - [anon_sym_restrict] = ACTIONS(1954), - [anon_sym___restrict__] = ACTIONS(1954), - [anon_sym__Atomic] = ACTIONS(1954), - [anon_sym__Noreturn] = ACTIONS(1954), - [anon_sym_noreturn] = ACTIONS(1954), - [anon_sym_alignas] = ACTIONS(1954), - [anon_sym__Alignas] = ACTIONS(1954), - [anon_sym_COLON] = ACTIONS(1984), - [anon_sym_QMARK] = ACTIONS(1956), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1956), - [anon_sym_PLUS_PLUS] = ACTIONS(1956), - [anon_sym_DOT] = ACTIONS(1956), - [anon_sym_DASH_GT] = ACTIONS(1956), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_comment] = ACTIONS(5), - }, - [469] = { - [sym_string_literal] = STATE(875), - [aux_sym_sized_type_specifier_repeat1] = STATE(989), - [sym_identifier] = ACTIONS(1954), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1962), - [anon_sym_PLUS] = ACTIONS(1962), - [anon_sym_STAR] = ACTIONS(1964), - [anon_sym_SLASH] = ACTIONS(1962), - [anon_sym_PERCENT] = ACTIONS(1962), - [anon_sym_PIPE_PIPE] = ACTIONS(1956), - [anon_sym_AMP_AMP] = ACTIONS(1956), - [anon_sym_PIPE] = ACTIONS(1962), - [anon_sym_CARET] = ACTIONS(1962), - [anon_sym_AMP] = ACTIONS(1962), - [anon_sym_EQ_EQ] = ACTIONS(1956), - [anon_sym_BANG_EQ] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(1962), - [anon_sym_GT_EQ] = ACTIONS(1956), - [anon_sym_LT_EQ] = ACTIONS(1956), - [anon_sym_LT] = ACTIONS(1962), - [anon_sym_LT_LT] = ACTIONS(1962), - [anon_sym_GT_GT] = ACTIONS(1962), - [anon_sym_SEMI] = ACTIONS(1988), - [anon_sym___extension__] = ACTIONS(1954), - [anon_sym_extern] = ACTIONS(1954), - [anon_sym___attribute__] = ACTIONS(1954), - [anon_sym___scanf] = ACTIONS(1954), - [anon_sym___printf] = ACTIONS(1954), - [anon_sym___read_mostly] = ACTIONS(1954), - [anon_sym___must_hold] = ACTIONS(1954), - [anon_sym___ro_after_init] = ACTIONS(1954), - [anon_sym___noreturn] = ACTIONS(1954), - [anon_sym___cold] = ACTIONS(1954), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1954), - [anon_sym___based] = ACTIONS(1954), - [anon_sym___init] = ACTIONS(1954), - [anon_sym___exit] = ACTIONS(1954), - [anon_sym___cdecl] = ACTIONS(1954), - [anon_sym___clrcall] = ACTIONS(1954), - [anon_sym___stdcall] = ACTIONS(1954), - [anon_sym___fastcall] = ACTIONS(1954), - [anon_sym___thiscall] = ACTIONS(1954), - [anon_sym___vectorcall] = ACTIONS(1954), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1962), - [anon_sym_static] = ACTIONS(1954), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_auto] = ACTIONS(1954), - [anon_sym_register] = ACTIONS(1954), - [anon_sym_inline] = ACTIONS(1954), - [anon_sym___inline] = ACTIONS(1954), - [anon_sym___inline__] = ACTIONS(1954), - [anon_sym___forceinline] = ACTIONS(1954), - [anon_sym_thread_local] = ACTIONS(1954), - [anon_sym___thread] = ACTIONS(1954), - [anon_sym_const] = ACTIONS(1954), - [anon_sym_constexpr] = ACTIONS(1954), - [anon_sym_volatile] = ACTIONS(1954), - [anon_sym_restrict] = ACTIONS(1954), - [anon_sym___restrict__] = ACTIONS(1954), - [anon_sym__Atomic] = ACTIONS(1954), - [anon_sym__Noreturn] = ACTIONS(1954), - [anon_sym_noreturn] = ACTIONS(1954), - [anon_sym_alignas] = ACTIONS(1954), - [anon_sym__Alignas] = ACTIONS(1954), - [anon_sym_COLON] = ACTIONS(1982), - [anon_sym_QMARK] = ACTIONS(1956), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1956), - [anon_sym_PLUS_PLUS] = ACTIONS(1956), - [anon_sym_DOT] = ACTIONS(1956), - [anon_sym_DASH_GT] = ACTIONS(1956), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_comment] = ACTIONS(5), - }, - [470] = { - [sym_else_clause] = STATE(512), - [sym_identifier] = ACTIONS(1212), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym___extension__] = ACTIONS(1212), - [anon_sym_typedef] = ACTIONS(1212), - [anon_sym_extern] = ACTIONS(1212), - [anon_sym___attribute__] = ACTIONS(1212), - [anon_sym___scanf] = ACTIONS(1212), - [anon_sym___printf] = ACTIONS(1212), - [anon_sym___read_mostly] = ACTIONS(1212), - [anon_sym___must_hold] = ACTIONS(1212), - [anon_sym___ro_after_init] = ACTIONS(1212), - [anon_sym___noreturn] = ACTIONS(1212), - [anon_sym___cold] = ACTIONS(1212), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), - [anon_sym___declspec] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_signed] = ACTIONS(1212), - [anon_sym_unsigned] = ACTIONS(1212), - [anon_sym_long] = ACTIONS(1212), - [anon_sym_short] = ACTIONS(1212), - [anon_sym_static] = ACTIONS(1212), - [anon_sym_auto] = ACTIONS(1212), - [anon_sym_register] = ACTIONS(1212), - [anon_sym_inline] = ACTIONS(1212), - [anon_sym___inline] = ACTIONS(1212), - [anon_sym___inline__] = ACTIONS(1212), - [anon_sym___forceinline] = ACTIONS(1212), - [anon_sym_thread_local] = ACTIONS(1212), - [anon_sym___thread] = ACTIONS(1212), - [anon_sym_const] = ACTIONS(1212), - [anon_sym_constexpr] = ACTIONS(1212), - [anon_sym_volatile] = ACTIONS(1212), - [anon_sym_restrict] = ACTIONS(1212), - [anon_sym___restrict__] = ACTIONS(1212), - [anon_sym__Atomic] = ACTIONS(1212), - [anon_sym__Noreturn] = ACTIONS(1212), - [anon_sym_noreturn] = ACTIONS(1212), - [anon_sym_alignas] = ACTIONS(1212), - [anon_sym__Alignas] = ACTIONS(1212), - [sym_primitive_type] = ACTIONS(1212), - [anon_sym_enum] = ACTIONS(1212), - [anon_sym_struct] = ACTIONS(1212), - [anon_sym_union] = ACTIONS(1212), - [anon_sym_if] = ACTIONS(1212), - [anon_sym_else] = ACTIONS(1991), - [anon_sym_switch] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(1212), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_return] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(1212), - [anon_sym_continue] = ACTIONS(1212), - [anon_sym_goto] = ACTIONS(1212), - [anon_sym___try] = ACTIONS(1212), - [anon_sym___leave] = ACTIONS(1212), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1212), - [anon_sym___alignof__] = ACTIONS(1212), - [anon_sym___alignof] = ACTIONS(1212), - [anon_sym__alignof] = ACTIONS(1212), - [anon_sym_alignof] = ACTIONS(1212), - [anon_sym__Alignof] = ACTIONS(1212), - [anon_sym_offsetof] = ACTIONS(1212), - [anon_sym__Generic] = ACTIONS(1212), - [anon_sym_asm] = ACTIONS(1212), - [anon_sym___asm__] = ACTIONS(1212), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_L_SQUOTE] = ACTIONS(1214), - [anon_sym_u_SQUOTE] = ACTIONS(1214), - [anon_sym_U_SQUOTE] = ACTIONS(1214), - [anon_sym_u8_SQUOTE] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_L_DQUOTE] = ACTIONS(1214), - [anon_sym_u_DQUOTE] = ACTIONS(1214), - [anon_sym_U_DQUOTE] = ACTIONS(1214), - [anon_sym_u8_DQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1212), - [sym_false] = ACTIONS(1212), - [anon_sym_NULL] = ACTIONS(1212), - [anon_sym_nullptr] = ACTIONS(1212), - [sym_comment] = ACTIONS(5), - }, - [471] = { - [sym_string_literal] = STATE(875), - [aux_sym_sized_type_specifier_repeat1] = STATE(989), - [sym_identifier] = ACTIONS(1954), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1956), - [anon_sym_LPAREN2] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1962), - [anon_sym_PLUS] = ACTIONS(1962), - [anon_sym_STAR] = ACTIONS(1964), - [anon_sym_SLASH] = ACTIONS(1962), - [anon_sym_PERCENT] = ACTIONS(1962), - [anon_sym_PIPE_PIPE] = ACTIONS(1956), - [anon_sym_AMP_AMP] = ACTIONS(1956), - [anon_sym_PIPE] = ACTIONS(1962), - [anon_sym_CARET] = ACTIONS(1962), - [anon_sym_AMP] = ACTIONS(1962), - [anon_sym_EQ_EQ] = ACTIONS(1956), - [anon_sym_BANG_EQ] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(1962), - [anon_sym_GT_EQ] = ACTIONS(1956), - [anon_sym_LT_EQ] = ACTIONS(1956), - [anon_sym_LT] = ACTIONS(1962), - [anon_sym_LT_LT] = ACTIONS(1962), - [anon_sym_GT_GT] = ACTIONS(1962), - [anon_sym_SEMI] = ACTIONS(1956), - [anon_sym___extension__] = ACTIONS(1954), - [anon_sym_extern] = ACTIONS(1954), - [anon_sym___attribute__] = ACTIONS(1954), - [anon_sym___scanf] = ACTIONS(1954), - [anon_sym___printf] = ACTIONS(1954), - [anon_sym___read_mostly] = ACTIONS(1954), - [anon_sym___must_hold] = ACTIONS(1954), - [anon_sym___ro_after_init] = ACTIONS(1954), - [anon_sym___noreturn] = ACTIONS(1954), - [anon_sym___cold] = ACTIONS(1954), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1954), - [anon_sym___based] = ACTIONS(1954), - [anon_sym___init] = ACTIONS(1954), - [anon_sym___exit] = ACTIONS(1954), - [anon_sym___cdecl] = ACTIONS(1954), - [anon_sym___clrcall] = ACTIONS(1954), - [anon_sym___stdcall] = ACTIONS(1954), - [anon_sym___fastcall] = ACTIONS(1954), - [anon_sym___thiscall] = ACTIONS(1954), - [anon_sym___vectorcall] = ACTIONS(1954), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1962), - [anon_sym_static] = ACTIONS(1954), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_auto] = ACTIONS(1954), - [anon_sym_register] = ACTIONS(1954), - [anon_sym_inline] = ACTIONS(1954), - [anon_sym___inline] = ACTIONS(1954), - [anon_sym___inline__] = ACTIONS(1954), - [anon_sym___forceinline] = ACTIONS(1954), - [anon_sym_thread_local] = ACTIONS(1954), - [anon_sym___thread] = ACTIONS(1954), - [anon_sym_const] = ACTIONS(1954), - [anon_sym_constexpr] = ACTIONS(1954), - [anon_sym_volatile] = ACTIONS(1954), - [anon_sym_restrict] = ACTIONS(1954), - [anon_sym___restrict__] = ACTIONS(1954), - [anon_sym__Atomic] = ACTIONS(1954), - [anon_sym__Noreturn] = ACTIONS(1954), - [anon_sym_noreturn] = ACTIONS(1954), - [anon_sym_alignas] = ACTIONS(1954), - [anon_sym__Alignas] = ACTIONS(1954), - [anon_sym_QMARK] = ACTIONS(1956), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1956), - [anon_sym_PLUS_PLUS] = ACTIONS(1956), - [anon_sym_DOT] = ACTIONS(1956), - [anon_sym_DASH_GT] = ACTIONS(1956), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_comment] = ACTIONS(5), - }, - [472] = { - [sym_identifier] = ACTIONS(1270), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1272), - [anon_sym_BANG] = ACTIONS(1272), - [anon_sym_TILDE] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_AMP] = ACTIONS(1272), - [anon_sym_SEMI] = ACTIONS(1272), - [anon_sym___extension__] = ACTIONS(1270), - [anon_sym_typedef] = ACTIONS(1270), - [anon_sym_extern] = ACTIONS(1270), - [anon_sym___attribute__] = ACTIONS(1270), - [anon_sym___scanf] = ACTIONS(1270), - [anon_sym___printf] = ACTIONS(1270), - [anon_sym___read_mostly] = ACTIONS(1270), - [anon_sym___must_hold] = ACTIONS(1270), - [anon_sym___ro_after_init] = ACTIONS(1270), - [anon_sym___noreturn] = ACTIONS(1270), - [anon_sym___cold] = ACTIONS(1270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1272), - [anon_sym___declspec] = ACTIONS(1270), - [anon_sym_LBRACE] = ACTIONS(1272), - [anon_sym_signed] = ACTIONS(1270), - [anon_sym_unsigned] = ACTIONS(1270), - [anon_sym_long] = ACTIONS(1270), - [anon_sym_short] = ACTIONS(1270), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_auto] = ACTIONS(1270), - [anon_sym_register] = ACTIONS(1270), - [anon_sym_inline] = ACTIONS(1270), - [anon_sym___inline] = ACTIONS(1270), - [anon_sym___inline__] = ACTIONS(1270), - [anon_sym___forceinline] = ACTIONS(1270), - [anon_sym_thread_local] = ACTIONS(1270), - [anon_sym___thread] = ACTIONS(1270), - [anon_sym_const] = ACTIONS(1270), - [anon_sym_constexpr] = ACTIONS(1270), - [anon_sym_volatile] = ACTIONS(1270), - [anon_sym_restrict] = ACTIONS(1270), - [anon_sym___restrict__] = ACTIONS(1270), - [anon_sym__Atomic] = ACTIONS(1270), - [anon_sym__Noreturn] = ACTIONS(1270), - [anon_sym_noreturn] = ACTIONS(1270), - [anon_sym_alignas] = ACTIONS(1270), - [anon_sym__Alignas] = ACTIONS(1270), - [sym_primitive_type] = ACTIONS(1270), - [anon_sym_enum] = ACTIONS(1270), - [anon_sym_struct] = ACTIONS(1270), - [anon_sym_union] = ACTIONS(1270), - [anon_sym_if] = ACTIONS(1270), - [anon_sym_else] = ACTIONS(1270), - [anon_sym_switch] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(1270), - [anon_sym_do] = ACTIONS(1270), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_return] = ACTIONS(1270), - [anon_sym_break] = ACTIONS(1270), - [anon_sym_continue] = ACTIONS(1270), - [anon_sym_goto] = ACTIONS(1270), - [anon_sym___try] = ACTIONS(1270), - [anon_sym___leave] = ACTIONS(1270), - [anon_sym_DASH_DASH] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1272), - [anon_sym_sizeof] = ACTIONS(1270), - [anon_sym___alignof__] = ACTIONS(1270), - [anon_sym___alignof] = ACTIONS(1270), - [anon_sym__alignof] = ACTIONS(1270), - [anon_sym_alignof] = ACTIONS(1270), - [anon_sym__Alignof] = ACTIONS(1270), - [anon_sym_offsetof] = ACTIONS(1270), - [anon_sym__Generic] = ACTIONS(1270), - [anon_sym_asm] = ACTIONS(1270), - [anon_sym___asm__] = ACTIONS(1270), - [sym_number_literal] = ACTIONS(1272), - [anon_sym_L_SQUOTE] = ACTIONS(1272), - [anon_sym_u_SQUOTE] = ACTIONS(1272), - [anon_sym_U_SQUOTE] = ACTIONS(1272), - [anon_sym_u8_SQUOTE] = ACTIONS(1272), - [anon_sym_SQUOTE] = ACTIONS(1272), - [anon_sym_L_DQUOTE] = ACTIONS(1272), - [anon_sym_u_DQUOTE] = ACTIONS(1272), - [anon_sym_U_DQUOTE] = ACTIONS(1272), - [anon_sym_u8_DQUOTE] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1272), - [sym_true] = ACTIONS(1270), - [sym_false] = ACTIONS(1270), - [anon_sym_NULL] = ACTIONS(1270), - [anon_sym_nullptr] = ACTIONS(1270), - [sym_comment] = ACTIONS(5), - }, - [473] = { - [sym_identifier] = ACTIONS(1282), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1284), - [anon_sym_BANG] = ACTIONS(1284), - [anon_sym_TILDE] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_AMP] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym___extension__] = ACTIONS(1282), - [anon_sym_typedef] = ACTIONS(1282), - [anon_sym_extern] = ACTIONS(1282), - [anon_sym___attribute__] = ACTIONS(1282), - [anon_sym___scanf] = ACTIONS(1282), - [anon_sym___printf] = ACTIONS(1282), - [anon_sym___read_mostly] = ACTIONS(1282), - [anon_sym___must_hold] = ACTIONS(1282), - [anon_sym___ro_after_init] = ACTIONS(1282), - [anon_sym___noreturn] = ACTIONS(1282), - [anon_sym___cold] = ACTIONS(1282), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1284), - [anon_sym___declspec] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1284), - [anon_sym_signed] = ACTIONS(1282), - [anon_sym_unsigned] = ACTIONS(1282), - [anon_sym_long] = ACTIONS(1282), - [anon_sym_short] = ACTIONS(1282), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_auto] = ACTIONS(1282), - [anon_sym_register] = ACTIONS(1282), - [anon_sym_inline] = ACTIONS(1282), - [anon_sym___inline] = ACTIONS(1282), - [anon_sym___inline__] = ACTIONS(1282), - [anon_sym___forceinline] = ACTIONS(1282), - [anon_sym_thread_local] = ACTIONS(1282), - [anon_sym___thread] = ACTIONS(1282), - [anon_sym_const] = ACTIONS(1282), - [anon_sym_constexpr] = ACTIONS(1282), - [anon_sym_volatile] = ACTIONS(1282), - [anon_sym_restrict] = ACTIONS(1282), - [anon_sym___restrict__] = ACTIONS(1282), - [anon_sym__Atomic] = ACTIONS(1282), - [anon_sym__Noreturn] = ACTIONS(1282), - [anon_sym_noreturn] = ACTIONS(1282), - [anon_sym_alignas] = ACTIONS(1282), - [anon_sym__Alignas] = ACTIONS(1282), - [sym_primitive_type] = ACTIONS(1282), - [anon_sym_enum] = ACTIONS(1282), - [anon_sym_struct] = ACTIONS(1282), - [anon_sym_union] = ACTIONS(1282), - [anon_sym_if] = ACTIONS(1282), - [anon_sym_else] = ACTIONS(1282), - [anon_sym_switch] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1282), - [anon_sym_do] = ACTIONS(1282), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(1282), - [anon_sym_break] = ACTIONS(1282), - [anon_sym_continue] = ACTIONS(1282), - [anon_sym_goto] = ACTIONS(1282), - [anon_sym___try] = ACTIONS(1282), - [anon_sym___leave] = ACTIONS(1282), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_sizeof] = ACTIONS(1282), - [anon_sym___alignof__] = ACTIONS(1282), - [anon_sym___alignof] = ACTIONS(1282), - [anon_sym__alignof] = ACTIONS(1282), - [anon_sym_alignof] = ACTIONS(1282), - [anon_sym__Alignof] = ACTIONS(1282), - [anon_sym_offsetof] = ACTIONS(1282), - [anon_sym__Generic] = ACTIONS(1282), - [anon_sym_asm] = ACTIONS(1282), - [anon_sym___asm__] = ACTIONS(1282), - [sym_number_literal] = ACTIONS(1284), - [anon_sym_L_SQUOTE] = ACTIONS(1284), - [anon_sym_u_SQUOTE] = ACTIONS(1284), - [anon_sym_U_SQUOTE] = ACTIONS(1284), - [anon_sym_u8_SQUOTE] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1284), - [anon_sym_L_DQUOTE] = ACTIONS(1284), - [anon_sym_u_DQUOTE] = ACTIONS(1284), - [anon_sym_U_DQUOTE] = ACTIONS(1284), - [anon_sym_u8_DQUOTE] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1284), - [sym_true] = ACTIONS(1282), - [sym_false] = ACTIONS(1282), - [anon_sym_NULL] = ACTIONS(1282), - [anon_sym_nullptr] = ACTIONS(1282), - [sym_comment] = ACTIONS(5), - }, - [474] = { - [sym_identifier] = ACTIONS(1226), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1228), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1226), - [anon_sym_PLUS] = ACTIONS(1226), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym___extension__] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1226), - [anon_sym_extern] = ACTIONS(1226), - [anon_sym___attribute__] = ACTIONS(1226), - [anon_sym___scanf] = ACTIONS(1226), - [anon_sym___printf] = ACTIONS(1226), - [anon_sym___read_mostly] = ACTIONS(1226), - [anon_sym___must_hold] = ACTIONS(1226), - [anon_sym___ro_after_init] = ACTIONS(1226), - [anon_sym___noreturn] = ACTIONS(1226), - [anon_sym___cold] = ACTIONS(1226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1228), - [anon_sym___declspec] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_signed] = ACTIONS(1226), - [anon_sym_unsigned] = ACTIONS(1226), - [anon_sym_long] = ACTIONS(1226), - [anon_sym_short] = ACTIONS(1226), - [anon_sym_static] = ACTIONS(1226), - [anon_sym_auto] = ACTIONS(1226), - [anon_sym_register] = ACTIONS(1226), - [anon_sym_inline] = ACTIONS(1226), - [anon_sym___inline] = ACTIONS(1226), - [anon_sym___inline__] = ACTIONS(1226), - [anon_sym___forceinline] = ACTIONS(1226), - [anon_sym_thread_local] = ACTIONS(1226), - [anon_sym___thread] = ACTIONS(1226), - [anon_sym_const] = ACTIONS(1226), - [anon_sym_constexpr] = ACTIONS(1226), - [anon_sym_volatile] = ACTIONS(1226), - [anon_sym_restrict] = ACTIONS(1226), - [anon_sym___restrict__] = ACTIONS(1226), - [anon_sym__Atomic] = ACTIONS(1226), - [anon_sym__Noreturn] = ACTIONS(1226), - [anon_sym_noreturn] = ACTIONS(1226), - [anon_sym_alignas] = ACTIONS(1226), - [anon_sym__Alignas] = ACTIONS(1226), - [sym_primitive_type] = ACTIONS(1226), - [anon_sym_enum] = ACTIONS(1226), - [anon_sym_struct] = ACTIONS(1226), - [anon_sym_union] = ACTIONS(1226), - [anon_sym_if] = ACTIONS(1226), - [anon_sym_else] = ACTIONS(1226), - [anon_sym_switch] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_do] = ACTIONS(1226), - [anon_sym_for] = ACTIONS(1226), - [anon_sym_return] = ACTIONS(1226), - [anon_sym_break] = ACTIONS(1226), - [anon_sym_continue] = ACTIONS(1226), - [anon_sym_goto] = ACTIONS(1226), - [anon_sym___try] = ACTIONS(1226), - [anon_sym___leave] = ACTIONS(1226), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_sizeof] = ACTIONS(1226), - [anon_sym___alignof__] = ACTIONS(1226), - [anon_sym___alignof] = ACTIONS(1226), - [anon_sym__alignof] = ACTIONS(1226), - [anon_sym_alignof] = ACTIONS(1226), - [anon_sym__Alignof] = ACTIONS(1226), - [anon_sym_offsetof] = ACTIONS(1226), - [anon_sym__Generic] = ACTIONS(1226), - [anon_sym_asm] = ACTIONS(1226), - [anon_sym___asm__] = ACTIONS(1226), - [sym_number_literal] = ACTIONS(1228), - [anon_sym_L_SQUOTE] = ACTIONS(1228), - [anon_sym_u_SQUOTE] = ACTIONS(1228), - [anon_sym_U_SQUOTE] = ACTIONS(1228), - [anon_sym_u8_SQUOTE] = ACTIONS(1228), - [anon_sym_SQUOTE] = ACTIONS(1228), - [anon_sym_L_DQUOTE] = ACTIONS(1228), - [anon_sym_u_DQUOTE] = ACTIONS(1228), - [anon_sym_U_DQUOTE] = ACTIONS(1228), - [anon_sym_u8_DQUOTE] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym_true] = ACTIONS(1226), - [sym_false] = ACTIONS(1226), - [anon_sym_NULL] = ACTIONS(1226), - [anon_sym_nullptr] = ACTIONS(1226), - [sym_comment] = ACTIONS(5), - }, - [475] = { - [sym_identifier] = ACTIONS(1234), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym___extension__] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym___attribute__] = ACTIONS(1234), - [anon_sym___scanf] = ACTIONS(1234), - [anon_sym___printf] = ACTIONS(1234), - [anon_sym___read_mostly] = ACTIONS(1234), - [anon_sym___must_hold] = ACTIONS(1234), - [anon_sym___ro_after_init] = ACTIONS(1234), - [anon_sym___noreturn] = ACTIONS(1234), - [anon_sym___cold] = ACTIONS(1234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), - [anon_sym___declspec] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_signed] = ACTIONS(1234), - [anon_sym_unsigned] = ACTIONS(1234), - [anon_sym_long] = ACTIONS(1234), - [anon_sym_short] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_auto] = ACTIONS(1234), - [anon_sym_register] = ACTIONS(1234), - [anon_sym_inline] = ACTIONS(1234), - [anon_sym___inline] = ACTIONS(1234), - [anon_sym___inline__] = ACTIONS(1234), - [anon_sym___forceinline] = ACTIONS(1234), - [anon_sym_thread_local] = ACTIONS(1234), - [anon_sym___thread] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_constexpr] = ACTIONS(1234), - [anon_sym_volatile] = ACTIONS(1234), - [anon_sym_restrict] = ACTIONS(1234), - [anon_sym___restrict__] = ACTIONS(1234), - [anon_sym__Atomic] = ACTIONS(1234), - [anon_sym__Noreturn] = ACTIONS(1234), - [anon_sym_noreturn] = ACTIONS(1234), - [anon_sym_alignas] = ACTIONS(1234), - [anon_sym__Alignas] = ACTIONS(1234), - [sym_primitive_type] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [anon_sym_switch] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_goto] = ACTIONS(1234), - [anon_sym___try] = ACTIONS(1234), - [anon_sym___leave] = ACTIONS(1234), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_sizeof] = ACTIONS(1234), - [anon_sym___alignof__] = ACTIONS(1234), - [anon_sym___alignof] = ACTIONS(1234), - [anon_sym__alignof] = ACTIONS(1234), - [anon_sym_alignof] = ACTIONS(1234), - [anon_sym__Alignof] = ACTIONS(1234), - [anon_sym_offsetof] = ACTIONS(1234), - [anon_sym__Generic] = ACTIONS(1234), - [anon_sym_asm] = ACTIONS(1234), - [anon_sym___asm__] = ACTIONS(1234), - [sym_number_literal] = ACTIONS(1236), - [anon_sym_L_SQUOTE] = ACTIONS(1236), - [anon_sym_u_SQUOTE] = ACTIONS(1236), - [anon_sym_U_SQUOTE] = ACTIONS(1236), - [anon_sym_u8_SQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_L_DQUOTE] = ACTIONS(1236), - [anon_sym_u_DQUOTE] = ACTIONS(1236), - [anon_sym_U_DQUOTE] = ACTIONS(1236), - [anon_sym_u8_DQUOTE] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1236), - [sym_true] = ACTIONS(1234), - [sym_false] = ACTIONS(1234), - [anon_sym_NULL] = ACTIONS(1234), - [anon_sym_nullptr] = ACTIONS(1234), - [sym_comment] = ACTIONS(5), - }, - [476] = { - [sym_type_qualifier] = STATE(1517), - [sym_alignas_qualifier] = STATE(1671), - [sym_type_specifier] = STATE(1678), - [sym_sized_type_specifier] = STATE(1984), - [sym_enum_specifier] = STATE(1984), - [sym_struct_specifier] = STATE(1984), - [sym_union_specifier] = STATE(1984), - [sym_expression] = STATE(1592), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3239), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_type_descriptor] = STATE(3182), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1984), - [aux_sym__type_definition_type_repeat1] = STATE(1517), - [aux_sym_sized_type_specifier_repeat1] = STATE(1712), - [sym_identifier] = ACTIONS(1993), + [439] = { + [sym_attribute_declaration] = STATE(457), + [sym_compound_statement] = STATE(251), + [sym_attributed_statement] = STATE(251), + [sym_statement] = STATE(254), + [sym_labeled_statement] = STATE(251), + [sym_expression_statement] = STATE(251), + [sym_if_statement] = STATE(251), + [sym_switch_statement] = STATE(251), + [sym_case_statement] = STATE(251), + [sym_while_statement] = STATE(251), + [sym_do_statement] = STATE(251), + [sym_for_statement] = STATE(251), + [sym_return_statement] = STATE(251), + [sym_break_statement] = STATE(251), + [sym_continue_statement] = STATE(251), + [sym_goto_statement] = STATE(251), + [sym_seh_try_statement] = STATE(251), + [sym_seh_leave_statement] = STATE(251), + [sym_expression] = STATE(1615), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3118), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(457), + [sym_identifier] = ACTIONS(1707), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -73621,25 +70251,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym___extension__] = ACTIONS(1995), - [anon_sym_signed] = ACTIONS(1997), - [anon_sym_unsigned] = ACTIONS(1997), - [anon_sym_long] = ACTIONS(1997), - [anon_sym_short] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_constexpr] = ACTIONS(1995), - [anon_sym_volatile] = ACTIONS(1995), - [anon_sym_restrict] = ACTIONS(1995), - [anon_sym___restrict__] = ACTIONS(1995), - [anon_sym__Atomic] = ACTIONS(1995), - [anon_sym__Noreturn] = ACTIONS(1995), - [anon_sym_noreturn] = ACTIONS(1995), - [anon_sym_alignas] = ACTIONS(1999), - [anon_sym__Alignas] = ACTIONS(1999), - [sym_primitive_type] = ACTIONS(2001), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_struct] = ACTIONS(2005), - [anon_sym_union] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_if] = ACTIONS(67), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_case] = ACTIONS(71), + [anon_sym_default] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_do] = ACTIONS(77), + [anon_sym_for] = ACTIONS(79), + [anon_sym_return] = ACTIONS(81), + [anon_sym_break] = ACTIONS(83), + [anon_sym_continue] = ACTIONS(85), + [anon_sym_goto] = ACTIONS(87), + [anon_sym___try] = ACTIONS(968), + [anon_sym___leave] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -73669,43 +70296,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [477] = { - [sym_type_qualifier] = STATE(1517), - [sym_alignas_qualifier] = STATE(1671), - [sym_type_specifier] = STATE(1678), - [sym_sized_type_specifier] = STATE(1984), - [sym_enum_specifier] = STATE(1984), - [sym_struct_specifier] = STATE(1984), - [sym_union_specifier] = STATE(1984), - [sym_expression] = STATE(1558), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3398), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_type_descriptor] = STATE(3070), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1984), - [aux_sym__type_definition_type_repeat1] = STATE(1517), - [aux_sym_sized_type_specifier_repeat1] = STATE(1712), - [sym_identifier] = ACTIONS(1993), + [440] = { + [sym_attribute_declaration] = STATE(445), + [sym_compound_statement] = STATE(223), + [sym_attributed_statement] = STATE(223), + [sym_statement] = STATE(228), + [sym_labeled_statement] = STATE(223), + [sym_expression_statement] = STATE(223), + [sym_if_statement] = STATE(223), + [sym_switch_statement] = STATE(223), + [sym_case_statement] = STATE(223), + [sym_while_statement] = STATE(223), + [sym_do_statement] = STATE(223), + [sym_for_statement] = STATE(223), + [sym_return_statement] = STATE(223), + [sym_break_statement] = STATE(223), + [sym_continue_statement] = STATE(223), + [sym_goto_statement] = STATE(223), + [sym_seh_try_statement] = STATE(223), + [sym_seh_leave_statement] = STATE(223), + [sym_expression] = STATE(1613), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3217), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(445), + [sym_identifier] = ACTIONS(1603), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -73714,25 +70349,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym___extension__] = ACTIONS(1995), - [anon_sym_signed] = ACTIONS(1997), - [anon_sym_unsigned] = ACTIONS(1997), - [anon_sym_long] = ACTIONS(1997), - [anon_sym_short] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_constexpr] = ACTIONS(1995), - [anon_sym_volatile] = ACTIONS(1995), - [anon_sym_restrict] = ACTIONS(1995), - [anon_sym___restrict__] = ACTIONS(1995), - [anon_sym__Atomic] = ACTIONS(1995), - [anon_sym__Noreturn] = ACTIONS(1995), - [anon_sym_noreturn] = ACTIONS(1995), - [anon_sym_alignas] = ACTIONS(1999), - [anon_sym__Alignas] = ACTIONS(1999), - [sym_primitive_type] = ACTIONS(2001), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_struct] = ACTIONS(2005), - [anon_sym_union] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(625), + [anon_sym_if] = ACTIONS(627), + [anon_sym_switch] = ACTIONS(629), + [anon_sym_case] = ACTIONS(631), + [anon_sym_default] = ACTIONS(633), + [anon_sym_while] = ACTIONS(635), + [anon_sym_do] = ACTIONS(637), + [anon_sym_for] = ACTIONS(639), + [anon_sym_return] = ACTIONS(641), + [anon_sym_break] = ACTIONS(643), + [anon_sym_continue] = ACTIONS(645), + [anon_sym_goto] = ACTIONS(647), + [anon_sym___try] = ACTIONS(649), + [anon_sym___leave] = ACTIONS(651), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -73762,43 +70394,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [478] = { - [sym_type_qualifier] = STATE(1517), - [sym_alignas_qualifier] = STATE(1671), - [sym_type_specifier] = STATE(1678), - [sym_sized_type_specifier] = STATE(1984), - [sym_enum_specifier] = STATE(1984), - [sym_struct_specifier] = STATE(1984), - [sym_union_specifier] = STATE(1984), - [sym_expression] = STATE(1592), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3239), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_type_descriptor] = STATE(3007), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1984), - [aux_sym__type_definition_type_repeat1] = STATE(1517), - [aux_sym_sized_type_specifier_repeat1] = STATE(1712), - [sym_identifier] = ACTIONS(1993), + [441] = { + [sym_attribute_declaration] = STATE(440), + [sym_compound_statement] = STATE(223), + [sym_attributed_statement] = STATE(223), + [sym_statement] = STATE(256), + [sym_labeled_statement] = STATE(223), + [sym_expression_statement] = STATE(223), + [sym_if_statement] = STATE(223), + [sym_switch_statement] = STATE(223), + [sym_case_statement] = STATE(223), + [sym_while_statement] = STATE(223), + [sym_do_statement] = STATE(223), + [sym_for_statement] = STATE(223), + [sym_return_statement] = STATE(223), + [sym_break_statement] = STATE(223), + [sym_continue_statement] = STATE(223), + [sym_goto_statement] = STATE(223), + [sym_seh_try_statement] = STATE(223), + [sym_seh_leave_statement] = STATE(223), + [sym_expression] = STATE(1613), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3217), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(1603), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -73807,25 +70447,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym___extension__] = ACTIONS(1995), - [anon_sym_signed] = ACTIONS(1997), - [anon_sym_unsigned] = ACTIONS(1997), - [anon_sym_long] = ACTIONS(1997), - [anon_sym_short] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_constexpr] = ACTIONS(1995), - [anon_sym_volatile] = ACTIONS(1995), - [anon_sym_restrict] = ACTIONS(1995), - [anon_sym___restrict__] = ACTIONS(1995), - [anon_sym__Atomic] = ACTIONS(1995), - [anon_sym__Noreturn] = ACTIONS(1995), - [anon_sym_noreturn] = ACTIONS(1995), - [anon_sym_alignas] = ACTIONS(1999), - [anon_sym__Alignas] = ACTIONS(1999), - [sym_primitive_type] = ACTIONS(2001), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_struct] = ACTIONS(2005), - [anon_sym_union] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(625), + [anon_sym_if] = ACTIONS(627), + [anon_sym_switch] = ACTIONS(629), + [anon_sym_case] = ACTIONS(631), + [anon_sym_default] = ACTIONS(633), + [anon_sym_while] = ACTIONS(635), + [anon_sym_do] = ACTIONS(637), + [anon_sym_for] = ACTIONS(639), + [anon_sym_return] = ACTIONS(641), + [anon_sym_break] = ACTIONS(643), + [anon_sym_continue] = ACTIONS(645), + [anon_sym_goto] = ACTIONS(647), + [anon_sym___try] = ACTIONS(649), + [anon_sym___leave] = ACTIONS(651), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -73855,43 +70492,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [479] = { - [sym_type_qualifier] = STATE(1517), - [sym_alignas_qualifier] = STATE(1671), - [sym_type_specifier] = STATE(1678), - [sym_sized_type_specifier] = STATE(1984), - [sym_enum_specifier] = STATE(1984), - [sym_struct_specifier] = STATE(1984), - [sym_union_specifier] = STATE(1984), - [sym_expression] = STATE(1571), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3181), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_type_descriptor] = STATE(3149), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1984), - [aux_sym__type_definition_type_repeat1] = STATE(1517), - [aux_sym_sized_type_specifier_repeat1] = STATE(1712), - [sym_identifier] = ACTIONS(1993), + [442] = { + [sym_attribute_declaration] = STATE(442), + [sym_compound_statement] = STATE(170), + [sym_attributed_statement] = STATE(170), + [sym_statement] = STATE(250), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_seh_try_statement] = STATE(170), + [sym_seh_leave_statement] = STATE(170), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(442), + [sym_identifier] = ACTIONS(1749), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1614), + [anon_sym_BANG] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1755), + [anon_sym_if] = ACTIONS(1758), + [anon_sym_switch] = ACTIONS(1761), + [anon_sym_case] = ACTIONS(1764), + [anon_sym_default] = ACTIONS(1767), + [anon_sym_while] = ACTIONS(1770), + [anon_sym_do] = ACTIONS(1773), + [anon_sym_for] = ACTIONS(1776), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1782), + [anon_sym_continue] = ACTIONS(1785), + [anon_sym_goto] = ACTIONS(1788), + [anon_sym___try] = ACTIONS(1791), + [anon_sym___leave] = ACTIONS(1794), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1677), + [anon_sym___alignof__] = ACTIONS(1680), + [anon_sym___alignof] = ACTIONS(1680), + [anon_sym__alignof] = ACTIONS(1680), + [anon_sym_alignof] = ACTIONS(1680), + [anon_sym__Alignof] = ACTIONS(1680), + [anon_sym_offsetof] = ACTIONS(1683), + [anon_sym__Generic] = ACTIONS(1686), + [anon_sym_asm] = ACTIONS(1689), + [anon_sym___asm__] = ACTIONS(1689), + [sym_number_literal] = ACTIONS(1692), + [anon_sym_L_SQUOTE] = ACTIONS(1695), + [anon_sym_u_SQUOTE] = ACTIONS(1695), + [anon_sym_U_SQUOTE] = ACTIONS(1695), + [anon_sym_u8_SQUOTE] = ACTIONS(1695), + [anon_sym_SQUOTE] = ACTIONS(1695), + [anon_sym_L_DQUOTE] = ACTIONS(1698), + [anon_sym_u_DQUOTE] = ACTIONS(1698), + [anon_sym_U_DQUOTE] = ACTIONS(1698), + [anon_sym_u8_DQUOTE] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [sym_true] = ACTIONS(1701), + [sym_false] = ACTIONS(1701), + [anon_sym_NULL] = ACTIONS(1704), + [anon_sym_nullptr] = ACTIONS(1704), + [sym_comment] = ACTIONS(5), + }, + [443] = { + [sym_attribute_declaration] = STATE(440), + [sym_compound_statement] = STATE(223), + [sym_attributed_statement] = STATE(223), + [sym_statement] = STATE(249), + [sym_labeled_statement] = STATE(223), + [sym_expression_statement] = STATE(223), + [sym_if_statement] = STATE(223), + [sym_switch_statement] = STATE(223), + [sym_case_statement] = STATE(223), + [sym_while_statement] = STATE(223), + [sym_do_statement] = STATE(223), + [sym_for_statement] = STATE(223), + [sym_return_statement] = STATE(223), + [sym_break_statement] = STATE(223), + [sym_continue_statement] = STATE(223), + [sym_goto_statement] = STATE(223), + [sym_seh_try_statement] = STATE(223), + [sym_seh_leave_statement] = STATE(223), + [sym_expression] = STATE(1613), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3217), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(1603), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -73900,25 +70643,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym___extension__] = ACTIONS(1995), - [anon_sym_signed] = ACTIONS(1997), - [anon_sym_unsigned] = ACTIONS(1997), - [anon_sym_long] = ACTIONS(1997), - [anon_sym_short] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_constexpr] = ACTIONS(1995), - [anon_sym_volatile] = ACTIONS(1995), - [anon_sym_restrict] = ACTIONS(1995), - [anon_sym___restrict__] = ACTIONS(1995), - [anon_sym__Atomic] = ACTIONS(1995), - [anon_sym__Noreturn] = ACTIONS(1995), - [anon_sym_noreturn] = ACTIONS(1995), - [anon_sym_alignas] = ACTIONS(1999), - [anon_sym__Alignas] = ACTIONS(1999), - [sym_primitive_type] = ACTIONS(2001), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_struct] = ACTIONS(2005), - [anon_sym_union] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(625), + [anon_sym_if] = ACTIONS(627), + [anon_sym_switch] = ACTIONS(629), + [anon_sym_case] = ACTIONS(631), + [anon_sym_default] = ACTIONS(633), + [anon_sym_while] = ACTIONS(635), + [anon_sym_do] = ACTIONS(637), + [anon_sym_for] = ACTIONS(639), + [anon_sym_return] = ACTIONS(641), + [anon_sym_break] = ACTIONS(643), + [anon_sym_continue] = ACTIONS(645), + [anon_sym_goto] = ACTIONS(647), + [anon_sym___try] = ACTIONS(649), + [anon_sym___leave] = ACTIONS(651), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -73948,43 +70688,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [480] = { - [sym_type_qualifier] = STATE(1517), - [sym_alignas_qualifier] = STATE(1671), - [sym_type_specifier] = STATE(1678), - [sym_sized_type_specifier] = STATE(1984), - [sym_enum_specifier] = STATE(1984), - [sym_struct_specifier] = STATE(1984), - [sym_union_specifier] = STATE(1984), - [sym_expression] = STATE(1558), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3398), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_type_descriptor] = STATE(3264), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1984), - [aux_sym__type_definition_type_repeat1] = STATE(1517), - [aux_sym_sized_type_specifier_repeat1] = STATE(1712), - [sym_identifier] = ACTIONS(1993), + [444] = { + [sym_attribute_declaration] = STATE(462), + [sym_compound_statement] = STATE(2855), + [sym_attributed_statement] = STATE(2855), + [sym_statement] = STATE(3353), + [sym_labeled_statement] = STATE(2855), + [sym_expression_statement] = STATE(2855), + [sym_if_statement] = STATE(2855), + [sym_switch_statement] = STATE(2855), + [sym_case_statement] = STATE(2855), + [sym_while_statement] = STATE(2855), + [sym_do_statement] = STATE(2855), + [sym_for_statement] = STATE(2855), + [sym_return_statement] = STATE(2855), + [sym_break_statement] = STATE(2855), + [sym_continue_statement] = STATE(2855), + [sym_goto_statement] = STATE(2855), + [sym_seh_try_statement] = STATE(2855), + [sym_seh_leave_statement] = STATE(2855), + [sym_expression] = STATE(1602), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3116), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(462), + [sym_identifier] = ACTIONS(1709), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -73993,25 +70741,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym___extension__] = ACTIONS(1995), - [anon_sym_signed] = ACTIONS(1997), - [anon_sym_unsigned] = ACTIONS(1997), - [anon_sym_long] = ACTIONS(1997), - [anon_sym_short] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_constexpr] = ACTIONS(1995), - [anon_sym_volatile] = ACTIONS(1995), - [anon_sym_restrict] = ACTIONS(1995), - [anon_sym___restrict__] = ACTIONS(1995), - [anon_sym__Atomic] = ACTIONS(1995), - [anon_sym__Noreturn] = ACTIONS(1995), - [anon_sym_noreturn] = ACTIONS(1995), - [anon_sym_alignas] = ACTIONS(1999), - [anon_sym__Alignas] = ACTIONS(1999), - [sym_primitive_type] = ACTIONS(2001), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_struct] = ACTIONS(2005), - [anon_sym_union] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_switch] = ACTIONS(1717), + [anon_sym_case] = ACTIONS(1607), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1719), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1723), + [anon_sym_return] = ACTIONS(1725), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1729), + [anon_sym_goto] = ACTIONS(1731), + [anon_sym___try] = ACTIONS(1733), + [anon_sym___leave] = ACTIONS(1735), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -74041,229 +70786,345 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [481] = { - [sym_identifier] = ACTIONS(1266), + [445] = { + [sym_attribute_declaration] = STATE(445), + [sym_compound_statement] = STATE(223), + [sym_attributed_statement] = STATE(223), + [sym_statement] = STATE(228), + [sym_labeled_statement] = STATE(223), + [sym_expression_statement] = STATE(223), + [sym_if_statement] = STATE(223), + [sym_switch_statement] = STATE(223), + [sym_case_statement] = STATE(223), + [sym_while_statement] = STATE(223), + [sym_do_statement] = STATE(223), + [sym_for_statement] = STATE(223), + [sym_return_statement] = STATE(223), + [sym_break_statement] = STATE(223), + [sym_continue_statement] = STATE(223), + [sym_goto_statement] = STATE(223), + [sym_seh_try_statement] = STATE(223), + [sym_seh_leave_statement] = STATE(223), + [sym_expression] = STATE(1613), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3217), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(445), + [sym_identifier] = ACTIONS(1797), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1614), + [anon_sym_BANG] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1803), + [anon_sym_if] = ACTIONS(1806), + [anon_sym_switch] = ACTIONS(1809), + [anon_sym_case] = ACTIONS(1812), + [anon_sym_default] = ACTIONS(1815), + [anon_sym_while] = ACTIONS(1818), + [anon_sym_do] = ACTIONS(1821), + [anon_sym_for] = ACTIONS(1824), + [anon_sym_return] = ACTIONS(1827), + [anon_sym_break] = ACTIONS(1830), + [anon_sym_continue] = ACTIONS(1833), + [anon_sym_goto] = ACTIONS(1836), + [anon_sym___try] = ACTIONS(1839), + [anon_sym___leave] = ACTIONS(1842), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1677), + [anon_sym___alignof__] = ACTIONS(1680), + [anon_sym___alignof] = ACTIONS(1680), + [anon_sym__alignof] = ACTIONS(1680), + [anon_sym_alignof] = ACTIONS(1680), + [anon_sym__Alignof] = ACTIONS(1680), + [anon_sym_offsetof] = ACTIONS(1683), + [anon_sym__Generic] = ACTIONS(1686), + [anon_sym_asm] = ACTIONS(1689), + [anon_sym___asm__] = ACTIONS(1689), + [sym_number_literal] = ACTIONS(1692), + [anon_sym_L_SQUOTE] = ACTIONS(1695), + [anon_sym_u_SQUOTE] = ACTIONS(1695), + [anon_sym_U_SQUOTE] = ACTIONS(1695), + [anon_sym_u8_SQUOTE] = ACTIONS(1695), + [anon_sym_SQUOTE] = ACTIONS(1695), + [anon_sym_L_DQUOTE] = ACTIONS(1698), + [anon_sym_u_DQUOTE] = ACTIONS(1698), + [anon_sym_U_DQUOTE] = ACTIONS(1698), + [anon_sym_u8_DQUOTE] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [sym_true] = ACTIONS(1701), + [sym_false] = ACTIONS(1701), + [anon_sym_NULL] = ACTIONS(1704), + [anon_sym_nullptr] = ACTIONS(1704), + [sym_comment] = ACTIONS(5), + }, + [446] = { + [sym_attribute_declaration] = STATE(452), + [sym_compound_statement] = STATE(170), + [sym_attributed_statement] = STATE(170), + [sym_statement] = STATE(274), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_seh_try_statement] = STATE(170), + [sym_seh_leave_statement] = STATE(170), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [sym_identifier] = ACTIONS(1747), [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1268), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_TILDE] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1268), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym___extension__] = ACTIONS(1266), - [anon_sym_typedef] = ACTIONS(1266), - [anon_sym_extern] = ACTIONS(1266), - [anon_sym___attribute__] = ACTIONS(1266), - [anon_sym___scanf] = ACTIONS(1266), - [anon_sym___printf] = ACTIONS(1266), - [anon_sym___read_mostly] = ACTIONS(1266), - [anon_sym___must_hold] = ACTIONS(1266), - [anon_sym___ro_after_init] = ACTIONS(1266), - [anon_sym___noreturn] = ACTIONS(1266), - [anon_sym___cold] = ACTIONS(1266), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1268), - [anon_sym___declspec] = ACTIONS(1266), - [anon_sym_LBRACE] = ACTIONS(1268), - [anon_sym_signed] = ACTIONS(1266), - [anon_sym_unsigned] = ACTIONS(1266), - [anon_sym_long] = ACTIONS(1266), - [anon_sym_short] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(1266), - [anon_sym_auto] = ACTIONS(1266), - [anon_sym_register] = ACTIONS(1266), - [anon_sym_inline] = ACTIONS(1266), - [anon_sym___inline] = ACTIONS(1266), - [anon_sym___inline__] = ACTIONS(1266), - [anon_sym___forceinline] = ACTIONS(1266), - [anon_sym_thread_local] = ACTIONS(1266), - [anon_sym___thread] = ACTIONS(1266), - [anon_sym_const] = ACTIONS(1266), - [anon_sym_constexpr] = ACTIONS(1266), - [anon_sym_volatile] = ACTIONS(1266), - [anon_sym_restrict] = ACTIONS(1266), - [anon_sym___restrict__] = ACTIONS(1266), - [anon_sym__Atomic] = ACTIONS(1266), - [anon_sym__Noreturn] = ACTIONS(1266), - [anon_sym_noreturn] = ACTIONS(1266), - [anon_sym_alignas] = ACTIONS(1266), - [anon_sym__Alignas] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(1266), - [anon_sym_enum] = ACTIONS(1266), - [anon_sym_struct] = ACTIONS(1266), - [anon_sym_union] = ACTIONS(1266), - [anon_sym_if] = ACTIONS(1266), - [anon_sym_else] = ACTIONS(1266), - [anon_sym_switch] = ACTIONS(1266), - [anon_sym_while] = ACTIONS(1266), - [anon_sym_do] = ACTIONS(1266), - [anon_sym_for] = ACTIONS(1266), - [anon_sym_return] = ACTIONS(1266), - [anon_sym_break] = ACTIONS(1266), - [anon_sym_continue] = ACTIONS(1266), - [anon_sym_goto] = ACTIONS(1266), - [anon_sym___try] = ACTIONS(1266), - [anon_sym___leave] = ACTIONS(1266), - [anon_sym_DASH_DASH] = ACTIONS(1268), - [anon_sym_PLUS_PLUS] = ACTIONS(1268), - [anon_sym_sizeof] = ACTIONS(1266), - [anon_sym___alignof__] = ACTIONS(1266), - [anon_sym___alignof] = ACTIONS(1266), - [anon_sym__alignof] = ACTIONS(1266), - [anon_sym_alignof] = ACTIONS(1266), - [anon_sym__Alignof] = ACTIONS(1266), - [anon_sym_offsetof] = ACTIONS(1266), - [anon_sym__Generic] = ACTIONS(1266), - [anon_sym_asm] = ACTIONS(1266), - [anon_sym___asm__] = ACTIONS(1266), - [sym_number_literal] = ACTIONS(1268), - [anon_sym_L_SQUOTE] = ACTIONS(1268), - [anon_sym_u_SQUOTE] = ACTIONS(1268), - [anon_sym_U_SQUOTE] = ACTIONS(1268), - [anon_sym_u8_SQUOTE] = ACTIONS(1268), - [anon_sym_SQUOTE] = ACTIONS(1268), - [anon_sym_L_DQUOTE] = ACTIONS(1268), - [anon_sym_u_DQUOTE] = ACTIONS(1268), - [anon_sym_U_DQUOTE] = ACTIONS(1268), - [anon_sym_u8_DQUOTE] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1268), - [sym_true] = ACTIONS(1266), - [sym_false] = ACTIONS(1266), - [anon_sym_NULL] = ACTIONS(1266), - [anon_sym_nullptr] = ACTIONS(1266), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(385), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_if] = ACTIONS(397), + [anon_sym_switch] = ACTIONS(399), + [anon_sym_case] = ACTIONS(401), + [anon_sym_default] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_for] = ACTIONS(409), + [anon_sym_return] = ACTIONS(411), + [anon_sym_break] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_goto] = ACTIONS(417), + [anon_sym___try] = ACTIONS(419), + [anon_sym___leave] = ACTIONS(421), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [482] = { - [sym_identifier] = ACTIONS(1234), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym___extension__] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym___attribute__] = ACTIONS(1234), - [anon_sym___scanf] = ACTIONS(1234), - [anon_sym___printf] = ACTIONS(1234), - [anon_sym___read_mostly] = ACTIONS(1234), - [anon_sym___must_hold] = ACTIONS(1234), - [anon_sym___ro_after_init] = ACTIONS(1234), - [anon_sym___noreturn] = ACTIONS(1234), - [anon_sym___cold] = ACTIONS(1234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), - [anon_sym___declspec] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_signed] = ACTIONS(1234), - [anon_sym_unsigned] = ACTIONS(1234), - [anon_sym_long] = ACTIONS(1234), - [anon_sym_short] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_auto] = ACTIONS(1234), - [anon_sym_register] = ACTIONS(1234), - [anon_sym_inline] = ACTIONS(1234), - [anon_sym___inline] = ACTIONS(1234), - [anon_sym___inline__] = ACTIONS(1234), - [anon_sym___forceinline] = ACTIONS(1234), - [anon_sym_thread_local] = ACTIONS(1234), - [anon_sym___thread] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_constexpr] = ACTIONS(1234), - [anon_sym_volatile] = ACTIONS(1234), - [anon_sym_restrict] = ACTIONS(1234), - [anon_sym___restrict__] = ACTIONS(1234), - [anon_sym__Atomic] = ACTIONS(1234), - [anon_sym__Noreturn] = ACTIONS(1234), - [anon_sym_noreturn] = ACTIONS(1234), - [anon_sym_alignas] = ACTIONS(1234), - [anon_sym__Alignas] = ACTIONS(1234), - [sym_primitive_type] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [anon_sym_switch] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_goto] = ACTIONS(1234), - [anon_sym___try] = ACTIONS(1234), - [anon_sym___leave] = ACTIONS(1234), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_sizeof] = ACTIONS(1234), - [anon_sym___alignof__] = ACTIONS(1234), - [anon_sym___alignof] = ACTIONS(1234), - [anon_sym__alignof] = ACTIONS(1234), - [anon_sym_alignof] = ACTIONS(1234), - [anon_sym__Alignof] = ACTIONS(1234), - [anon_sym_offsetof] = ACTIONS(1234), - [anon_sym__Generic] = ACTIONS(1234), - [anon_sym_asm] = ACTIONS(1234), - [anon_sym___asm__] = ACTIONS(1234), - [sym_number_literal] = ACTIONS(1236), - [anon_sym_L_SQUOTE] = ACTIONS(1236), - [anon_sym_u_SQUOTE] = ACTIONS(1236), - [anon_sym_U_SQUOTE] = ACTIONS(1236), - [anon_sym_u8_SQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_L_DQUOTE] = ACTIONS(1236), - [anon_sym_u_DQUOTE] = ACTIONS(1236), - [anon_sym_U_DQUOTE] = ACTIONS(1236), - [anon_sym_u8_DQUOTE] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1236), - [sym_true] = ACTIONS(1234), - [sym_false] = ACTIONS(1234), - [anon_sym_NULL] = ACTIONS(1234), - [anon_sym_nullptr] = ACTIONS(1234), + [447] = { + [sym_attribute_declaration] = STATE(440), + [sym_compound_statement] = STATE(223), + [sym_attributed_statement] = STATE(223), + [sym_statement] = STATE(238), + [sym_labeled_statement] = STATE(223), + [sym_expression_statement] = STATE(223), + [sym_if_statement] = STATE(223), + [sym_switch_statement] = STATE(223), + [sym_case_statement] = STATE(223), + [sym_while_statement] = STATE(223), + [sym_do_statement] = STATE(223), + [sym_for_statement] = STATE(223), + [sym_return_statement] = STATE(223), + [sym_break_statement] = STATE(223), + [sym_continue_statement] = STATE(223), + [sym_goto_statement] = STATE(223), + [sym_seh_try_statement] = STATE(223), + [sym_seh_leave_statement] = STATE(223), + [sym_expression] = STATE(1613), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3217), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(1603), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(625), + [anon_sym_if] = ACTIONS(627), + [anon_sym_switch] = ACTIONS(629), + [anon_sym_case] = ACTIONS(631), + [anon_sym_default] = ACTIONS(633), + [anon_sym_while] = ACTIONS(635), + [anon_sym_do] = ACTIONS(637), + [anon_sym_for] = ACTIONS(639), + [anon_sym_return] = ACTIONS(641), + [anon_sym_break] = ACTIONS(643), + [anon_sym_continue] = ACTIONS(645), + [anon_sym_goto] = ACTIONS(647), + [anon_sym___try] = ACTIONS(649), + [anon_sym___leave] = ACTIONS(651), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [483] = { - [sym_type_qualifier] = STATE(1517), - [sym_alignas_qualifier] = STATE(1671), - [sym_type_specifier] = STATE(1678), - [sym_sized_type_specifier] = STATE(1984), - [sym_enum_specifier] = STATE(1984), - [sym_struct_specifier] = STATE(1984), - [sym_union_specifier] = STATE(1984), - [sym_expression] = STATE(1571), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3181), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_type_descriptor] = STATE(2975), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1984), - [aux_sym__type_definition_type_repeat1] = STATE(1517), - [aux_sym_sized_type_specifier_repeat1] = STATE(1712), - [sym_identifier] = ACTIONS(1993), + [448] = { + [sym_attribute_declaration] = STATE(440), + [sym_compound_statement] = STATE(223), + [sym_attributed_statement] = STATE(223), + [sym_statement] = STATE(235), + [sym_labeled_statement] = STATE(223), + [sym_expression_statement] = STATE(223), + [sym_if_statement] = STATE(223), + [sym_switch_statement] = STATE(223), + [sym_case_statement] = STATE(223), + [sym_while_statement] = STATE(223), + [sym_do_statement] = STATE(223), + [sym_for_statement] = STATE(223), + [sym_return_statement] = STATE(223), + [sym_break_statement] = STATE(223), + [sym_continue_statement] = STATE(223), + [sym_goto_statement] = STATE(223), + [sym_seh_try_statement] = STATE(223), + [sym_seh_leave_statement] = STATE(223), + [sym_expression] = STATE(1613), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3217), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(1603), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -74272,25 +71133,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym___extension__] = ACTIONS(1995), - [anon_sym_signed] = ACTIONS(1997), - [anon_sym_unsigned] = ACTIONS(1997), - [anon_sym_long] = ACTIONS(1997), - [anon_sym_short] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_constexpr] = ACTIONS(1995), - [anon_sym_volatile] = ACTIONS(1995), - [anon_sym_restrict] = ACTIONS(1995), - [anon_sym___restrict__] = ACTIONS(1995), - [anon_sym__Atomic] = ACTIONS(1995), - [anon_sym__Noreturn] = ACTIONS(1995), - [anon_sym_noreturn] = ACTIONS(1995), - [anon_sym_alignas] = ACTIONS(1999), - [anon_sym__Alignas] = ACTIONS(1999), - [sym_primitive_type] = ACTIONS(2001), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_struct] = ACTIONS(2005), - [anon_sym_union] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(625), + [anon_sym_if] = ACTIONS(627), + [anon_sym_switch] = ACTIONS(629), + [anon_sym_case] = ACTIONS(631), + [anon_sym_default] = ACTIONS(633), + [anon_sym_while] = ACTIONS(635), + [anon_sym_do] = ACTIONS(637), + [anon_sym_for] = ACTIONS(639), + [anon_sym_return] = ACTIONS(641), + [anon_sym_break] = ACTIONS(643), + [anon_sym_continue] = ACTIONS(645), + [anon_sym_goto] = ACTIONS(647), + [anon_sym___try] = ACTIONS(649), + [anon_sym___leave] = ACTIONS(651), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -74320,322 +71178,345 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [484] = { - [sym_identifier] = ACTIONS(1234), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym___extension__] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym___attribute__] = ACTIONS(1234), - [anon_sym___scanf] = ACTIONS(1234), - [anon_sym___printf] = ACTIONS(1234), - [anon_sym___read_mostly] = ACTIONS(1234), - [anon_sym___must_hold] = ACTIONS(1234), - [anon_sym___ro_after_init] = ACTIONS(1234), - [anon_sym___noreturn] = ACTIONS(1234), - [anon_sym___cold] = ACTIONS(1234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), - [anon_sym___declspec] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_signed] = ACTIONS(1234), - [anon_sym_unsigned] = ACTIONS(1234), - [anon_sym_long] = ACTIONS(1234), - [anon_sym_short] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_auto] = ACTIONS(1234), - [anon_sym_register] = ACTIONS(1234), - [anon_sym_inline] = ACTIONS(1234), - [anon_sym___inline] = ACTIONS(1234), - [anon_sym___inline__] = ACTIONS(1234), - [anon_sym___forceinline] = ACTIONS(1234), - [anon_sym_thread_local] = ACTIONS(1234), - [anon_sym___thread] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_constexpr] = ACTIONS(1234), - [anon_sym_volatile] = ACTIONS(1234), - [anon_sym_restrict] = ACTIONS(1234), - [anon_sym___restrict__] = ACTIONS(1234), - [anon_sym__Atomic] = ACTIONS(1234), - [anon_sym__Noreturn] = ACTIONS(1234), - [anon_sym_noreturn] = ACTIONS(1234), - [anon_sym_alignas] = ACTIONS(1234), - [anon_sym__Alignas] = ACTIONS(1234), - [sym_primitive_type] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [anon_sym_switch] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_goto] = ACTIONS(1234), - [anon_sym___try] = ACTIONS(1234), - [anon_sym___leave] = ACTIONS(1234), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_sizeof] = ACTIONS(1234), - [anon_sym___alignof__] = ACTIONS(1234), - [anon_sym___alignof] = ACTIONS(1234), - [anon_sym__alignof] = ACTIONS(1234), - [anon_sym_alignof] = ACTIONS(1234), - [anon_sym__Alignof] = ACTIONS(1234), - [anon_sym_offsetof] = ACTIONS(1234), - [anon_sym__Generic] = ACTIONS(1234), - [anon_sym_asm] = ACTIONS(1234), - [anon_sym___asm__] = ACTIONS(1234), - [sym_number_literal] = ACTIONS(1236), - [anon_sym_L_SQUOTE] = ACTIONS(1236), - [anon_sym_u_SQUOTE] = ACTIONS(1236), - [anon_sym_U_SQUOTE] = ACTIONS(1236), - [anon_sym_u8_SQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_L_DQUOTE] = ACTIONS(1236), - [anon_sym_u_DQUOTE] = ACTIONS(1236), - [anon_sym_U_DQUOTE] = ACTIONS(1236), - [anon_sym_u8_DQUOTE] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1236), - [sym_true] = ACTIONS(1234), - [sym_false] = ACTIONS(1234), - [anon_sym_NULL] = ACTIONS(1234), - [anon_sym_nullptr] = ACTIONS(1234), + [449] = { + [sym_attribute_declaration] = STATE(452), + [sym_compound_statement] = STATE(170), + [sym_attributed_statement] = STATE(170), + [sym_statement] = STATE(271), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_seh_try_statement] = STATE(170), + [sym_seh_leave_statement] = STATE(170), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [sym_identifier] = ACTIONS(1747), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(385), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_if] = ACTIONS(397), + [anon_sym_switch] = ACTIONS(399), + [anon_sym_case] = ACTIONS(401), + [anon_sym_default] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_for] = ACTIONS(409), + [anon_sym_return] = ACTIONS(411), + [anon_sym_break] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_goto] = ACTIONS(417), + [anon_sym___try] = ACTIONS(419), + [anon_sym___leave] = ACTIONS(421), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [485] = { - [sym_identifier] = ACTIONS(1250), + [450] = { + [sym_attribute_declaration] = STATE(452), + [sym_compound_statement] = STATE(170), + [sym_attributed_statement] = STATE(170), + [sym_statement] = STATE(168), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_seh_try_statement] = STATE(170), + [sym_seh_leave_statement] = STATE(170), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [sym_identifier] = ACTIONS(1747), [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(1252), - [anon_sym_TILDE] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym___extension__] = ACTIONS(1250), - [anon_sym_typedef] = ACTIONS(1250), - [anon_sym_extern] = ACTIONS(1250), - [anon_sym___attribute__] = ACTIONS(1250), - [anon_sym___scanf] = ACTIONS(1250), - [anon_sym___printf] = ACTIONS(1250), - [anon_sym___read_mostly] = ACTIONS(1250), - [anon_sym___must_hold] = ACTIONS(1250), - [anon_sym___ro_after_init] = ACTIONS(1250), - [anon_sym___noreturn] = ACTIONS(1250), - [anon_sym___cold] = ACTIONS(1250), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), - [anon_sym___declspec] = ACTIONS(1250), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_signed] = ACTIONS(1250), - [anon_sym_unsigned] = ACTIONS(1250), - [anon_sym_long] = ACTIONS(1250), - [anon_sym_short] = ACTIONS(1250), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_auto] = ACTIONS(1250), - [anon_sym_register] = ACTIONS(1250), - [anon_sym_inline] = ACTIONS(1250), - [anon_sym___inline] = ACTIONS(1250), - [anon_sym___inline__] = ACTIONS(1250), - [anon_sym___forceinline] = ACTIONS(1250), - [anon_sym_thread_local] = ACTIONS(1250), - [anon_sym___thread] = ACTIONS(1250), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_constexpr] = ACTIONS(1250), - [anon_sym_volatile] = ACTIONS(1250), - [anon_sym_restrict] = ACTIONS(1250), - [anon_sym___restrict__] = ACTIONS(1250), - [anon_sym__Atomic] = ACTIONS(1250), - [anon_sym__Noreturn] = ACTIONS(1250), - [anon_sym_noreturn] = ACTIONS(1250), - [anon_sym_alignas] = ACTIONS(1250), - [anon_sym__Alignas] = ACTIONS(1250), - [sym_primitive_type] = ACTIONS(1250), - [anon_sym_enum] = ACTIONS(1250), - [anon_sym_struct] = ACTIONS(1250), - [anon_sym_union] = ACTIONS(1250), - [anon_sym_if] = ACTIONS(1250), - [anon_sym_else] = ACTIONS(1250), - [anon_sym_switch] = ACTIONS(1250), - [anon_sym_while] = ACTIONS(1250), - [anon_sym_do] = ACTIONS(1250), - [anon_sym_for] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_break] = ACTIONS(1250), - [anon_sym_continue] = ACTIONS(1250), - [anon_sym_goto] = ACTIONS(1250), - [anon_sym___try] = ACTIONS(1250), - [anon_sym___leave] = ACTIONS(1250), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_sizeof] = ACTIONS(1250), - [anon_sym___alignof__] = ACTIONS(1250), - [anon_sym___alignof] = ACTIONS(1250), - [anon_sym__alignof] = ACTIONS(1250), - [anon_sym_alignof] = ACTIONS(1250), - [anon_sym__Alignof] = ACTIONS(1250), - [anon_sym_offsetof] = ACTIONS(1250), - [anon_sym__Generic] = ACTIONS(1250), - [anon_sym_asm] = ACTIONS(1250), - [anon_sym___asm__] = ACTIONS(1250), - [sym_number_literal] = ACTIONS(1252), - [anon_sym_L_SQUOTE] = ACTIONS(1252), - [anon_sym_u_SQUOTE] = ACTIONS(1252), - [anon_sym_U_SQUOTE] = ACTIONS(1252), - [anon_sym_u8_SQUOTE] = ACTIONS(1252), - [anon_sym_SQUOTE] = ACTIONS(1252), - [anon_sym_L_DQUOTE] = ACTIONS(1252), - [anon_sym_u_DQUOTE] = ACTIONS(1252), - [anon_sym_U_DQUOTE] = ACTIONS(1252), - [anon_sym_u8_DQUOTE] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym_true] = ACTIONS(1250), - [sym_false] = ACTIONS(1250), - [anon_sym_NULL] = ACTIONS(1250), - [anon_sym_nullptr] = ACTIONS(1250), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(385), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_if] = ACTIONS(397), + [anon_sym_switch] = ACTIONS(399), + [anon_sym_case] = ACTIONS(401), + [anon_sym_default] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_for] = ACTIONS(409), + [anon_sym_return] = ACTIONS(411), + [anon_sym_break] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_goto] = ACTIONS(417), + [anon_sym___try] = ACTIONS(419), + [anon_sym___leave] = ACTIONS(421), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [486] = { - [sym_identifier] = ACTIONS(1314), + [451] = { + [sym_attribute_declaration] = STATE(462), + [sym_compound_statement] = STATE(2855), + [sym_attributed_statement] = STATE(2855), + [sym_statement] = STATE(2745), + [sym_labeled_statement] = STATE(2855), + [sym_expression_statement] = STATE(2855), + [sym_if_statement] = STATE(2855), + [sym_switch_statement] = STATE(2855), + [sym_case_statement] = STATE(2855), + [sym_while_statement] = STATE(2855), + [sym_do_statement] = STATE(2855), + [sym_for_statement] = STATE(2855), + [sym_return_statement] = STATE(2855), + [sym_break_statement] = STATE(2855), + [sym_continue_statement] = STATE(2855), + [sym_goto_statement] = STATE(2855), + [sym_seh_try_statement] = STATE(2855), + [sym_seh_leave_statement] = STATE(2855), + [sym_expression] = STATE(1602), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3116), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(462), + [sym_identifier] = ACTIONS(1709), [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym___extension__] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym___attribute__] = ACTIONS(1314), - [anon_sym___scanf] = ACTIONS(1314), - [anon_sym___printf] = ACTIONS(1314), - [anon_sym___read_mostly] = ACTIONS(1314), - [anon_sym___must_hold] = ACTIONS(1314), - [anon_sym___ro_after_init] = ACTIONS(1314), - [anon_sym___noreturn] = ACTIONS(1314), - [anon_sym___cold] = ACTIONS(1314), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), - [anon_sym___declspec] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1314), - [anon_sym_unsigned] = ACTIONS(1314), - [anon_sym_long] = ACTIONS(1314), - [anon_sym_short] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_auto] = ACTIONS(1314), - [anon_sym_register] = ACTIONS(1314), - [anon_sym_inline] = ACTIONS(1314), - [anon_sym___inline] = ACTIONS(1314), - [anon_sym___inline__] = ACTIONS(1314), - [anon_sym___forceinline] = ACTIONS(1314), - [anon_sym_thread_local] = ACTIONS(1314), - [anon_sym___thread] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_constexpr] = ACTIONS(1314), - [anon_sym_volatile] = ACTIONS(1314), - [anon_sym_restrict] = ACTIONS(1314), - [anon_sym___restrict__] = ACTIONS(1314), - [anon_sym__Atomic] = ACTIONS(1314), - [anon_sym__Noreturn] = ACTIONS(1314), - [anon_sym_noreturn] = ACTIONS(1314), - [anon_sym_alignas] = ACTIONS(1314), - [anon_sym__Alignas] = ACTIONS(1314), - [sym_primitive_type] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_else] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_goto] = ACTIONS(1314), - [anon_sym___try] = ACTIONS(1314), - [anon_sym___leave] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1314), - [anon_sym___alignof__] = ACTIONS(1314), - [anon_sym___alignof] = ACTIONS(1314), - [anon_sym__alignof] = ACTIONS(1314), - [anon_sym_alignof] = ACTIONS(1314), - [anon_sym__Alignof] = ACTIONS(1314), - [anon_sym_offsetof] = ACTIONS(1314), - [anon_sym__Generic] = ACTIONS(1314), - [anon_sym_asm] = ACTIONS(1314), - [anon_sym___asm__] = ACTIONS(1314), - [sym_number_literal] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1316), - [anon_sym_u_SQUOTE] = ACTIONS(1316), - [anon_sym_U_SQUOTE] = ACTIONS(1316), - [anon_sym_u8_SQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_L_DQUOTE] = ACTIONS(1316), - [anon_sym_u_DQUOTE] = ACTIONS(1316), - [anon_sym_U_DQUOTE] = ACTIONS(1316), - [anon_sym_u8_DQUOTE] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [anon_sym_NULL] = ACTIONS(1314), - [anon_sym_nullptr] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_switch] = ACTIONS(1717), + [anon_sym_case] = ACTIONS(1607), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1719), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1723), + [anon_sym_return] = ACTIONS(1725), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1729), + [anon_sym_goto] = ACTIONS(1731), + [anon_sym___try] = ACTIONS(1733), + [anon_sym___leave] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [487] = { - [sym_type_qualifier] = STATE(1517), - [sym_alignas_qualifier] = STATE(1671), - [sym_type_specifier] = STATE(1678), - [sym_sized_type_specifier] = STATE(1984), - [sym_enum_specifier] = STATE(1984), - [sym_struct_specifier] = STATE(1984), - [sym_union_specifier] = STATE(1984), - [sym_expression] = STATE(1592), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3239), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_type_descriptor] = STATE(3364), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1984), - [aux_sym__type_definition_type_repeat1] = STATE(1517), - [aux_sym_sized_type_specifier_repeat1] = STATE(1712), - [sym_identifier] = ACTIONS(1993), + [452] = { + [sym_attribute_declaration] = STATE(442), + [sym_compound_statement] = STATE(170), + [sym_attributed_statement] = STATE(170), + [sym_statement] = STATE(250), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_seh_try_statement] = STATE(170), + [sym_seh_leave_statement] = STATE(170), + [sym_expression] = STATE(1631), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3351), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(442), + [sym_identifier] = ACTIONS(1747), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -74644,25 +71525,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym___extension__] = ACTIONS(1995), - [anon_sym_signed] = ACTIONS(1997), - [anon_sym_unsigned] = ACTIONS(1997), - [anon_sym_long] = ACTIONS(1997), - [anon_sym_short] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_constexpr] = ACTIONS(1995), - [anon_sym_volatile] = ACTIONS(1995), - [anon_sym_restrict] = ACTIONS(1995), - [anon_sym___restrict__] = ACTIONS(1995), - [anon_sym__Atomic] = ACTIONS(1995), - [anon_sym__Noreturn] = ACTIONS(1995), - [anon_sym_noreturn] = ACTIONS(1995), - [anon_sym_alignas] = ACTIONS(1999), - [anon_sym__Alignas] = ACTIONS(1999), - [sym_primitive_type] = ACTIONS(2001), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_struct] = ACTIONS(2005), - [anon_sym_union] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(385), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_if] = ACTIONS(397), + [anon_sym_switch] = ACTIONS(399), + [anon_sym_case] = ACTIONS(401), + [anon_sym_default] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_for] = ACTIONS(409), + [anon_sym_return] = ACTIONS(411), + [anon_sym_break] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_goto] = ACTIONS(417), + [anon_sym___try] = ACTIONS(419), + [anon_sym___leave] = ACTIONS(421), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -74692,415 +71570,345 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [488] = { - [sym_identifier] = ACTIONS(1330), + [453] = { + [sym_attribute_declaration] = STATE(458), + [sym_compound_statement] = STATE(89), + [sym_attributed_statement] = STATE(89), + [sym_statement] = STATE(95), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(458), + [sym_identifier] = ACTIONS(1599), [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym___extension__] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym___attribute__] = ACTIONS(1330), - [anon_sym___scanf] = ACTIONS(1330), - [anon_sym___printf] = ACTIONS(1330), - [anon_sym___read_mostly] = ACTIONS(1330), - [anon_sym___must_hold] = ACTIONS(1330), - [anon_sym___ro_after_init] = ACTIONS(1330), - [anon_sym___noreturn] = ACTIONS(1330), - [anon_sym___cold] = ACTIONS(1330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), - [anon_sym___declspec] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1330), - [anon_sym_unsigned] = ACTIONS(1330), - [anon_sym_long] = ACTIONS(1330), - [anon_sym_short] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_auto] = ACTIONS(1330), - [anon_sym_register] = ACTIONS(1330), - [anon_sym_inline] = ACTIONS(1330), - [anon_sym___inline] = ACTIONS(1330), - [anon_sym___inline__] = ACTIONS(1330), - [anon_sym___forceinline] = ACTIONS(1330), - [anon_sym_thread_local] = ACTIONS(1330), - [anon_sym___thread] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_constexpr] = ACTIONS(1330), - [anon_sym_volatile] = ACTIONS(1330), - [anon_sym_restrict] = ACTIONS(1330), - [anon_sym___restrict__] = ACTIONS(1330), - [anon_sym__Atomic] = ACTIONS(1330), - [anon_sym__Noreturn] = ACTIONS(1330), - [anon_sym_noreturn] = ACTIONS(1330), - [anon_sym_alignas] = ACTIONS(1330), - [anon_sym__Alignas] = ACTIONS(1330), - [sym_primitive_type] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_do] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_goto] = ACTIONS(1330), - [anon_sym___try] = ACTIONS(1330), - [anon_sym___leave] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_sizeof] = ACTIONS(1330), - [anon_sym___alignof__] = ACTIONS(1330), - [anon_sym___alignof] = ACTIONS(1330), - [anon_sym__alignof] = ACTIONS(1330), - [anon_sym_alignof] = ACTIONS(1330), - [anon_sym__Alignof] = ACTIONS(1330), - [anon_sym_offsetof] = ACTIONS(1330), - [anon_sym__Generic] = ACTIONS(1330), - [anon_sym_asm] = ACTIONS(1330), - [anon_sym___asm__] = ACTIONS(1330), - [sym_number_literal] = ACTIONS(1332), - [anon_sym_L_SQUOTE] = ACTIONS(1332), - [anon_sym_u_SQUOTE] = ACTIONS(1332), - [anon_sym_U_SQUOTE] = ACTIONS(1332), - [anon_sym_u8_SQUOTE] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_L_DQUOTE] = ACTIONS(1332), - [anon_sym_u_DQUOTE] = ACTIONS(1332), - [anon_sym_U_DQUOTE] = ACTIONS(1332), - [anon_sym_u8_DQUOTE] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_true] = ACTIONS(1330), - [sym_false] = ACTIONS(1330), - [anon_sym_NULL] = ACTIONS(1330), - [anon_sym_nullptr] = ACTIONS(1330), - [sym_comment] = ACTIONS(5), - }, - [489] = { - [sym_identifier] = ACTIONS(1342), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym___extension__] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym___attribute__] = ACTIONS(1342), - [anon_sym___scanf] = ACTIONS(1342), - [anon_sym___printf] = ACTIONS(1342), - [anon_sym___read_mostly] = ACTIONS(1342), - [anon_sym___must_hold] = ACTIONS(1342), - [anon_sym___ro_after_init] = ACTIONS(1342), - [anon_sym___noreturn] = ACTIONS(1342), - [anon_sym___cold] = ACTIONS(1342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), - [anon_sym___declspec] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_signed] = ACTIONS(1342), - [anon_sym_unsigned] = ACTIONS(1342), - [anon_sym_long] = ACTIONS(1342), - [anon_sym_short] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_auto] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_inline] = ACTIONS(1342), - [anon_sym___inline] = ACTIONS(1342), - [anon_sym___inline__] = ACTIONS(1342), - [anon_sym___forceinline] = ACTIONS(1342), - [anon_sym_thread_local] = ACTIONS(1342), - [anon_sym___thread] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_constexpr] = ACTIONS(1342), - [anon_sym_volatile] = ACTIONS(1342), - [anon_sym_restrict] = ACTIONS(1342), - [anon_sym___restrict__] = ACTIONS(1342), - [anon_sym__Atomic] = ACTIONS(1342), - [anon_sym__Noreturn] = ACTIONS(1342), - [anon_sym_noreturn] = ACTIONS(1342), - [anon_sym_alignas] = ACTIONS(1342), - [anon_sym__Alignas] = ACTIONS(1342), - [sym_primitive_type] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_goto] = ACTIONS(1342), - [anon_sym___try] = ACTIONS(1342), - [anon_sym___leave] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_sizeof] = ACTIONS(1342), - [anon_sym___alignof__] = ACTIONS(1342), - [anon_sym___alignof] = ACTIONS(1342), - [anon_sym__alignof] = ACTIONS(1342), - [anon_sym_alignof] = ACTIONS(1342), - [anon_sym__Alignof] = ACTIONS(1342), - [anon_sym_offsetof] = ACTIONS(1342), - [anon_sym__Generic] = ACTIONS(1342), - [anon_sym_asm] = ACTIONS(1342), - [anon_sym___asm__] = ACTIONS(1342), - [sym_number_literal] = ACTIONS(1344), - [anon_sym_L_SQUOTE] = ACTIONS(1344), - [anon_sym_u_SQUOTE] = ACTIONS(1344), - [anon_sym_U_SQUOTE] = ACTIONS(1344), - [anon_sym_u8_SQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_L_DQUOTE] = ACTIONS(1344), - [anon_sym_u_DQUOTE] = ACTIONS(1344), - [anon_sym_U_DQUOTE] = ACTIONS(1344), - [anon_sym_u8_DQUOTE] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [anon_sym_NULL] = ACTIONS(1342), - [anon_sym_nullptr] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(145), + [anon_sym_default] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [490] = { - [sym_identifier] = ACTIONS(1318), + [454] = { + [sym_attribute_declaration] = STATE(462), + [sym_compound_statement] = STATE(2855), + [sym_attributed_statement] = STATE(2855), + [sym_statement] = STATE(2783), + [sym_labeled_statement] = STATE(2855), + [sym_expression_statement] = STATE(2855), + [sym_if_statement] = STATE(2855), + [sym_switch_statement] = STATE(2855), + [sym_case_statement] = STATE(2855), + [sym_while_statement] = STATE(2855), + [sym_do_statement] = STATE(2855), + [sym_for_statement] = STATE(2855), + [sym_return_statement] = STATE(2855), + [sym_break_statement] = STATE(2855), + [sym_continue_statement] = STATE(2855), + [sym_goto_statement] = STATE(2855), + [sym_seh_try_statement] = STATE(2855), + [sym_seh_leave_statement] = STATE(2855), + [sym_expression] = STATE(1602), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3116), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(462), + [sym_identifier] = ACTIONS(1709), [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1318), - [anon_sym___scanf] = ACTIONS(1318), - [anon_sym___printf] = ACTIONS(1318), - [anon_sym___read_mostly] = ACTIONS(1318), - [anon_sym___must_hold] = ACTIONS(1318), - [anon_sym___ro_after_init] = ACTIONS(1318), - [anon_sym___noreturn] = ACTIONS(1318), - [anon_sym___cold] = ACTIONS(1318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), - [anon_sym___declspec] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1318), - [anon_sym_unsigned] = ACTIONS(1318), - [anon_sym_long] = ACTIONS(1318), - [anon_sym_short] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_auto] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1318), - [anon_sym_inline] = ACTIONS(1318), - [anon_sym___inline] = ACTIONS(1318), - [anon_sym___inline__] = ACTIONS(1318), - [anon_sym___forceinline] = ACTIONS(1318), - [anon_sym_thread_local] = ACTIONS(1318), - [anon_sym___thread] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_constexpr] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1318), - [anon_sym_restrict] = ACTIONS(1318), - [anon_sym___restrict__] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1318), - [anon_sym__Noreturn] = ACTIONS(1318), - [anon_sym_noreturn] = ACTIONS(1318), - [anon_sym_alignas] = ACTIONS(1318), - [anon_sym__Alignas] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1318), - [anon_sym___try] = ACTIONS(1318), - [anon_sym___leave] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1318), - [anon_sym___alignof__] = ACTIONS(1318), - [anon_sym___alignof] = ACTIONS(1318), - [anon_sym__alignof] = ACTIONS(1318), - [anon_sym_alignof] = ACTIONS(1318), - [anon_sym__Alignof] = ACTIONS(1318), - [anon_sym_offsetof] = ACTIONS(1318), - [anon_sym__Generic] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1318), - [anon_sym___asm__] = ACTIONS(1318), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_L_SQUOTE] = ACTIONS(1320), - [anon_sym_u_SQUOTE] = ACTIONS(1320), - [anon_sym_U_SQUOTE] = ACTIONS(1320), - [anon_sym_u8_SQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_L_DQUOTE] = ACTIONS(1320), - [anon_sym_u_DQUOTE] = ACTIONS(1320), - [anon_sym_U_DQUOTE] = ACTIONS(1320), - [anon_sym_u8_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [anon_sym_NULL] = ACTIONS(1318), - [anon_sym_nullptr] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_switch] = ACTIONS(1717), + [anon_sym_case] = ACTIONS(1607), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1719), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1723), + [anon_sym_return] = ACTIONS(1725), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1729), + [anon_sym_goto] = ACTIONS(1731), + [anon_sym___try] = ACTIONS(1733), + [anon_sym___leave] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [491] = { - [sym_identifier] = ACTIONS(1346), + [455] = { + [sym_attribute_declaration] = STATE(462), + [sym_compound_statement] = STATE(2855), + [sym_attributed_statement] = STATE(2855), + [sym_statement] = STATE(2780), + [sym_labeled_statement] = STATE(2855), + [sym_expression_statement] = STATE(2855), + [sym_if_statement] = STATE(2855), + [sym_switch_statement] = STATE(2855), + [sym_case_statement] = STATE(2855), + [sym_while_statement] = STATE(2855), + [sym_do_statement] = STATE(2855), + [sym_for_statement] = STATE(2855), + [sym_return_statement] = STATE(2855), + [sym_break_statement] = STATE(2855), + [sym_continue_statement] = STATE(2855), + [sym_goto_statement] = STATE(2855), + [sym_seh_try_statement] = STATE(2855), + [sym_seh_leave_statement] = STATE(2855), + [sym_expression] = STATE(1602), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3116), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(462), + [sym_identifier] = ACTIONS(1709), [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_TILDE] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym___extension__] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym___attribute__] = ACTIONS(1346), - [anon_sym___scanf] = ACTIONS(1346), - [anon_sym___printf] = ACTIONS(1346), - [anon_sym___read_mostly] = ACTIONS(1346), - [anon_sym___must_hold] = ACTIONS(1346), - [anon_sym___ro_after_init] = ACTIONS(1346), - [anon_sym___noreturn] = ACTIONS(1346), - [anon_sym___cold] = ACTIONS(1346), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), - [anon_sym___declspec] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1346), - [anon_sym_unsigned] = ACTIONS(1346), - [anon_sym_long] = ACTIONS(1346), - [anon_sym_short] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_auto] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_inline] = ACTIONS(1346), - [anon_sym___inline] = ACTIONS(1346), - [anon_sym___inline__] = ACTIONS(1346), - [anon_sym___forceinline] = ACTIONS(1346), - [anon_sym_thread_local] = ACTIONS(1346), - [anon_sym___thread] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_constexpr] = ACTIONS(1346), - [anon_sym_volatile] = ACTIONS(1346), - [anon_sym_restrict] = ACTIONS(1346), - [anon_sym___restrict__] = ACTIONS(1346), - [anon_sym__Atomic] = ACTIONS(1346), - [anon_sym__Noreturn] = ACTIONS(1346), - [anon_sym_noreturn] = ACTIONS(1346), - [anon_sym_alignas] = ACTIONS(1346), - [anon_sym__Alignas] = ACTIONS(1346), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_goto] = ACTIONS(1346), - [anon_sym___try] = ACTIONS(1346), - [anon_sym___leave] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_sizeof] = ACTIONS(1346), - [anon_sym___alignof__] = ACTIONS(1346), - [anon_sym___alignof] = ACTIONS(1346), - [anon_sym__alignof] = ACTIONS(1346), - [anon_sym_alignof] = ACTIONS(1346), - [anon_sym__Alignof] = ACTIONS(1346), - [anon_sym_offsetof] = ACTIONS(1346), - [anon_sym__Generic] = ACTIONS(1346), - [anon_sym_asm] = ACTIONS(1346), - [anon_sym___asm__] = ACTIONS(1346), - [sym_number_literal] = ACTIONS(1348), - [anon_sym_L_SQUOTE] = ACTIONS(1348), - [anon_sym_u_SQUOTE] = ACTIONS(1348), - [anon_sym_U_SQUOTE] = ACTIONS(1348), - [anon_sym_u8_SQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_L_DQUOTE] = ACTIONS(1348), - [anon_sym_u_DQUOTE] = ACTIONS(1348), - [anon_sym_U_DQUOTE] = ACTIONS(1348), - [anon_sym_u8_DQUOTE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [anon_sym_NULL] = ACTIONS(1346), - [anon_sym_nullptr] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_switch] = ACTIONS(1717), + [anon_sym_case] = ACTIONS(1607), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1719), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1723), + [anon_sym_return] = ACTIONS(1725), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1729), + [anon_sym_goto] = ACTIONS(1731), + [anon_sym___try] = ACTIONS(1733), + [anon_sym___leave] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [492] = { - [sym_type_qualifier] = STATE(1517), - [sym_alignas_qualifier] = STATE(1671), - [sym_type_specifier] = STATE(1678), - [sym_sized_type_specifier] = STATE(1984), - [sym_enum_specifier] = STATE(1984), - [sym_struct_specifier] = STATE(1984), - [sym_union_specifier] = STATE(1984), - [sym_expression] = STATE(1571), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3181), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_type_descriptor] = STATE(3071), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1984), - [aux_sym__type_definition_type_repeat1] = STATE(1517), - [aux_sym_sized_type_specifier_repeat1] = STATE(1712), - [sym_identifier] = ACTIONS(1993), + [456] = { + [sym_attribute_declaration] = STATE(453), + [sym_compound_statement] = STATE(89), + [sym_attributed_statement] = STATE(89), + [sym_statement] = STATE(117), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(453), + [sym_identifier] = ACTIONS(1599), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -75109,25 +71917,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym___extension__] = ACTIONS(1995), - [anon_sym_signed] = ACTIONS(1997), - [anon_sym_unsigned] = ACTIONS(1997), - [anon_sym_long] = ACTIONS(1997), - [anon_sym_short] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_constexpr] = ACTIONS(1995), - [anon_sym_volatile] = ACTIONS(1995), - [anon_sym_restrict] = ACTIONS(1995), - [anon_sym___restrict__] = ACTIONS(1995), - [anon_sym__Atomic] = ACTIONS(1995), - [anon_sym__Noreturn] = ACTIONS(1995), - [anon_sym_noreturn] = ACTIONS(1995), - [anon_sym_alignas] = ACTIONS(1999), - [anon_sym__Alignas] = ACTIONS(1999), - [sym_primitive_type] = ACTIONS(2001), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_struct] = ACTIONS(2005), - [anon_sym_union] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(145), + [anon_sym_default] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -75157,43 +71962,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [493] = { - [sym_type_qualifier] = STATE(1517), - [sym_alignas_qualifier] = STATE(1671), - [sym_type_specifier] = STATE(1678), - [sym_sized_type_specifier] = STATE(1984), - [sym_enum_specifier] = STATE(1984), - [sym_struct_specifier] = STATE(1984), - [sym_union_specifier] = STATE(1984), - [sym_expression] = STATE(1571), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3181), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_type_descriptor] = STATE(2984), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1984), - [aux_sym__type_definition_type_repeat1] = STATE(1517), - [aux_sym_sized_type_specifier_repeat1] = STATE(1712), - [sym_identifier] = ACTIONS(1993), + [457] = { + [sym_attribute_declaration] = STATE(465), + [sym_compound_statement] = STATE(251), + [sym_attributed_statement] = STATE(251), + [sym_statement] = STATE(195), + [sym_labeled_statement] = STATE(251), + [sym_expression_statement] = STATE(251), + [sym_if_statement] = STATE(251), + [sym_switch_statement] = STATE(251), + [sym_case_statement] = STATE(251), + [sym_while_statement] = STATE(251), + [sym_do_statement] = STATE(251), + [sym_for_statement] = STATE(251), + [sym_return_statement] = STATE(251), + [sym_break_statement] = STATE(251), + [sym_continue_statement] = STATE(251), + [sym_goto_statement] = STATE(251), + [sym_seh_try_statement] = STATE(251), + [sym_seh_leave_statement] = STATE(251), + [sym_expression] = STATE(1615), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3118), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(465), + [sym_identifier] = ACTIONS(1707), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -75202,25 +72015,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym___extension__] = ACTIONS(1995), - [anon_sym_signed] = ACTIONS(1997), - [anon_sym_unsigned] = ACTIONS(1997), - [anon_sym_long] = ACTIONS(1997), - [anon_sym_short] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_constexpr] = ACTIONS(1995), - [anon_sym_volatile] = ACTIONS(1995), - [anon_sym_restrict] = ACTIONS(1995), - [anon_sym___restrict__] = ACTIONS(1995), - [anon_sym__Atomic] = ACTIONS(1995), - [anon_sym__Noreturn] = ACTIONS(1995), - [anon_sym_noreturn] = ACTIONS(1995), - [anon_sym_alignas] = ACTIONS(1999), - [anon_sym__Alignas] = ACTIONS(1999), - [sym_primitive_type] = ACTIONS(2001), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_struct] = ACTIONS(2005), - [anon_sym_union] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_if] = ACTIONS(67), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_case] = ACTIONS(71), + [anon_sym_default] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_do] = ACTIONS(77), + [anon_sym_for] = ACTIONS(79), + [anon_sym_return] = ACTIONS(81), + [anon_sym_break] = ACTIONS(83), + [anon_sym_continue] = ACTIONS(85), + [anon_sym_goto] = ACTIONS(87), + [anon_sym___try] = ACTIONS(968), + [anon_sym___leave] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -75250,229 +72060,345 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [494] = { - [sym_identifier] = ACTIONS(1350), + [458] = { + [sym_attribute_declaration] = STATE(458), + [sym_compound_statement] = STATE(89), + [sym_attributed_statement] = STATE(89), + [sym_statement] = STATE(95), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(458), + [sym_identifier] = ACTIONS(1845), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1614), + [anon_sym_BANG] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1851), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_switch] = ACTIONS(1857), + [anon_sym_case] = ACTIONS(1860), + [anon_sym_default] = ACTIONS(1863), + [anon_sym_while] = ACTIONS(1866), + [anon_sym_do] = ACTIONS(1869), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1875), + [anon_sym_break] = ACTIONS(1878), + [anon_sym_continue] = ACTIONS(1881), + [anon_sym_goto] = ACTIONS(1884), + [anon_sym___try] = ACTIONS(1887), + [anon_sym___leave] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1677), + [anon_sym___alignof__] = ACTIONS(1680), + [anon_sym___alignof] = ACTIONS(1680), + [anon_sym__alignof] = ACTIONS(1680), + [anon_sym_alignof] = ACTIONS(1680), + [anon_sym__Alignof] = ACTIONS(1680), + [anon_sym_offsetof] = ACTIONS(1683), + [anon_sym__Generic] = ACTIONS(1686), + [anon_sym_asm] = ACTIONS(1689), + [anon_sym___asm__] = ACTIONS(1689), + [sym_number_literal] = ACTIONS(1692), + [anon_sym_L_SQUOTE] = ACTIONS(1695), + [anon_sym_u_SQUOTE] = ACTIONS(1695), + [anon_sym_U_SQUOTE] = ACTIONS(1695), + [anon_sym_u8_SQUOTE] = ACTIONS(1695), + [anon_sym_SQUOTE] = ACTIONS(1695), + [anon_sym_L_DQUOTE] = ACTIONS(1698), + [anon_sym_u_DQUOTE] = ACTIONS(1698), + [anon_sym_U_DQUOTE] = ACTIONS(1698), + [anon_sym_u8_DQUOTE] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [sym_true] = ACTIONS(1701), + [sym_false] = ACTIONS(1701), + [anon_sym_NULL] = ACTIONS(1704), + [anon_sym_nullptr] = ACTIONS(1704), + [sym_comment] = ACTIONS(5), + }, + [459] = { + [sym_attribute_declaration] = STATE(453), + [sym_compound_statement] = STATE(89), + [sym_attributed_statement] = STATE(89), + [sym_statement] = STATE(111), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(453), + [sym_identifier] = ACTIONS(1599), [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym___extension__] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym___attribute__] = ACTIONS(1350), - [anon_sym___scanf] = ACTIONS(1350), - [anon_sym___printf] = ACTIONS(1350), - [anon_sym___read_mostly] = ACTIONS(1350), - [anon_sym___must_hold] = ACTIONS(1350), - [anon_sym___ro_after_init] = ACTIONS(1350), - [anon_sym___noreturn] = ACTIONS(1350), - [anon_sym___cold] = ACTIONS(1350), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), - [anon_sym___declspec] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_signed] = ACTIONS(1350), - [anon_sym_unsigned] = ACTIONS(1350), - [anon_sym_long] = ACTIONS(1350), - [anon_sym_short] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_auto] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_inline] = ACTIONS(1350), - [anon_sym___inline] = ACTIONS(1350), - [anon_sym___inline__] = ACTIONS(1350), - [anon_sym___forceinline] = ACTIONS(1350), - [anon_sym_thread_local] = ACTIONS(1350), - [anon_sym___thread] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_constexpr] = ACTIONS(1350), - [anon_sym_volatile] = ACTIONS(1350), - [anon_sym_restrict] = ACTIONS(1350), - [anon_sym___restrict__] = ACTIONS(1350), - [anon_sym__Atomic] = ACTIONS(1350), - [anon_sym__Noreturn] = ACTIONS(1350), - [anon_sym_noreturn] = ACTIONS(1350), - [anon_sym_alignas] = ACTIONS(1350), - [anon_sym__Alignas] = ACTIONS(1350), - [sym_primitive_type] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_switch] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_goto] = ACTIONS(1350), - [anon_sym___try] = ACTIONS(1350), - [anon_sym___leave] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_sizeof] = ACTIONS(1350), - [anon_sym___alignof__] = ACTIONS(1350), - [anon_sym___alignof] = ACTIONS(1350), - [anon_sym__alignof] = ACTIONS(1350), - [anon_sym_alignof] = ACTIONS(1350), - [anon_sym__Alignof] = ACTIONS(1350), - [anon_sym_offsetof] = ACTIONS(1350), - [anon_sym__Generic] = ACTIONS(1350), - [anon_sym_asm] = ACTIONS(1350), - [anon_sym___asm__] = ACTIONS(1350), - [sym_number_literal] = ACTIONS(1352), - [anon_sym_L_SQUOTE] = ACTIONS(1352), - [anon_sym_u_SQUOTE] = ACTIONS(1352), - [anon_sym_U_SQUOTE] = ACTIONS(1352), - [anon_sym_u8_SQUOTE] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_L_DQUOTE] = ACTIONS(1352), - [anon_sym_u_DQUOTE] = ACTIONS(1352), - [anon_sym_U_DQUOTE] = ACTIONS(1352), - [anon_sym_u8_DQUOTE] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_true] = ACTIONS(1350), - [sym_false] = ACTIONS(1350), - [anon_sym_NULL] = ACTIONS(1350), - [anon_sym_nullptr] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(145), + [anon_sym_default] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [495] = { - [sym_identifier] = ACTIONS(1250), + [460] = { + [sym_attribute_declaration] = STATE(453), + [sym_compound_statement] = STATE(89), + [sym_attributed_statement] = STATE(89), + [sym_statement] = STATE(103), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(453), + [sym_identifier] = ACTIONS(1599), [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(1252), - [anon_sym_TILDE] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym___extension__] = ACTIONS(1250), - [anon_sym_typedef] = ACTIONS(1250), - [anon_sym_extern] = ACTIONS(1250), - [anon_sym___attribute__] = ACTIONS(1250), - [anon_sym___scanf] = ACTIONS(1250), - [anon_sym___printf] = ACTIONS(1250), - [anon_sym___read_mostly] = ACTIONS(1250), - [anon_sym___must_hold] = ACTIONS(1250), - [anon_sym___ro_after_init] = ACTIONS(1250), - [anon_sym___noreturn] = ACTIONS(1250), - [anon_sym___cold] = ACTIONS(1250), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), - [anon_sym___declspec] = ACTIONS(1250), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_signed] = ACTIONS(1250), - [anon_sym_unsigned] = ACTIONS(1250), - [anon_sym_long] = ACTIONS(1250), - [anon_sym_short] = ACTIONS(1250), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_auto] = ACTIONS(1250), - [anon_sym_register] = ACTIONS(1250), - [anon_sym_inline] = ACTIONS(1250), - [anon_sym___inline] = ACTIONS(1250), - [anon_sym___inline__] = ACTIONS(1250), - [anon_sym___forceinline] = ACTIONS(1250), - [anon_sym_thread_local] = ACTIONS(1250), - [anon_sym___thread] = ACTIONS(1250), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_constexpr] = ACTIONS(1250), - [anon_sym_volatile] = ACTIONS(1250), - [anon_sym_restrict] = ACTIONS(1250), - [anon_sym___restrict__] = ACTIONS(1250), - [anon_sym__Atomic] = ACTIONS(1250), - [anon_sym__Noreturn] = ACTIONS(1250), - [anon_sym_noreturn] = ACTIONS(1250), - [anon_sym_alignas] = ACTIONS(1250), - [anon_sym__Alignas] = ACTIONS(1250), - [sym_primitive_type] = ACTIONS(1250), - [anon_sym_enum] = ACTIONS(1250), - [anon_sym_struct] = ACTIONS(1250), - [anon_sym_union] = ACTIONS(1250), - [anon_sym_if] = ACTIONS(1250), - [anon_sym_else] = ACTIONS(1250), - [anon_sym_switch] = ACTIONS(1250), - [anon_sym_while] = ACTIONS(1250), - [anon_sym_do] = ACTIONS(1250), - [anon_sym_for] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_break] = ACTIONS(1250), - [anon_sym_continue] = ACTIONS(1250), - [anon_sym_goto] = ACTIONS(1250), - [anon_sym___try] = ACTIONS(1250), - [anon_sym___leave] = ACTIONS(1250), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_sizeof] = ACTIONS(1250), - [anon_sym___alignof__] = ACTIONS(1250), - [anon_sym___alignof] = ACTIONS(1250), - [anon_sym__alignof] = ACTIONS(1250), - [anon_sym_alignof] = ACTIONS(1250), - [anon_sym__Alignof] = ACTIONS(1250), - [anon_sym_offsetof] = ACTIONS(1250), - [anon_sym__Generic] = ACTIONS(1250), - [anon_sym_asm] = ACTIONS(1250), - [anon_sym___asm__] = ACTIONS(1250), - [sym_number_literal] = ACTIONS(1252), - [anon_sym_L_SQUOTE] = ACTIONS(1252), - [anon_sym_u_SQUOTE] = ACTIONS(1252), - [anon_sym_U_SQUOTE] = ACTIONS(1252), - [anon_sym_u8_SQUOTE] = ACTIONS(1252), - [anon_sym_SQUOTE] = ACTIONS(1252), - [anon_sym_L_DQUOTE] = ACTIONS(1252), - [anon_sym_u_DQUOTE] = ACTIONS(1252), - [anon_sym_U_DQUOTE] = ACTIONS(1252), - [anon_sym_u8_DQUOTE] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym_true] = ACTIONS(1250), - [sym_false] = ACTIONS(1250), - [anon_sym_NULL] = ACTIONS(1250), - [anon_sym_nullptr] = ACTIONS(1250), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(145), + [anon_sym_default] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [496] = { - [sym_type_qualifier] = STATE(1517), - [sym_alignas_qualifier] = STATE(1671), - [sym_type_specifier] = STATE(1678), - [sym_sized_type_specifier] = STATE(1984), - [sym_enum_specifier] = STATE(1984), - [sym_struct_specifier] = STATE(1984), - [sym_union_specifier] = STATE(1984), - [sym_expression] = STATE(1558), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3398), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_type_descriptor] = STATE(3238), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1984), - [aux_sym__type_definition_type_repeat1] = STATE(1517), - [aux_sym_sized_type_specifier_repeat1] = STATE(1712), - [sym_identifier] = ACTIONS(1993), + [461] = { + [sym_attribute_declaration] = STATE(453), + [sym_compound_statement] = STATE(89), + [sym_attributed_statement] = STATE(89), + [sym_statement] = STATE(85), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym_expression] = STATE(1641), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3347), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(453), + [sym_identifier] = ACTIONS(1599), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -75481,25 +72407,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym___extension__] = ACTIONS(1995), - [anon_sym_signed] = ACTIONS(1997), - [anon_sym_unsigned] = ACTIONS(1997), - [anon_sym_long] = ACTIONS(1997), - [anon_sym_short] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_constexpr] = ACTIONS(1995), - [anon_sym_volatile] = ACTIONS(1995), - [anon_sym_restrict] = ACTIONS(1995), - [anon_sym___restrict__] = ACTIONS(1995), - [anon_sym__Atomic] = ACTIONS(1995), - [anon_sym__Noreturn] = ACTIONS(1995), - [anon_sym_noreturn] = ACTIONS(1995), - [anon_sym_alignas] = ACTIONS(1999), - [anon_sym__Alignas] = ACTIONS(1999), - [sym_primitive_type] = ACTIONS(2001), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_struct] = ACTIONS(2005), - [anon_sym_union] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(145), + [anon_sym_default] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -75529,43 +72452,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [497] = { - [sym_type_qualifier] = STATE(1517), - [sym_alignas_qualifier] = STATE(1671), - [sym_type_specifier] = STATE(1678), - [sym_sized_type_specifier] = STATE(1984), - [sym_enum_specifier] = STATE(1984), - [sym_struct_specifier] = STATE(1984), - [sym_union_specifier] = STATE(1984), - [sym_expression] = STATE(1558), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3398), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_type_descriptor] = STATE(3323), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1984), - [aux_sym__type_definition_type_repeat1] = STATE(1517), - [aux_sym_sized_type_specifier_repeat1] = STATE(1712), - [sym_identifier] = ACTIONS(1993), + [462] = { + [sym_attribute_declaration] = STATE(463), + [sym_compound_statement] = STATE(2855), + [sym_attributed_statement] = STATE(2855), + [sym_statement] = STATE(2787), + [sym_labeled_statement] = STATE(2855), + [sym_expression_statement] = STATE(2855), + [sym_if_statement] = STATE(2855), + [sym_switch_statement] = STATE(2855), + [sym_case_statement] = STATE(2855), + [sym_while_statement] = STATE(2855), + [sym_do_statement] = STATE(2855), + [sym_for_statement] = STATE(2855), + [sym_return_statement] = STATE(2855), + [sym_break_statement] = STATE(2855), + [sym_continue_statement] = STATE(2855), + [sym_goto_statement] = STATE(2855), + [sym_seh_try_statement] = STATE(2855), + [sym_seh_leave_statement] = STATE(2855), + [sym_expression] = STATE(1602), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3116), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(463), + [sym_identifier] = ACTIONS(1709), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -75574,25 +72505,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym___extension__] = ACTIONS(1995), - [anon_sym_signed] = ACTIONS(1997), - [anon_sym_unsigned] = ACTIONS(1997), - [anon_sym_long] = ACTIONS(1997), - [anon_sym_short] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_constexpr] = ACTIONS(1995), - [anon_sym_volatile] = ACTIONS(1995), - [anon_sym_restrict] = ACTIONS(1995), - [anon_sym___restrict__] = ACTIONS(1995), - [anon_sym__Atomic] = ACTIONS(1995), - [anon_sym__Noreturn] = ACTIONS(1995), - [anon_sym_noreturn] = ACTIONS(1995), - [anon_sym_alignas] = ACTIONS(1999), - [anon_sym__Alignas] = ACTIONS(1999), - [sym_primitive_type] = ACTIONS(2001), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_struct] = ACTIONS(2005), - [anon_sym_union] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_switch] = ACTIONS(1717), + [anon_sym_case] = ACTIONS(1607), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1719), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1723), + [anon_sym_return] = ACTIONS(1725), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1729), + [anon_sym_goto] = ACTIONS(1731), + [anon_sym___try] = ACTIONS(1733), + [anon_sym___leave] = ACTIONS(1735), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -75622,694 +72550,345 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [498] = { - [sym_identifier] = ACTIONS(1238), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1240), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym___extension__] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1238), - [anon_sym_extern] = ACTIONS(1238), - [anon_sym___attribute__] = ACTIONS(1238), - [anon_sym___scanf] = ACTIONS(1238), - [anon_sym___printf] = ACTIONS(1238), - [anon_sym___read_mostly] = ACTIONS(1238), - [anon_sym___must_hold] = ACTIONS(1238), - [anon_sym___ro_after_init] = ACTIONS(1238), - [anon_sym___noreturn] = ACTIONS(1238), - [anon_sym___cold] = ACTIONS(1238), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1240), - [anon_sym___declspec] = ACTIONS(1238), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_signed] = ACTIONS(1238), - [anon_sym_unsigned] = ACTIONS(1238), - [anon_sym_long] = ACTIONS(1238), - [anon_sym_short] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_auto] = ACTIONS(1238), - [anon_sym_register] = ACTIONS(1238), - [anon_sym_inline] = ACTIONS(1238), - [anon_sym___inline] = ACTIONS(1238), - [anon_sym___inline__] = ACTIONS(1238), - [anon_sym___forceinline] = ACTIONS(1238), - [anon_sym_thread_local] = ACTIONS(1238), - [anon_sym___thread] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_constexpr] = ACTIONS(1238), - [anon_sym_volatile] = ACTIONS(1238), - [anon_sym_restrict] = ACTIONS(1238), - [anon_sym___restrict__] = ACTIONS(1238), - [anon_sym__Atomic] = ACTIONS(1238), - [anon_sym__Noreturn] = ACTIONS(1238), - [anon_sym_noreturn] = ACTIONS(1238), - [anon_sym_alignas] = ACTIONS(1238), - [anon_sym__Alignas] = ACTIONS(1238), - [sym_primitive_type] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1238), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_else] = ACTIONS(1238), - [anon_sym_switch] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_do] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_goto] = ACTIONS(1238), - [anon_sym___try] = ACTIONS(1238), - [anon_sym___leave] = ACTIONS(1238), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [anon_sym_sizeof] = ACTIONS(1238), - [anon_sym___alignof__] = ACTIONS(1238), - [anon_sym___alignof] = ACTIONS(1238), - [anon_sym__alignof] = ACTIONS(1238), - [anon_sym_alignof] = ACTIONS(1238), - [anon_sym__Alignof] = ACTIONS(1238), - [anon_sym_offsetof] = ACTIONS(1238), - [anon_sym__Generic] = ACTIONS(1238), - [anon_sym_asm] = ACTIONS(1238), - [anon_sym___asm__] = ACTIONS(1238), - [sym_number_literal] = ACTIONS(1240), - [anon_sym_L_SQUOTE] = ACTIONS(1240), - [anon_sym_u_SQUOTE] = ACTIONS(1240), - [anon_sym_U_SQUOTE] = ACTIONS(1240), - [anon_sym_u8_SQUOTE] = ACTIONS(1240), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_L_DQUOTE] = ACTIONS(1240), - [anon_sym_u_DQUOTE] = ACTIONS(1240), - [anon_sym_U_DQUOTE] = ACTIONS(1240), - [anon_sym_u8_DQUOTE] = ACTIONS(1240), - [anon_sym_DQUOTE] = ACTIONS(1240), - [sym_true] = ACTIONS(1238), - [sym_false] = ACTIONS(1238), - [anon_sym_NULL] = ACTIONS(1238), - [anon_sym_nullptr] = ACTIONS(1238), + [463] = { + [sym_attribute_declaration] = STATE(463), + [sym_compound_statement] = STATE(2855), + [sym_attributed_statement] = STATE(2855), + [sym_statement] = STATE(2787), + [sym_labeled_statement] = STATE(2855), + [sym_expression_statement] = STATE(2855), + [sym_if_statement] = STATE(2855), + [sym_switch_statement] = STATE(2855), + [sym_case_statement] = STATE(2855), + [sym_while_statement] = STATE(2855), + [sym_do_statement] = STATE(2855), + [sym_for_statement] = STATE(2855), + [sym_return_statement] = STATE(2855), + [sym_break_statement] = STATE(2855), + [sym_continue_statement] = STATE(2855), + [sym_goto_statement] = STATE(2855), + [sym_seh_try_statement] = STATE(2855), + [sym_seh_leave_statement] = STATE(2855), + [sym_expression] = STATE(1602), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3116), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(463), + [sym_identifier] = ACTIONS(1893), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1614), + [anon_sym_BANG] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1896), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_if] = ACTIONS(1902), + [anon_sym_switch] = ACTIONS(1905), + [anon_sym_case] = ACTIONS(1641), + [anon_sym_default] = ACTIONS(1644), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1911), + [anon_sym_for] = ACTIONS(1914), + [anon_sym_return] = ACTIONS(1917), + [anon_sym_break] = ACTIONS(1920), + [anon_sym_continue] = ACTIONS(1923), + [anon_sym_goto] = ACTIONS(1926), + [anon_sym___try] = ACTIONS(1929), + [anon_sym___leave] = ACTIONS(1932), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1677), + [anon_sym___alignof__] = ACTIONS(1680), + [anon_sym___alignof] = ACTIONS(1680), + [anon_sym__alignof] = ACTIONS(1680), + [anon_sym_alignof] = ACTIONS(1680), + [anon_sym__Alignof] = ACTIONS(1680), + [anon_sym_offsetof] = ACTIONS(1683), + [anon_sym__Generic] = ACTIONS(1686), + [anon_sym_asm] = ACTIONS(1689), + [anon_sym___asm__] = ACTIONS(1689), + [sym_number_literal] = ACTIONS(1692), + [anon_sym_L_SQUOTE] = ACTIONS(1695), + [anon_sym_u_SQUOTE] = ACTIONS(1695), + [anon_sym_U_SQUOTE] = ACTIONS(1695), + [anon_sym_u8_SQUOTE] = ACTIONS(1695), + [anon_sym_SQUOTE] = ACTIONS(1695), + [anon_sym_L_DQUOTE] = ACTIONS(1698), + [anon_sym_u_DQUOTE] = ACTIONS(1698), + [anon_sym_U_DQUOTE] = ACTIONS(1698), + [anon_sym_u8_DQUOTE] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [sym_true] = ACTIONS(1701), + [sym_false] = ACTIONS(1701), + [anon_sym_NULL] = ACTIONS(1704), + [anon_sym_nullptr] = ACTIONS(1704), [sym_comment] = ACTIONS(5), }, - [499] = { - [sym_identifier] = ACTIONS(1258), + [464] = { + [sym_attribute_declaration] = STATE(462), + [sym_compound_statement] = STATE(2855), + [sym_attributed_statement] = STATE(2855), + [sym_statement] = STATE(3392), + [sym_labeled_statement] = STATE(2855), + [sym_expression_statement] = STATE(2855), + [sym_if_statement] = STATE(2855), + [sym_switch_statement] = STATE(2855), + [sym_case_statement] = STATE(2855), + [sym_while_statement] = STATE(2855), + [sym_do_statement] = STATE(2855), + [sym_for_statement] = STATE(2855), + [sym_return_statement] = STATE(2855), + [sym_break_statement] = STATE(2855), + [sym_continue_statement] = STATE(2855), + [sym_goto_statement] = STATE(2855), + [sym_seh_try_statement] = STATE(2855), + [sym_seh_leave_statement] = STATE(2855), + [sym_expression] = STATE(1602), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3116), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(462), + [sym_identifier] = ACTIONS(1709), [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1260), - [anon_sym_TILDE] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_SEMI] = ACTIONS(1260), - [anon_sym___extension__] = ACTIONS(1258), - [anon_sym_typedef] = ACTIONS(1258), - [anon_sym_extern] = ACTIONS(1258), - [anon_sym___attribute__] = ACTIONS(1258), - [anon_sym___scanf] = ACTIONS(1258), - [anon_sym___printf] = ACTIONS(1258), - [anon_sym___read_mostly] = ACTIONS(1258), - [anon_sym___must_hold] = ACTIONS(1258), - [anon_sym___ro_after_init] = ACTIONS(1258), - [anon_sym___noreturn] = ACTIONS(1258), - [anon_sym___cold] = ACTIONS(1258), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1260), - [anon_sym___declspec] = ACTIONS(1258), - [anon_sym_LBRACE] = ACTIONS(1260), - [anon_sym_signed] = ACTIONS(1258), - [anon_sym_unsigned] = ACTIONS(1258), - [anon_sym_long] = ACTIONS(1258), - [anon_sym_short] = ACTIONS(1258), - [anon_sym_static] = ACTIONS(1258), - [anon_sym_auto] = ACTIONS(1258), - [anon_sym_register] = ACTIONS(1258), - [anon_sym_inline] = ACTIONS(1258), - [anon_sym___inline] = ACTIONS(1258), - [anon_sym___inline__] = ACTIONS(1258), - [anon_sym___forceinline] = ACTIONS(1258), - [anon_sym_thread_local] = ACTIONS(1258), - [anon_sym___thread] = ACTIONS(1258), - [anon_sym_const] = ACTIONS(1258), - [anon_sym_constexpr] = ACTIONS(1258), - [anon_sym_volatile] = ACTIONS(1258), - [anon_sym_restrict] = ACTIONS(1258), - [anon_sym___restrict__] = ACTIONS(1258), - [anon_sym__Atomic] = ACTIONS(1258), - [anon_sym__Noreturn] = ACTIONS(1258), - [anon_sym_noreturn] = ACTIONS(1258), - [anon_sym_alignas] = ACTIONS(1258), - [anon_sym__Alignas] = ACTIONS(1258), - [sym_primitive_type] = ACTIONS(1258), - [anon_sym_enum] = ACTIONS(1258), - [anon_sym_struct] = ACTIONS(1258), - [anon_sym_union] = ACTIONS(1258), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_else] = ACTIONS(1258), - [anon_sym_switch] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1258), - [anon_sym_do] = ACTIONS(1258), - [anon_sym_for] = ACTIONS(1258), - [anon_sym_return] = ACTIONS(1258), - [anon_sym_break] = ACTIONS(1258), - [anon_sym_continue] = ACTIONS(1258), - [anon_sym_goto] = ACTIONS(1258), - [anon_sym___try] = ACTIONS(1258), - [anon_sym___leave] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1260), - [anon_sym_PLUS_PLUS] = ACTIONS(1260), - [anon_sym_sizeof] = ACTIONS(1258), - [anon_sym___alignof__] = ACTIONS(1258), - [anon_sym___alignof] = ACTIONS(1258), - [anon_sym__alignof] = ACTIONS(1258), - [anon_sym_alignof] = ACTIONS(1258), - [anon_sym__Alignof] = ACTIONS(1258), - [anon_sym_offsetof] = ACTIONS(1258), - [anon_sym__Generic] = ACTIONS(1258), - [anon_sym_asm] = ACTIONS(1258), - [anon_sym___asm__] = ACTIONS(1258), - [sym_number_literal] = ACTIONS(1260), - [anon_sym_L_SQUOTE] = ACTIONS(1260), - [anon_sym_u_SQUOTE] = ACTIONS(1260), - [anon_sym_U_SQUOTE] = ACTIONS(1260), - [anon_sym_u8_SQUOTE] = ACTIONS(1260), - [anon_sym_SQUOTE] = ACTIONS(1260), - [anon_sym_L_DQUOTE] = ACTIONS(1260), - [anon_sym_u_DQUOTE] = ACTIONS(1260), - [anon_sym_U_DQUOTE] = ACTIONS(1260), - [anon_sym_u8_DQUOTE] = ACTIONS(1260), - [anon_sym_DQUOTE] = ACTIONS(1260), - [sym_true] = ACTIONS(1258), - [sym_false] = ACTIONS(1258), - [anon_sym_NULL] = ACTIONS(1258), - [anon_sym_nullptr] = ACTIONS(1258), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_switch] = ACTIONS(1717), + [anon_sym_case] = ACTIONS(1607), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1719), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1723), + [anon_sym_return] = ACTIONS(1725), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1729), + [anon_sym_goto] = ACTIONS(1731), + [anon_sym___try] = ACTIONS(1733), + [anon_sym___leave] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [500] = { - [sym_identifier] = ACTIONS(1262), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1264), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_PLUS] = ACTIONS(1262), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_SEMI] = ACTIONS(1264), - [anon_sym___extension__] = ACTIONS(1262), - [anon_sym_typedef] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(1262), - [anon_sym___attribute__] = ACTIONS(1262), - [anon_sym___scanf] = ACTIONS(1262), - [anon_sym___printf] = ACTIONS(1262), - [anon_sym___read_mostly] = ACTIONS(1262), - [anon_sym___must_hold] = ACTIONS(1262), - [anon_sym___ro_after_init] = ACTIONS(1262), - [anon_sym___noreturn] = ACTIONS(1262), - [anon_sym___cold] = ACTIONS(1262), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym___declspec] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(1264), - [anon_sym_signed] = ACTIONS(1262), - [anon_sym_unsigned] = ACTIONS(1262), - [anon_sym_long] = ACTIONS(1262), - [anon_sym_short] = ACTIONS(1262), - [anon_sym_static] = ACTIONS(1262), - [anon_sym_auto] = ACTIONS(1262), - [anon_sym_register] = ACTIONS(1262), - [anon_sym_inline] = ACTIONS(1262), - [anon_sym___inline] = ACTIONS(1262), - [anon_sym___inline__] = ACTIONS(1262), - [anon_sym___forceinline] = ACTIONS(1262), - [anon_sym_thread_local] = ACTIONS(1262), - [anon_sym___thread] = ACTIONS(1262), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_constexpr] = ACTIONS(1262), - [anon_sym_volatile] = ACTIONS(1262), - [anon_sym_restrict] = ACTIONS(1262), - [anon_sym___restrict__] = ACTIONS(1262), - [anon_sym__Atomic] = ACTIONS(1262), - [anon_sym__Noreturn] = ACTIONS(1262), - [anon_sym_noreturn] = ACTIONS(1262), - [anon_sym_alignas] = ACTIONS(1262), - [anon_sym__Alignas] = ACTIONS(1262), - [sym_primitive_type] = ACTIONS(1262), - [anon_sym_enum] = ACTIONS(1262), - [anon_sym_struct] = ACTIONS(1262), - [anon_sym_union] = ACTIONS(1262), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(1262), - [anon_sym_switch] = ACTIONS(1262), - [anon_sym_while] = ACTIONS(1262), - [anon_sym_do] = ACTIONS(1262), - [anon_sym_for] = ACTIONS(1262), - [anon_sym_return] = ACTIONS(1262), - [anon_sym_break] = ACTIONS(1262), - [anon_sym_continue] = ACTIONS(1262), - [anon_sym_goto] = ACTIONS(1262), - [anon_sym___try] = ACTIONS(1262), - [anon_sym___leave] = ACTIONS(1262), - [anon_sym_DASH_DASH] = ACTIONS(1264), - [anon_sym_PLUS_PLUS] = ACTIONS(1264), - [anon_sym_sizeof] = ACTIONS(1262), - [anon_sym___alignof__] = ACTIONS(1262), - [anon_sym___alignof] = ACTIONS(1262), - [anon_sym__alignof] = ACTIONS(1262), - [anon_sym_alignof] = ACTIONS(1262), - [anon_sym__Alignof] = ACTIONS(1262), - [anon_sym_offsetof] = ACTIONS(1262), - [anon_sym__Generic] = ACTIONS(1262), - [anon_sym_asm] = ACTIONS(1262), - [anon_sym___asm__] = ACTIONS(1262), - [sym_number_literal] = ACTIONS(1264), - [anon_sym_L_SQUOTE] = ACTIONS(1264), - [anon_sym_u_SQUOTE] = ACTIONS(1264), - [anon_sym_U_SQUOTE] = ACTIONS(1264), - [anon_sym_u8_SQUOTE] = ACTIONS(1264), - [anon_sym_SQUOTE] = ACTIONS(1264), - [anon_sym_L_DQUOTE] = ACTIONS(1264), - [anon_sym_u_DQUOTE] = ACTIONS(1264), - [anon_sym_U_DQUOTE] = ACTIONS(1264), - [anon_sym_u8_DQUOTE] = ACTIONS(1264), - [anon_sym_DQUOTE] = ACTIONS(1264), - [sym_true] = ACTIONS(1262), - [sym_false] = ACTIONS(1262), - [anon_sym_NULL] = ACTIONS(1262), - [anon_sym_nullptr] = ACTIONS(1262), - [sym_comment] = ACTIONS(5), - }, - [501] = { - [sym_identifier] = ACTIONS(2009), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(2011), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_SEMI] = ACTIONS(2011), - [anon_sym___extension__] = ACTIONS(2009), - [anon_sym_extern] = ACTIONS(2009), - [anon_sym___attribute__] = ACTIONS(2009), - [anon_sym___scanf] = ACTIONS(2009), - [anon_sym___printf] = ACTIONS(2009), - [anon_sym___read_mostly] = ACTIONS(2009), - [anon_sym___must_hold] = ACTIONS(2009), - [anon_sym___ro_after_init] = ACTIONS(2009), - [anon_sym___noreturn] = ACTIONS(2009), - [anon_sym___cold] = ACTIONS(2009), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2011), - [anon_sym___declspec] = ACTIONS(2009), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_signed] = ACTIONS(2009), - [anon_sym_unsigned] = ACTIONS(2009), - [anon_sym_long] = ACTIONS(2009), - [anon_sym_short] = ACTIONS(2009), - [anon_sym_static] = ACTIONS(2009), - [anon_sym_auto] = ACTIONS(2009), - [anon_sym_register] = ACTIONS(2009), - [anon_sym_inline] = ACTIONS(2009), - [anon_sym___inline] = ACTIONS(2009), - [anon_sym___inline__] = ACTIONS(2009), - [anon_sym___forceinline] = ACTIONS(2009), - [anon_sym_thread_local] = ACTIONS(2009), - [anon_sym___thread] = ACTIONS(2009), - [anon_sym_const] = ACTIONS(2009), - [anon_sym_constexpr] = ACTIONS(2009), - [anon_sym_volatile] = ACTIONS(2009), - [anon_sym_restrict] = ACTIONS(2009), - [anon_sym___restrict__] = ACTIONS(2009), - [anon_sym__Atomic] = ACTIONS(2009), - [anon_sym__Noreturn] = ACTIONS(2009), - [anon_sym_noreturn] = ACTIONS(2009), - [anon_sym_alignas] = ACTIONS(2009), - [anon_sym__Alignas] = ACTIONS(2009), - [sym_primitive_type] = ACTIONS(2009), - [anon_sym_enum] = ACTIONS(2009), - [anon_sym_struct] = ACTIONS(2009), - [anon_sym_union] = ACTIONS(2009), - [anon_sym_if] = ACTIONS(2009), - [anon_sym_switch] = ACTIONS(2009), - [anon_sym_case] = ACTIONS(2009), - [anon_sym_default] = ACTIONS(2009), - [anon_sym_while] = ACTIONS(2009), - [anon_sym_do] = ACTIONS(2009), - [anon_sym_for] = ACTIONS(2009), - [anon_sym_return] = ACTIONS(2009), - [anon_sym_break] = ACTIONS(2009), - [anon_sym_continue] = ACTIONS(2009), - [anon_sym_goto] = ACTIONS(2009), - [anon_sym___try] = ACTIONS(2009), - [anon_sym___leave] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_sizeof] = ACTIONS(2009), - [anon_sym___alignof__] = ACTIONS(2009), - [anon_sym___alignof] = ACTIONS(2009), - [anon_sym__alignof] = ACTIONS(2009), - [anon_sym_alignof] = ACTIONS(2009), - [anon_sym__Alignof] = ACTIONS(2009), - [anon_sym_offsetof] = ACTIONS(2009), - [anon_sym__Generic] = ACTIONS(2009), - [anon_sym_asm] = ACTIONS(2009), - [anon_sym___asm__] = ACTIONS(2009), - [sym_number_literal] = ACTIONS(2011), - [anon_sym_L_SQUOTE] = ACTIONS(2011), - [anon_sym_u_SQUOTE] = ACTIONS(2011), - [anon_sym_U_SQUOTE] = ACTIONS(2011), - [anon_sym_u8_SQUOTE] = ACTIONS(2011), - [anon_sym_SQUOTE] = ACTIONS(2011), - [anon_sym_L_DQUOTE] = ACTIONS(2011), - [anon_sym_u_DQUOTE] = ACTIONS(2011), - [anon_sym_U_DQUOTE] = ACTIONS(2011), - [anon_sym_u8_DQUOTE] = ACTIONS(2011), - [anon_sym_DQUOTE] = ACTIONS(2011), - [sym_true] = ACTIONS(2009), - [sym_false] = ACTIONS(2009), - [anon_sym_NULL] = ACTIONS(2009), - [anon_sym_nullptr] = ACTIONS(2009), - [sym_comment] = ACTIONS(5), - }, - [502] = { - [sym_identifier] = ACTIONS(2013), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(2015), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_SEMI] = ACTIONS(2015), - [anon_sym___extension__] = ACTIONS(2013), - [anon_sym_extern] = ACTIONS(2013), - [anon_sym___attribute__] = ACTIONS(2013), - [anon_sym___scanf] = ACTIONS(2013), - [anon_sym___printf] = ACTIONS(2013), - [anon_sym___read_mostly] = ACTIONS(2013), - [anon_sym___must_hold] = ACTIONS(2013), - [anon_sym___ro_after_init] = ACTIONS(2013), - [anon_sym___noreturn] = ACTIONS(2013), - [anon_sym___cold] = ACTIONS(2013), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2015), - [anon_sym___declspec] = ACTIONS(2013), - [anon_sym_LBRACE] = ACTIONS(2015), - [anon_sym_signed] = ACTIONS(2013), - [anon_sym_unsigned] = ACTIONS(2013), - [anon_sym_long] = ACTIONS(2013), - [anon_sym_short] = ACTIONS(2013), - [anon_sym_static] = ACTIONS(2013), - [anon_sym_auto] = ACTIONS(2013), - [anon_sym_register] = ACTIONS(2013), - [anon_sym_inline] = ACTIONS(2013), - [anon_sym___inline] = ACTIONS(2013), - [anon_sym___inline__] = ACTIONS(2013), - [anon_sym___forceinline] = ACTIONS(2013), - [anon_sym_thread_local] = ACTIONS(2013), - [anon_sym___thread] = ACTIONS(2013), - [anon_sym_const] = ACTIONS(2013), - [anon_sym_constexpr] = ACTIONS(2013), - [anon_sym_volatile] = ACTIONS(2013), - [anon_sym_restrict] = ACTIONS(2013), - [anon_sym___restrict__] = ACTIONS(2013), - [anon_sym__Atomic] = ACTIONS(2013), - [anon_sym__Noreturn] = ACTIONS(2013), - [anon_sym_noreturn] = ACTIONS(2013), - [anon_sym_alignas] = ACTIONS(2013), - [anon_sym__Alignas] = ACTIONS(2013), - [sym_primitive_type] = ACTIONS(2013), - [anon_sym_enum] = ACTIONS(2013), - [anon_sym_struct] = ACTIONS(2013), - [anon_sym_union] = ACTIONS(2013), - [anon_sym_if] = ACTIONS(2013), - [anon_sym_switch] = ACTIONS(2013), - [anon_sym_case] = ACTIONS(2013), - [anon_sym_default] = ACTIONS(2013), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_do] = ACTIONS(2013), - [anon_sym_for] = ACTIONS(2013), - [anon_sym_return] = ACTIONS(2013), - [anon_sym_break] = ACTIONS(2013), - [anon_sym_continue] = ACTIONS(2013), - [anon_sym_goto] = ACTIONS(2013), - [anon_sym___try] = ACTIONS(2013), - [anon_sym___leave] = ACTIONS(2013), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_sizeof] = ACTIONS(2013), - [anon_sym___alignof__] = ACTIONS(2013), - [anon_sym___alignof] = ACTIONS(2013), - [anon_sym__alignof] = ACTIONS(2013), - [anon_sym_alignof] = ACTIONS(2013), - [anon_sym__Alignof] = ACTIONS(2013), - [anon_sym_offsetof] = ACTIONS(2013), - [anon_sym__Generic] = ACTIONS(2013), - [anon_sym_asm] = ACTIONS(2013), - [anon_sym___asm__] = ACTIONS(2013), - [sym_number_literal] = ACTIONS(2015), - [anon_sym_L_SQUOTE] = ACTIONS(2015), - [anon_sym_u_SQUOTE] = ACTIONS(2015), - [anon_sym_U_SQUOTE] = ACTIONS(2015), - [anon_sym_u8_SQUOTE] = ACTIONS(2015), - [anon_sym_SQUOTE] = ACTIONS(2015), - [anon_sym_L_DQUOTE] = ACTIONS(2015), - [anon_sym_u_DQUOTE] = ACTIONS(2015), - [anon_sym_U_DQUOTE] = ACTIONS(2015), - [anon_sym_u8_DQUOTE] = ACTIONS(2015), - [anon_sym_DQUOTE] = ACTIONS(2015), - [sym_true] = ACTIONS(2013), - [sym_false] = ACTIONS(2013), - [anon_sym_NULL] = ACTIONS(2013), - [anon_sym_nullptr] = ACTIONS(2013), - [sym_comment] = ACTIONS(5), - }, - [503] = { - [sym_identifier] = ACTIONS(1294), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1296), - [anon_sym_TILDE] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym___extension__] = ACTIONS(1294), - [anon_sym_typedef] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym___attribute__] = ACTIONS(1294), - [anon_sym___scanf] = ACTIONS(1294), - [anon_sym___printf] = ACTIONS(1294), - [anon_sym___read_mostly] = ACTIONS(1294), - [anon_sym___must_hold] = ACTIONS(1294), - [anon_sym___ro_after_init] = ACTIONS(1294), - [anon_sym___noreturn] = ACTIONS(1294), - [anon_sym___cold] = ACTIONS(1294), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1296), - [anon_sym___declspec] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_signed] = ACTIONS(1294), - [anon_sym_unsigned] = ACTIONS(1294), - [anon_sym_long] = ACTIONS(1294), - [anon_sym_short] = ACTIONS(1294), - [anon_sym_static] = ACTIONS(1294), - [anon_sym_auto] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_inline] = ACTIONS(1294), - [anon_sym___inline] = ACTIONS(1294), - [anon_sym___inline__] = ACTIONS(1294), - [anon_sym___forceinline] = ACTIONS(1294), - [anon_sym_thread_local] = ACTIONS(1294), - [anon_sym___thread] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [anon_sym_constexpr] = ACTIONS(1294), - [anon_sym_volatile] = ACTIONS(1294), - [anon_sym_restrict] = ACTIONS(1294), - [anon_sym___restrict__] = ACTIONS(1294), - [anon_sym__Atomic] = ACTIONS(1294), - [anon_sym__Noreturn] = ACTIONS(1294), - [anon_sym_noreturn] = ACTIONS(1294), - [anon_sym_alignas] = ACTIONS(1294), - [anon_sym__Alignas] = ACTIONS(1294), - [sym_primitive_type] = ACTIONS(1294), - [anon_sym_enum] = ACTIONS(1294), - [anon_sym_struct] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1294), - [anon_sym_switch] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_goto] = ACTIONS(1294), - [anon_sym___try] = ACTIONS(1294), - [anon_sym___leave] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_sizeof] = ACTIONS(1294), - [anon_sym___alignof__] = ACTIONS(1294), - [anon_sym___alignof] = ACTIONS(1294), - [anon_sym__alignof] = ACTIONS(1294), - [anon_sym_alignof] = ACTIONS(1294), - [anon_sym__Alignof] = ACTIONS(1294), - [anon_sym_offsetof] = ACTIONS(1294), - [anon_sym__Generic] = ACTIONS(1294), - [anon_sym_asm] = ACTIONS(1294), - [anon_sym___asm__] = ACTIONS(1294), - [sym_number_literal] = ACTIONS(1296), - [anon_sym_L_SQUOTE] = ACTIONS(1296), - [anon_sym_u_SQUOTE] = ACTIONS(1296), - [anon_sym_U_SQUOTE] = ACTIONS(1296), - [anon_sym_u8_SQUOTE] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [anon_sym_L_DQUOTE] = ACTIONS(1296), - [anon_sym_u_DQUOTE] = ACTIONS(1296), - [anon_sym_U_DQUOTE] = ACTIONS(1296), - [anon_sym_u8_DQUOTE] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym_true] = ACTIONS(1294), - [sym_false] = ACTIONS(1294), - [anon_sym_NULL] = ACTIONS(1294), - [anon_sym_nullptr] = ACTIONS(1294), - [sym_comment] = ACTIONS(5), - }, - [504] = { - [sym_identifier] = ACTIONS(1230), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1232), - [anon_sym_BANG] = ACTIONS(1232), - [anon_sym_TILDE] = ACTIONS(1232), - [anon_sym_DASH] = ACTIONS(1230), - [anon_sym_PLUS] = ACTIONS(1230), - [anon_sym_STAR] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(1232), - [anon_sym_SEMI] = ACTIONS(1232), - [anon_sym___extension__] = ACTIONS(1230), - [anon_sym_typedef] = ACTIONS(1230), - [anon_sym_extern] = ACTIONS(1230), - [anon_sym___attribute__] = ACTIONS(1230), - [anon_sym___scanf] = ACTIONS(1230), - [anon_sym___printf] = ACTIONS(1230), - [anon_sym___read_mostly] = ACTIONS(1230), - [anon_sym___must_hold] = ACTIONS(1230), - [anon_sym___ro_after_init] = ACTIONS(1230), - [anon_sym___noreturn] = ACTIONS(1230), - [anon_sym___cold] = ACTIONS(1230), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1232), - [anon_sym___declspec] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_signed] = ACTIONS(1230), - [anon_sym_unsigned] = ACTIONS(1230), - [anon_sym_long] = ACTIONS(1230), - [anon_sym_short] = ACTIONS(1230), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_auto] = ACTIONS(1230), - [anon_sym_register] = ACTIONS(1230), - [anon_sym_inline] = ACTIONS(1230), - [anon_sym___inline] = ACTIONS(1230), - [anon_sym___inline__] = ACTIONS(1230), - [anon_sym___forceinline] = ACTIONS(1230), - [anon_sym_thread_local] = ACTIONS(1230), - [anon_sym___thread] = ACTIONS(1230), - [anon_sym_const] = ACTIONS(1230), - [anon_sym_constexpr] = ACTIONS(1230), - [anon_sym_volatile] = ACTIONS(1230), - [anon_sym_restrict] = ACTIONS(1230), - [anon_sym___restrict__] = ACTIONS(1230), - [anon_sym__Atomic] = ACTIONS(1230), - [anon_sym__Noreturn] = ACTIONS(1230), - [anon_sym_noreturn] = ACTIONS(1230), - [anon_sym_alignas] = ACTIONS(1230), - [anon_sym__Alignas] = ACTIONS(1230), - [sym_primitive_type] = ACTIONS(1230), - [anon_sym_enum] = ACTIONS(1230), - [anon_sym_struct] = ACTIONS(1230), - [anon_sym_union] = ACTIONS(1230), - [anon_sym_if] = ACTIONS(1230), - [anon_sym_else] = ACTIONS(1230), - [anon_sym_switch] = ACTIONS(1230), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_do] = ACTIONS(1230), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(1230), - [anon_sym_break] = ACTIONS(1230), - [anon_sym_continue] = ACTIONS(1230), - [anon_sym_goto] = ACTIONS(1230), - [anon_sym___try] = ACTIONS(1230), - [anon_sym___leave] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1232), - [anon_sym_PLUS_PLUS] = ACTIONS(1232), - [anon_sym_sizeof] = ACTIONS(1230), - [anon_sym___alignof__] = ACTIONS(1230), - [anon_sym___alignof] = ACTIONS(1230), - [anon_sym__alignof] = ACTIONS(1230), - [anon_sym_alignof] = ACTIONS(1230), - [anon_sym__Alignof] = ACTIONS(1230), - [anon_sym_offsetof] = ACTIONS(1230), - [anon_sym__Generic] = ACTIONS(1230), - [anon_sym_asm] = ACTIONS(1230), - [anon_sym___asm__] = ACTIONS(1230), - [sym_number_literal] = ACTIONS(1232), - [anon_sym_L_SQUOTE] = ACTIONS(1232), - [anon_sym_u_SQUOTE] = ACTIONS(1232), - [anon_sym_U_SQUOTE] = ACTIONS(1232), - [anon_sym_u8_SQUOTE] = ACTIONS(1232), - [anon_sym_SQUOTE] = ACTIONS(1232), - [anon_sym_L_DQUOTE] = ACTIONS(1232), - [anon_sym_u_DQUOTE] = ACTIONS(1232), - [anon_sym_U_DQUOTE] = ACTIONS(1232), - [anon_sym_u8_DQUOTE] = ACTIONS(1232), - [anon_sym_DQUOTE] = ACTIONS(1232), - [sym_true] = ACTIONS(1230), - [sym_false] = ACTIONS(1230), - [anon_sym_NULL] = ACTIONS(1230), - [anon_sym_nullptr] = ACTIONS(1230), - [sym_comment] = ACTIONS(5), - }, - [505] = { - [sym_type_qualifier] = STATE(1517), - [sym_alignas_qualifier] = STATE(1671), - [sym_type_specifier] = STATE(1678), - [sym_sized_type_specifier] = STATE(1984), - [sym_enum_specifier] = STATE(1984), - [sym_struct_specifier] = STATE(1984), - [sym_union_specifier] = STATE(1984), - [sym_expression] = STATE(1592), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3239), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_type_descriptor] = STATE(3025), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1984), - [aux_sym__type_definition_type_repeat1] = STATE(1517), - [aux_sym_sized_type_specifier_repeat1] = STATE(1712), - [sym_identifier] = ACTIONS(1993), + [465] = { + [sym_attribute_declaration] = STATE(465), + [sym_compound_statement] = STATE(251), + [sym_attributed_statement] = STATE(251), + [sym_statement] = STATE(195), + [sym_labeled_statement] = STATE(251), + [sym_expression_statement] = STATE(251), + [sym_if_statement] = STATE(251), + [sym_switch_statement] = STATE(251), + [sym_case_statement] = STATE(251), + [sym_while_statement] = STATE(251), + [sym_do_statement] = STATE(251), + [sym_for_statement] = STATE(251), + [sym_return_statement] = STATE(251), + [sym_break_statement] = STATE(251), + [sym_continue_statement] = STATE(251), + [sym_goto_statement] = STATE(251), + [sym_seh_try_statement] = STATE(251), + [sym_seh_leave_statement] = STATE(251), + [sym_expression] = STATE(1615), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3118), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(465), + [sym_identifier] = ACTIONS(1935), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1614), + [anon_sym_BANG] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_if] = ACTIONS(1944), + [anon_sym_switch] = ACTIONS(1947), + [anon_sym_case] = ACTIONS(1950), + [anon_sym_default] = ACTIONS(1953), + [anon_sym_while] = ACTIONS(1956), + [anon_sym_do] = ACTIONS(1959), + [anon_sym_for] = ACTIONS(1962), + [anon_sym_return] = ACTIONS(1965), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1971), + [anon_sym_goto] = ACTIONS(1974), + [anon_sym___try] = ACTIONS(1977), + [anon_sym___leave] = ACTIONS(1980), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1677), + [anon_sym___alignof__] = ACTIONS(1680), + [anon_sym___alignof] = ACTIONS(1680), + [anon_sym__alignof] = ACTIONS(1680), + [anon_sym_alignof] = ACTIONS(1680), + [anon_sym__Alignof] = ACTIONS(1680), + [anon_sym_offsetof] = ACTIONS(1683), + [anon_sym__Generic] = ACTIONS(1686), + [anon_sym_asm] = ACTIONS(1689), + [anon_sym___asm__] = ACTIONS(1689), + [sym_number_literal] = ACTIONS(1692), + [anon_sym_L_SQUOTE] = ACTIONS(1695), + [anon_sym_u_SQUOTE] = ACTIONS(1695), + [anon_sym_U_SQUOTE] = ACTIONS(1695), + [anon_sym_u8_SQUOTE] = ACTIONS(1695), + [anon_sym_SQUOTE] = ACTIONS(1695), + [anon_sym_L_DQUOTE] = ACTIONS(1698), + [anon_sym_u_DQUOTE] = ACTIONS(1698), + [anon_sym_U_DQUOTE] = ACTIONS(1698), + [anon_sym_u8_DQUOTE] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [sym_true] = ACTIONS(1701), + [sym_false] = ACTIONS(1701), + [anon_sym_NULL] = ACTIONS(1704), + [anon_sym_nullptr] = ACTIONS(1704), + [sym_comment] = ACTIONS(5), + }, + [466] = { + [sym_attribute_declaration] = STATE(457), + [sym_compound_statement] = STATE(251), + [sym_attributed_statement] = STATE(251), + [sym_statement] = STATE(199), + [sym_labeled_statement] = STATE(251), + [sym_expression_statement] = STATE(251), + [sym_if_statement] = STATE(251), + [sym_switch_statement] = STATE(251), + [sym_case_statement] = STATE(251), + [sym_while_statement] = STATE(251), + [sym_do_statement] = STATE(251), + [sym_for_statement] = STATE(251), + [sym_return_statement] = STATE(251), + [sym_break_statement] = STATE(251), + [sym_continue_statement] = STATE(251), + [sym_goto_statement] = STATE(251), + [sym_seh_try_statement] = STATE(251), + [sym_seh_leave_statement] = STATE(251), + [sym_expression] = STATE(1615), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3118), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(457), + [sym_identifier] = ACTIONS(1707), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -76318,25 +72897,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym___extension__] = ACTIONS(1995), - [anon_sym_signed] = ACTIONS(1997), - [anon_sym_unsigned] = ACTIONS(1997), - [anon_sym_long] = ACTIONS(1997), - [anon_sym_short] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_constexpr] = ACTIONS(1995), - [anon_sym_volatile] = ACTIONS(1995), - [anon_sym_restrict] = ACTIONS(1995), - [anon_sym___restrict__] = ACTIONS(1995), - [anon_sym__Atomic] = ACTIONS(1995), - [anon_sym__Noreturn] = ACTIONS(1995), - [anon_sym_noreturn] = ACTIONS(1995), - [anon_sym_alignas] = ACTIONS(1999), - [anon_sym__Alignas] = ACTIONS(1999), - [sym_primitive_type] = ACTIONS(2001), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_struct] = ACTIONS(2005), - [anon_sym_union] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_if] = ACTIONS(67), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_case] = ACTIONS(71), + [anon_sym_default] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_do] = ACTIONS(77), + [anon_sym_for] = ACTIONS(79), + [anon_sym_return] = ACTIONS(81), + [anon_sym_break] = ACTIONS(83), + [anon_sym_continue] = ACTIONS(85), + [anon_sym_goto] = ACTIONS(87), + [anon_sym___try] = ACTIONS(968), + [anon_sym___leave] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -76366,322 +72942,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [506] = { - [sym_identifier] = ACTIONS(1278), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1280), - [anon_sym_BANG] = ACTIONS(1280), - [anon_sym_TILDE] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1280), - [anon_sym___extension__] = ACTIONS(1278), - [anon_sym_typedef] = ACTIONS(1278), - [anon_sym_extern] = ACTIONS(1278), - [anon_sym___attribute__] = ACTIONS(1278), - [anon_sym___scanf] = ACTIONS(1278), - [anon_sym___printf] = ACTIONS(1278), - [anon_sym___read_mostly] = ACTIONS(1278), - [anon_sym___must_hold] = ACTIONS(1278), - [anon_sym___ro_after_init] = ACTIONS(1278), - [anon_sym___noreturn] = ACTIONS(1278), - [anon_sym___cold] = ACTIONS(1278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1280), - [anon_sym___declspec] = ACTIONS(1278), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_signed] = ACTIONS(1278), - [anon_sym_unsigned] = ACTIONS(1278), - [anon_sym_long] = ACTIONS(1278), - [anon_sym_short] = ACTIONS(1278), - [anon_sym_static] = ACTIONS(1278), - [anon_sym_auto] = ACTIONS(1278), - [anon_sym_register] = ACTIONS(1278), - [anon_sym_inline] = ACTIONS(1278), - [anon_sym___inline] = ACTIONS(1278), - [anon_sym___inline__] = ACTIONS(1278), - [anon_sym___forceinline] = ACTIONS(1278), - [anon_sym_thread_local] = ACTIONS(1278), - [anon_sym___thread] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_constexpr] = ACTIONS(1278), - [anon_sym_volatile] = ACTIONS(1278), - [anon_sym_restrict] = ACTIONS(1278), - [anon_sym___restrict__] = ACTIONS(1278), - [anon_sym__Atomic] = ACTIONS(1278), - [anon_sym__Noreturn] = ACTIONS(1278), - [anon_sym_noreturn] = ACTIONS(1278), - [anon_sym_alignas] = ACTIONS(1278), - [anon_sym__Alignas] = ACTIONS(1278), - [sym_primitive_type] = ACTIONS(1278), - [anon_sym_enum] = ACTIONS(1278), - [anon_sym_struct] = ACTIONS(1278), - [anon_sym_union] = ACTIONS(1278), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_else] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(1278), - [anon_sym_while] = ACTIONS(1278), - [anon_sym_do] = ACTIONS(1278), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(1278), - [anon_sym_break] = ACTIONS(1278), - [anon_sym_continue] = ACTIONS(1278), - [anon_sym_goto] = ACTIONS(1278), - [anon_sym___try] = ACTIONS(1278), - [anon_sym___leave] = ACTIONS(1278), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_sizeof] = ACTIONS(1278), - [anon_sym___alignof__] = ACTIONS(1278), - [anon_sym___alignof] = ACTIONS(1278), - [anon_sym__alignof] = ACTIONS(1278), - [anon_sym_alignof] = ACTIONS(1278), - [anon_sym__Alignof] = ACTIONS(1278), - [anon_sym_offsetof] = ACTIONS(1278), - [anon_sym__Generic] = ACTIONS(1278), - [anon_sym_asm] = ACTIONS(1278), - [anon_sym___asm__] = ACTIONS(1278), - [sym_number_literal] = ACTIONS(1280), - [anon_sym_L_SQUOTE] = ACTIONS(1280), - [anon_sym_u_SQUOTE] = ACTIONS(1280), - [anon_sym_U_SQUOTE] = ACTIONS(1280), - [anon_sym_u8_SQUOTE] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1280), - [anon_sym_L_DQUOTE] = ACTIONS(1280), - [anon_sym_u_DQUOTE] = ACTIONS(1280), - [anon_sym_U_DQUOTE] = ACTIONS(1280), - [anon_sym_u8_DQUOTE] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym_true] = ACTIONS(1278), - [sym_false] = ACTIONS(1278), - [anon_sym_NULL] = ACTIONS(1278), - [anon_sym_nullptr] = ACTIONS(1278), - [sym_comment] = ACTIONS(5), - }, - [507] = { - [sym_identifier] = ACTIONS(1286), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1288), - [anon_sym_BANG] = ACTIONS(1288), - [anon_sym_TILDE] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym___extension__] = ACTIONS(1286), - [anon_sym_typedef] = ACTIONS(1286), - [anon_sym_extern] = ACTIONS(1286), - [anon_sym___attribute__] = ACTIONS(1286), - [anon_sym___scanf] = ACTIONS(1286), - [anon_sym___printf] = ACTIONS(1286), - [anon_sym___read_mostly] = ACTIONS(1286), - [anon_sym___must_hold] = ACTIONS(1286), - [anon_sym___ro_after_init] = ACTIONS(1286), - [anon_sym___noreturn] = ACTIONS(1286), - [anon_sym___cold] = ACTIONS(1286), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1288), - [anon_sym___declspec] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_signed] = ACTIONS(1286), - [anon_sym_unsigned] = ACTIONS(1286), - [anon_sym_long] = ACTIONS(1286), - [anon_sym_short] = ACTIONS(1286), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_auto] = ACTIONS(1286), - [anon_sym_register] = ACTIONS(1286), - [anon_sym_inline] = ACTIONS(1286), - [anon_sym___inline] = ACTIONS(1286), - [anon_sym___inline__] = ACTIONS(1286), - [anon_sym___forceinline] = ACTIONS(1286), - [anon_sym_thread_local] = ACTIONS(1286), - [anon_sym___thread] = ACTIONS(1286), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_constexpr] = ACTIONS(1286), - [anon_sym_volatile] = ACTIONS(1286), - [anon_sym_restrict] = ACTIONS(1286), - [anon_sym___restrict__] = ACTIONS(1286), - [anon_sym__Atomic] = ACTIONS(1286), - [anon_sym__Noreturn] = ACTIONS(1286), - [anon_sym_noreturn] = ACTIONS(1286), - [anon_sym_alignas] = ACTIONS(1286), - [anon_sym__Alignas] = ACTIONS(1286), - [sym_primitive_type] = ACTIONS(1286), - [anon_sym_enum] = ACTIONS(1286), - [anon_sym_struct] = ACTIONS(1286), - [anon_sym_union] = ACTIONS(1286), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_else] = ACTIONS(1286), - [anon_sym_switch] = ACTIONS(1286), - [anon_sym_while] = ACTIONS(1286), - [anon_sym_do] = ACTIONS(1286), - [anon_sym_for] = ACTIONS(1286), - [anon_sym_return] = ACTIONS(1286), - [anon_sym_break] = ACTIONS(1286), - [anon_sym_continue] = ACTIONS(1286), - [anon_sym_goto] = ACTIONS(1286), - [anon_sym___try] = ACTIONS(1286), - [anon_sym___leave] = ACTIONS(1286), - [anon_sym_DASH_DASH] = ACTIONS(1288), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_sizeof] = ACTIONS(1286), - [anon_sym___alignof__] = ACTIONS(1286), - [anon_sym___alignof] = ACTIONS(1286), - [anon_sym__alignof] = ACTIONS(1286), - [anon_sym_alignof] = ACTIONS(1286), - [anon_sym__Alignof] = ACTIONS(1286), - [anon_sym_offsetof] = ACTIONS(1286), - [anon_sym__Generic] = ACTIONS(1286), - [anon_sym_asm] = ACTIONS(1286), - [anon_sym___asm__] = ACTIONS(1286), - [sym_number_literal] = ACTIONS(1288), - [anon_sym_L_SQUOTE] = ACTIONS(1288), - [anon_sym_u_SQUOTE] = ACTIONS(1288), - [anon_sym_U_SQUOTE] = ACTIONS(1288), - [anon_sym_u8_SQUOTE] = ACTIONS(1288), - [anon_sym_SQUOTE] = ACTIONS(1288), - [anon_sym_L_DQUOTE] = ACTIONS(1288), - [anon_sym_u_DQUOTE] = ACTIONS(1288), - [anon_sym_U_DQUOTE] = ACTIONS(1288), - [anon_sym_u8_DQUOTE] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym_true] = ACTIONS(1286), - [sym_false] = ACTIONS(1286), - [anon_sym_NULL] = ACTIONS(1286), - [anon_sym_nullptr] = ACTIONS(1286), - [sym_comment] = ACTIONS(5), - }, - [508] = { - [sym_identifier] = ACTIONS(1254), + [467] = { + [sym_attribute_declaration] = STATE(462), + [sym_compound_statement] = STATE(2855), + [sym_attributed_statement] = STATE(2855), + [sym_statement] = STATE(2772), + [sym_labeled_statement] = STATE(2855), + [sym_expression_statement] = STATE(2855), + [sym_if_statement] = STATE(2855), + [sym_switch_statement] = STATE(2855), + [sym_case_statement] = STATE(2855), + [sym_while_statement] = STATE(2855), + [sym_do_statement] = STATE(2855), + [sym_for_statement] = STATE(2855), + [sym_return_statement] = STATE(2855), + [sym_break_statement] = STATE(2855), + [sym_continue_statement] = STATE(2855), + [sym_goto_statement] = STATE(2855), + [sym_seh_try_statement] = STATE(2855), + [sym_seh_leave_statement] = STATE(2855), + [sym_expression] = STATE(1602), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3116), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(462), + [sym_identifier] = ACTIONS(1709), [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1256), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_SEMI] = ACTIONS(1256), - [anon_sym___extension__] = ACTIONS(1254), - [anon_sym_typedef] = ACTIONS(1254), - [anon_sym_extern] = ACTIONS(1254), - [anon_sym___attribute__] = ACTIONS(1254), - [anon_sym___scanf] = ACTIONS(1254), - [anon_sym___printf] = ACTIONS(1254), - [anon_sym___read_mostly] = ACTIONS(1254), - [anon_sym___must_hold] = ACTIONS(1254), - [anon_sym___ro_after_init] = ACTIONS(1254), - [anon_sym___noreturn] = ACTIONS(1254), - [anon_sym___cold] = ACTIONS(1254), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1256), - [anon_sym___declspec] = ACTIONS(1254), - [anon_sym_LBRACE] = ACTIONS(1256), - [anon_sym_signed] = ACTIONS(1254), - [anon_sym_unsigned] = ACTIONS(1254), - [anon_sym_long] = ACTIONS(1254), - [anon_sym_short] = ACTIONS(1254), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_auto] = ACTIONS(1254), - [anon_sym_register] = ACTIONS(1254), - [anon_sym_inline] = ACTIONS(1254), - [anon_sym___inline] = ACTIONS(1254), - [anon_sym___inline__] = ACTIONS(1254), - [anon_sym___forceinline] = ACTIONS(1254), - [anon_sym_thread_local] = ACTIONS(1254), - [anon_sym___thread] = ACTIONS(1254), - [anon_sym_const] = ACTIONS(1254), - [anon_sym_constexpr] = ACTIONS(1254), - [anon_sym_volatile] = ACTIONS(1254), - [anon_sym_restrict] = ACTIONS(1254), - [anon_sym___restrict__] = ACTIONS(1254), - [anon_sym__Atomic] = ACTIONS(1254), - [anon_sym__Noreturn] = ACTIONS(1254), - [anon_sym_noreturn] = ACTIONS(1254), - [anon_sym_alignas] = ACTIONS(1254), - [anon_sym__Alignas] = ACTIONS(1254), - [sym_primitive_type] = ACTIONS(1254), - [anon_sym_enum] = ACTIONS(1254), - [anon_sym_struct] = ACTIONS(1254), - [anon_sym_union] = ACTIONS(1254), - [anon_sym_if] = ACTIONS(1254), - [anon_sym_else] = ACTIONS(1254), - [anon_sym_switch] = ACTIONS(1254), - [anon_sym_while] = ACTIONS(1254), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_for] = ACTIONS(1254), - [anon_sym_return] = ACTIONS(1254), - [anon_sym_break] = ACTIONS(1254), - [anon_sym_continue] = ACTIONS(1254), - [anon_sym_goto] = ACTIONS(1254), - [anon_sym___try] = ACTIONS(1254), - [anon_sym___leave] = ACTIONS(1254), - [anon_sym_DASH_DASH] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1256), - [anon_sym_sizeof] = ACTIONS(1254), - [anon_sym___alignof__] = ACTIONS(1254), - [anon_sym___alignof] = ACTIONS(1254), - [anon_sym__alignof] = ACTIONS(1254), - [anon_sym_alignof] = ACTIONS(1254), - [anon_sym__Alignof] = ACTIONS(1254), - [anon_sym_offsetof] = ACTIONS(1254), - [anon_sym__Generic] = ACTIONS(1254), - [anon_sym_asm] = ACTIONS(1254), - [anon_sym___asm__] = ACTIONS(1254), - [sym_number_literal] = ACTIONS(1256), - [anon_sym_L_SQUOTE] = ACTIONS(1256), - [anon_sym_u_SQUOTE] = ACTIONS(1256), - [anon_sym_U_SQUOTE] = ACTIONS(1256), - [anon_sym_u8_SQUOTE] = ACTIONS(1256), - [anon_sym_SQUOTE] = ACTIONS(1256), - [anon_sym_L_DQUOTE] = ACTIONS(1256), - [anon_sym_u_DQUOTE] = ACTIONS(1256), - [anon_sym_U_DQUOTE] = ACTIONS(1256), - [anon_sym_u8_DQUOTE] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(1256), - [sym_true] = ACTIONS(1254), - [sym_false] = ACTIONS(1254), - [anon_sym_NULL] = ACTIONS(1254), - [anon_sym_nullptr] = ACTIONS(1254), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_switch] = ACTIONS(1717), + [anon_sym_case] = ACTIONS(1607), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1719), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1723), + [anon_sym_return] = ACTIONS(1725), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1729), + [anon_sym_goto] = ACTIONS(1731), + [anon_sym___try] = ACTIONS(1733), + [anon_sym___leave] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [509] = { - [sym_type_qualifier] = STATE(1517), - [sym_alignas_qualifier] = STATE(1671), - [sym_type_specifier] = STATE(1678), - [sym_sized_type_specifier] = STATE(1984), - [sym_enum_specifier] = STATE(1984), - [sym_struct_specifier] = STATE(1984), - [sym_union_specifier] = STATE(1984), - [sym_expression] = STATE(1558), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3398), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_type_descriptor] = STATE(3021), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1984), - [aux_sym__type_definition_type_repeat1] = STATE(1517), - [aux_sym_sized_type_specifier_repeat1] = STATE(1712), - [sym_identifier] = ACTIONS(1993), + [468] = { + [sym_attribute_declaration] = STATE(462), + [sym_compound_statement] = STATE(2855), + [sym_attributed_statement] = STATE(2855), + [sym_statement] = STATE(2792), + [sym_labeled_statement] = STATE(2855), + [sym_expression_statement] = STATE(2855), + [sym_if_statement] = STATE(2855), + [sym_switch_statement] = STATE(2855), + [sym_case_statement] = STATE(2855), + [sym_while_statement] = STATE(2855), + [sym_do_statement] = STATE(2855), + [sym_for_statement] = STATE(2855), + [sym_return_statement] = STATE(2855), + [sym_break_statement] = STATE(2855), + [sym_continue_statement] = STATE(2855), + [sym_goto_statement] = STATE(2855), + [sym_seh_try_statement] = STATE(2855), + [sym_seh_leave_statement] = STATE(2855), + [sym_expression] = STATE(1602), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3116), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_attributed_declarator_repeat1] = STATE(462), + [sym_identifier] = ACTIONS(1709), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -76690,25 +73093,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym___extension__] = ACTIONS(1995), - [anon_sym_signed] = ACTIONS(1997), - [anon_sym_unsigned] = ACTIONS(1997), - [anon_sym_long] = ACTIONS(1997), - [anon_sym_short] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_constexpr] = ACTIONS(1995), - [anon_sym_volatile] = ACTIONS(1995), - [anon_sym_restrict] = ACTIONS(1995), - [anon_sym___restrict__] = ACTIONS(1995), - [anon_sym__Atomic] = ACTIONS(1995), - [anon_sym__Noreturn] = ACTIONS(1995), - [anon_sym_noreturn] = ACTIONS(1995), - [anon_sym_alignas] = ACTIONS(1999), - [anon_sym__Alignas] = ACTIONS(1999), - [sym_primitive_type] = ACTIONS(2001), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_struct] = ACTIONS(2005), - [anon_sym_union] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_switch] = ACTIONS(1717), + [anon_sym_case] = ACTIONS(1607), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1719), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1723), + [anon_sym_return] = ACTIONS(1725), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1729), + [anon_sym_goto] = ACTIONS(1731), + [anon_sym___try] = ACTIONS(1733), + [anon_sym___leave] = ACTIONS(1735), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -76738,508 +73138,1366 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [510] = { - [sym_identifier] = ACTIONS(1294), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1296), - [anon_sym_TILDE] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym___extension__] = ACTIONS(1294), - [anon_sym_typedef] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym___attribute__] = ACTIONS(1294), - [anon_sym___scanf] = ACTIONS(1294), - [anon_sym___printf] = ACTIONS(1294), - [anon_sym___read_mostly] = ACTIONS(1294), - [anon_sym___must_hold] = ACTIONS(1294), - [anon_sym___ro_after_init] = ACTIONS(1294), - [anon_sym___noreturn] = ACTIONS(1294), - [anon_sym___cold] = ACTIONS(1294), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1296), - [anon_sym___declspec] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_signed] = ACTIONS(1294), - [anon_sym_unsigned] = ACTIONS(1294), - [anon_sym_long] = ACTIONS(1294), - [anon_sym_short] = ACTIONS(1294), - [anon_sym_static] = ACTIONS(1294), - [anon_sym_auto] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_inline] = ACTIONS(1294), - [anon_sym___inline] = ACTIONS(1294), - [anon_sym___inline__] = ACTIONS(1294), - [anon_sym___forceinline] = ACTIONS(1294), - [anon_sym_thread_local] = ACTIONS(1294), - [anon_sym___thread] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [anon_sym_constexpr] = ACTIONS(1294), - [anon_sym_volatile] = ACTIONS(1294), - [anon_sym_restrict] = ACTIONS(1294), - [anon_sym___restrict__] = ACTIONS(1294), - [anon_sym__Atomic] = ACTIONS(1294), - [anon_sym__Noreturn] = ACTIONS(1294), - [anon_sym_noreturn] = ACTIONS(1294), - [anon_sym_alignas] = ACTIONS(1294), - [anon_sym__Alignas] = ACTIONS(1294), - [sym_primitive_type] = ACTIONS(1294), - [anon_sym_enum] = ACTIONS(1294), - [anon_sym_struct] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1294), - [anon_sym_switch] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_goto] = ACTIONS(1294), - [anon_sym___try] = ACTIONS(1294), - [anon_sym___leave] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_sizeof] = ACTIONS(1294), - [anon_sym___alignof__] = ACTIONS(1294), - [anon_sym___alignof] = ACTIONS(1294), - [anon_sym__alignof] = ACTIONS(1294), - [anon_sym_alignof] = ACTIONS(1294), - [anon_sym__Alignof] = ACTIONS(1294), - [anon_sym_offsetof] = ACTIONS(1294), - [anon_sym__Generic] = ACTIONS(1294), - [anon_sym_asm] = ACTIONS(1294), - [anon_sym___asm__] = ACTIONS(1294), - [sym_number_literal] = ACTIONS(1296), - [anon_sym_L_SQUOTE] = ACTIONS(1296), - [anon_sym_u_SQUOTE] = ACTIONS(1296), - [anon_sym_U_SQUOTE] = ACTIONS(1296), - [anon_sym_u8_SQUOTE] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [anon_sym_L_DQUOTE] = ACTIONS(1296), - [anon_sym_u_DQUOTE] = ACTIONS(1296), - [anon_sym_U_DQUOTE] = ACTIONS(1296), - [anon_sym_u8_DQUOTE] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym_true] = ACTIONS(1294), - [sym_false] = ACTIONS(1294), - [anon_sym_NULL] = ACTIONS(1294), - [anon_sym_nullptr] = ACTIONS(1294), + [469] = { + [sym_string_literal] = STATE(891), + [aux_sym_sized_type_specifier_repeat1] = STATE(960), + [sym_identifier] = ACTIONS(1983), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_PLUS] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_SLASH] = ACTIONS(1991), + [anon_sym_PERCENT] = ACTIONS(1991), + [anon_sym_PIPE_PIPE] = ACTIONS(1985), + [anon_sym_AMP_AMP] = ACTIONS(1985), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_CARET] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym_EQ_EQ] = ACTIONS(1985), + [anon_sym_BANG_EQ] = ACTIONS(1985), + [anon_sym_GT] = ACTIONS(1991), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(1985), + [anon_sym___extension__] = ACTIONS(1983), + [anon_sym_extern] = ACTIONS(1983), + [anon_sym___attribute__] = ACTIONS(1983), + [anon_sym___scanf] = ACTIONS(1983), + [anon_sym___printf] = ACTIONS(1983), + [anon_sym___read_mostly] = ACTIONS(1983), + [anon_sym___must_hold] = ACTIONS(1983), + [anon_sym___ro_after_init] = ACTIONS(1983), + [anon_sym___noreturn] = ACTIONS(1983), + [anon_sym___cold] = ACTIONS(1983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1996), + [anon_sym___declspec] = ACTIONS(1983), + [anon_sym___based] = ACTIONS(1983), + [anon_sym___init] = ACTIONS(1983), + [anon_sym___exit] = ACTIONS(1983), + [anon_sym___cdecl] = ACTIONS(1983), + [anon_sym___clrcall] = ACTIONS(1983), + [anon_sym___stdcall] = ACTIONS(1983), + [anon_sym___fastcall] = ACTIONS(1983), + [anon_sym___thiscall] = ACTIONS(1983), + [anon_sym___vectorcall] = ACTIONS(1983), + [anon_sym_signed] = ACTIONS(1998), + [anon_sym_unsigned] = ACTIONS(1998), + [anon_sym_long] = ACTIONS(1998), + [anon_sym_short] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_static] = ACTIONS(1983), + [anon_sym_EQ] = ACTIONS(2000), + [anon_sym_auto] = ACTIONS(1983), + [anon_sym_register] = ACTIONS(1983), + [anon_sym_inline] = ACTIONS(1983), + [anon_sym___inline] = ACTIONS(1983), + [anon_sym___inline__] = ACTIONS(1983), + [anon_sym___forceinline] = ACTIONS(1983), + [anon_sym_thread_local] = ACTIONS(1983), + [anon_sym___thread] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1983), + [anon_sym_constexpr] = ACTIONS(1983), + [anon_sym_volatile] = ACTIONS(1983), + [anon_sym_restrict] = ACTIONS(1983), + [anon_sym___restrict__] = ACTIONS(1983), + [anon_sym__Atomic] = ACTIONS(1983), + [anon_sym__Noreturn] = ACTIONS(1983), + [anon_sym_noreturn] = ACTIONS(1983), + [anon_sym_alignas] = ACTIONS(1983), + [anon_sym__Alignas] = ACTIONS(1983), + [anon_sym_COLON] = ACTIONS(2002), + [anon_sym_QMARK] = ACTIONS(1985), + [anon_sym_STAR_EQ] = ACTIONS(2004), + [anon_sym_SLASH_EQ] = ACTIONS(2004), + [anon_sym_PERCENT_EQ] = ACTIONS(2004), + [anon_sym_PLUS_EQ] = ACTIONS(2004), + [anon_sym_DASH_EQ] = ACTIONS(2004), + [anon_sym_LT_LT_EQ] = ACTIONS(2004), + [anon_sym_GT_GT_EQ] = ACTIONS(2004), + [anon_sym_AMP_EQ] = ACTIONS(2004), + [anon_sym_CARET_EQ] = ACTIONS(2004), + [anon_sym_PIPE_EQ] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_PLUS_PLUS] = ACTIONS(1985), + [anon_sym_DOT] = ACTIONS(1985), + [anon_sym_DASH_GT] = ACTIONS(1985), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), [sym_comment] = ACTIONS(5), }, - [511] = { - [sym_identifier] = ACTIONS(1290), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1292), - [anon_sym_BANG] = ACTIONS(1292), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1290), - [anon_sym_STAR] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym___extension__] = ACTIONS(1290), - [anon_sym_typedef] = ACTIONS(1290), - [anon_sym_extern] = ACTIONS(1290), - [anon_sym___attribute__] = ACTIONS(1290), - [anon_sym___scanf] = ACTIONS(1290), - [anon_sym___printf] = ACTIONS(1290), - [anon_sym___read_mostly] = ACTIONS(1290), - [anon_sym___must_hold] = ACTIONS(1290), - [anon_sym___ro_after_init] = ACTIONS(1290), - [anon_sym___noreturn] = ACTIONS(1290), - [anon_sym___cold] = ACTIONS(1290), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1292), - [anon_sym___declspec] = ACTIONS(1290), - [anon_sym_LBRACE] = ACTIONS(1292), - [anon_sym_signed] = ACTIONS(1290), - [anon_sym_unsigned] = ACTIONS(1290), - [anon_sym_long] = ACTIONS(1290), - [anon_sym_short] = ACTIONS(1290), - [anon_sym_static] = ACTIONS(1290), - [anon_sym_auto] = ACTIONS(1290), - [anon_sym_register] = ACTIONS(1290), - [anon_sym_inline] = ACTIONS(1290), - [anon_sym___inline] = ACTIONS(1290), - [anon_sym___inline__] = ACTIONS(1290), - [anon_sym___forceinline] = ACTIONS(1290), - [anon_sym_thread_local] = ACTIONS(1290), - [anon_sym___thread] = ACTIONS(1290), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_constexpr] = ACTIONS(1290), - [anon_sym_volatile] = ACTIONS(1290), - [anon_sym_restrict] = ACTIONS(1290), - [anon_sym___restrict__] = ACTIONS(1290), - [anon_sym__Atomic] = ACTIONS(1290), - [anon_sym__Noreturn] = ACTIONS(1290), - [anon_sym_noreturn] = ACTIONS(1290), - [anon_sym_alignas] = ACTIONS(1290), - [anon_sym__Alignas] = ACTIONS(1290), - [sym_primitive_type] = ACTIONS(1290), - [anon_sym_enum] = ACTIONS(1290), - [anon_sym_struct] = ACTIONS(1290), - [anon_sym_union] = ACTIONS(1290), - [anon_sym_if] = ACTIONS(1290), - [anon_sym_else] = ACTIONS(1290), - [anon_sym_switch] = ACTIONS(1290), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_do] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_return] = ACTIONS(1290), - [anon_sym_break] = ACTIONS(1290), - [anon_sym_continue] = ACTIONS(1290), - [anon_sym_goto] = ACTIONS(1290), - [anon_sym___try] = ACTIONS(1290), - [anon_sym___leave] = ACTIONS(1290), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_sizeof] = ACTIONS(1290), - [anon_sym___alignof__] = ACTIONS(1290), - [anon_sym___alignof] = ACTIONS(1290), - [anon_sym__alignof] = ACTIONS(1290), - [anon_sym_alignof] = ACTIONS(1290), - [anon_sym__Alignof] = ACTIONS(1290), - [anon_sym_offsetof] = ACTIONS(1290), - [anon_sym__Generic] = ACTIONS(1290), - [anon_sym_asm] = ACTIONS(1290), - [anon_sym___asm__] = ACTIONS(1290), - [sym_number_literal] = ACTIONS(1292), - [anon_sym_L_SQUOTE] = ACTIONS(1292), - [anon_sym_u_SQUOTE] = ACTIONS(1292), - [anon_sym_U_SQUOTE] = ACTIONS(1292), - [anon_sym_u8_SQUOTE] = ACTIONS(1292), - [anon_sym_SQUOTE] = ACTIONS(1292), - [anon_sym_L_DQUOTE] = ACTIONS(1292), - [anon_sym_u_DQUOTE] = ACTIONS(1292), - [anon_sym_U_DQUOTE] = ACTIONS(1292), - [anon_sym_u8_DQUOTE] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1292), - [sym_true] = ACTIONS(1290), - [sym_false] = ACTIONS(1290), - [anon_sym_NULL] = ACTIONS(1290), - [anon_sym_nullptr] = ACTIONS(1290), + [470] = { + [sym_string_literal] = STATE(891), + [aux_sym_sized_type_specifier_repeat1] = STATE(960), + [sym_identifier] = ACTIONS(1983), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_PLUS] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_SLASH] = ACTIONS(1991), + [anon_sym_PERCENT] = ACTIONS(1991), + [anon_sym_PIPE_PIPE] = ACTIONS(1985), + [anon_sym_AMP_AMP] = ACTIONS(1985), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_CARET] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym_EQ_EQ] = ACTIONS(1985), + [anon_sym_BANG_EQ] = ACTIONS(1985), + [anon_sym_GT] = ACTIONS(1991), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(1983), + [anon_sym_extern] = ACTIONS(1983), + [anon_sym___attribute__] = ACTIONS(1983), + [anon_sym___scanf] = ACTIONS(1983), + [anon_sym___printf] = ACTIONS(1983), + [anon_sym___read_mostly] = ACTIONS(1983), + [anon_sym___must_hold] = ACTIONS(1983), + [anon_sym___ro_after_init] = ACTIONS(1983), + [anon_sym___noreturn] = ACTIONS(1983), + [anon_sym___cold] = ACTIONS(1983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1996), + [anon_sym___declspec] = ACTIONS(1983), + [anon_sym___based] = ACTIONS(1983), + [anon_sym___init] = ACTIONS(1983), + [anon_sym___exit] = ACTIONS(1983), + [anon_sym___cdecl] = ACTIONS(1983), + [anon_sym___clrcall] = ACTIONS(1983), + [anon_sym___stdcall] = ACTIONS(1983), + [anon_sym___fastcall] = ACTIONS(1983), + [anon_sym___thiscall] = ACTIONS(1983), + [anon_sym___vectorcall] = ACTIONS(1983), + [anon_sym_signed] = ACTIONS(1998), + [anon_sym_unsigned] = ACTIONS(1998), + [anon_sym_long] = ACTIONS(1998), + [anon_sym_short] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_static] = ACTIONS(1983), + [anon_sym_EQ] = ACTIONS(2000), + [anon_sym_auto] = ACTIONS(1983), + [anon_sym_register] = ACTIONS(1983), + [anon_sym_inline] = ACTIONS(1983), + [anon_sym___inline] = ACTIONS(1983), + [anon_sym___inline__] = ACTIONS(1983), + [anon_sym___forceinline] = ACTIONS(1983), + [anon_sym_thread_local] = ACTIONS(1983), + [anon_sym___thread] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1983), + [anon_sym_constexpr] = ACTIONS(1983), + [anon_sym_volatile] = ACTIONS(1983), + [anon_sym_restrict] = ACTIONS(1983), + [anon_sym___restrict__] = ACTIONS(1983), + [anon_sym__Atomic] = ACTIONS(1983), + [anon_sym__Noreturn] = ACTIONS(1983), + [anon_sym_noreturn] = ACTIONS(1983), + [anon_sym_alignas] = ACTIONS(1983), + [anon_sym__Alignas] = ACTIONS(1983), + [anon_sym_COLON] = ACTIONS(2009), + [anon_sym_QMARK] = ACTIONS(1985), + [anon_sym_STAR_EQ] = ACTIONS(2004), + [anon_sym_SLASH_EQ] = ACTIONS(2004), + [anon_sym_PERCENT_EQ] = ACTIONS(2004), + [anon_sym_PLUS_EQ] = ACTIONS(2004), + [anon_sym_DASH_EQ] = ACTIONS(2004), + [anon_sym_LT_LT_EQ] = ACTIONS(2004), + [anon_sym_GT_GT_EQ] = ACTIONS(2004), + [anon_sym_AMP_EQ] = ACTIONS(2004), + [anon_sym_CARET_EQ] = ACTIONS(2004), + [anon_sym_PIPE_EQ] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_PLUS_PLUS] = ACTIONS(1985), + [anon_sym_DOT] = ACTIONS(1985), + [anon_sym_DASH_GT] = ACTIONS(1985), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), [sym_comment] = ACTIONS(5), }, - [512] = { - [sym_identifier] = ACTIONS(1222), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1224), - [anon_sym_BANG] = ACTIONS(1224), - [anon_sym_TILDE] = ACTIONS(1224), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_STAR] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym___extension__] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(1222), - [anon_sym___attribute__] = ACTIONS(1222), - [anon_sym___scanf] = ACTIONS(1222), - [anon_sym___printf] = ACTIONS(1222), - [anon_sym___read_mostly] = ACTIONS(1222), - [anon_sym___must_hold] = ACTIONS(1222), - [anon_sym___ro_after_init] = ACTIONS(1222), - [anon_sym___noreturn] = ACTIONS(1222), - [anon_sym___cold] = ACTIONS(1222), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1224), - [anon_sym___declspec] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_signed] = ACTIONS(1222), - [anon_sym_unsigned] = ACTIONS(1222), - [anon_sym_long] = ACTIONS(1222), - [anon_sym_short] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1222), - [anon_sym_auto] = ACTIONS(1222), - [anon_sym_register] = ACTIONS(1222), - [anon_sym_inline] = ACTIONS(1222), - [anon_sym___inline] = ACTIONS(1222), - [anon_sym___inline__] = ACTIONS(1222), - [anon_sym___forceinline] = ACTIONS(1222), - [anon_sym_thread_local] = ACTIONS(1222), - [anon_sym___thread] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_constexpr] = ACTIONS(1222), - [anon_sym_volatile] = ACTIONS(1222), - [anon_sym_restrict] = ACTIONS(1222), - [anon_sym___restrict__] = ACTIONS(1222), - [anon_sym__Atomic] = ACTIONS(1222), - [anon_sym__Noreturn] = ACTIONS(1222), - [anon_sym_noreturn] = ACTIONS(1222), - [anon_sym_alignas] = ACTIONS(1222), - [anon_sym__Alignas] = ACTIONS(1222), - [sym_primitive_type] = ACTIONS(1222), - [anon_sym_enum] = ACTIONS(1222), - [anon_sym_struct] = ACTIONS(1222), - [anon_sym_union] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_else] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(1222), - [anon_sym_while] = ACTIONS(1222), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_break] = ACTIONS(1222), - [anon_sym_continue] = ACTIONS(1222), - [anon_sym_goto] = ACTIONS(1222), - [anon_sym___try] = ACTIONS(1222), - [anon_sym___leave] = ACTIONS(1222), - [anon_sym_DASH_DASH] = ACTIONS(1224), - [anon_sym_PLUS_PLUS] = ACTIONS(1224), - [anon_sym_sizeof] = ACTIONS(1222), - [anon_sym___alignof__] = ACTIONS(1222), - [anon_sym___alignof] = ACTIONS(1222), - [anon_sym__alignof] = ACTIONS(1222), - [anon_sym_alignof] = ACTIONS(1222), - [anon_sym__Alignof] = ACTIONS(1222), - [anon_sym_offsetof] = ACTIONS(1222), - [anon_sym__Generic] = ACTIONS(1222), - [anon_sym_asm] = ACTIONS(1222), - [anon_sym___asm__] = ACTIONS(1222), - [sym_number_literal] = ACTIONS(1224), - [anon_sym_L_SQUOTE] = ACTIONS(1224), - [anon_sym_u_SQUOTE] = ACTIONS(1224), - [anon_sym_U_SQUOTE] = ACTIONS(1224), - [anon_sym_u8_SQUOTE] = ACTIONS(1224), - [anon_sym_SQUOTE] = ACTIONS(1224), - [anon_sym_L_DQUOTE] = ACTIONS(1224), - [anon_sym_u_DQUOTE] = ACTIONS(1224), - [anon_sym_U_DQUOTE] = ACTIONS(1224), - [anon_sym_u8_DQUOTE] = ACTIONS(1224), - [anon_sym_DQUOTE] = ACTIONS(1224), - [sym_true] = ACTIONS(1222), - [sym_false] = ACTIONS(1222), - [anon_sym_NULL] = ACTIONS(1222), - [anon_sym_nullptr] = ACTIONS(1222), + [471] = { + [sym_string_literal] = STATE(891), + [aux_sym_sized_type_specifier_repeat1] = STATE(960), + [sym_identifier] = ACTIONS(1983), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_PLUS] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_SLASH] = ACTIONS(1991), + [anon_sym_PERCENT] = ACTIONS(1991), + [anon_sym_PIPE_PIPE] = ACTIONS(1985), + [anon_sym_AMP_AMP] = ACTIONS(1985), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_CARET] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym_EQ_EQ] = ACTIONS(1985), + [anon_sym_BANG_EQ] = ACTIONS(1985), + [anon_sym_GT] = ACTIONS(1991), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(1985), + [anon_sym___extension__] = ACTIONS(1983), + [anon_sym_extern] = ACTIONS(1983), + [anon_sym___attribute__] = ACTIONS(1983), + [anon_sym___scanf] = ACTIONS(1983), + [anon_sym___printf] = ACTIONS(1983), + [anon_sym___read_mostly] = ACTIONS(1983), + [anon_sym___must_hold] = ACTIONS(1983), + [anon_sym___ro_after_init] = ACTIONS(1983), + [anon_sym___noreturn] = ACTIONS(1983), + [anon_sym___cold] = ACTIONS(1983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1996), + [anon_sym___declspec] = ACTIONS(1983), + [anon_sym___based] = ACTIONS(1983), + [anon_sym___init] = ACTIONS(1983), + [anon_sym___exit] = ACTIONS(1983), + [anon_sym___cdecl] = ACTIONS(1983), + [anon_sym___clrcall] = ACTIONS(1983), + [anon_sym___stdcall] = ACTIONS(1983), + [anon_sym___fastcall] = ACTIONS(1983), + [anon_sym___thiscall] = ACTIONS(1983), + [anon_sym___vectorcall] = ACTIONS(1983), + [anon_sym_signed] = ACTIONS(1998), + [anon_sym_unsigned] = ACTIONS(1998), + [anon_sym_long] = ACTIONS(1998), + [anon_sym_short] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_static] = ACTIONS(1983), + [anon_sym_EQ] = ACTIONS(2000), + [anon_sym_auto] = ACTIONS(1983), + [anon_sym_register] = ACTIONS(1983), + [anon_sym_inline] = ACTIONS(1983), + [anon_sym___inline] = ACTIONS(1983), + [anon_sym___inline__] = ACTIONS(1983), + [anon_sym___forceinline] = ACTIONS(1983), + [anon_sym_thread_local] = ACTIONS(1983), + [anon_sym___thread] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1983), + [anon_sym_constexpr] = ACTIONS(1983), + [anon_sym_volatile] = ACTIONS(1983), + [anon_sym_restrict] = ACTIONS(1983), + [anon_sym___restrict__] = ACTIONS(1983), + [anon_sym__Atomic] = ACTIONS(1983), + [anon_sym__Noreturn] = ACTIONS(1983), + [anon_sym_noreturn] = ACTIONS(1983), + [anon_sym_alignas] = ACTIONS(1983), + [anon_sym__Alignas] = ACTIONS(1983), + [anon_sym_COLON] = ACTIONS(2011), + [anon_sym_QMARK] = ACTIONS(1985), + [anon_sym_STAR_EQ] = ACTIONS(2004), + [anon_sym_SLASH_EQ] = ACTIONS(2004), + [anon_sym_PERCENT_EQ] = ACTIONS(2004), + [anon_sym_PLUS_EQ] = ACTIONS(2004), + [anon_sym_DASH_EQ] = ACTIONS(2004), + [anon_sym_LT_LT_EQ] = ACTIONS(2004), + [anon_sym_GT_GT_EQ] = ACTIONS(2004), + [anon_sym_AMP_EQ] = ACTIONS(2004), + [anon_sym_CARET_EQ] = ACTIONS(2004), + [anon_sym_PIPE_EQ] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_PLUS_PLUS] = ACTIONS(1985), + [anon_sym_DOT] = ACTIONS(1985), + [anon_sym_DASH_GT] = ACTIONS(1985), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), [sym_comment] = ACTIONS(5), }, - [513] = { - [sym_identifier] = ACTIONS(1218), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1220), - [anon_sym_BANG] = ACTIONS(1220), - [anon_sym_TILDE] = ACTIONS(1220), - [anon_sym_DASH] = ACTIONS(1218), - [anon_sym_PLUS] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1220), - [anon_sym_SEMI] = ACTIONS(1220), - [anon_sym___extension__] = ACTIONS(1218), - [anon_sym_typedef] = ACTIONS(1218), - [anon_sym_extern] = ACTIONS(1218), - [anon_sym___attribute__] = ACTIONS(1218), - [anon_sym___scanf] = ACTIONS(1218), - [anon_sym___printf] = ACTIONS(1218), - [anon_sym___read_mostly] = ACTIONS(1218), - [anon_sym___must_hold] = ACTIONS(1218), - [anon_sym___ro_after_init] = ACTIONS(1218), - [anon_sym___noreturn] = ACTIONS(1218), - [anon_sym___cold] = ACTIONS(1218), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1220), - [anon_sym___declspec] = ACTIONS(1218), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_signed] = ACTIONS(1218), - [anon_sym_unsigned] = ACTIONS(1218), - [anon_sym_long] = ACTIONS(1218), - [anon_sym_short] = ACTIONS(1218), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_auto] = ACTIONS(1218), - [anon_sym_register] = ACTIONS(1218), - [anon_sym_inline] = ACTIONS(1218), - [anon_sym___inline] = ACTIONS(1218), - [anon_sym___inline__] = ACTIONS(1218), - [anon_sym___forceinline] = ACTIONS(1218), - [anon_sym_thread_local] = ACTIONS(1218), - [anon_sym___thread] = ACTIONS(1218), - [anon_sym_const] = ACTIONS(1218), - [anon_sym_constexpr] = ACTIONS(1218), - [anon_sym_volatile] = ACTIONS(1218), - [anon_sym_restrict] = ACTIONS(1218), - [anon_sym___restrict__] = ACTIONS(1218), - [anon_sym__Atomic] = ACTIONS(1218), - [anon_sym__Noreturn] = ACTIONS(1218), - [anon_sym_noreturn] = ACTIONS(1218), - [anon_sym_alignas] = ACTIONS(1218), - [anon_sym__Alignas] = ACTIONS(1218), - [sym_primitive_type] = ACTIONS(1218), - [anon_sym_enum] = ACTIONS(1218), - [anon_sym_struct] = ACTIONS(1218), - [anon_sym_union] = ACTIONS(1218), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_else] = ACTIONS(1218), - [anon_sym_switch] = ACTIONS(1218), - [anon_sym_while] = ACTIONS(1218), - [anon_sym_do] = ACTIONS(1218), - [anon_sym_for] = ACTIONS(1218), - [anon_sym_return] = ACTIONS(1218), - [anon_sym_break] = ACTIONS(1218), - [anon_sym_continue] = ACTIONS(1218), - [anon_sym_goto] = ACTIONS(1218), - [anon_sym___try] = ACTIONS(1218), - [anon_sym___leave] = ACTIONS(1218), - [anon_sym_DASH_DASH] = ACTIONS(1220), - [anon_sym_PLUS_PLUS] = ACTIONS(1220), - [anon_sym_sizeof] = ACTIONS(1218), - [anon_sym___alignof__] = ACTIONS(1218), - [anon_sym___alignof] = ACTIONS(1218), - [anon_sym__alignof] = ACTIONS(1218), - [anon_sym_alignof] = ACTIONS(1218), - [anon_sym__Alignof] = ACTIONS(1218), - [anon_sym_offsetof] = ACTIONS(1218), - [anon_sym__Generic] = ACTIONS(1218), - [anon_sym_asm] = ACTIONS(1218), - [anon_sym___asm__] = ACTIONS(1218), - [sym_number_literal] = ACTIONS(1220), - [anon_sym_L_SQUOTE] = ACTIONS(1220), - [anon_sym_u_SQUOTE] = ACTIONS(1220), - [anon_sym_U_SQUOTE] = ACTIONS(1220), - [anon_sym_u8_SQUOTE] = ACTIONS(1220), - [anon_sym_SQUOTE] = ACTIONS(1220), - [anon_sym_L_DQUOTE] = ACTIONS(1220), - [anon_sym_u_DQUOTE] = ACTIONS(1220), - [anon_sym_U_DQUOTE] = ACTIONS(1220), - [anon_sym_u8_DQUOTE] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1220), - [sym_true] = ACTIONS(1218), - [sym_false] = ACTIONS(1218), - [anon_sym_NULL] = ACTIONS(1218), - [anon_sym_nullptr] = ACTIONS(1218), + [472] = { + [sym_expression] = STATE(1367), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1224), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1224), + [sym_call_expression] = STATE(1224), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1224), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1224), + [sym_initializer_list] = STATE(1212), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_identifier] = ACTIONS(1737), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1544), + [anon_sym_SLASH] = ACTIONS(1544), + [anon_sym_PERCENT] = ACTIONS(1544), + [anon_sym_PIPE_PIPE] = ACTIONS(1538), + [anon_sym_AMP_AMP] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_CARET] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1544), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_LT_LT] = ACTIONS(1544), + [anon_sym_GT_GT] = ACTIONS(1544), + [anon_sym_LBRACE] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_RBRACK] = ACTIONS(1538), + [anon_sym_EQ] = ACTIONS(1544), + [anon_sym_QMARK] = ACTIONS(1538), + [anon_sym_STAR_EQ] = ACTIONS(1538), + [anon_sym_SLASH_EQ] = ACTIONS(1538), + [anon_sym_PERCENT_EQ] = ACTIONS(1538), + [anon_sym_PLUS_EQ] = ACTIONS(1538), + [anon_sym_DASH_EQ] = ACTIONS(1538), + [anon_sym_LT_LT_EQ] = ACTIONS(1538), + [anon_sym_GT_GT_EQ] = ACTIONS(1538), + [anon_sym_AMP_EQ] = ACTIONS(1538), + [anon_sym_CARET_EQ] = ACTIONS(1538), + [anon_sym_PIPE_EQ] = ACTIONS(1538), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_sizeof] = ACTIONS(2017), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(1544), + [anon_sym_DASH_GT] = ACTIONS(1538), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [514] = { - [sym_identifier] = ACTIONS(1274), + [473] = { + [sym_string_literal] = STATE(891), + [aux_sym_sized_type_specifier_repeat1] = STATE(960), + [sym_identifier] = ACTIONS(1983), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_PLUS] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_SLASH] = ACTIONS(1991), + [anon_sym_PERCENT] = ACTIONS(1991), + [anon_sym_PIPE_PIPE] = ACTIONS(1985), + [anon_sym_AMP_AMP] = ACTIONS(1985), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_CARET] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym_EQ_EQ] = ACTIONS(1985), + [anon_sym_BANG_EQ] = ACTIONS(1985), + [anon_sym_GT] = ACTIONS(1991), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(1985), + [anon_sym___extension__] = ACTIONS(1983), + [anon_sym_extern] = ACTIONS(1983), + [anon_sym___attribute__] = ACTIONS(1983), + [anon_sym___scanf] = ACTIONS(1983), + [anon_sym___printf] = ACTIONS(1983), + [anon_sym___read_mostly] = ACTIONS(1983), + [anon_sym___must_hold] = ACTIONS(1983), + [anon_sym___ro_after_init] = ACTIONS(1983), + [anon_sym___noreturn] = ACTIONS(1983), + [anon_sym___cold] = ACTIONS(1983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1996), + [anon_sym___declspec] = ACTIONS(1983), + [anon_sym___based] = ACTIONS(1983), + [anon_sym___init] = ACTIONS(1983), + [anon_sym___exit] = ACTIONS(1983), + [anon_sym___cdecl] = ACTIONS(1983), + [anon_sym___clrcall] = ACTIONS(1983), + [anon_sym___stdcall] = ACTIONS(1983), + [anon_sym___fastcall] = ACTIONS(1983), + [anon_sym___thiscall] = ACTIONS(1983), + [anon_sym___vectorcall] = ACTIONS(1983), + [anon_sym_signed] = ACTIONS(1998), + [anon_sym_unsigned] = ACTIONS(1998), + [anon_sym_long] = ACTIONS(1998), + [anon_sym_short] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_static] = ACTIONS(1983), + [anon_sym_EQ] = ACTIONS(2000), + [anon_sym_auto] = ACTIONS(1983), + [anon_sym_register] = ACTIONS(1983), + [anon_sym_inline] = ACTIONS(1983), + [anon_sym___inline] = ACTIONS(1983), + [anon_sym___inline__] = ACTIONS(1983), + [anon_sym___forceinline] = ACTIONS(1983), + [anon_sym_thread_local] = ACTIONS(1983), + [anon_sym___thread] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1983), + [anon_sym_constexpr] = ACTIONS(1983), + [anon_sym_volatile] = ACTIONS(1983), + [anon_sym_restrict] = ACTIONS(1983), + [anon_sym___restrict__] = ACTIONS(1983), + [anon_sym__Atomic] = ACTIONS(1983), + [anon_sym__Noreturn] = ACTIONS(1983), + [anon_sym_noreturn] = ACTIONS(1983), + [anon_sym_alignas] = ACTIONS(1983), + [anon_sym__Alignas] = ACTIONS(1983), + [anon_sym_COLON] = ACTIONS(2019), + [anon_sym_QMARK] = ACTIONS(1985), + [anon_sym_STAR_EQ] = ACTIONS(2004), + [anon_sym_SLASH_EQ] = ACTIONS(2004), + [anon_sym_PERCENT_EQ] = ACTIONS(2004), + [anon_sym_PLUS_EQ] = ACTIONS(2004), + [anon_sym_DASH_EQ] = ACTIONS(2004), + [anon_sym_LT_LT_EQ] = ACTIONS(2004), + [anon_sym_GT_GT_EQ] = ACTIONS(2004), + [anon_sym_AMP_EQ] = ACTIONS(2004), + [anon_sym_CARET_EQ] = ACTIONS(2004), + [anon_sym_PIPE_EQ] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_PLUS_PLUS] = ACTIONS(1985), + [anon_sym_DOT] = ACTIONS(1985), + [anon_sym_DASH_GT] = ACTIONS(1985), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_comment] = ACTIONS(5), + }, + [474] = { + [sym_string_literal] = STATE(891), + [aux_sym_sized_type_specifier_repeat1] = STATE(960), + [sym_identifier] = ACTIONS(1983), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_PLUS] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_SLASH] = ACTIONS(1991), + [anon_sym_PERCENT] = ACTIONS(1991), + [anon_sym_PIPE_PIPE] = ACTIONS(1985), + [anon_sym_AMP_AMP] = ACTIONS(1985), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_CARET] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym_EQ_EQ] = ACTIONS(1985), + [anon_sym_BANG_EQ] = ACTIONS(1985), + [anon_sym_GT] = ACTIONS(1991), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(1985), + [anon_sym___extension__] = ACTIONS(1983), + [anon_sym_extern] = ACTIONS(1983), + [anon_sym___attribute__] = ACTIONS(1983), + [anon_sym___scanf] = ACTIONS(1983), + [anon_sym___printf] = ACTIONS(1983), + [anon_sym___read_mostly] = ACTIONS(1983), + [anon_sym___must_hold] = ACTIONS(1983), + [anon_sym___ro_after_init] = ACTIONS(1983), + [anon_sym___noreturn] = ACTIONS(1983), + [anon_sym___cold] = ACTIONS(1983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1996), + [anon_sym___declspec] = ACTIONS(1983), + [anon_sym___based] = ACTIONS(1983), + [anon_sym___init] = ACTIONS(1983), + [anon_sym___exit] = ACTIONS(1983), + [anon_sym___cdecl] = ACTIONS(1983), + [anon_sym___clrcall] = ACTIONS(1983), + [anon_sym___stdcall] = ACTIONS(1983), + [anon_sym___fastcall] = ACTIONS(1983), + [anon_sym___thiscall] = ACTIONS(1983), + [anon_sym___vectorcall] = ACTIONS(1983), + [anon_sym_signed] = ACTIONS(1998), + [anon_sym_unsigned] = ACTIONS(1998), + [anon_sym_long] = ACTIONS(1998), + [anon_sym_short] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_static] = ACTIONS(1983), + [anon_sym_EQ] = ACTIONS(2000), + [anon_sym_auto] = ACTIONS(1983), + [anon_sym_register] = ACTIONS(1983), + [anon_sym_inline] = ACTIONS(1983), + [anon_sym___inline] = ACTIONS(1983), + [anon_sym___inline__] = ACTIONS(1983), + [anon_sym___forceinline] = ACTIONS(1983), + [anon_sym_thread_local] = ACTIONS(1983), + [anon_sym___thread] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1983), + [anon_sym_constexpr] = ACTIONS(1983), + [anon_sym_volatile] = ACTIONS(1983), + [anon_sym_restrict] = ACTIONS(1983), + [anon_sym___restrict__] = ACTIONS(1983), + [anon_sym__Atomic] = ACTIONS(1983), + [anon_sym__Noreturn] = ACTIONS(1983), + [anon_sym_noreturn] = ACTIONS(1983), + [anon_sym_alignas] = ACTIONS(1983), + [anon_sym__Alignas] = ACTIONS(1983), + [anon_sym_COLON] = ACTIONS(2009), + [anon_sym_QMARK] = ACTIONS(1985), + [anon_sym_STAR_EQ] = ACTIONS(2004), + [anon_sym_SLASH_EQ] = ACTIONS(2004), + [anon_sym_PERCENT_EQ] = ACTIONS(2004), + [anon_sym_PLUS_EQ] = ACTIONS(2004), + [anon_sym_DASH_EQ] = ACTIONS(2004), + [anon_sym_LT_LT_EQ] = ACTIONS(2004), + [anon_sym_GT_GT_EQ] = ACTIONS(2004), + [anon_sym_AMP_EQ] = ACTIONS(2004), + [anon_sym_CARET_EQ] = ACTIONS(2004), + [anon_sym_PIPE_EQ] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_PLUS_PLUS] = ACTIONS(1985), + [anon_sym_DOT] = ACTIONS(1985), + [anon_sym_DASH_GT] = ACTIONS(1985), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_comment] = ACTIONS(5), + }, + [475] = { + [sym_string_literal] = STATE(891), + [aux_sym_sized_type_specifier_repeat1] = STATE(960), + [sym_identifier] = ACTIONS(1983), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_PLUS] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_SLASH] = ACTIONS(1991), + [anon_sym_PERCENT] = ACTIONS(1991), + [anon_sym_PIPE_PIPE] = ACTIONS(1985), + [anon_sym_AMP_AMP] = ACTIONS(1985), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_CARET] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym_EQ_EQ] = ACTIONS(1985), + [anon_sym_BANG_EQ] = ACTIONS(1985), + [anon_sym_GT] = ACTIONS(1991), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(1985), + [anon_sym___extension__] = ACTIONS(1983), + [anon_sym_extern] = ACTIONS(1983), + [anon_sym___attribute__] = ACTIONS(1983), + [anon_sym___scanf] = ACTIONS(1983), + [anon_sym___printf] = ACTIONS(1983), + [anon_sym___read_mostly] = ACTIONS(1983), + [anon_sym___must_hold] = ACTIONS(1983), + [anon_sym___ro_after_init] = ACTIONS(1983), + [anon_sym___noreturn] = ACTIONS(1983), + [anon_sym___cold] = ACTIONS(1983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1996), + [anon_sym___declspec] = ACTIONS(1983), + [anon_sym___based] = ACTIONS(1983), + [anon_sym___init] = ACTIONS(1983), + [anon_sym___exit] = ACTIONS(1983), + [anon_sym___cdecl] = ACTIONS(1983), + [anon_sym___clrcall] = ACTIONS(1983), + [anon_sym___stdcall] = ACTIONS(1983), + [anon_sym___fastcall] = ACTIONS(1983), + [anon_sym___thiscall] = ACTIONS(1983), + [anon_sym___vectorcall] = ACTIONS(1983), + [anon_sym_signed] = ACTIONS(1998), + [anon_sym_unsigned] = ACTIONS(1998), + [anon_sym_long] = ACTIONS(1998), + [anon_sym_short] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_static] = ACTIONS(1983), + [anon_sym_EQ] = ACTIONS(2000), + [anon_sym_auto] = ACTIONS(1983), + [anon_sym_register] = ACTIONS(1983), + [anon_sym_inline] = ACTIONS(1983), + [anon_sym___inline] = ACTIONS(1983), + [anon_sym___inline__] = ACTIONS(1983), + [anon_sym___forceinline] = ACTIONS(1983), + [anon_sym_thread_local] = ACTIONS(1983), + [anon_sym___thread] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1983), + [anon_sym_constexpr] = ACTIONS(1983), + [anon_sym_volatile] = ACTIONS(1983), + [anon_sym_restrict] = ACTIONS(1983), + [anon_sym___restrict__] = ACTIONS(1983), + [anon_sym__Atomic] = ACTIONS(1983), + [anon_sym__Noreturn] = ACTIONS(1983), + [anon_sym_noreturn] = ACTIONS(1983), + [anon_sym_alignas] = ACTIONS(1983), + [anon_sym__Alignas] = ACTIONS(1983), + [anon_sym_COLON] = ACTIONS(2021), + [anon_sym_QMARK] = ACTIONS(1985), + [anon_sym_STAR_EQ] = ACTIONS(2004), + [anon_sym_SLASH_EQ] = ACTIONS(2004), + [anon_sym_PERCENT_EQ] = ACTIONS(2004), + [anon_sym_PLUS_EQ] = ACTIONS(2004), + [anon_sym_DASH_EQ] = ACTIONS(2004), + [anon_sym_LT_LT_EQ] = ACTIONS(2004), + [anon_sym_GT_GT_EQ] = ACTIONS(2004), + [anon_sym_AMP_EQ] = ACTIONS(2004), + [anon_sym_CARET_EQ] = ACTIONS(2004), + [anon_sym_PIPE_EQ] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_PLUS_PLUS] = ACTIONS(1985), + [anon_sym_DOT] = ACTIONS(1985), + [anon_sym_DASH_GT] = ACTIONS(1985), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_comment] = ACTIONS(5), + }, + [476] = { + [sym_string_literal] = STATE(891), + [aux_sym_sized_type_specifier_repeat1] = STATE(960), + [sym_identifier] = ACTIONS(1983), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_PLUS] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_SLASH] = ACTIONS(1991), + [anon_sym_PERCENT] = ACTIONS(1991), + [anon_sym_PIPE_PIPE] = ACTIONS(1985), + [anon_sym_AMP_AMP] = ACTIONS(1985), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_CARET] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym_EQ_EQ] = ACTIONS(1985), + [anon_sym_BANG_EQ] = ACTIONS(1985), + [anon_sym_GT] = ACTIONS(1991), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(1983), + [anon_sym_extern] = ACTIONS(1983), + [anon_sym___attribute__] = ACTIONS(1983), + [anon_sym___scanf] = ACTIONS(1983), + [anon_sym___printf] = ACTIONS(1983), + [anon_sym___read_mostly] = ACTIONS(1983), + [anon_sym___must_hold] = ACTIONS(1983), + [anon_sym___ro_after_init] = ACTIONS(1983), + [anon_sym___noreturn] = ACTIONS(1983), + [anon_sym___cold] = ACTIONS(1983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1996), + [anon_sym___declspec] = ACTIONS(1983), + [anon_sym___based] = ACTIONS(1983), + [anon_sym___init] = ACTIONS(1983), + [anon_sym___exit] = ACTIONS(1983), + [anon_sym___cdecl] = ACTIONS(1983), + [anon_sym___clrcall] = ACTIONS(1983), + [anon_sym___stdcall] = ACTIONS(1983), + [anon_sym___fastcall] = ACTIONS(1983), + [anon_sym___thiscall] = ACTIONS(1983), + [anon_sym___vectorcall] = ACTIONS(1983), + [anon_sym_signed] = ACTIONS(1998), + [anon_sym_unsigned] = ACTIONS(1998), + [anon_sym_long] = ACTIONS(1998), + [anon_sym_short] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_static] = ACTIONS(1983), + [anon_sym_EQ] = ACTIONS(2000), + [anon_sym_auto] = ACTIONS(1983), + [anon_sym_register] = ACTIONS(1983), + [anon_sym_inline] = ACTIONS(1983), + [anon_sym___inline] = ACTIONS(1983), + [anon_sym___inline__] = ACTIONS(1983), + [anon_sym___forceinline] = ACTIONS(1983), + [anon_sym_thread_local] = ACTIONS(1983), + [anon_sym___thread] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1983), + [anon_sym_constexpr] = ACTIONS(1983), + [anon_sym_volatile] = ACTIONS(1983), + [anon_sym_restrict] = ACTIONS(1983), + [anon_sym___restrict__] = ACTIONS(1983), + [anon_sym__Atomic] = ACTIONS(1983), + [anon_sym__Noreturn] = ACTIONS(1983), + [anon_sym_noreturn] = ACTIONS(1983), + [anon_sym_alignas] = ACTIONS(1983), + [anon_sym__Alignas] = ACTIONS(1983), + [anon_sym_COLON] = ACTIONS(2021), + [anon_sym_QMARK] = ACTIONS(1985), + [anon_sym_STAR_EQ] = ACTIONS(2004), + [anon_sym_SLASH_EQ] = ACTIONS(2004), + [anon_sym_PERCENT_EQ] = ACTIONS(2004), + [anon_sym_PLUS_EQ] = ACTIONS(2004), + [anon_sym_DASH_EQ] = ACTIONS(2004), + [anon_sym_LT_LT_EQ] = ACTIONS(2004), + [anon_sym_GT_GT_EQ] = ACTIONS(2004), + [anon_sym_AMP_EQ] = ACTIONS(2004), + [anon_sym_CARET_EQ] = ACTIONS(2004), + [anon_sym_PIPE_EQ] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_PLUS_PLUS] = ACTIONS(1985), + [anon_sym_DOT] = ACTIONS(1985), + [anon_sym_DASH_GT] = ACTIONS(1985), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_comment] = ACTIONS(5), + }, + [477] = { + [sym_string_literal] = STATE(891), + [aux_sym_sized_type_specifier_repeat1] = STATE(960), + [sym_identifier] = ACTIONS(1983), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_PLUS] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_SLASH] = ACTIONS(1991), + [anon_sym_PERCENT] = ACTIONS(1991), + [anon_sym_PIPE_PIPE] = ACTIONS(1985), + [anon_sym_AMP_AMP] = ACTIONS(1985), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_CARET] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym_EQ_EQ] = ACTIONS(1985), + [anon_sym_BANG_EQ] = ACTIONS(1985), + [anon_sym_GT] = ACTIONS(1991), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(1983), + [anon_sym_extern] = ACTIONS(1983), + [anon_sym___attribute__] = ACTIONS(1983), + [anon_sym___scanf] = ACTIONS(1983), + [anon_sym___printf] = ACTIONS(1983), + [anon_sym___read_mostly] = ACTIONS(1983), + [anon_sym___must_hold] = ACTIONS(1983), + [anon_sym___ro_after_init] = ACTIONS(1983), + [anon_sym___noreturn] = ACTIONS(1983), + [anon_sym___cold] = ACTIONS(1983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1996), + [anon_sym___declspec] = ACTIONS(1983), + [anon_sym___based] = ACTIONS(1983), + [anon_sym___init] = ACTIONS(1983), + [anon_sym___exit] = ACTIONS(1983), + [anon_sym___cdecl] = ACTIONS(1983), + [anon_sym___clrcall] = ACTIONS(1983), + [anon_sym___stdcall] = ACTIONS(1983), + [anon_sym___fastcall] = ACTIONS(1983), + [anon_sym___thiscall] = ACTIONS(1983), + [anon_sym___vectorcall] = ACTIONS(1983), + [anon_sym_signed] = ACTIONS(1998), + [anon_sym_unsigned] = ACTIONS(1998), + [anon_sym_long] = ACTIONS(1998), + [anon_sym_short] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_static] = ACTIONS(1983), + [anon_sym_EQ] = ACTIONS(2000), + [anon_sym_auto] = ACTIONS(1983), + [anon_sym_register] = ACTIONS(1983), + [anon_sym_inline] = ACTIONS(1983), + [anon_sym___inline] = ACTIONS(1983), + [anon_sym___inline__] = ACTIONS(1983), + [anon_sym___forceinline] = ACTIONS(1983), + [anon_sym_thread_local] = ACTIONS(1983), + [anon_sym___thread] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1983), + [anon_sym_constexpr] = ACTIONS(1983), + [anon_sym_volatile] = ACTIONS(1983), + [anon_sym_restrict] = ACTIONS(1983), + [anon_sym___restrict__] = ACTIONS(1983), + [anon_sym__Atomic] = ACTIONS(1983), + [anon_sym__Noreturn] = ACTIONS(1983), + [anon_sym_noreturn] = ACTIONS(1983), + [anon_sym_alignas] = ACTIONS(1983), + [anon_sym__Alignas] = ACTIONS(1983), + [anon_sym_COLON] = ACTIONS(2002), + [anon_sym_QMARK] = ACTIONS(1985), + [anon_sym_STAR_EQ] = ACTIONS(2004), + [anon_sym_SLASH_EQ] = ACTIONS(2004), + [anon_sym_PERCENT_EQ] = ACTIONS(2004), + [anon_sym_PLUS_EQ] = ACTIONS(2004), + [anon_sym_DASH_EQ] = ACTIONS(2004), + [anon_sym_LT_LT_EQ] = ACTIONS(2004), + [anon_sym_GT_GT_EQ] = ACTIONS(2004), + [anon_sym_AMP_EQ] = ACTIONS(2004), + [anon_sym_CARET_EQ] = ACTIONS(2004), + [anon_sym_PIPE_EQ] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_PLUS_PLUS] = ACTIONS(1985), + [anon_sym_DOT] = ACTIONS(1985), + [anon_sym_DASH_GT] = ACTIONS(1985), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_comment] = ACTIONS(5), + }, + [478] = { + [sym_else_clause] = STATE(486), + [sym_identifier] = ACTIONS(1240), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_TILDE] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1240), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym___extension__] = ACTIONS(1240), + [anon_sym_typedef] = ACTIONS(1240), + [anon_sym_extern] = ACTIONS(1240), + [anon_sym___attribute__] = ACTIONS(1240), + [anon_sym___scanf] = ACTIONS(1240), + [anon_sym___printf] = ACTIONS(1240), + [anon_sym___read_mostly] = ACTIONS(1240), + [anon_sym___must_hold] = ACTIONS(1240), + [anon_sym___ro_after_init] = ACTIONS(1240), + [anon_sym___noreturn] = ACTIONS(1240), + [anon_sym___cold] = ACTIONS(1240), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1242), + [anon_sym___declspec] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1242), + [anon_sym_signed] = ACTIONS(1240), + [anon_sym_unsigned] = ACTIONS(1240), + [anon_sym_long] = ACTIONS(1240), + [anon_sym_short] = ACTIONS(1240), + [anon_sym_static] = ACTIONS(1240), + [anon_sym_auto] = ACTIONS(1240), + [anon_sym_register] = ACTIONS(1240), + [anon_sym_inline] = ACTIONS(1240), + [anon_sym___inline] = ACTIONS(1240), + [anon_sym___inline__] = ACTIONS(1240), + [anon_sym___forceinline] = ACTIONS(1240), + [anon_sym_thread_local] = ACTIONS(1240), + [anon_sym___thread] = ACTIONS(1240), + [anon_sym_const] = ACTIONS(1240), + [anon_sym_constexpr] = ACTIONS(1240), + [anon_sym_volatile] = ACTIONS(1240), + [anon_sym_restrict] = ACTIONS(1240), + [anon_sym___restrict__] = ACTIONS(1240), + [anon_sym__Atomic] = ACTIONS(1240), + [anon_sym__Noreturn] = ACTIONS(1240), + [anon_sym_noreturn] = ACTIONS(1240), + [anon_sym_alignas] = ACTIONS(1240), + [anon_sym__Alignas] = ACTIONS(1240), + [sym_primitive_type] = ACTIONS(1240), + [anon_sym_enum] = ACTIONS(1240), + [anon_sym_struct] = ACTIONS(1240), + [anon_sym_union] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(1240), + [anon_sym_else] = ACTIONS(2023), + [anon_sym_switch] = ACTIONS(1240), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_do] = ACTIONS(1240), + [anon_sym_for] = ACTIONS(1240), + [anon_sym_return] = ACTIONS(1240), + [anon_sym_break] = ACTIONS(1240), + [anon_sym_continue] = ACTIONS(1240), + [anon_sym_goto] = ACTIONS(1240), + [anon_sym___try] = ACTIONS(1240), + [anon_sym___leave] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1242), + [anon_sym_PLUS_PLUS] = ACTIONS(1242), + [anon_sym_sizeof] = ACTIONS(1240), + [anon_sym___alignof__] = ACTIONS(1240), + [anon_sym___alignof] = ACTIONS(1240), + [anon_sym__alignof] = ACTIONS(1240), + [anon_sym_alignof] = ACTIONS(1240), + [anon_sym__Alignof] = ACTIONS(1240), + [anon_sym_offsetof] = ACTIONS(1240), + [anon_sym__Generic] = ACTIONS(1240), + [anon_sym_asm] = ACTIONS(1240), + [anon_sym___asm__] = ACTIONS(1240), + [sym_number_literal] = ACTIONS(1242), + [anon_sym_L_SQUOTE] = ACTIONS(1242), + [anon_sym_u_SQUOTE] = ACTIONS(1242), + [anon_sym_U_SQUOTE] = ACTIONS(1242), + [anon_sym_u8_SQUOTE] = ACTIONS(1242), + [anon_sym_SQUOTE] = ACTIONS(1242), + [anon_sym_L_DQUOTE] = ACTIONS(1242), + [anon_sym_u_DQUOTE] = ACTIONS(1242), + [anon_sym_U_DQUOTE] = ACTIONS(1242), + [anon_sym_u8_DQUOTE] = ACTIONS(1242), + [anon_sym_DQUOTE] = ACTIONS(1242), + [sym_true] = ACTIONS(1240), + [sym_false] = ACTIONS(1240), + [anon_sym_NULL] = ACTIONS(1240), + [anon_sym_nullptr] = ACTIONS(1240), + [sym_comment] = ACTIONS(5), + }, + [479] = { + [sym_string_literal] = STATE(891), + [aux_sym_sized_type_specifier_repeat1] = STATE(960), + [sym_identifier] = ACTIONS(1983), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_PLUS] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_SLASH] = ACTIONS(1991), + [anon_sym_PERCENT] = ACTIONS(1991), + [anon_sym_PIPE_PIPE] = ACTIONS(1985), + [anon_sym_AMP_AMP] = ACTIONS(1985), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_CARET] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym_EQ_EQ] = ACTIONS(1985), + [anon_sym_BANG_EQ] = ACTIONS(1985), + [anon_sym_GT] = ACTIONS(1991), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(1985), + [anon_sym___extension__] = ACTIONS(1983), + [anon_sym_extern] = ACTIONS(1983), + [anon_sym___attribute__] = ACTIONS(1983), + [anon_sym___scanf] = ACTIONS(1983), + [anon_sym___printf] = ACTIONS(1983), + [anon_sym___read_mostly] = ACTIONS(1983), + [anon_sym___must_hold] = ACTIONS(1983), + [anon_sym___ro_after_init] = ACTIONS(1983), + [anon_sym___noreturn] = ACTIONS(1983), + [anon_sym___cold] = ACTIONS(1983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1996), + [anon_sym___declspec] = ACTIONS(1983), + [anon_sym___based] = ACTIONS(1983), + [anon_sym___init] = ACTIONS(1983), + [anon_sym___exit] = ACTIONS(1983), + [anon_sym___cdecl] = ACTIONS(1983), + [anon_sym___clrcall] = ACTIONS(1983), + [anon_sym___stdcall] = ACTIONS(1983), + [anon_sym___fastcall] = ACTIONS(1983), + [anon_sym___thiscall] = ACTIONS(1983), + [anon_sym___vectorcall] = ACTIONS(1983), + [anon_sym_signed] = ACTIONS(1998), + [anon_sym_unsigned] = ACTIONS(1998), + [anon_sym_long] = ACTIONS(1998), + [anon_sym_short] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_static] = ACTIONS(1983), + [anon_sym_EQ] = ACTIONS(2000), + [anon_sym_auto] = ACTIONS(1983), + [anon_sym_register] = ACTIONS(1983), + [anon_sym_inline] = ACTIONS(1983), + [anon_sym___inline] = ACTIONS(1983), + [anon_sym___inline__] = ACTIONS(1983), + [anon_sym___forceinline] = ACTIONS(1983), + [anon_sym_thread_local] = ACTIONS(1983), + [anon_sym___thread] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1983), + [anon_sym_constexpr] = ACTIONS(1983), + [anon_sym_volatile] = ACTIONS(1983), + [anon_sym_restrict] = ACTIONS(1983), + [anon_sym___restrict__] = ACTIONS(1983), + [anon_sym__Atomic] = ACTIONS(1983), + [anon_sym__Noreturn] = ACTIONS(1983), + [anon_sym_noreturn] = ACTIONS(1983), + [anon_sym_alignas] = ACTIONS(1983), + [anon_sym__Alignas] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1985), + [anon_sym_STAR_EQ] = ACTIONS(2004), + [anon_sym_SLASH_EQ] = ACTIONS(2004), + [anon_sym_PERCENT_EQ] = ACTIONS(2004), + [anon_sym_PLUS_EQ] = ACTIONS(2004), + [anon_sym_DASH_EQ] = ACTIONS(2004), + [anon_sym_LT_LT_EQ] = ACTIONS(2004), + [anon_sym_GT_GT_EQ] = ACTIONS(2004), + [anon_sym_AMP_EQ] = ACTIONS(2004), + [anon_sym_CARET_EQ] = ACTIONS(2004), + [anon_sym_PIPE_EQ] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_PLUS_PLUS] = ACTIONS(1985), + [anon_sym_DOT] = ACTIONS(1985), + [anon_sym_DASH_GT] = ACTIONS(1985), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_comment] = ACTIONS(5), + }, + [480] = { + [sym_string_literal] = STATE(891), + [aux_sym_sized_type_specifier_repeat1] = STATE(960), + [sym_identifier] = ACTIONS(1983), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_PLUS] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_SLASH] = ACTIONS(1991), + [anon_sym_PERCENT] = ACTIONS(1991), + [anon_sym_PIPE_PIPE] = ACTIONS(1985), + [anon_sym_AMP_AMP] = ACTIONS(1985), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_CARET] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym_EQ_EQ] = ACTIONS(1985), + [anon_sym_BANG_EQ] = ACTIONS(1985), + [anon_sym_GT] = ACTIONS(1991), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(2025), + [anon_sym___extension__] = ACTIONS(1983), + [anon_sym_extern] = ACTIONS(1983), + [anon_sym___attribute__] = ACTIONS(1983), + [anon_sym___scanf] = ACTIONS(1983), + [anon_sym___printf] = ACTIONS(1983), + [anon_sym___read_mostly] = ACTIONS(1983), + [anon_sym___must_hold] = ACTIONS(1983), + [anon_sym___ro_after_init] = ACTIONS(1983), + [anon_sym___noreturn] = ACTIONS(1983), + [anon_sym___cold] = ACTIONS(1983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1996), + [anon_sym___declspec] = ACTIONS(1983), + [anon_sym___based] = ACTIONS(1983), + [anon_sym___init] = ACTIONS(1983), + [anon_sym___exit] = ACTIONS(1983), + [anon_sym___cdecl] = ACTIONS(1983), + [anon_sym___clrcall] = ACTIONS(1983), + [anon_sym___stdcall] = ACTIONS(1983), + [anon_sym___fastcall] = ACTIONS(1983), + [anon_sym___thiscall] = ACTIONS(1983), + [anon_sym___vectorcall] = ACTIONS(1983), + [anon_sym_signed] = ACTIONS(1998), + [anon_sym_unsigned] = ACTIONS(1998), + [anon_sym_long] = ACTIONS(1998), + [anon_sym_short] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_static] = ACTIONS(1983), + [anon_sym_EQ] = ACTIONS(2000), + [anon_sym_auto] = ACTIONS(1983), + [anon_sym_register] = ACTIONS(1983), + [anon_sym_inline] = ACTIONS(1983), + [anon_sym___inline] = ACTIONS(1983), + [anon_sym___inline__] = ACTIONS(1983), + [anon_sym___forceinline] = ACTIONS(1983), + [anon_sym_thread_local] = ACTIONS(1983), + [anon_sym___thread] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1983), + [anon_sym_constexpr] = ACTIONS(1983), + [anon_sym_volatile] = ACTIONS(1983), + [anon_sym_restrict] = ACTIONS(1983), + [anon_sym___restrict__] = ACTIONS(1983), + [anon_sym__Atomic] = ACTIONS(1983), + [anon_sym__Noreturn] = ACTIONS(1983), + [anon_sym_noreturn] = ACTIONS(1983), + [anon_sym_alignas] = ACTIONS(1983), + [anon_sym__Alignas] = ACTIONS(1983), + [anon_sym_COLON] = ACTIONS(2019), + [anon_sym_QMARK] = ACTIONS(1985), + [anon_sym_STAR_EQ] = ACTIONS(2004), + [anon_sym_SLASH_EQ] = ACTIONS(2004), + [anon_sym_PERCENT_EQ] = ACTIONS(2004), + [anon_sym_PLUS_EQ] = ACTIONS(2004), + [anon_sym_DASH_EQ] = ACTIONS(2004), + [anon_sym_LT_LT_EQ] = ACTIONS(2004), + [anon_sym_GT_GT_EQ] = ACTIONS(2004), + [anon_sym_AMP_EQ] = ACTIONS(2004), + [anon_sym_CARET_EQ] = ACTIONS(2004), + [anon_sym_PIPE_EQ] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_PLUS_PLUS] = ACTIONS(1985), + [anon_sym_DOT] = ACTIONS(1985), + [anon_sym_DASH_GT] = ACTIONS(1985), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_comment] = ACTIONS(5), + }, + [481] = { + [sym_identifier] = ACTIONS(1310), [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1276), - [anon_sym_BANG] = ACTIONS(1276), - [anon_sym_TILDE] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym___extension__] = ACTIONS(1274), - [anon_sym_typedef] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym___attribute__] = ACTIONS(1274), - [anon_sym___scanf] = ACTIONS(1274), - [anon_sym___printf] = ACTIONS(1274), - [anon_sym___read_mostly] = ACTIONS(1274), - [anon_sym___must_hold] = ACTIONS(1274), - [anon_sym___ro_after_init] = ACTIONS(1274), - [anon_sym___noreturn] = ACTIONS(1274), - [anon_sym___cold] = ACTIONS(1274), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1276), - [anon_sym___declspec] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_signed] = ACTIONS(1274), - [anon_sym_unsigned] = ACTIONS(1274), - [anon_sym_long] = ACTIONS(1274), - [anon_sym_short] = ACTIONS(1274), - [anon_sym_static] = ACTIONS(1274), - [anon_sym_auto] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_inline] = ACTIONS(1274), - [anon_sym___inline] = ACTIONS(1274), - [anon_sym___inline__] = ACTIONS(1274), - [anon_sym___forceinline] = ACTIONS(1274), - [anon_sym_thread_local] = ACTIONS(1274), - [anon_sym___thread] = ACTIONS(1274), - [anon_sym_const] = ACTIONS(1274), - [anon_sym_constexpr] = ACTIONS(1274), - [anon_sym_volatile] = ACTIONS(1274), - [anon_sym_restrict] = ACTIONS(1274), - [anon_sym___restrict__] = ACTIONS(1274), - [anon_sym__Atomic] = ACTIONS(1274), - [anon_sym__Noreturn] = ACTIONS(1274), - [anon_sym_noreturn] = ACTIONS(1274), - [anon_sym_alignas] = ACTIONS(1274), - [anon_sym__Alignas] = ACTIONS(1274), - [sym_primitive_type] = ACTIONS(1274), - [anon_sym_enum] = ACTIONS(1274), - [anon_sym_struct] = ACTIONS(1274), - [anon_sym_union] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_else] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_do] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_goto] = ACTIONS(1274), - [anon_sym___try] = ACTIONS(1274), - [anon_sym___leave] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_sizeof] = ACTIONS(1274), - [anon_sym___alignof__] = ACTIONS(1274), - [anon_sym___alignof] = ACTIONS(1274), - [anon_sym__alignof] = ACTIONS(1274), - [anon_sym_alignof] = ACTIONS(1274), - [anon_sym__Alignof] = ACTIONS(1274), - [anon_sym_offsetof] = ACTIONS(1274), - [anon_sym__Generic] = ACTIONS(1274), - [anon_sym_asm] = ACTIONS(1274), - [anon_sym___asm__] = ACTIONS(1274), - [sym_number_literal] = ACTIONS(1276), - [anon_sym_L_SQUOTE] = ACTIONS(1276), - [anon_sym_u_SQUOTE] = ACTIONS(1276), - [anon_sym_U_SQUOTE] = ACTIONS(1276), - [anon_sym_u8_SQUOTE] = ACTIONS(1276), - [anon_sym_SQUOTE] = ACTIONS(1276), - [anon_sym_L_DQUOTE] = ACTIONS(1276), - [anon_sym_u_DQUOTE] = ACTIONS(1276), - [anon_sym_U_DQUOTE] = ACTIONS(1276), - [anon_sym_u8_DQUOTE] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym_true] = ACTIONS(1274), - [sym_false] = ACTIONS(1274), - [anon_sym_NULL] = ACTIONS(1274), - [anon_sym_nullptr] = ACTIONS(1274), + [anon_sym_LPAREN2] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym___extension__] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym___scanf] = ACTIONS(1310), + [anon_sym___printf] = ACTIONS(1310), + [anon_sym___read_mostly] = ACTIONS(1310), + [anon_sym___must_hold] = ACTIONS(1310), + [anon_sym___ro_after_init] = ACTIONS(1310), + [anon_sym___noreturn] = ACTIONS(1310), + [anon_sym___cold] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), + [anon_sym___declspec] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1310), + [anon_sym_unsigned] = ACTIONS(1310), + [anon_sym_long] = ACTIONS(1310), + [anon_sym_short] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_auto] = ACTIONS(1310), + [anon_sym_register] = ACTIONS(1310), + [anon_sym_inline] = ACTIONS(1310), + [anon_sym___inline] = ACTIONS(1310), + [anon_sym___inline__] = ACTIONS(1310), + [anon_sym___forceinline] = ACTIONS(1310), + [anon_sym_thread_local] = ACTIONS(1310), + [anon_sym___thread] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_constexpr] = ACTIONS(1310), + [anon_sym_volatile] = ACTIONS(1310), + [anon_sym_restrict] = ACTIONS(1310), + [anon_sym___restrict__] = ACTIONS(1310), + [anon_sym__Atomic] = ACTIONS(1310), + [anon_sym__Noreturn] = ACTIONS(1310), + [anon_sym_noreturn] = ACTIONS(1310), + [anon_sym_alignas] = ACTIONS(1310), + [anon_sym__Alignas] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_else] = ACTIONS(1310), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_goto] = ACTIONS(1310), + [anon_sym___try] = ACTIONS(1310), + [anon_sym___leave] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_sizeof] = ACTIONS(1310), + [anon_sym___alignof__] = ACTIONS(1310), + [anon_sym___alignof] = ACTIONS(1310), + [anon_sym__alignof] = ACTIONS(1310), + [anon_sym_alignof] = ACTIONS(1310), + [anon_sym__Alignof] = ACTIONS(1310), + [anon_sym_offsetof] = ACTIONS(1310), + [anon_sym__Generic] = ACTIONS(1310), + [anon_sym_asm] = ACTIONS(1310), + [anon_sym___asm__] = ACTIONS(1310), + [sym_number_literal] = ACTIONS(1312), + [anon_sym_L_SQUOTE] = ACTIONS(1312), + [anon_sym_u_SQUOTE] = ACTIONS(1312), + [anon_sym_U_SQUOTE] = ACTIONS(1312), + [anon_sym_u8_SQUOTE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_L_DQUOTE] = ACTIONS(1312), + [anon_sym_u_DQUOTE] = ACTIONS(1312), + [anon_sym_U_DQUOTE] = ACTIONS(1312), + [anon_sym_u8_DQUOTE] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [anon_sym_NULL] = ACTIONS(1310), + [anon_sym_nullptr] = ACTIONS(1310), [sym_comment] = ACTIONS(5), }, - [515] = { - [sym_type_qualifier] = STATE(1517), - [sym_alignas_qualifier] = STATE(1671), - [sym_type_specifier] = STATE(1678), - [sym_sized_type_specifier] = STATE(1984), - [sym_enum_specifier] = STATE(1984), - [sym_struct_specifier] = STATE(1984), - [sym_union_specifier] = STATE(1984), - [sym_expression] = STATE(1558), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3398), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_type_descriptor] = STATE(3142), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1984), - [aux_sym__type_definition_type_repeat1] = STATE(1517), - [aux_sym_sized_type_specifier_repeat1] = STATE(1712), - [sym_identifier] = ACTIONS(1993), + [482] = { + [sym_identifier] = ACTIONS(1362), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym___extension__] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1362), + [anon_sym___scanf] = ACTIONS(1362), + [anon_sym___printf] = ACTIONS(1362), + [anon_sym___read_mostly] = ACTIONS(1362), + [anon_sym___must_hold] = ACTIONS(1362), + [anon_sym___ro_after_init] = ACTIONS(1362), + [anon_sym___noreturn] = ACTIONS(1362), + [anon_sym___cold] = ACTIONS(1362), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), + [anon_sym___declspec] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym___inline] = ACTIONS(1362), + [anon_sym___inline__] = ACTIONS(1362), + [anon_sym___forceinline] = ACTIONS(1362), + [anon_sym_thread_local] = ACTIONS(1362), + [anon_sym___thread] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_constexpr] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym___restrict__] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym__Noreturn] = ACTIONS(1362), + [anon_sym_noreturn] = ACTIONS(1362), + [anon_sym_alignas] = ACTIONS(1362), + [anon_sym__Alignas] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_else] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym___try] = ACTIONS(1362), + [anon_sym___leave] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1362), + [anon_sym___alignof__] = ACTIONS(1362), + [anon_sym___alignof] = ACTIONS(1362), + [anon_sym__alignof] = ACTIONS(1362), + [anon_sym_alignof] = ACTIONS(1362), + [anon_sym__Alignof] = ACTIONS(1362), + [anon_sym_offsetof] = ACTIONS(1362), + [anon_sym__Generic] = ACTIONS(1362), + [anon_sym_asm] = ACTIONS(1362), + [anon_sym___asm__] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1364), + [anon_sym_u_SQUOTE] = ACTIONS(1364), + [anon_sym_U_SQUOTE] = ACTIONS(1364), + [anon_sym_u8_SQUOTE] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_L_DQUOTE] = ACTIONS(1364), + [anon_sym_u_DQUOTE] = ACTIONS(1364), + [anon_sym_U_DQUOTE] = ACTIONS(1364), + [anon_sym_u8_DQUOTE] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [anon_sym_NULL] = ACTIONS(1362), + [anon_sym_nullptr] = ACTIONS(1362), + [sym_comment] = ACTIONS(5), + }, + [483] = { + [sym_type_qualifier] = STATE(1531), + [sym_alignas_qualifier] = STATE(1695), + [sym_type_specifier] = STATE(1705), + [sym_sized_type_specifier] = STATE(2008), + [sym_enum_specifier] = STATE(2008), + [sym_struct_specifier] = STATE(2008), + [sym_union_specifier] = STATE(2008), + [sym_expression] = STATE(1593), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3298), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_type_descriptor] = STATE(3136), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(2008), + [aux_sym__type_definition_type_repeat1] = STATE(1531), + [aux_sym_sized_type_specifier_repeat1] = STATE(1733), + [sym_identifier] = ACTIONS(2028), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -77248,25 +74506,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym___extension__] = ACTIONS(1995), - [anon_sym_signed] = ACTIONS(1997), - [anon_sym_unsigned] = ACTIONS(1997), - [anon_sym_long] = ACTIONS(1997), - [anon_sym_short] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_constexpr] = ACTIONS(1995), - [anon_sym_volatile] = ACTIONS(1995), - [anon_sym_restrict] = ACTIONS(1995), - [anon_sym___restrict__] = ACTIONS(1995), - [anon_sym__Atomic] = ACTIONS(1995), - [anon_sym__Noreturn] = ACTIONS(1995), - [anon_sym_noreturn] = ACTIONS(1995), - [anon_sym_alignas] = ACTIONS(1999), - [anon_sym__Alignas] = ACTIONS(1999), - [sym_primitive_type] = ACTIONS(2001), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_struct] = ACTIONS(2005), - [anon_sym_union] = ACTIONS(2007), + [anon_sym___extension__] = ACTIONS(2030), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_constexpr] = ACTIONS(2030), + [anon_sym_volatile] = ACTIONS(2030), + [anon_sym_restrict] = ACTIONS(2030), + [anon_sym___restrict__] = ACTIONS(2030), + [anon_sym__Atomic] = ACTIONS(2030), + [anon_sym__Noreturn] = ACTIONS(2030), + [anon_sym_noreturn] = ACTIONS(2030), + [anon_sym_alignas] = ACTIONS(2034), + [anon_sym__Alignas] = ACTIONS(2034), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2042), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -77296,43 +74554,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [516] = { - [sym_type_qualifier] = STATE(1517), - [sym_alignas_qualifier] = STATE(1671), - [sym_type_specifier] = STATE(1678), - [sym_sized_type_specifier] = STATE(1984), - [sym_enum_specifier] = STATE(1984), - [sym_struct_specifier] = STATE(1984), - [sym_union_specifier] = STATE(1984), - [sym_expression] = STATE(1558), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3398), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_type_descriptor] = STATE(3073), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1984), - [aux_sym__type_definition_type_repeat1] = STATE(1517), - [aux_sym_sized_type_specifier_repeat1] = STATE(1712), - [sym_identifier] = ACTIONS(1993), + [484] = { + [sym_type_qualifier] = STATE(1531), + [sym_alignas_qualifier] = STATE(1695), + [sym_type_specifier] = STATE(1705), + [sym_sized_type_specifier] = STATE(2008), + [sym_enum_specifier] = STATE(2008), + [sym_struct_specifier] = STATE(2008), + [sym_union_specifier] = STATE(2008), + [sym_expression] = STATE(1593), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3298), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_type_descriptor] = STATE(3082), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(2008), + [aux_sym__type_definition_type_repeat1] = STATE(1531), + [aux_sym_sized_type_specifier_repeat1] = STATE(1733), + [sym_identifier] = ACTIONS(2028), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -77341,25 +74599,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym___extension__] = ACTIONS(1995), - [anon_sym_signed] = ACTIONS(1997), - [anon_sym_unsigned] = ACTIONS(1997), - [anon_sym_long] = ACTIONS(1997), - [anon_sym_short] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_constexpr] = ACTIONS(1995), - [anon_sym_volatile] = ACTIONS(1995), - [anon_sym_restrict] = ACTIONS(1995), - [anon_sym___restrict__] = ACTIONS(1995), - [anon_sym__Atomic] = ACTIONS(1995), - [anon_sym__Noreturn] = ACTIONS(1995), - [anon_sym_noreturn] = ACTIONS(1995), - [anon_sym_alignas] = ACTIONS(1999), - [anon_sym__Alignas] = ACTIONS(1999), - [sym_primitive_type] = ACTIONS(2001), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_struct] = ACTIONS(2005), - [anon_sym_union] = ACTIONS(2007), + [anon_sym___extension__] = ACTIONS(2030), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_constexpr] = ACTIONS(2030), + [anon_sym_volatile] = ACTIONS(2030), + [anon_sym_restrict] = ACTIONS(2030), + [anon_sym___restrict__] = ACTIONS(2030), + [anon_sym__Atomic] = ACTIONS(2030), + [anon_sym__Noreturn] = ACTIONS(2030), + [anon_sym_noreturn] = ACTIONS(2030), + [anon_sym_alignas] = ACTIONS(2034), + [anon_sym__Alignas] = ACTIONS(2034), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2042), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -77389,1588 +74647,937 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [517] = { - [sym_identifier] = ACTIONS(1242), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_TILDE] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym___extension__] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym___attribute__] = ACTIONS(1242), - [anon_sym___scanf] = ACTIONS(1242), - [anon_sym___printf] = ACTIONS(1242), - [anon_sym___read_mostly] = ACTIONS(1242), - [anon_sym___must_hold] = ACTIONS(1242), - [anon_sym___ro_after_init] = ACTIONS(1242), - [anon_sym___noreturn] = ACTIONS(1242), - [anon_sym___cold] = ACTIONS(1242), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1244), - [anon_sym___declspec] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_signed] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_long] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_register] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym___inline] = ACTIONS(1242), - [anon_sym___inline__] = ACTIONS(1242), - [anon_sym___forceinline] = ACTIONS(1242), - [anon_sym_thread_local] = ACTIONS(1242), - [anon_sym___thread] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_constexpr] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym___restrict__] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [anon_sym__Noreturn] = ACTIONS(1242), - [anon_sym_noreturn] = ACTIONS(1242), - [anon_sym_alignas] = ACTIONS(1242), - [anon_sym__Alignas] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [anon_sym___try] = ACTIONS(1242), - [anon_sym___leave] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym___alignof__] = ACTIONS(1242), - [anon_sym___alignof] = ACTIONS(1242), - [anon_sym__alignof] = ACTIONS(1242), - [anon_sym_alignof] = ACTIONS(1242), - [anon_sym__Alignof] = ACTIONS(1242), - [anon_sym_offsetof] = ACTIONS(1242), - [anon_sym__Generic] = ACTIONS(1242), - [anon_sym_asm] = ACTIONS(1242), - [anon_sym___asm__] = ACTIONS(1242), - [sym_number_literal] = ACTIONS(1244), - [anon_sym_L_SQUOTE] = ACTIONS(1244), - [anon_sym_u_SQUOTE] = ACTIONS(1244), - [anon_sym_U_SQUOTE] = ACTIONS(1244), - [anon_sym_u8_SQUOTE] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1244), - [anon_sym_L_DQUOTE] = ACTIONS(1244), - [anon_sym_u_DQUOTE] = ACTIONS(1244), - [anon_sym_U_DQUOTE] = ACTIONS(1244), - [anon_sym_u8_DQUOTE] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(1244), - [sym_true] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_NULL] = ACTIONS(1242), - [anon_sym_nullptr] = ACTIONS(1242), - [sym_comment] = ACTIONS(5), - }, - [518] = { - [sym_identifier] = ACTIONS(1242), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_TILDE] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym___extension__] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym___attribute__] = ACTIONS(1242), - [anon_sym___scanf] = ACTIONS(1242), - [anon_sym___printf] = ACTIONS(1242), - [anon_sym___read_mostly] = ACTIONS(1242), - [anon_sym___must_hold] = ACTIONS(1242), - [anon_sym___ro_after_init] = ACTIONS(1242), - [anon_sym___noreturn] = ACTIONS(1242), - [anon_sym___cold] = ACTIONS(1242), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1244), - [anon_sym___declspec] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_signed] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_long] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_register] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym___inline] = ACTIONS(1242), - [anon_sym___inline__] = ACTIONS(1242), - [anon_sym___forceinline] = ACTIONS(1242), - [anon_sym_thread_local] = ACTIONS(1242), - [anon_sym___thread] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_constexpr] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym___restrict__] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [anon_sym__Noreturn] = ACTIONS(1242), - [anon_sym_noreturn] = ACTIONS(1242), - [anon_sym_alignas] = ACTIONS(1242), - [anon_sym__Alignas] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [anon_sym___try] = ACTIONS(1242), - [anon_sym___leave] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym___alignof__] = ACTIONS(1242), - [anon_sym___alignof] = ACTIONS(1242), - [anon_sym__alignof] = ACTIONS(1242), - [anon_sym_alignof] = ACTIONS(1242), - [anon_sym__Alignof] = ACTIONS(1242), - [anon_sym_offsetof] = ACTIONS(1242), - [anon_sym__Generic] = ACTIONS(1242), - [anon_sym_asm] = ACTIONS(1242), - [anon_sym___asm__] = ACTIONS(1242), - [sym_number_literal] = ACTIONS(1244), - [anon_sym_L_SQUOTE] = ACTIONS(1244), - [anon_sym_u_SQUOTE] = ACTIONS(1244), - [anon_sym_U_SQUOTE] = ACTIONS(1244), - [anon_sym_u8_SQUOTE] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1244), - [anon_sym_L_DQUOTE] = ACTIONS(1244), - [anon_sym_u_DQUOTE] = ACTIONS(1244), - [anon_sym_U_DQUOTE] = ACTIONS(1244), - [anon_sym_u8_DQUOTE] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(1244), - [sym_true] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_NULL] = ACTIONS(1242), - [anon_sym_nullptr] = ACTIONS(1242), - [sym_comment] = ACTIONS(5), - }, - [519] = { - [sym_identifier] = ACTIONS(1298), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym___scanf] = ACTIONS(1298), - [anon_sym___printf] = ACTIONS(1298), - [anon_sym___read_mostly] = ACTIONS(1298), - [anon_sym___must_hold] = ACTIONS(1298), - [anon_sym___ro_after_init] = ACTIONS(1298), - [anon_sym___noreturn] = ACTIONS(1298), - [anon_sym___cold] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [anon_sym_alignas] = ACTIONS(1298), - [anon_sym__Alignas] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(5), - }, - [520] = { - [sym_identifier] = ACTIONS(1246), + [485] = { + [sym_identifier] = ACTIONS(1342), [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(1248), - [anon_sym_TILDE] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1248), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_SEMI] = ACTIONS(1248), - [anon_sym___extension__] = ACTIONS(1246), - [anon_sym_typedef] = ACTIONS(1246), - [anon_sym_extern] = ACTIONS(1246), - [anon_sym___attribute__] = ACTIONS(1246), - [anon_sym___scanf] = ACTIONS(1246), - [anon_sym___printf] = ACTIONS(1246), - [anon_sym___read_mostly] = ACTIONS(1246), - [anon_sym___must_hold] = ACTIONS(1246), - [anon_sym___ro_after_init] = ACTIONS(1246), - [anon_sym___noreturn] = ACTIONS(1246), - [anon_sym___cold] = ACTIONS(1246), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1248), - [anon_sym___declspec] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_signed] = ACTIONS(1246), - [anon_sym_unsigned] = ACTIONS(1246), - [anon_sym_long] = ACTIONS(1246), - [anon_sym_short] = ACTIONS(1246), - [anon_sym_static] = ACTIONS(1246), - [anon_sym_auto] = ACTIONS(1246), - [anon_sym_register] = ACTIONS(1246), - [anon_sym_inline] = ACTIONS(1246), - [anon_sym___inline] = ACTIONS(1246), - [anon_sym___inline__] = ACTIONS(1246), - [anon_sym___forceinline] = ACTIONS(1246), - [anon_sym_thread_local] = ACTIONS(1246), - [anon_sym___thread] = ACTIONS(1246), - [anon_sym_const] = ACTIONS(1246), - [anon_sym_constexpr] = ACTIONS(1246), - [anon_sym_volatile] = ACTIONS(1246), - [anon_sym_restrict] = ACTIONS(1246), - [anon_sym___restrict__] = ACTIONS(1246), - [anon_sym__Atomic] = ACTIONS(1246), - [anon_sym__Noreturn] = ACTIONS(1246), - [anon_sym_noreturn] = ACTIONS(1246), - [anon_sym_alignas] = ACTIONS(1246), - [anon_sym__Alignas] = ACTIONS(1246), - [sym_primitive_type] = ACTIONS(1246), - [anon_sym_enum] = ACTIONS(1246), - [anon_sym_struct] = ACTIONS(1246), - [anon_sym_union] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1246), - [anon_sym_else] = ACTIONS(1246), - [anon_sym_switch] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_do] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(1246), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1246), - [anon_sym_goto] = ACTIONS(1246), - [anon_sym___try] = ACTIONS(1246), - [anon_sym___leave] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1248), - [anon_sym_PLUS_PLUS] = ACTIONS(1248), - [anon_sym_sizeof] = ACTIONS(1246), - [anon_sym___alignof__] = ACTIONS(1246), - [anon_sym___alignof] = ACTIONS(1246), - [anon_sym__alignof] = ACTIONS(1246), - [anon_sym_alignof] = ACTIONS(1246), - [anon_sym__Alignof] = ACTIONS(1246), - [anon_sym_offsetof] = ACTIONS(1246), - [anon_sym__Generic] = ACTIONS(1246), - [anon_sym_asm] = ACTIONS(1246), - [anon_sym___asm__] = ACTIONS(1246), - [sym_number_literal] = ACTIONS(1248), - [anon_sym_L_SQUOTE] = ACTIONS(1248), - [anon_sym_u_SQUOTE] = ACTIONS(1248), - [anon_sym_U_SQUOTE] = ACTIONS(1248), - [anon_sym_u8_SQUOTE] = ACTIONS(1248), - [anon_sym_SQUOTE] = ACTIONS(1248), - [anon_sym_L_DQUOTE] = ACTIONS(1248), - [anon_sym_u_DQUOTE] = ACTIONS(1248), - [anon_sym_U_DQUOTE] = ACTIONS(1248), - [anon_sym_u8_DQUOTE] = ACTIONS(1248), - [anon_sym_DQUOTE] = ACTIONS(1248), - [sym_true] = ACTIONS(1246), - [sym_false] = ACTIONS(1246), - [anon_sym_NULL] = ACTIONS(1246), - [anon_sym_nullptr] = ACTIONS(1246), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym___scanf] = ACTIONS(1342), + [anon_sym___printf] = ACTIONS(1342), + [anon_sym___read_mostly] = ACTIONS(1342), + [anon_sym___must_hold] = ACTIONS(1342), + [anon_sym___ro_after_init] = ACTIONS(1342), + [anon_sym___noreturn] = ACTIONS(1342), + [anon_sym___cold] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [anon_sym_alignas] = ACTIONS(1342), + [anon_sym__Alignas] = ACTIONS(1342), + [sym_primitive_type] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym___try] = ACTIONS(1342), + [anon_sym___leave] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), [sym_comment] = ACTIONS(5), }, - [521] = { - [sym_identifier] = ACTIONS(1302), + [486] = { + [sym_identifier] = ACTIONS(1370), [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym___extension__] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym___attribute__] = ACTIONS(1302), - [anon_sym___scanf] = ACTIONS(1302), - [anon_sym___printf] = ACTIONS(1302), - [anon_sym___read_mostly] = ACTIONS(1302), - [anon_sym___must_hold] = ACTIONS(1302), - [anon_sym___ro_after_init] = ACTIONS(1302), - [anon_sym___noreturn] = ACTIONS(1302), - [anon_sym___cold] = ACTIONS(1302), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), - [anon_sym___declspec] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_signed] = ACTIONS(1302), - [anon_sym_unsigned] = ACTIONS(1302), - [anon_sym_long] = ACTIONS(1302), - [anon_sym_short] = ACTIONS(1302), - [anon_sym_static] = ACTIONS(1302), - [anon_sym_auto] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_inline] = ACTIONS(1302), - [anon_sym___inline] = ACTIONS(1302), - [anon_sym___inline__] = ACTIONS(1302), - [anon_sym___forceinline] = ACTIONS(1302), - [anon_sym_thread_local] = ACTIONS(1302), - [anon_sym___thread] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_constexpr] = ACTIONS(1302), - [anon_sym_volatile] = ACTIONS(1302), - [anon_sym_restrict] = ACTIONS(1302), - [anon_sym___restrict__] = ACTIONS(1302), - [anon_sym__Atomic] = ACTIONS(1302), - [anon_sym__Noreturn] = ACTIONS(1302), - [anon_sym_noreturn] = ACTIONS(1302), - [anon_sym_alignas] = ACTIONS(1302), - [anon_sym__Alignas] = ACTIONS(1302), - [sym_primitive_type] = ACTIONS(1302), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_union] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_else] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_goto] = ACTIONS(1302), - [anon_sym___try] = ACTIONS(1302), - [anon_sym___leave] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_sizeof] = ACTIONS(1302), - [anon_sym___alignof__] = ACTIONS(1302), - [anon_sym___alignof] = ACTIONS(1302), - [anon_sym__alignof] = ACTIONS(1302), - [anon_sym_alignof] = ACTIONS(1302), - [anon_sym__Alignof] = ACTIONS(1302), - [anon_sym_offsetof] = ACTIONS(1302), - [anon_sym__Generic] = ACTIONS(1302), - [anon_sym_asm] = ACTIONS(1302), - [anon_sym___asm__] = ACTIONS(1302), - [sym_number_literal] = ACTIONS(1304), - [anon_sym_L_SQUOTE] = ACTIONS(1304), - [anon_sym_u_SQUOTE] = ACTIONS(1304), - [anon_sym_U_SQUOTE] = ACTIONS(1304), - [anon_sym_u8_SQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_L_DQUOTE] = ACTIONS(1304), - [anon_sym_u_DQUOTE] = ACTIONS(1304), - [anon_sym_U_DQUOTE] = ACTIONS(1304), - [anon_sym_u8_DQUOTE] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym_true] = ACTIONS(1302), - [sym_false] = ACTIONS(1302), - [anon_sym_NULL] = ACTIONS(1302), - [anon_sym_nullptr] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym___extension__] = ACTIONS(1370), + [anon_sym_typedef] = ACTIONS(1370), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym___attribute__] = ACTIONS(1370), + [anon_sym___scanf] = ACTIONS(1370), + [anon_sym___printf] = ACTIONS(1370), + [anon_sym___read_mostly] = ACTIONS(1370), + [anon_sym___must_hold] = ACTIONS(1370), + [anon_sym___ro_after_init] = ACTIONS(1370), + [anon_sym___noreturn] = ACTIONS(1370), + [anon_sym___cold] = ACTIONS(1370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), + [anon_sym___declspec] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_signed] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), + [anon_sym___inline] = ACTIONS(1370), + [anon_sym___inline__] = ACTIONS(1370), + [anon_sym___forceinline] = ACTIONS(1370), + [anon_sym_thread_local] = ACTIONS(1370), + [anon_sym___thread] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_constexpr] = ACTIONS(1370), + [anon_sym_volatile] = ACTIONS(1370), + [anon_sym_restrict] = ACTIONS(1370), + [anon_sym___restrict__] = ACTIONS(1370), + [anon_sym__Atomic] = ACTIONS(1370), + [anon_sym__Noreturn] = ACTIONS(1370), + [anon_sym_noreturn] = ACTIONS(1370), + [anon_sym_alignas] = ACTIONS(1370), + [anon_sym__Alignas] = ACTIONS(1370), + [sym_primitive_type] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_else] = ACTIONS(1370), + [anon_sym_switch] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_goto] = ACTIONS(1370), + [anon_sym___try] = ACTIONS(1370), + [anon_sym___leave] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_sizeof] = ACTIONS(1370), + [anon_sym___alignof__] = ACTIONS(1370), + [anon_sym___alignof] = ACTIONS(1370), + [anon_sym__alignof] = ACTIONS(1370), + [anon_sym_alignof] = ACTIONS(1370), + [anon_sym__Alignof] = ACTIONS(1370), + [anon_sym_offsetof] = ACTIONS(1370), + [anon_sym__Generic] = ACTIONS(1370), + [anon_sym_asm] = ACTIONS(1370), + [anon_sym___asm__] = ACTIONS(1370), + [sym_number_literal] = ACTIONS(1372), + [anon_sym_L_SQUOTE] = ACTIONS(1372), + [anon_sym_u_SQUOTE] = ACTIONS(1372), + [anon_sym_U_SQUOTE] = ACTIONS(1372), + [anon_sym_u8_SQUOTE] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_L_DQUOTE] = ACTIONS(1372), + [anon_sym_u_DQUOTE] = ACTIONS(1372), + [anon_sym_U_DQUOTE] = ACTIONS(1372), + [anon_sym_u8_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [sym_true] = ACTIONS(1370), + [sym_false] = ACTIONS(1370), + [anon_sym_NULL] = ACTIONS(1370), + [anon_sym_nullptr] = ACTIONS(1370), [sym_comment] = ACTIONS(5), }, - [522] = { - [sym_identifier] = ACTIONS(1306), + [487] = { + [sym_identifier] = ACTIONS(1358), [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym___scanf] = ACTIONS(1306), - [anon_sym___printf] = ACTIONS(1306), - [anon_sym___read_mostly] = ACTIONS(1306), - [anon_sym___must_hold] = ACTIONS(1306), - [anon_sym___ro_after_init] = ACTIONS(1306), - [anon_sym___noreturn] = ACTIONS(1306), - [anon_sym___cold] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [anon_sym_alignas] = ACTIONS(1306), - [anon_sym__Alignas] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___extension__] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym___scanf] = ACTIONS(1358), + [anon_sym___printf] = ACTIONS(1358), + [anon_sym___read_mostly] = ACTIONS(1358), + [anon_sym___must_hold] = ACTIONS(1358), + [anon_sym___ro_after_init] = ACTIONS(1358), + [anon_sym___noreturn] = ACTIONS(1358), + [anon_sym___cold] = ACTIONS(1358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), + [anon_sym___declspec] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1358), + [anon_sym___inline__] = ACTIONS(1358), + [anon_sym___forceinline] = ACTIONS(1358), + [anon_sym_thread_local] = ACTIONS(1358), + [anon_sym___thread] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_constexpr] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym___restrict__] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym__Noreturn] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_alignas] = ACTIONS(1358), + [anon_sym__Alignas] = ACTIONS(1358), + [sym_primitive_type] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym___try] = ACTIONS(1358), + [anon_sym___leave] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1358), + [anon_sym___alignof__] = ACTIONS(1358), + [anon_sym___alignof] = ACTIONS(1358), + [anon_sym__alignof] = ACTIONS(1358), + [anon_sym_alignof] = ACTIONS(1358), + [anon_sym__Alignof] = ACTIONS(1358), + [anon_sym_offsetof] = ACTIONS(1358), + [anon_sym__Generic] = ACTIONS(1358), + [anon_sym_asm] = ACTIONS(1358), + [anon_sym___asm__] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1360), + [anon_sym_u_SQUOTE] = ACTIONS(1360), + [anon_sym_U_SQUOTE] = ACTIONS(1360), + [anon_sym_u8_SQUOTE] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_L_DQUOTE] = ACTIONS(1360), + [anon_sym_u_DQUOTE] = ACTIONS(1360), + [anon_sym_U_DQUOTE] = ACTIONS(1360), + [anon_sym_u8_DQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [anon_sym_NULL] = ACTIONS(1358), + [anon_sym_nullptr] = ACTIONS(1358), [sym_comment] = ACTIONS(5), }, - [523] = { - [sym_identifier] = ACTIONS(1226), + [488] = { + [sym_identifier] = ACTIONS(1354), [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1228), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1226), - [anon_sym_PLUS] = ACTIONS(1226), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym___extension__] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1226), - [anon_sym_extern] = ACTIONS(1226), - [anon_sym___attribute__] = ACTIONS(1226), - [anon_sym___scanf] = ACTIONS(1226), - [anon_sym___printf] = ACTIONS(1226), - [anon_sym___read_mostly] = ACTIONS(1226), - [anon_sym___must_hold] = ACTIONS(1226), - [anon_sym___ro_after_init] = ACTIONS(1226), - [anon_sym___noreturn] = ACTIONS(1226), - [anon_sym___cold] = ACTIONS(1226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1228), - [anon_sym___declspec] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_signed] = ACTIONS(1226), - [anon_sym_unsigned] = ACTIONS(1226), - [anon_sym_long] = ACTIONS(1226), - [anon_sym_short] = ACTIONS(1226), - [anon_sym_static] = ACTIONS(1226), - [anon_sym_auto] = ACTIONS(1226), - [anon_sym_register] = ACTIONS(1226), - [anon_sym_inline] = ACTIONS(1226), - [anon_sym___inline] = ACTIONS(1226), - [anon_sym___inline__] = ACTIONS(1226), - [anon_sym___forceinline] = ACTIONS(1226), - [anon_sym_thread_local] = ACTIONS(1226), - [anon_sym___thread] = ACTIONS(1226), - [anon_sym_const] = ACTIONS(1226), - [anon_sym_constexpr] = ACTIONS(1226), - [anon_sym_volatile] = ACTIONS(1226), - [anon_sym_restrict] = ACTIONS(1226), - [anon_sym___restrict__] = ACTIONS(1226), - [anon_sym__Atomic] = ACTIONS(1226), - [anon_sym__Noreturn] = ACTIONS(1226), - [anon_sym_noreturn] = ACTIONS(1226), - [anon_sym_alignas] = ACTIONS(1226), - [anon_sym__Alignas] = ACTIONS(1226), - [sym_primitive_type] = ACTIONS(1226), - [anon_sym_enum] = ACTIONS(1226), - [anon_sym_struct] = ACTIONS(1226), - [anon_sym_union] = ACTIONS(1226), - [anon_sym_if] = ACTIONS(1226), - [anon_sym_else] = ACTIONS(1226), - [anon_sym_switch] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_do] = ACTIONS(1226), - [anon_sym_for] = ACTIONS(1226), - [anon_sym_return] = ACTIONS(1226), - [anon_sym_break] = ACTIONS(1226), - [anon_sym_continue] = ACTIONS(1226), - [anon_sym_goto] = ACTIONS(1226), - [anon_sym___try] = ACTIONS(1226), - [anon_sym___leave] = ACTIONS(1226), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_sizeof] = ACTIONS(1226), - [anon_sym___alignof__] = ACTIONS(1226), - [anon_sym___alignof] = ACTIONS(1226), - [anon_sym__alignof] = ACTIONS(1226), - [anon_sym_alignof] = ACTIONS(1226), - [anon_sym__Alignof] = ACTIONS(1226), - [anon_sym_offsetof] = ACTIONS(1226), - [anon_sym__Generic] = ACTIONS(1226), - [anon_sym_asm] = ACTIONS(1226), - [anon_sym___asm__] = ACTIONS(1226), - [sym_number_literal] = ACTIONS(1228), - [anon_sym_L_SQUOTE] = ACTIONS(1228), - [anon_sym_u_SQUOTE] = ACTIONS(1228), - [anon_sym_U_SQUOTE] = ACTIONS(1228), - [anon_sym_u8_SQUOTE] = ACTIONS(1228), - [anon_sym_SQUOTE] = ACTIONS(1228), - [anon_sym_L_DQUOTE] = ACTIONS(1228), - [anon_sym_u_DQUOTE] = ACTIONS(1228), - [anon_sym_U_DQUOTE] = ACTIONS(1228), - [anon_sym_u8_DQUOTE] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym_true] = ACTIONS(1226), - [sym_false] = ACTIONS(1226), - [anon_sym_NULL] = ACTIONS(1226), - [anon_sym_nullptr] = ACTIONS(1226), + [anon_sym_LPAREN2] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym___extension__] = ACTIONS(1354), + [anon_sym_typedef] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym___attribute__] = ACTIONS(1354), + [anon_sym___scanf] = ACTIONS(1354), + [anon_sym___printf] = ACTIONS(1354), + [anon_sym___read_mostly] = ACTIONS(1354), + [anon_sym___must_hold] = ACTIONS(1354), + [anon_sym___ro_after_init] = ACTIONS(1354), + [anon_sym___noreturn] = ACTIONS(1354), + [anon_sym___cold] = ACTIONS(1354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym___declspec] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_signed] = ACTIONS(1354), + [anon_sym_unsigned] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_auto] = ACTIONS(1354), + [anon_sym_register] = ACTIONS(1354), + [anon_sym_inline] = ACTIONS(1354), + [anon_sym___inline] = ACTIONS(1354), + [anon_sym___inline__] = ACTIONS(1354), + [anon_sym___forceinline] = ACTIONS(1354), + [anon_sym_thread_local] = ACTIONS(1354), + [anon_sym___thread] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_constexpr] = ACTIONS(1354), + [anon_sym_volatile] = ACTIONS(1354), + [anon_sym_restrict] = ACTIONS(1354), + [anon_sym___restrict__] = ACTIONS(1354), + [anon_sym__Atomic] = ACTIONS(1354), + [anon_sym__Noreturn] = ACTIONS(1354), + [anon_sym_noreturn] = ACTIONS(1354), + [anon_sym_alignas] = ACTIONS(1354), + [anon_sym__Alignas] = ACTIONS(1354), + [sym_primitive_type] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_else] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_goto] = ACTIONS(1354), + [anon_sym___try] = ACTIONS(1354), + [anon_sym___leave] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_sizeof] = ACTIONS(1354), + [anon_sym___alignof__] = ACTIONS(1354), + [anon_sym___alignof] = ACTIONS(1354), + [anon_sym__alignof] = ACTIONS(1354), + [anon_sym_alignof] = ACTIONS(1354), + [anon_sym__Alignof] = ACTIONS(1354), + [anon_sym_offsetof] = ACTIONS(1354), + [anon_sym__Generic] = ACTIONS(1354), + [anon_sym_asm] = ACTIONS(1354), + [anon_sym___asm__] = ACTIONS(1354), + [sym_number_literal] = ACTIONS(1356), + [anon_sym_L_SQUOTE] = ACTIONS(1356), + [anon_sym_u_SQUOTE] = ACTIONS(1356), + [anon_sym_U_SQUOTE] = ACTIONS(1356), + [anon_sym_u8_SQUOTE] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_L_DQUOTE] = ACTIONS(1356), + [anon_sym_u_DQUOTE] = ACTIONS(1356), + [anon_sym_U_DQUOTE] = ACTIONS(1356), + [anon_sym_u8_DQUOTE] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym_true] = ACTIONS(1354), + [sym_false] = ACTIONS(1354), + [anon_sym_NULL] = ACTIONS(1354), + [anon_sym_nullptr] = ACTIONS(1354), [sym_comment] = ACTIONS(5), }, - [524] = { - [sym_identifier] = ACTIONS(1310), + [489] = { + [sym_identifier] = ACTIONS(1350), [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym___scanf] = ACTIONS(1310), - [anon_sym___printf] = ACTIONS(1310), - [anon_sym___read_mostly] = ACTIONS(1310), - [anon_sym___must_hold] = ACTIONS(1310), - [anon_sym___ro_after_init] = ACTIONS(1310), - [anon_sym___noreturn] = ACTIONS(1310), - [anon_sym___cold] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [anon_sym_alignas] = ACTIONS(1310), - [anon_sym__Alignas] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym___scanf] = ACTIONS(1350), + [anon_sym___printf] = ACTIONS(1350), + [anon_sym___read_mostly] = ACTIONS(1350), + [anon_sym___must_hold] = ACTIONS(1350), + [anon_sym___ro_after_init] = ACTIONS(1350), + [anon_sym___noreturn] = ACTIONS(1350), + [anon_sym___cold] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [anon_sym_alignas] = ACTIONS(1350), + [anon_sym__Alignas] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(5), }, - [525] = { - [sym_identifier] = ACTIONS(1242), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_TILDE] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym___extension__] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym___attribute__] = ACTIONS(1242), - [anon_sym___scanf] = ACTIONS(1242), - [anon_sym___printf] = ACTIONS(1242), - [anon_sym___read_mostly] = ACTIONS(1242), - [anon_sym___must_hold] = ACTIONS(1242), - [anon_sym___ro_after_init] = ACTIONS(1242), - [anon_sym___noreturn] = ACTIONS(1242), - [anon_sym___cold] = ACTIONS(1242), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1244), - [anon_sym___declspec] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_signed] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_long] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_register] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym___inline] = ACTIONS(1242), - [anon_sym___inline__] = ACTIONS(1242), - [anon_sym___forceinline] = ACTIONS(1242), - [anon_sym_thread_local] = ACTIONS(1242), - [anon_sym___thread] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_constexpr] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym___restrict__] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [anon_sym__Noreturn] = ACTIONS(1242), - [anon_sym_noreturn] = ACTIONS(1242), - [anon_sym_alignas] = ACTIONS(1242), - [anon_sym__Alignas] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [anon_sym___try] = ACTIONS(1242), - [anon_sym___leave] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym___alignof__] = ACTIONS(1242), - [anon_sym___alignof] = ACTIONS(1242), - [anon_sym__alignof] = ACTIONS(1242), - [anon_sym_alignof] = ACTIONS(1242), - [anon_sym__Alignof] = ACTIONS(1242), - [anon_sym_offsetof] = ACTIONS(1242), - [anon_sym__Generic] = ACTIONS(1242), - [anon_sym_asm] = ACTIONS(1242), - [anon_sym___asm__] = ACTIONS(1242), - [sym_number_literal] = ACTIONS(1244), - [anon_sym_L_SQUOTE] = ACTIONS(1244), - [anon_sym_u_SQUOTE] = ACTIONS(1244), - [anon_sym_U_SQUOTE] = ACTIONS(1244), - [anon_sym_u8_SQUOTE] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1244), - [anon_sym_L_DQUOTE] = ACTIONS(1244), - [anon_sym_u_DQUOTE] = ACTIONS(1244), - [anon_sym_U_DQUOTE] = ACTIONS(1244), - [anon_sym_u8_DQUOTE] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(1244), - [sym_true] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_NULL] = ACTIONS(1242), - [anon_sym_nullptr] = ACTIONS(1242), + [490] = { + [sym_identifier] = ACTIONS(1346), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym___scanf] = ACTIONS(1346), + [anon_sym___printf] = ACTIONS(1346), + [anon_sym___read_mostly] = ACTIONS(1346), + [anon_sym___must_hold] = ACTIONS(1346), + [anon_sym___ro_after_init] = ACTIONS(1346), + [anon_sym___noreturn] = ACTIONS(1346), + [anon_sym___cold] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [anon_sym_alignas] = ACTIONS(1346), + [anon_sym__Alignas] = ACTIONS(1346), + [sym_primitive_type] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_else] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym___try] = ACTIONS(1346), + [anon_sym___leave] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), [sym_comment] = ACTIONS(5), }, - [526] = { - [sym_identifier] = ACTIONS(1274), + [491] = { + [sym_identifier] = ACTIONS(2044), [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1276), - [anon_sym_BANG] = ACTIONS(1276), - [anon_sym_TILDE] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym___extension__] = ACTIONS(1274), - [anon_sym_typedef] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym___attribute__] = ACTIONS(1274), - [anon_sym___scanf] = ACTIONS(1274), - [anon_sym___printf] = ACTIONS(1274), - [anon_sym___read_mostly] = ACTIONS(1274), - [anon_sym___must_hold] = ACTIONS(1274), - [anon_sym___ro_after_init] = ACTIONS(1274), - [anon_sym___noreturn] = ACTIONS(1274), - [anon_sym___cold] = ACTIONS(1274), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1276), - [anon_sym___declspec] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_signed] = ACTIONS(1274), - [anon_sym_unsigned] = ACTIONS(1274), - [anon_sym_long] = ACTIONS(1274), - [anon_sym_short] = ACTIONS(1274), - [anon_sym_static] = ACTIONS(1274), - [anon_sym_auto] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_inline] = ACTIONS(1274), - [anon_sym___inline] = ACTIONS(1274), - [anon_sym___inline__] = ACTIONS(1274), - [anon_sym___forceinline] = ACTIONS(1274), - [anon_sym_thread_local] = ACTIONS(1274), - [anon_sym___thread] = ACTIONS(1274), - [anon_sym_const] = ACTIONS(1274), - [anon_sym_constexpr] = ACTIONS(1274), - [anon_sym_volatile] = ACTIONS(1274), - [anon_sym_restrict] = ACTIONS(1274), - [anon_sym___restrict__] = ACTIONS(1274), - [anon_sym__Atomic] = ACTIONS(1274), - [anon_sym__Noreturn] = ACTIONS(1274), - [anon_sym_noreturn] = ACTIONS(1274), - [anon_sym_alignas] = ACTIONS(1274), - [anon_sym__Alignas] = ACTIONS(1274), - [sym_primitive_type] = ACTIONS(1274), - [anon_sym_enum] = ACTIONS(1274), - [anon_sym_struct] = ACTIONS(1274), - [anon_sym_union] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_else] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_do] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_goto] = ACTIONS(1274), - [anon_sym___try] = ACTIONS(1274), - [anon_sym___leave] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_sizeof] = ACTIONS(1274), - [anon_sym___alignof__] = ACTIONS(1274), - [anon_sym___alignof] = ACTIONS(1274), - [anon_sym__alignof] = ACTIONS(1274), - [anon_sym_alignof] = ACTIONS(1274), - [anon_sym__Alignof] = ACTIONS(1274), - [anon_sym_offsetof] = ACTIONS(1274), - [anon_sym__Generic] = ACTIONS(1274), - [anon_sym_asm] = ACTIONS(1274), - [anon_sym___asm__] = ACTIONS(1274), - [sym_number_literal] = ACTIONS(1276), - [anon_sym_L_SQUOTE] = ACTIONS(1276), - [anon_sym_u_SQUOTE] = ACTIONS(1276), - [anon_sym_U_SQUOTE] = ACTIONS(1276), - [anon_sym_u8_SQUOTE] = ACTIONS(1276), - [anon_sym_SQUOTE] = ACTIONS(1276), - [anon_sym_L_DQUOTE] = ACTIONS(1276), - [anon_sym_u_DQUOTE] = ACTIONS(1276), - [anon_sym_U_DQUOTE] = ACTIONS(1276), - [anon_sym_u8_DQUOTE] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym_true] = ACTIONS(1274), - [sym_false] = ACTIONS(1274), - [anon_sym_NULL] = ACTIONS(1274), - [anon_sym_nullptr] = ACTIONS(1274), - [sym_comment] = ACTIONS(5), - }, - [527] = { - [sym_type_qualifier] = STATE(1517), - [sym_alignas_qualifier] = STATE(1671), - [sym_type_specifier] = STATE(1678), - [sym_sized_type_specifier] = STATE(1984), - [sym_enum_specifier] = STATE(1984), - [sym_struct_specifier] = STATE(1984), - [sym_union_specifier] = STATE(1984), - [sym_expression] = STATE(1558), - [sym__string] = STATE(1199), - [sym_comma_expression] = STATE(3398), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_type_descriptor] = STATE(3397), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1984), - [aux_sym__type_definition_type_repeat1] = STATE(1517), - [aux_sym_sized_type_specifier_repeat1] = STATE(1712), - [sym_identifier] = ACTIONS(1993), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym___extension__] = ACTIONS(1995), - [anon_sym_signed] = ACTIONS(1997), - [anon_sym_unsigned] = ACTIONS(1997), - [anon_sym_long] = ACTIONS(1997), - [anon_sym_short] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_constexpr] = ACTIONS(1995), - [anon_sym_volatile] = ACTIONS(1995), - [anon_sym_restrict] = ACTIONS(1995), - [anon_sym___restrict__] = ACTIONS(1995), - [anon_sym__Atomic] = ACTIONS(1995), - [anon_sym__Noreturn] = ACTIONS(1995), - [anon_sym_noreturn] = ACTIONS(1995), - [anon_sym_alignas] = ACTIONS(1999), - [anon_sym__Alignas] = ACTIONS(1999), - [sym_primitive_type] = ACTIONS(2001), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_struct] = ACTIONS(2005), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [anon_sym_LPAREN2] = ACTIONS(2047), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2049), + [anon_sym_PLUS] = ACTIONS(2049), + [anon_sym_STAR] = ACTIONS(2047), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_SEMI] = ACTIONS(2047), + [anon_sym___extension__] = ACTIONS(2051), + [anon_sym_extern] = ACTIONS(2051), + [anon_sym___attribute__] = ACTIONS(2051), + [anon_sym___scanf] = ACTIONS(2051), + [anon_sym___printf] = ACTIONS(2051), + [anon_sym___read_mostly] = ACTIONS(2051), + [anon_sym___must_hold] = ACTIONS(2051), + [anon_sym___ro_after_init] = ACTIONS(2051), + [anon_sym___noreturn] = ACTIONS(2051), + [anon_sym___cold] = ACTIONS(2051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2053), + [anon_sym___declspec] = ACTIONS(2051), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_signed] = ACTIONS(2051), + [anon_sym_unsigned] = ACTIONS(2051), + [anon_sym_long] = ACTIONS(2051), + [anon_sym_short] = ACTIONS(2051), + [anon_sym_static] = ACTIONS(2051), + [anon_sym_auto] = ACTIONS(2051), + [anon_sym_register] = ACTIONS(2051), + [anon_sym_inline] = ACTIONS(2051), + [anon_sym___inline] = ACTIONS(2051), + [anon_sym___inline__] = ACTIONS(2051), + [anon_sym___forceinline] = ACTIONS(2051), + [anon_sym_thread_local] = ACTIONS(2051), + [anon_sym___thread] = ACTIONS(2051), + [anon_sym_const] = ACTIONS(2051), + [anon_sym_constexpr] = ACTIONS(2051), + [anon_sym_volatile] = ACTIONS(2051), + [anon_sym_restrict] = ACTIONS(2051), + [anon_sym___restrict__] = ACTIONS(2051), + [anon_sym__Atomic] = ACTIONS(2051), + [anon_sym__Noreturn] = ACTIONS(2051), + [anon_sym_noreturn] = ACTIONS(2051), + [anon_sym_alignas] = ACTIONS(2051), + [anon_sym__Alignas] = ACTIONS(2051), + [sym_primitive_type] = ACTIONS(2051), + [anon_sym_enum] = ACTIONS(2051), + [anon_sym_struct] = ACTIONS(2051), + [anon_sym_union] = ACTIONS(2051), + [anon_sym_if] = ACTIONS(2049), + [anon_sym_switch] = ACTIONS(2049), + [anon_sym_case] = ACTIONS(2049), + [anon_sym_default] = ACTIONS(2049), + [anon_sym_while] = ACTIONS(2049), + [anon_sym_do] = ACTIONS(2049), + [anon_sym_for] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2049), + [anon_sym_break] = ACTIONS(2049), + [anon_sym_continue] = ACTIONS(2049), + [anon_sym_goto] = ACTIONS(2049), + [anon_sym___try] = ACTIONS(2049), + [anon_sym___leave] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(2049), + [anon_sym___alignof__] = ACTIONS(2049), + [anon_sym___alignof] = ACTIONS(2049), + [anon_sym__alignof] = ACTIONS(2049), + [anon_sym_alignof] = ACTIONS(2049), + [anon_sym__Alignof] = ACTIONS(2049), + [anon_sym_offsetof] = ACTIONS(2049), + [anon_sym__Generic] = ACTIONS(2049), + [anon_sym_asm] = ACTIONS(2049), + [anon_sym___asm__] = ACTIONS(2049), + [sym_number_literal] = ACTIONS(2047), + [anon_sym_L_SQUOTE] = ACTIONS(2047), + [anon_sym_u_SQUOTE] = ACTIONS(2047), + [anon_sym_U_SQUOTE] = ACTIONS(2047), + [anon_sym_u8_SQUOTE] = ACTIONS(2047), + [anon_sym_SQUOTE] = ACTIONS(2047), + [anon_sym_L_DQUOTE] = ACTIONS(2047), + [anon_sym_u_DQUOTE] = ACTIONS(2047), + [anon_sym_U_DQUOTE] = ACTIONS(2047), + [anon_sym_u8_DQUOTE] = ACTIONS(2047), + [anon_sym_DQUOTE] = ACTIONS(2047), + [sym_true] = ACTIONS(2049), + [sym_false] = ACTIONS(2049), + [anon_sym_NULL] = ACTIONS(2049), + [anon_sym_nullptr] = ACTIONS(2049), [sym_comment] = ACTIONS(5), }, - [528] = { - [sym_identifier] = ACTIONS(1322), + [492] = { + [sym_identifier] = ACTIONS(1314), [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym___extension__] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym___attribute__] = ACTIONS(1322), - [anon_sym___scanf] = ACTIONS(1322), - [anon_sym___printf] = ACTIONS(1322), - [anon_sym___read_mostly] = ACTIONS(1322), - [anon_sym___must_hold] = ACTIONS(1322), - [anon_sym___ro_after_init] = ACTIONS(1322), - [anon_sym___noreturn] = ACTIONS(1322), - [anon_sym___cold] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), - [anon_sym___declspec] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1322), - [anon_sym_unsigned] = ACTIONS(1322), - [anon_sym_long] = ACTIONS(1322), - [anon_sym_short] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_auto] = ACTIONS(1322), - [anon_sym_register] = ACTIONS(1322), - [anon_sym_inline] = ACTIONS(1322), - [anon_sym___inline] = ACTIONS(1322), - [anon_sym___inline__] = ACTIONS(1322), - [anon_sym___forceinline] = ACTIONS(1322), - [anon_sym_thread_local] = ACTIONS(1322), - [anon_sym___thread] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_constexpr] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(1322), - [anon_sym_restrict] = ACTIONS(1322), - [anon_sym___restrict__] = ACTIONS(1322), - [anon_sym__Atomic] = ACTIONS(1322), - [anon_sym__Noreturn] = ACTIONS(1322), - [anon_sym_noreturn] = ACTIONS(1322), - [anon_sym_alignas] = ACTIONS(1322), - [anon_sym__Alignas] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_goto] = ACTIONS(1322), - [anon_sym___try] = ACTIONS(1322), - [anon_sym___leave] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_sizeof] = ACTIONS(1322), - [anon_sym___alignof__] = ACTIONS(1322), - [anon_sym___alignof] = ACTIONS(1322), - [anon_sym__alignof] = ACTIONS(1322), - [anon_sym_alignof] = ACTIONS(1322), - [anon_sym__Alignof] = ACTIONS(1322), - [anon_sym_offsetof] = ACTIONS(1322), - [anon_sym__Generic] = ACTIONS(1322), - [anon_sym_asm] = ACTIONS(1322), - [anon_sym___asm__] = ACTIONS(1322), - [sym_number_literal] = ACTIONS(1324), - [anon_sym_L_SQUOTE] = ACTIONS(1324), - [anon_sym_u_SQUOTE] = ACTIONS(1324), - [anon_sym_U_SQUOTE] = ACTIONS(1324), - [anon_sym_u8_SQUOTE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_L_DQUOTE] = ACTIONS(1324), - [anon_sym_u_DQUOTE] = ACTIONS(1324), - [anon_sym_U_DQUOTE] = ACTIONS(1324), - [anon_sym_u8_DQUOTE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [anon_sym_NULL] = ACTIONS(1322), - [anon_sym_nullptr] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym___scanf] = ACTIONS(1314), + [anon_sym___printf] = ACTIONS(1314), + [anon_sym___read_mostly] = ACTIONS(1314), + [anon_sym___must_hold] = ACTIONS(1314), + [anon_sym___ro_after_init] = ACTIONS(1314), + [anon_sym___noreturn] = ACTIONS(1314), + [anon_sym___cold] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [anon_sym_alignas] = ACTIONS(1314), + [anon_sym__Alignas] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), [sym_comment] = ACTIONS(5), }, - [529] = { - [sym_identifier] = ACTIONS(1326), + [493] = { + [sym_identifier] = ACTIONS(1246), [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym___extension__] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym___attribute__] = ACTIONS(1326), - [anon_sym___scanf] = ACTIONS(1326), - [anon_sym___printf] = ACTIONS(1326), - [anon_sym___read_mostly] = ACTIONS(1326), - [anon_sym___must_hold] = ACTIONS(1326), - [anon_sym___ro_after_init] = ACTIONS(1326), - [anon_sym___noreturn] = ACTIONS(1326), - [anon_sym___cold] = ACTIONS(1326), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), - [anon_sym_short] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_auto] = ACTIONS(1326), - [anon_sym_register] = ACTIONS(1326), - [anon_sym_inline] = ACTIONS(1326), - [anon_sym___inline] = ACTIONS(1326), - [anon_sym___inline__] = ACTIONS(1326), - [anon_sym___forceinline] = ACTIONS(1326), - [anon_sym_thread_local] = ACTIONS(1326), - [anon_sym___thread] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_constexpr] = ACTIONS(1326), - [anon_sym_volatile] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(1326), - [anon_sym___restrict__] = ACTIONS(1326), - [anon_sym__Atomic] = ACTIONS(1326), - [anon_sym__Noreturn] = ACTIONS(1326), - [anon_sym_noreturn] = ACTIONS(1326), - [anon_sym_alignas] = ACTIONS(1326), - [anon_sym__Alignas] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_goto] = ACTIONS(1326), - [anon_sym___try] = ACTIONS(1326), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_sizeof] = ACTIONS(1326), - [anon_sym___alignof__] = ACTIONS(1326), - [anon_sym___alignof] = ACTIONS(1326), - [anon_sym__alignof] = ACTIONS(1326), - [anon_sym_alignof] = ACTIONS(1326), - [anon_sym__Alignof] = ACTIONS(1326), - [anon_sym_offsetof] = ACTIONS(1326), - [anon_sym__Generic] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1326), - [anon_sym___asm__] = ACTIONS(1326), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_L_SQUOTE] = ACTIONS(1328), - [anon_sym_u_SQUOTE] = ACTIONS(1328), - [anon_sym_U_SQUOTE] = ACTIONS(1328), - [anon_sym_u8_SQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_L_DQUOTE] = ACTIONS(1328), - [anon_sym_u_DQUOTE] = ACTIONS(1328), - [anon_sym_U_DQUOTE] = ACTIONS(1328), - [anon_sym_u8_DQUOTE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_true] = ACTIONS(1326), - [sym_false] = ACTIONS(1326), - [anon_sym_NULL] = ACTIONS(1326), - [anon_sym_nullptr] = ACTIONS(1326), - [sym_comment] = ACTIONS(5), - }, - [530] = { - [sym_identifier] = ACTIONS(2017), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(2020), - [anon_sym_BANG] = ACTIONS(2020), - [anon_sym_TILDE] = ACTIONS(2020), - [anon_sym_DASH] = ACTIONS(2022), - [anon_sym_PLUS] = ACTIONS(2022), - [anon_sym_STAR] = ACTIONS(2020), - [anon_sym_AMP] = ACTIONS(2020), - [anon_sym_SEMI] = ACTIONS(2020), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_extern] = ACTIONS(2024), - [anon_sym___attribute__] = ACTIONS(2024), - [anon_sym___scanf] = ACTIONS(2024), - [anon_sym___printf] = ACTIONS(2024), - [anon_sym___read_mostly] = ACTIONS(2024), - [anon_sym___must_hold] = ACTIONS(2024), - [anon_sym___ro_after_init] = ACTIONS(2024), - [anon_sym___noreturn] = ACTIONS(2024), - [anon_sym___cold] = ACTIONS(2024), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2026), - [anon_sym___declspec] = ACTIONS(2024), - [anon_sym_LBRACE] = ACTIONS(2020), - [anon_sym_signed] = ACTIONS(2024), - [anon_sym_unsigned] = ACTIONS(2024), - [anon_sym_long] = ACTIONS(2024), - [anon_sym_short] = ACTIONS(2024), - [anon_sym_static] = ACTIONS(2024), - [anon_sym_auto] = ACTIONS(2024), - [anon_sym_register] = ACTIONS(2024), - [anon_sym_inline] = ACTIONS(2024), - [anon_sym___inline] = ACTIONS(2024), - [anon_sym___inline__] = ACTIONS(2024), - [anon_sym___forceinline] = ACTIONS(2024), - [anon_sym_thread_local] = ACTIONS(2024), - [anon_sym___thread] = ACTIONS(2024), - [anon_sym_const] = ACTIONS(2024), - [anon_sym_constexpr] = ACTIONS(2024), - [anon_sym_volatile] = ACTIONS(2024), - [anon_sym_restrict] = ACTIONS(2024), - [anon_sym___restrict__] = ACTIONS(2024), - [anon_sym__Atomic] = ACTIONS(2024), - [anon_sym__Noreturn] = ACTIONS(2024), - [anon_sym_noreturn] = ACTIONS(2024), - [anon_sym_alignas] = ACTIONS(2024), - [anon_sym__Alignas] = ACTIONS(2024), - [sym_primitive_type] = ACTIONS(2024), - [anon_sym_enum] = ACTIONS(2024), - [anon_sym_struct] = ACTIONS(2024), - [anon_sym_union] = ACTIONS(2024), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_switch] = ACTIONS(2022), - [anon_sym_case] = ACTIONS(2022), - [anon_sym_default] = ACTIONS(2022), - [anon_sym_while] = ACTIONS(2022), - [anon_sym_do] = ACTIONS(2022), - [anon_sym_for] = ACTIONS(2022), - [anon_sym_return] = ACTIONS(2022), - [anon_sym_break] = ACTIONS(2022), - [anon_sym_continue] = ACTIONS(2022), - [anon_sym_goto] = ACTIONS(2022), - [anon_sym___try] = ACTIONS(2022), - [anon_sym___leave] = ACTIONS(2022), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2022), - [anon_sym___alignof] = ACTIONS(2022), - [anon_sym__alignof] = ACTIONS(2022), - [anon_sym_alignof] = ACTIONS(2022), - [anon_sym__Alignof] = ACTIONS(2022), - [anon_sym_offsetof] = ACTIONS(2022), - [anon_sym__Generic] = ACTIONS(2022), - [anon_sym_asm] = ACTIONS(2022), - [anon_sym___asm__] = ACTIONS(2022), - [sym_number_literal] = ACTIONS(2020), - [anon_sym_L_SQUOTE] = ACTIONS(2020), - [anon_sym_u_SQUOTE] = ACTIONS(2020), - [anon_sym_U_SQUOTE] = ACTIONS(2020), - [anon_sym_u8_SQUOTE] = ACTIONS(2020), - [anon_sym_SQUOTE] = ACTIONS(2020), - [anon_sym_L_DQUOTE] = ACTIONS(2020), - [anon_sym_u_DQUOTE] = ACTIONS(2020), - [anon_sym_U_DQUOTE] = ACTIONS(2020), - [anon_sym_u8_DQUOTE] = ACTIONS(2020), - [anon_sym_DQUOTE] = ACTIONS(2020), - [sym_true] = ACTIONS(2022), - [sym_false] = ACTIONS(2022), - [anon_sym_NULL] = ACTIONS(2022), - [anon_sym_nullptr] = ACTIONS(2022), + [anon_sym_LPAREN2] = ACTIONS(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_TILDE] = ACTIONS(1248), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_PLUS] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1248), + [anon_sym___extension__] = ACTIONS(1246), + [anon_sym_typedef] = ACTIONS(1246), + [anon_sym_extern] = ACTIONS(1246), + [anon_sym___attribute__] = ACTIONS(1246), + [anon_sym___scanf] = ACTIONS(1246), + [anon_sym___printf] = ACTIONS(1246), + [anon_sym___read_mostly] = ACTIONS(1246), + [anon_sym___must_hold] = ACTIONS(1246), + [anon_sym___ro_after_init] = ACTIONS(1246), + [anon_sym___noreturn] = ACTIONS(1246), + [anon_sym___cold] = ACTIONS(1246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1248), + [anon_sym___declspec] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_signed] = ACTIONS(1246), + [anon_sym_unsigned] = ACTIONS(1246), + [anon_sym_long] = ACTIONS(1246), + [anon_sym_short] = ACTIONS(1246), + [anon_sym_static] = ACTIONS(1246), + [anon_sym_auto] = ACTIONS(1246), + [anon_sym_register] = ACTIONS(1246), + [anon_sym_inline] = ACTIONS(1246), + [anon_sym___inline] = ACTIONS(1246), + [anon_sym___inline__] = ACTIONS(1246), + [anon_sym___forceinline] = ACTIONS(1246), + [anon_sym_thread_local] = ACTIONS(1246), + [anon_sym___thread] = ACTIONS(1246), + [anon_sym_const] = ACTIONS(1246), + [anon_sym_constexpr] = ACTIONS(1246), + [anon_sym_volatile] = ACTIONS(1246), + [anon_sym_restrict] = ACTIONS(1246), + [anon_sym___restrict__] = ACTIONS(1246), + [anon_sym__Atomic] = ACTIONS(1246), + [anon_sym__Noreturn] = ACTIONS(1246), + [anon_sym_noreturn] = ACTIONS(1246), + [anon_sym_alignas] = ACTIONS(1246), + [anon_sym__Alignas] = ACTIONS(1246), + [sym_primitive_type] = ACTIONS(1246), + [anon_sym_enum] = ACTIONS(1246), + [anon_sym_struct] = ACTIONS(1246), + [anon_sym_union] = ACTIONS(1246), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_else] = ACTIONS(1246), + [anon_sym_switch] = ACTIONS(1246), + [anon_sym_while] = ACTIONS(1246), + [anon_sym_do] = ACTIONS(1246), + [anon_sym_for] = ACTIONS(1246), + [anon_sym_return] = ACTIONS(1246), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1246), + [anon_sym_goto] = ACTIONS(1246), + [anon_sym___try] = ACTIONS(1246), + [anon_sym___leave] = ACTIONS(1246), + [anon_sym_DASH_DASH] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_sizeof] = ACTIONS(1246), + [anon_sym___alignof__] = ACTIONS(1246), + [anon_sym___alignof] = ACTIONS(1246), + [anon_sym__alignof] = ACTIONS(1246), + [anon_sym_alignof] = ACTIONS(1246), + [anon_sym__Alignof] = ACTIONS(1246), + [anon_sym_offsetof] = ACTIONS(1246), + [anon_sym__Generic] = ACTIONS(1246), + [anon_sym_asm] = ACTIONS(1246), + [anon_sym___asm__] = ACTIONS(1246), + [sym_number_literal] = ACTIONS(1248), + [anon_sym_L_SQUOTE] = ACTIONS(1248), + [anon_sym_u_SQUOTE] = ACTIONS(1248), + [anon_sym_U_SQUOTE] = ACTIONS(1248), + [anon_sym_u8_SQUOTE] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1248), + [anon_sym_L_DQUOTE] = ACTIONS(1248), + [anon_sym_u_DQUOTE] = ACTIONS(1248), + [anon_sym_U_DQUOTE] = ACTIONS(1248), + [anon_sym_u8_DQUOTE] = ACTIONS(1248), + [anon_sym_DQUOTE] = ACTIONS(1248), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), + [anon_sym_NULL] = ACTIONS(1246), + [anon_sym_nullptr] = ACTIONS(1246), [sym_comment] = ACTIONS(5), }, - [531] = { - [sym_identifier] = ACTIONS(1334), + [494] = { + [sym_identifier] = ACTIONS(1246), [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1336), - [anon_sym_BANG] = ACTIONS(1336), - [anon_sym_TILDE] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym___extension__] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1334), - [anon_sym___attribute__] = ACTIONS(1334), - [anon_sym___scanf] = ACTIONS(1334), - [anon_sym___printf] = ACTIONS(1334), - [anon_sym___read_mostly] = ACTIONS(1334), - [anon_sym___must_hold] = ACTIONS(1334), - [anon_sym___ro_after_init] = ACTIONS(1334), - [anon_sym___noreturn] = ACTIONS(1334), - [anon_sym___cold] = ACTIONS(1334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), - [anon_sym___declspec] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_signed] = ACTIONS(1334), - [anon_sym_unsigned] = ACTIONS(1334), - [anon_sym_long] = ACTIONS(1334), - [anon_sym_short] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1334), - [anon_sym_auto] = ACTIONS(1334), - [anon_sym_register] = ACTIONS(1334), - [anon_sym_inline] = ACTIONS(1334), - [anon_sym___inline] = ACTIONS(1334), - [anon_sym___inline__] = ACTIONS(1334), - [anon_sym___forceinline] = ACTIONS(1334), - [anon_sym_thread_local] = ACTIONS(1334), - [anon_sym___thread] = ACTIONS(1334), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_constexpr] = ACTIONS(1334), - [anon_sym_volatile] = ACTIONS(1334), - [anon_sym_restrict] = ACTIONS(1334), - [anon_sym___restrict__] = ACTIONS(1334), - [anon_sym__Atomic] = ACTIONS(1334), - [anon_sym__Noreturn] = ACTIONS(1334), - [anon_sym_noreturn] = ACTIONS(1334), - [anon_sym_alignas] = ACTIONS(1334), - [anon_sym__Alignas] = ACTIONS(1334), - [sym_primitive_type] = ACTIONS(1334), - [anon_sym_enum] = ACTIONS(1334), - [anon_sym_struct] = ACTIONS(1334), - [anon_sym_union] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_else] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [anon_sym_do] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_goto] = ACTIONS(1334), - [anon_sym___try] = ACTIONS(1334), - [anon_sym___leave] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_sizeof] = ACTIONS(1334), - [anon_sym___alignof__] = ACTIONS(1334), - [anon_sym___alignof] = ACTIONS(1334), - [anon_sym__alignof] = ACTIONS(1334), - [anon_sym_alignof] = ACTIONS(1334), - [anon_sym__Alignof] = ACTIONS(1334), - [anon_sym_offsetof] = ACTIONS(1334), - [anon_sym__Generic] = ACTIONS(1334), - [anon_sym_asm] = ACTIONS(1334), - [anon_sym___asm__] = ACTIONS(1334), - [sym_number_literal] = ACTIONS(1336), - [anon_sym_L_SQUOTE] = ACTIONS(1336), - [anon_sym_u_SQUOTE] = ACTIONS(1336), - [anon_sym_U_SQUOTE] = ACTIONS(1336), - [anon_sym_u8_SQUOTE] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_L_DQUOTE] = ACTIONS(1336), - [anon_sym_u_DQUOTE] = ACTIONS(1336), - [anon_sym_U_DQUOTE] = ACTIONS(1336), - [anon_sym_u8_DQUOTE] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_true] = ACTIONS(1334), - [sym_false] = ACTIONS(1334), - [anon_sym_NULL] = ACTIONS(1334), - [anon_sym_nullptr] = ACTIONS(1334), - [sym_comment] = ACTIONS(5), - }, - [532] = { - [sym_identifier] = ACTIONS(1338), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym___extension__] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym___attribute__] = ACTIONS(1338), - [anon_sym___scanf] = ACTIONS(1338), - [anon_sym___printf] = ACTIONS(1338), - [anon_sym___read_mostly] = ACTIONS(1338), - [anon_sym___must_hold] = ACTIONS(1338), - [anon_sym___ro_after_init] = ACTIONS(1338), - [anon_sym___noreturn] = ACTIONS(1338), - [anon_sym___cold] = ACTIONS(1338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), - [anon_sym___declspec] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_long] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym___inline] = ACTIONS(1338), - [anon_sym___inline__] = ACTIONS(1338), - [anon_sym___forceinline] = ACTIONS(1338), - [anon_sym_thread_local] = ACTIONS(1338), - [anon_sym___thread] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_constexpr] = ACTIONS(1338), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym___restrict__] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [anon_sym__Noreturn] = ACTIONS(1338), - [anon_sym_noreturn] = ACTIONS(1338), - [anon_sym_alignas] = ACTIONS(1338), - [anon_sym__Alignas] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [anon_sym___try] = ACTIONS(1338), - [anon_sym___leave] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym___alignof__] = ACTIONS(1338), - [anon_sym___alignof] = ACTIONS(1338), - [anon_sym__alignof] = ACTIONS(1338), - [anon_sym_alignof] = ACTIONS(1338), - [anon_sym__Alignof] = ACTIONS(1338), - [anon_sym_offsetof] = ACTIONS(1338), - [anon_sym__Generic] = ACTIONS(1338), - [anon_sym_asm] = ACTIONS(1338), - [anon_sym___asm__] = ACTIONS(1338), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_L_SQUOTE] = ACTIONS(1340), - [anon_sym_u_SQUOTE] = ACTIONS(1340), - [anon_sym_U_SQUOTE] = ACTIONS(1340), - [anon_sym_u8_SQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_L_DQUOTE] = ACTIONS(1340), - [anon_sym_u_DQUOTE] = ACTIONS(1340), - [anon_sym_U_DQUOTE] = ACTIONS(1340), - [anon_sym_u8_DQUOTE] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_true] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_NULL] = ACTIONS(1338), - [anon_sym_nullptr] = ACTIONS(1338), - [sym_comment] = ACTIONS(5), - }, - [533] = { - [sym_identifier] = ACTIONS(1274), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1276), - [anon_sym_BANG] = ACTIONS(1276), - [anon_sym_TILDE] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym___extension__] = ACTIONS(1274), - [anon_sym_typedef] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym___attribute__] = ACTIONS(1274), - [anon_sym___scanf] = ACTIONS(1274), - [anon_sym___printf] = ACTIONS(1274), - [anon_sym___read_mostly] = ACTIONS(1274), - [anon_sym___must_hold] = ACTIONS(1274), - [anon_sym___ro_after_init] = ACTIONS(1274), - [anon_sym___noreturn] = ACTIONS(1274), - [anon_sym___cold] = ACTIONS(1274), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1276), - [anon_sym___declspec] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_signed] = ACTIONS(1274), - [anon_sym_unsigned] = ACTIONS(1274), - [anon_sym_long] = ACTIONS(1274), - [anon_sym_short] = ACTIONS(1274), - [anon_sym_static] = ACTIONS(1274), - [anon_sym_auto] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_inline] = ACTIONS(1274), - [anon_sym___inline] = ACTIONS(1274), - [anon_sym___inline__] = ACTIONS(1274), - [anon_sym___forceinline] = ACTIONS(1274), - [anon_sym_thread_local] = ACTIONS(1274), - [anon_sym___thread] = ACTIONS(1274), - [anon_sym_const] = ACTIONS(1274), - [anon_sym_constexpr] = ACTIONS(1274), - [anon_sym_volatile] = ACTIONS(1274), - [anon_sym_restrict] = ACTIONS(1274), - [anon_sym___restrict__] = ACTIONS(1274), - [anon_sym__Atomic] = ACTIONS(1274), - [anon_sym__Noreturn] = ACTIONS(1274), - [anon_sym_noreturn] = ACTIONS(1274), - [anon_sym_alignas] = ACTIONS(1274), - [anon_sym__Alignas] = ACTIONS(1274), - [sym_primitive_type] = ACTIONS(1274), - [anon_sym_enum] = ACTIONS(1274), - [anon_sym_struct] = ACTIONS(1274), - [anon_sym_union] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_else] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_do] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_goto] = ACTIONS(1274), - [anon_sym___try] = ACTIONS(1274), - [anon_sym___leave] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_sizeof] = ACTIONS(1274), - [anon_sym___alignof__] = ACTIONS(1274), - [anon_sym___alignof] = ACTIONS(1274), - [anon_sym__alignof] = ACTIONS(1274), - [anon_sym_alignof] = ACTIONS(1274), - [anon_sym__Alignof] = ACTIONS(1274), - [anon_sym_offsetof] = ACTIONS(1274), - [anon_sym__Generic] = ACTIONS(1274), - [anon_sym_asm] = ACTIONS(1274), - [anon_sym___asm__] = ACTIONS(1274), - [sym_number_literal] = ACTIONS(1276), - [anon_sym_L_SQUOTE] = ACTIONS(1276), - [anon_sym_u_SQUOTE] = ACTIONS(1276), - [anon_sym_U_SQUOTE] = ACTIONS(1276), - [anon_sym_u8_SQUOTE] = ACTIONS(1276), - [anon_sym_SQUOTE] = ACTIONS(1276), - [anon_sym_L_DQUOTE] = ACTIONS(1276), - [anon_sym_u_DQUOTE] = ACTIONS(1276), - [anon_sym_U_DQUOTE] = ACTIONS(1276), - [anon_sym_u8_DQUOTE] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym_true] = ACTIONS(1274), - [sym_false] = ACTIONS(1274), - [anon_sym_NULL] = ACTIONS(1274), - [anon_sym_nullptr] = ACTIONS(1274), + [anon_sym_LPAREN2] = ACTIONS(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_TILDE] = ACTIONS(1248), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_PLUS] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1248), + [anon_sym___extension__] = ACTIONS(1246), + [anon_sym_typedef] = ACTIONS(1246), + [anon_sym_extern] = ACTIONS(1246), + [anon_sym___attribute__] = ACTIONS(1246), + [anon_sym___scanf] = ACTIONS(1246), + [anon_sym___printf] = ACTIONS(1246), + [anon_sym___read_mostly] = ACTIONS(1246), + [anon_sym___must_hold] = ACTIONS(1246), + [anon_sym___ro_after_init] = ACTIONS(1246), + [anon_sym___noreturn] = ACTIONS(1246), + [anon_sym___cold] = ACTIONS(1246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1248), + [anon_sym___declspec] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_signed] = ACTIONS(1246), + [anon_sym_unsigned] = ACTIONS(1246), + [anon_sym_long] = ACTIONS(1246), + [anon_sym_short] = ACTIONS(1246), + [anon_sym_static] = ACTIONS(1246), + [anon_sym_auto] = ACTIONS(1246), + [anon_sym_register] = ACTIONS(1246), + [anon_sym_inline] = ACTIONS(1246), + [anon_sym___inline] = ACTIONS(1246), + [anon_sym___inline__] = ACTIONS(1246), + [anon_sym___forceinline] = ACTIONS(1246), + [anon_sym_thread_local] = ACTIONS(1246), + [anon_sym___thread] = ACTIONS(1246), + [anon_sym_const] = ACTIONS(1246), + [anon_sym_constexpr] = ACTIONS(1246), + [anon_sym_volatile] = ACTIONS(1246), + [anon_sym_restrict] = ACTIONS(1246), + [anon_sym___restrict__] = ACTIONS(1246), + [anon_sym__Atomic] = ACTIONS(1246), + [anon_sym__Noreturn] = ACTIONS(1246), + [anon_sym_noreturn] = ACTIONS(1246), + [anon_sym_alignas] = ACTIONS(1246), + [anon_sym__Alignas] = ACTIONS(1246), + [sym_primitive_type] = ACTIONS(1246), + [anon_sym_enum] = ACTIONS(1246), + [anon_sym_struct] = ACTIONS(1246), + [anon_sym_union] = ACTIONS(1246), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_else] = ACTIONS(1246), + [anon_sym_switch] = ACTIONS(1246), + [anon_sym_while] = ACTIONS(1246), + [anon_sym_do] = ACTIONS(1246), + [anon_sym_for] = ACTIONS(1246), + [anon_sym_return] = ACTIONS(1246), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1246), + [anon_sym_goto] = ACTIONS(1246), + [anon_sym___try] = ACTIONS(1246), + [anon_sym___leave] = ACTIONS(1246), + [anon_sym_DASH_DASH] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_sizeof] = ACTIONS(1246), + [anon_sym___alignof__] = ACTIONS(1246), + [anon_sym___alignof] = ACTIONS(1246), + [anon_sym__alignof] = ACTIONS(1246), + [anon_sym_alignof] = ACTIONS(1246), + [anon_sym__Alignof] = ACTIONS(1246), + [anon_sym_offsetof] = ACTIONS(1246), + [anon_sym__Generic] = ACTIONS(1246), + [anon_sym_asm] = ACTIONS(1246), + [anon_sym___asm__] = ACTIONS(1246), + [sym_number_literal] = ACTIONS(1248), + [anon_sym_L_SQUOTE] = ACTIONS(1248), + [anon_sym_u_SQUOTE] = ACTIONS(1248), + [anon_sym_U_SQUOTE] = ACTIONS(1248), + [anon_sym_u8_SQUOTE] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1248), + [anon_sym_L_DQUOTE] = ACTIONS(1248), + [anon_sym_u_DQUOTE] = ACTIONS(1248), + [anon_sym_U_DQUOTE] = ACTIONS(1248), + [anon_sym_u8_DQUOTE] = ACTIONS(1248), + [anon_sym_DQUOTE] = ACTIONS(1248), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), + [anon_sym_NULL] = ACTIONS(1246), + [anon_sym_nullptr] = ACTIONS(1246), [sym_comment] = ACTIONS(5), }, - [534] = { + [495] = { [sym_identifier] = ACTIONS(1294), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(1296), @@ -79063,594 +75670,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1294), [sym_comment] = ACTIONS(5), }, - [535] = { - [sym_preproc_def] = STATE(558), - [sym_preproc_function_def] = STATE(558), - [sym_preproc_call] = STATE(558), - [sym_preproc_if_in_field_declaration_list] = STATE(558), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(558), - [sym_preproc_else_in_field_declaration_list] = STATE(3024), - [sym_preproc_elif_in_field_declaration_list] = STATE(3024), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(3024), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1734), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2312), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(558), - [sym_macro_invocation] = STATE(558), - [sym_field_declaration] = STATE(558), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(558), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2031), - [aux_sym_preproc_if_token1] = ACTIONS(2033), - [aux_sym_preproc_if_token2] = ACTIONS(2035), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2037), - [aux_sym_preproc_else_token1] = ACTIONS(2039), - [aux_sym_preproc_elif_token1] = ACTIONS(2041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2043), - [sym_preproc_directive] = ACTIONS(2045), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), - [sym_comment] = ACTIONS(5), - }, - [536] = { - [sym_preproc_def] = STATE(558), - [sym_preproc_function_def] = STATE(558), - [sym_preproc_call] = STATE(558), - [sym_preproc_if_in_field_declaration_list] = STATE(558), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(558), - [sym_preproc_else_in_field_declaration_list] = STATE(3207), - [sym_preproc_elif_in_field_declaration_list] = STATE(3207), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(3207), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1734), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2312), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(558), - [sym_macro_invocation] = STATE(558), - [sym_field_declaration] = STATE(558), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(558), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2031), - [aux_sym_preproc_if_token1] = ACTIONS(2033), - [aux_sym_preproc_if_token2] = ACTIONS(2063), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2037), - [aux_sym_preproc_else_token1] = ACTIONS(2039), - [aux_sym_preproc_elif_token1] = ACTIONS(2041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2043), - [sym_preproc_directive] = ACTIONS(2045), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), + [496] = { + [sym_identifier] = ACTIONS(1306), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym___scanf] = ACTIONS(1306), + [anon_sym___printf] = ACTIONS(1306), + [anon_sym___read_mostly] = ACTIONS(1306), + [anon_sym___must_hold] = ACTIONS(1306), + [anon_sym___ro_after_init] = ACTIONS(1306), + [anon_sym___noreturn] = ACTIONS(1306), + [anon_sym___cold] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [anon_sym_alignas] = ACTIONS(1306), + [anon_sym__Alignas] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(5), }, - [537] = { - [sym_preproc_def] = STATE(551), - [sym_preproc_function_def] = STATE(551), - [sym_preproc_call] = STATE(551), - [sym_preproc_if_in_field_declaration_list] = STATE(551), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(551), - [sym_preproc_else_in_field_declaration_list] = STATE(3164), - [sym_preproc_elif_in_field_declaration_list] = STATE(3164), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(3164), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1734), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2312), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(551), - [sym_macro_invocation] = STATE(551), - [sym_field_declaration] = STATE(551), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(551), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2031), - [aux_sym_preproc_if_token1] = ACTIONS(2033), - [aux_sym_preproc_if_token2] = ACTIONS(2065), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2037), - [aux_sym_preproc_else_token1] = ACTIONS(2039), - [aux_sym_preproc_elif_token1] = ACTIONS(2041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2043), - [sym_preproc_directive] = ACTIONS(2045), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), - [sym_comment] = ACTIONS(5), - }, - [538] = { - [sym_preproc_def] = STATE(558), - [sym_preproc_function_def] = STATE(558), - [sym_preproc_call] = STATE(558), - [sym_preproc_if_in_field_declaration_list] = STATE(558), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(558), - [sym_preproc_else_in_field_declaration_list] = STATE(3074), - [sym_preproc_elif_in_field_declaration_list] = STATE(3074), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(3074), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1734), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2312), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(558), - [sym_macro_invocation] = STATE(558), - [sym_field_declaration] = STATE(558), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(558), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2031), - [aux_sym_preproc_if_token1] = ACTIONS(2033), - [aux_sym_preproc_if_token2] = ACTIONS(2067), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2037), - [aux_sym_preproc_else_token1] = ACTIONS(2039), - [aux_sym_preproc_elif_token1] = ACTIONS(2041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2043), - [sym_preproc_directive] = ACTIONS(2045), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), - [sym_comment] = ACTIONS(5), - }, - [539] = { - [sym_preproc_def] = STATE(536), - [sym_preproc_function_def] = STATE(536), - [sym_preproc_call] = STATE(536), - [sym_preproc_if_in_field_declaration_list] = STATE(536), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(536), - [sym_preproc_else_in_field_declaration_list] = STATE(3109), - [sym_preproc_elif_in_field_declaration_list] = STATE(3109), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(3109), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1734), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2312), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(536), - [sym_macro_invocation] = STATE(536), - [sym_field_declaration] = STATE(536), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(536), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2031), - [aux_sym_preproc_if_token1] = ACTIONS(2033), - [aux_sym_preproc_if_token2] = ACTIONS(2069), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2037), - [aux_sym_preproc_else_token1] = ACTIONS(2039), - [aux_sym_preproc_elif_token1] = ACTIONS(2041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2043), - [sym_preproc_directive] = ACTIONS(2045), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), - [sym_comment] = ACTIONS(5), - }, - [540] = { - [sym_preproc_def] = STATE(558), - [sym_preproc_function_def] = STATE(558), - [sym_preproc_call] = STATE(558), - [sym_preproc_if_in_field_declaration_list] = STATE(558), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(558), - [sym_preproc_else_in_field_declaration_list] = STATE(2962), - [sym_preproc_elif_in_field_declaration_list] = STATE(2962), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2962), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1734), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2312), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(558), - [sym_macro_invocation] = STATE(558), - [sym_field_declaration] = STATE(558), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(558), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2031), - [aux_sym_preproc_if_token1] = ACTIONS(2033), - [aux_sym_preproc_if_token2] = ACTIONS(2071), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2037), - [aux_sym_preproc_else_token1] = ACTIONS(2039), - [aux_sym_preproc_elif_token1] = ACTIONS(2041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2043), - [sym_preproc_directive] = ACTIONS(2045), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), - [sym_comment] = ACTIONS(5), - }, - [541] = { - [sym_type_qualifier] = STATE(1517), - [sym_alignas_qualifier] = STATE(1671), - [sym_type_specifier] = STATE(1678), - [sym_sized_type_specifier] = STATE(1984), - [sym_enum_specifier] = STATE(1984), - [sym_struct_specifier] = STATE(1984), - [sym_union_specifier] = STATE(1984), - [sym_expression] = STATE(1639), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_type_descriptor] = STATE(3308), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1984), - [aux_sym__type_definition_type_repeat1] = STATE(1517), - [aux_sym_sized_type_specifier_repeat1] = STATE(1712), - [sym_identifier] = ACTIONS(1993), + [497] = { + [sym_type_qualifier] = STATE(1531), + [sym_alignas_qualifier] = STATE(1695), + [sym_type_specifier] = STATE(1705), + [sym_sized_type_specifier] = STATE(2008), + [sym_enum_specifier] = STATE(2008), + [sym_struct_specifier] = STATE(2008), + [sym_union_specifier] = STATE(2008), + [sym_expression] = STATE(1593), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3298), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_type_descriptor] = STATE(3350), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(2008), + [aux_sym__type_definition_type_repeat1] = STATE(1531), + [aux_sym_sized_type_specifier_repeat1] = STATE(1733), + [sym_identifier] = ACTIONS(2028), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -79659,25 +75808,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym___extension__] = ACTIONS(1995), - [anon_sym_signed] = ACTIONS(1997), - [anon_sym_unsigned] = ACTIONS(1997), - [anon_sym_long] = ACTIONS(1997), - [anon_sym_short] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_constexpr] = ACTIONS(1995), - [anon_sym_volatile] = ACTIONS(1995), - [anon_sym_restrict] = ACTIONS(1995), - [anon_sym___restrict__] = ACTIONS(1995), - [anon_sym__Atomic] = ACTIONS(1995), - [anon_sym__Noreturn] = ACTIONS(1995), - [anon_sym_noreturn] = ACTIONS(1995), - [anon_sym_alignas] = ACTIONS(1999), - [anon_sym__Alignas] = ACTIONS(1999), - [sym_primitive_type] = ACTIONS(2001), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_struct] = ACTIONS(2005), - [anon_sym_union] = ACTIONS(2007), + [anon_sym___extension__] = ACTIONS(2030), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_constexpr] = ACTIONS(2030), + [anon_sym_volatile] = ACTIONS(2030), + [anon_sym_restrict] = ACTIONS(2030), + [anon_sym___restrict__] = ACTIONS(2030), + [anon_sym__Atomic] = ACTIONS(2030), + [anon_sym__Noreturn] = ACTIONS(2030), + [anon_sym_noreturn] = ACTIONS(2030), + [anon_sym_alignas] = ACTIONS(2034), + [anon_sym__Alignas] = ACTIONS(2034), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2042), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -79707,42 +75856,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [542] = { - [sym_type_qualifier] = STATE(1517), - [sym_alignas_qualifier] = STATE(1671), - [sym_type_specifier] = STATE(1678), - [sym_sized_type_specifier] = STATE(1984), - [sym_enum_specifier] = STATE(1984), - [sym_struct_specifier] = STATE(1984), - [sym_union_specifier] = STATE(1984), - [sym_expression] = STATE(1656), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_type_descriptor] = STATE(3079), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1984), - [aux_sym__type_definition_type_repeat1] = STATE(1517), - [aux_sym_sized_type_specifier_repeat1] = STATE(1712), - [sym_identifier] = ACTIONS(1993), + [498] = { + [sym_identifier] = ACTIONS(1306), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym___scanf] = ACTIONS(1306), + [anon_sym___printf] = ACTIONS(1306), + [anon_sym___read_mostly] = ACTIONS(1306), + [anon_sym___must_hold] = ACTIONS(1306), + [anon_sym___ro_after_init] = ACTIONS(1306), + [anon_sym___noreturn] = ACTIONS(1306), + [anon_sym___cold] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [anon_sym_alignas] = ACTIONS(1306), + [anon_sym__Alignas] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(5), + }, + [499] = { + [sym_type_qualifier] = STATE(1531), + [sym_alignas_qualifier] = STATE(1695), + [sym_type_specifier] = STATE(1705), + [sym_sized_type_specifier] = STATE(2008), + [sym_enum_specifier] = STATE(2008), + [sym_struct_specifier] = STATE(2008), + [sym_union_specifier] = STATE(2008), + [sym_expression] = STATE(1638), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3332), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_type_descriptor] = STATE(2998), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(2008), + [aux_sym__type_definition_type_repeat1] = STATE(1531), + [aux_sym_sized_type_specifier_repeat1] = STATE(1733), + [sym_identifier] = ACTIONS(2028), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -79751,25 +75994,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym___extension__] = ACTIONS(1995), - [anon_sym_signed] = ACTIONS(1997), - [anon_sym_unsigned] = ACTIONS(1997), - [anon_sym_long] = ACTIONS(1997), - [anon_sym_short] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_constexpr] = ACTIONS(1995), - [anon_sym_volatile] = ACTIONS(1995), - [anon_sym_restrict] = ACTIONS(1995), - [anon_sym___restrict__] = ACTIONS(1995), - [anon_sym__Atomic] = ACTIONS(1995), - [anon_sym__Noreturn] = ACTIONS(1995), - [anon_sym_noreturn] = ACTIONS(1995), - [anon_sym_alignas] = ACTIONS(1999), - [anon_sym__Alignas] = ACTIONS(1999), - [sym_primitive_type] = ACTIONS(2001), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_struct] = ACTIONS(2005), - [anon_sym_union] = ACTIONS(2007), + [anon_sym___extension__] = ACTIONS(2030), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_constexpr] = ACTIONS(2030), + [anon_sym_volatile] = ACTIONS(2030), + [anon_sym_restrict] = ACTIONS(2030), + [anon_sym___restrict__] = ACTIONS(2030), + [anon_sym__Atomic] = ACTIONS(2030), + [anon_sym__Noreturn] = ACTIONS(2030), + [anon_sym_noreturn] = ACTIONS(2030), + [anon_sym_alignas] = ACTIONS(2034), + [anon_sym__Alignas] = ACTIONS(2034), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2042), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -79799,502 +76042,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [543] = { - [sym_preproc_def] = STATE(535), - [sym_preproc_function_def] = STATE(535), - [sym_preproc_call] = STATE(535), - [sym_preproc_if_in_field_declaration_list] = STATE(535), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(535), - [sym_preproc_else_in_field_declaration_list] = STATE(2963), - [sym_preproc_elif_in_field_declaration_list] = STATE(2963), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2963), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1734), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2312), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(535), - [sym_macro_invocation] = STATE(535), - [sym_field_declaration] = STATE(535), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(535), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2031), - [aux_sym_preproc_if_token1] = ACTIONS(2033), - [aux_sym_preproc_if_token2] = ACTIONS(2073), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2037), - [aux_sym_preproc_else_token1] = ACTIONS(2039), - [aux_sym_preproc_elif_token1] = ACTIONS(2041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2043), - [sym_preproc_directive] = ACTIONS(2045), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), - [sym_comment] = ACTIONS(5), - }, - [544] = { - [sym_preproc_def] = STATE(558), - [sym_preproc_function_def] = STATE(558), - [sym_preproc_call] = STATE(558), - [sym_preproc_if_in_field_declaration_list] = STATE(558), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(558), - [sym_preproc_else_in_field_declaration_list] = STATE(3105), - [sym_preproc_elif_in_field_declaration_list] = STATE(3105), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(3105), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1734), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2312), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(558), - [sym_macro_invocation] = STATE(558), - [sym_field_declaration] = STATE(558), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(558), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2031), - [aux_sym_preproc_if_token1] = ACTIONS(2033), - [aux_sym_preproc_if_token2] = ACTIONS(2075), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2037), - [aux_sym_preproc_else_token1] = ACTIONS(2039), - [aux_sym_preproc_elif_token1] = ACTIONS(2041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2043), - [sym_preproc_directive] = ACTIONS(2045), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), - [sym_comment] = ACTIONS(5), - }, - [545] = { - [sym_preproc_def] = STATE(558), - [sym_preproc_function_def] = STATE(558), - [sym_preproc_call] = STATE(558), - [sym_preproc_if_in_field_declaration_list] = STATE(558), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(558), - [sym_preproc_else_in_field_declaration_list] = STATE(3041), - [sym_preproc_elif_in_field_declaration_list] = STATE(3041), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(3041), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1734), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2312), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(558), - [sym_macro_invocation] = STATE(558), - [sym_field_declaration] = STATE(558), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(558), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2031), - [aux_sym_preproc_if_token1] = ACTIONS(2033), - [aux_sym_preproc_if_token2] = ACTIONS(2077), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2037), - [aux_sym_preproc_else_token1] = ACTIONS(2039), - [aux_sym_preproc_elif_token1] = ACTIONS(2041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2043), - [sym_preproc_directive] = ACTIONS(2045), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), - [sym_comment] = ACTIONS(5), - }, - [546] = { - [sym_preproc_def] = STATE(544), - [sym_preproc_function_def] = STATE(544), - [sym_preproc_call] = STATE(544), - [sym_preproc_if_in_field_declaration_list] = STATE(544), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(544), - [sym_preproc_else_in_field_declaration_list] = STATE(3042), - [sym_preproc_elif_in_field_declaration_list] = STATE(3042), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(3042), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1734), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2312), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(544), - [sym_macro_invocation] = STATE(544), - [sym_field_declaration] = STATE(544), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(544), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2031), - [aux_sym_preproc_if_token1] = ACTIONS(2033), - [aux_sym_preproc_if_token2] = ACTIONS(2079), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2037), - [aux_sym_preproc_else_token1] = ACTIONS(2039), - [aux_sym_preproc_elif_token1] = ACTIONS(2041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2043), - [sym_preproc_directive] = ACTIONS(2045), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), - [sym_comment] = ACTIONS(5), - }, - [547] = { - [sym_preproc_def] = STATE(553), - [sym_preproc_function_def] = STATE(553), - [sym_preproc_call] = STATE(553), - [sym_preproc_if_in_field_declaration_list] = STATE(553), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(553), - [sym_preproc_else_in_field_declaration_list] = STATE(3204), - [sym_preproc_elif_in_field_declaration_list] = STATE(3204), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(3204), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1734), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2312), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(553), - [sym_macro_invocation] = STATE(553), - [sym_field_declaration] = STATE(553), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(553), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2031), - [aux_sym_preproc_if_token1] = ACTIONS(2033), - [aux_sym_preproc_if_token2] = ACTIONS(2081), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2037), - [aux_sym_preproc_else_token1] = ACTIONS(2039), - [aux_sym_preproc_elif_token1] = ACTIONS(2041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2043), - [sym_preproc_directive] = ACTIONS(2045), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), - [sym_comment] = ACTIONS(5), - }, - [548] = { - [sym_type_qualifier] = STATE(1517), - [sym_alignas_qualifier] = STATE(1671), - [sym_type_specifier] = STATE(1678), - [sym_sized_type_specifier] = STATE(1984), - [sym_enum_specifier] = STATE(1984), - [sym_struct_specifier] = STATE(1984), - [sym_union_specifier] = STATE(1984), - [sym_expression] = STATE(1624), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_type_descriptor] = STATE(2987), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1984), - [aux_sym__type_definition_type_repeat1] = STATE(1517), - [aux_sym_sized_type_specifier_repeat1] = STATE(1712), - [sym_identifier] = ACTIONS(1993), + [500] = { + [sym_type_qualifier] = STATE(1531), + [sym_alignas_qualifier] = STATE(1695), + [sym_type_specifier] = STATE(1705), + [sym_sized_type_specifier] = STATE(2008), + [sym_enum_specifier] = STATE(2008), + [sym_struct_specifier] = STATE(2008), + [sym_union_specifier] = STATE(2008), + [sym_expression] = STATE(1614), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3110), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_type_descriptor] = STATE(3119), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(2008), + [aux_sym__type_definition_type_repeat1] = STATE(1531), + [aux_sym_sized_type_specifier_repeat1] = STATE(1733), + [sym_identifier] = ACTIONS(2028), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -80303,25 +76087,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym___extension__] = ACTIONS(1995), - [anon_sym_signed] = ACTIONS(1997), - [anon_sym_unsigned] = ACTIONS(1997), - [anon_sym_long] = ACTIONS(1997), - [anon_sym_short] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_constexpr] = ACTIONS(1995), - [anon_sym_volatile] = ACTIONS(1995), - [anon_sym_restrict] = ACTIONS(1995), - [anon_sym___restrict__] = ACTIONS(1995), - [anon_sym__Atomic] = ACTIONS(1995), - [anon_sym__Noreturn] = ACTIONS(1995), - [anon_sym_noreturn] = ACTIONS(1995), - [anon_sym_alignas] = ACTIONS(1999), - [anon_sym__Alignas] = ACTIONS(1999), - [sym_primitive_type] = ACTIONS(2001), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_struct] = ACTIONS(2005), - [anon_sym_union] = ACTIONS(2007), + [anon_sym___extension__] = ACTIONS(2030), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_constexpr] = ACTIONS(2030), + [anon_sym_volatile] = ACTIONS(2030), + [anon_sym_restrict] = ACTIONS(2030), + [anon_sym___restrict__] = ACTIONS(2030), + [anon_sym__Atomic] = ACTIONS(2030), + [anon_sym__Noreturn] = ACTIONS(2030), + [anon_sym_noreturn] = ACTIONS(2030), + [anon_sym_alignas] = ACTIONS(2034), + [anon_sym__Alignas] = ACTIONS(2034), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2042), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -80351,318 +76135,322 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [549] = { - [sym_preproc_def] = STATE(545), - [sym_preproc_function_def] = STATE(545), - [sym_preproc_call] = STATE(545), - [sym_preproc_if_in_field_declaration_list] = STATE(545), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(545), - [sym_preproc_else_in_field_declaration_list] = STATE(3121), - [sym_preproc_elif_in_field_declaration_list] = STATE(3121), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(3121), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1734), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2312), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(545), - [sym_macro_invocation] = STATE(545), - [sym_field_declaration] = STATE(545), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(545), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2031), - [aux_sym_preproc_if_token1] = ACTIONS(2033), - [aux_sym_preproc_if_token2] = ACTIONS(2083), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2037), - [aux_sym_preproc_else_token1] = ACTIONS(2039), - [aux_sym_preproc_elif_token1] = ACTIONS(2041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2043), - [sym_preproc_directive] = ACTIONS(2045), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), - [sym_comment] = ACTIONS(5), - }, - [550] = { - [sym_preproc_def] = STATE(540), - [sym_preproc_function_def] = STATE(540), - [sym_preproc_call] = STATE(540), - [sym_preproc_if_in_field_declaration_list] = STATE(540), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(540), - [sym_preproc_else_in_field_declaration_list] = STATE(2972), - [sym_preproc_elif_in_field_declaration_list] = STATE(2972), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2972), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1734), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2312), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(540), - [sym_macro_invocation] = STATE(540), - [sym_field_declaration] = STATE(540), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(540), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2031), - [aux_sym_preproc_if_token1] = ACTIONS(2033), - [aux_sym_preproc_if_token2] = ACTIONS(2085), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2037), - [aux_sym_preproc_else_token1] = ACTIONS(2039), - [aux_sym_preproc_elif_token1] = ACTIONS(2041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2043), - [sym_preproc_directive] = ACTIONS(2045), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), - [sym_comment] = ACTIONS(5), - }, - [551] = { - [sym_preproc_def] = STATE(558), - [sym_preproc_function_def] = STATE(558), - [sym_preproc_call] = STATE(558), - [sym_preproc_if_in_field_declaration_list] = STATE(558), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(558), - [sym_preproc_else_in_field_declaration_list] = STATE(3367), - [sym_preproc_elif_in_field_declaration_list] = STATE(3367), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(3367), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1734), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2312), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(558), - [sym_macro_invocation] = STATE(558), - [sym_field_declaration] = STATE(558), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(558), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2031), - [aux_sym_preproc_if_token1] = ACTIONS(2033), - [aux_sym_preproc_if_token2] = ACTIONS(2087), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2037), - [aux_sym_preproc_else_token1] = ACTIONS(2039), - [aux_sym_preproc_elif_token1] = ACTIONS(2041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2043), - [sym_preproc_directive] = ACTIONS(2045), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), + [501] = { + [sym_identifier] = ACTIONS(1366), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym___scanf] = ACTIONS(1366), + [anon_sym___printf] = ACTIONS(1366), + [anon_sym___read_mostly] = ACTIONS(1366), + [anon_sym___must_hold] = ACTIONS(1366), + [anon_sym___ro_after_init] = ACTIONS(1366), + [anon_sym___noreturn] = ACTIONS(1366), + [anon_sym___cold] = ACTIONS(1366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), + [anon_sym___declspec] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_signed] = ACTIONS(1366), + [anon_sym_unsigned] = ACTIONS(1366), + [anon_sym_long] = ACTIONS(1366), + [anon_sym_short] = ACTIONS(1366), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_auto] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1366), + [anon_sym_inline] = ACTIONS(1366), + [anon_sym___inline] = ACTIONS(1366), + [anon_sym___inline__] = ACTIONS(1366), + [anon_sym___forceinline] = ACTIONS(1366), + [anon_sym_thread_local] = ACTIONS(1366), + [anon_sym___thread] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_constexpr] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1366), + [anon_sym_restrict] = ACTIONS(1366), + [anon_sym___restrict__] = ACTIONS(1366), + [anon_sym__Atomic] = ACTIONS(1366), + [anon_sym__Noreturn] = ACTIONS(1366), + [anon_sym_noreturn] = ACTIONS(1366), + [anon_sym_alignas] = ACTIONS(1366), + [anon_sym__Alignas] = ACTIONS(1366), + [sym_primitive_type] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_else] = ACTIONS(1366), + [anon_sym_switch] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_goto] = ACTIONS(1366), + [anon_sym___try] = ACTIONS(1366), + [anon_sym___leave] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_sizeof] = ACTIONS(1366), + [anon_sym___alignof__] = ACTIONS(1366), + [anon_sym___alignof] = ACTIONS(1366), + [anon_sym__alignof] = ACTIONS(1366), + [anon_sym_alignof] = ACTIONS(1366), + [anon_sym__Alignof] = ACTIONS(1366), + [anon_sym_offsetof] = ACTIONS(1366), + [anon_sym__Generic] = ACTIONS(1366), + [anon_sym_asm] = ACTIONS(1366), + [anon_sym___asm__] = ACTIONS(1366), + [sym_number_literal] = ACTIONS(1368), + [anon_sym_L_SQUOTE] = ACTIONS(1368), + [anon_sym_u_SQUOTE] = ACTIONS(1368), + [anon_sym_U_SQUOTE] = ACTIONS(1368), + [anon_sym_u8_SQUOTE] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_L_DQUOTE] = ACTIONS(1368), + [anon_sym_u_DQUOTE] = ACTIONS(1368), + [anon_sym_U_DQUOTE] = ACTIONS(1368), + [anon_sym_u8_DQUOTE] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [anon_sym_NULL] = ACTIONS(1366), + [anon_sym_nullptr] = ACTIONS(1366), [sym_comment] = ACTIONS(5), }, - [552] = { - [sym_type_qualifier] = STATE(1517), - [sym_alignas_qualifier] = STATE(1671), - [sym_type_specifier] = STATE(1678), - [sym_sized_type_specifier] = STATE(1984), - [sym_enum_specifier] = STATE(1984), - [sym_struct_specifier] = STATE(1984), - [sym_union_specifier] = STATE(1984), - [sym_expression] = STATE(1643), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_type_descriptor] = STATE(3152), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1984), - [aux_sym__type_definition_type_repeat1] = STATE(1517), - [aux_sym_sized_type_specifier_repeat1] = STATE(1712), - [sym_identifier] = ACTIONS(1993), + [502] = { + [sym_identifier] = ACTIONS(1338), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym___scanf] = ACTIONS(1338), + [anon_sym___printf] = ACTIONS(1338), + [anon_sym___read_mostly] = ACTIONS(1338), + [anon_sym___must_hold] = ACTIONS(1338), + [anon_sym___ro_after_init] = ACTIONS(1338), + [anon_sym___noreturn] = ACTIONS(1338), + [anon_sym___cold] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [anon_sym_alignas] = ACTIONS(1338), + [anon_sym__Alignas] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), + [sym_comment] = ACTIONS(5), + }, + [503] = { + [sym_identifier] = ACTIONS(1306), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym___scanf] = ACTIONS(1306), + [anon_sym___printf] = ACTIONS(1306), + [anon_sym___read_mostly] = ACTIONS(1306), + [anon_sym___must_hold] = ACTIONS(1306), + [anon_sym___ro_after_init] = ACTIONS(1306), + [anon_sym___noreturn] = ACTIONS(1306), + [anon_sym___cold] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [anon_sym_alignas] = ACTIONS(1306), + [anon_sym__Alignas] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(5), + }, + [504] = { + [sym_type_qualifier] = STATE(1531), + [sym_alignas_qualifier] = STATE(1695), + [sym_type_specifier] = STATE(1705), + [sym_sized_type_specifier] = STATE(2008), + [sym_enum_specifier] = STATE(2008), + [sym_struct_specifier] = STATE(2008), + [sym_union_specifier] = STATE(2008), + [sym_expression] = STATE(1638), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3332), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_type_descriptor] = STATE(3222), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(2008), + [aux_sym__type_definition_type_repeat1] = STATE(1531), + [aux_sym_sized_type_specifier_repeat1] = STATE(1733), + [sym_identifier] = ACTIONS(2028), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -80671,25 +76459,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym___extension__] = ACTIONS(1995), - [anon_sym_signed] = ACTIONS(1997), - [anon_sym_unsigned] = ACTIONS(1997), - [anon_sym_long] = ACTIONS(1997), - [anon_sym_short] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_constexpr] = ACTIONS(1995), - [anon_sym_volatile] = ACTIONS(1995), - [anon_sym_restrict] = ACTIONS(1995), - [anon_sym___restrict__] = ACTIONS(1995), - [anon_sym__Atomic] = ACTIONS(1995), - [anon_sym__Noreturn] = ACTIONS(1995), - [anon_sym_noreturn] = ACTIONS(1995), - [anon_sym_alignas] = ACTIONS(1999), - [anon_sym__Alignas] = ACTIONS(1999), - [sym_primitive_type] = ACTIONS(2001), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_struct] = ACTIONS(2005), - [anon_sym_union] = ACTIONS(2007), + [anon_sym___extension__] = ACTIONS(2030), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_constexpr] = ACTIONS(2030), + [anon_sym_volatile] = ACTIONS(2030), + [anon_sym_restrict] = ACTIONS(2030), + [anon_sym___restrict__] = ACTIONS(2030), + [anon_sym__Atomic] = ACTIONS(2030), + [anon_sym__Noreturn] = ACTIONS(2030), + [anon_sym_noreturn] = ACTIONS(2030), + [anon_sym_alignas] = ACTIONS(2034), + [anon_sym__Alignas] = ACTIONS(2034), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2042), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -80719,226 +76507,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [553] = { - [sym_preproc_def] = STATE(558), - [sym_preproc_function_def] = STATE(558), - [sym_preproc_call] = STATE(558), - [sym_preproc_if_in_field_declaration_list] = STATE(558), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(558), - [sym_preproc_else_in_field_declaration_list] = STATE(3291), - [sym_preproc_elif_in_field_declaration_list] = STATE(3291), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(3291), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1734), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2312), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(558), - [sym_macro_invocation] = STATE(558), - [sym_field_declaration] = STATE(558), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(558), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2031), - [aux_sym_preproc_if_token1] = ACTIONS(2033), - [aux_sym_preproc_if_token2] = ACTIONS(2089), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2037), - [aux_sym_preproc_else_token1] = ACTIONS(2039), - [aux_sym_preproc_elif_token1] = ACTIONS(2041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2043), - [sym_preproc_directive] = ACTIONS(2045), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), - [sym_comment] = ACTIONS(5), - }, - [554] = { - [sym_preproc_def] = STATE(538), - [sym_preproc_function_def] = STATE(538), - [sym_preproc_call] = STATE(538), - [sym_preproc_if_in_field_declaration_list] = STATE(538), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(538), - [sym_preproc_else_in_field_declaration_list] = STATE(3148), - [sym_preproc_elif_in_field_declaration_list] = STATE(3148), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(3148), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1734), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2312), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(538), - [sym_macro_invocation] = STATE(538), - [sym_field_declaration] = STATE(538), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(538), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2031), - [aux_sym_preproc_if_token1] = ACTIONS(2033), - [aux_sym_preproc_if_token2] = ACTIONS(2091), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2037), - [aux_sym_preproc_else_token1] = ACTIONS(2039), - [aux_sym_preproc_elif_token1] = ACTIONS(2041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2043), - [sym_preproc_directive] = ACTIONS(2045), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), + [505] = { + [sym_identifier] = ACTIONS(1318), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym___scanf] = ACTIONS(1318), + [anon_sym___printf] = ACTIONS(1318), + [anon_sym___read_mostly] = ACTIONS(1318), + [anon_sym___must_hold] = ACTIONS(1318), + [anon_sym___ro_after_init] = ACTIONS(1318), + [anon_sym___noreturn] = ACTIONS(1318), + [anon_sym___cold] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [anon_sym_alignas] = ACTIONS(1318), + [anon_sym__Alignas] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(5), }, - [555] = { - [sym_type_qualifier] = STATE(1517), - [sym_alignas_qualifier] = STATE(1671), - [sym_type_specifier] = STATE(1678), - [sym_sized_type_specifier] = STATE(1984), - [sym_enum_specifier] = STATE(1984), - [sym_struct_specifier] = STATE(1984), - [sym_union_specifier] = STATE(1984), - [sym_expression] = STATE(1640), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_type_descriptor] = STATE(3356), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_macro_type_specifier] = STATE(1984), - [aux_sym__type_definition_type_repeat1] = STATE(1517), - [aux_sym_sized_type_specifier_repeat1] = STATE(1712), - [sym_identifier] = ACTIONS(1993), + [506] = { + [sym_type_qualifier] = STATE(1531), + [sym_alignas_qualifier] = STATE(1695), + [sym_type_specifier] = STATE(1705), + [sym_sized_type_specifier] = STATE(2008), + [sym_enum_specifier] = STATE(2008), + [sym_struct_specifier] = STATE(2008), + [sym_union_specifier] = STATE(2008), + [sym_expression] = STATE(1638), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3332), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_type_descriptor] = STATE(3007), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(2008), + [aux_sym__type_definition_type_repeat1] = STATE(1531), + [aux_sym_sized_type_specifier_repeat1] = STATE(1733), + [sym_identifier] = ACTIONS(2028), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -80947,25 +76645,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym___extension__] = ACTIONS(1995), - [anon_sym_signed] = ACTIONS(1997), - [anon_sym_unsigned] = ACTIONS(1997), - [anon_sym_long] = ACTIONS(1997), - [anon_sym_short] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_constexpr] = ACTIONS(1995), - [anon_sym_volatile] = ACTIONS(1995), - [anon_sym_restrict] = ACTIONS(1995), - [anon_sym___restrict__] = ACTIONS(1995), - [anon_sym__Atomic] = ACTIONS(1995), - [anon_sym__Noreturn] = ACTIONS(1995), - [anon_sym_noreturn] = ACTIONS(1995), - [anon_sym_alignas] = ACTIONS(1999), - [anon_sym__Alignas] = ACTIONS(1999), - [sym_primitive_type] = ACTIONS(2001), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_struct] = ACTIONS(2005), - [anon_sym_union] = ACTIONS(2007), + [anon_sym___extension__] = ACTIONS(2030), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_constexpr] = ACTIONS(2030), + [anon_sym_volatile] = ACTIONS(2030), + [anon_sym_restrict] = ACTIONS(2030), + [anon_sym___restrict__] = ACTIONS(2030), + [anon_sym__Atomic] = ACTIONS(2030), + [anon_sym__Noreturn] = ACTIONS(2030), + [anon_sym_noreturn] = ACTIONS(2030), + [anon_sym_alignas] = ACTIONS(2034), + [anon_sym__Alignas] = ACTIONS(2034), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2042), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -80995,424 +76693,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [556] = { - [sym_expression] = STATE(1011), - [sym__string] = STATE(1048), - [sym_conditional_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1048), - [sym_pointer_expression] = STATE(1049), - [sym_unary_expression] = STATE(1048), - [sym_binary_expression] = STATE(1048), - [sym_update_expression] = STATE(1048), - [sym_cast_expression] = STATE(1048), - [sym_sizeof_expression] = STATE(1048), - [sym_alignof_expression] = STATE(1048), - [sym_offsetof_expression] = STATE(1048), - [sym_generic_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1049), - [sym_call_expression] = STATE(1049), - [sym_gnu_asm_expression] = STATE(1048), - [sym_field_expression] = STATE(1049), - [sym_compound_literal_expression] = STATE(1048), - [sym_parenthesized_expression] = STATE(1049), - [sym_initializer_list] = STATE(1071), - [sym_char_literal] = STATE(1048), - [sym_concatenated_string] = STATE(1048), - [sym_string_literal] = STATE(915), - [sym_null] = STATE(1048), - [sym_identifier] = ACTIONS(2093), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1510), - [anon_sym_LPAREN2] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_TILDE] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_SLASH] = ACTIONS(1516), - [anon_sym_PERCENT] = ACTIONS(1510), - [anon_sym_PIPE_PIPE] = ACTIONS(1510), - [anon_sym_AMP_AMP] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_CARET] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_EQ_EQ] = ACTIONS(1510), - [anon_sym_BANG_EQ] = ACTIONS(1510), - [anon_sym_GT] = ACTIONS(1516), - [anon_sym_GT_EQ] = ACTIONS(1510), - [anon_sym_LT_EQ] = ACTIONS(1510), - [anon_sym_LT] = ACTIONS(1516), - [anon_sym_LT_LT] = ACTIONS(1510), - [anon_sym_GT_GT] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym___attribute__] = ACTIONS(1516), - [anon_sym___scanf] = ACTIONS(1516), - [anon_sym___printf] = ACTIONS(1516), - [anon_sym___read_mostly] = ACTIONS(1516), - [anon_sym___must_hold] = ACTIONS(1516), - [anon_sym___ro_after_init] = ACTIONS(1516), - [anon_sym___noreturn] = ACTIONS(1516), - [anon_sym___cold] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_QMARK] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_sizeof] = ACTIONS(2099), - [anon_sym___alignof__] = ACTIONS(1522), - [anon_sym___alignof] = ACTIONS(1522), - [anon_sym__alignof] = ACTIONS(1522), - [anon_sym_alignof] = ACTIONS(1522), - [anon_sym__Alignof] = ACTIONS(1522), - [anon_sym_offsetof] = ACTIONS(1524), - [anon_sym__Generic] = ACTIONS(1526), - [anon_sym_asm] = ACTIONS(1528), - [anon_sym___asm__] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1516), - [anon_sym_DASH_GT] = ACTIONS(1510), - [sym_number_literal] = ACTIONS(1530), - [anon_sym_L_SQUOTE] = ACTIONS(1532), - [anon_sym_u_SQUOTE] = ACTIONS(1532), - [anon_sym_U_SQUOTE] = ACTIONS(1532), - [anon_sym_u8_SQUOTE] = ACTIONS(1532), - [anon_sym_SQUOTE] = ACTIONS(1532), - [anon_sym_L_DQUOTE] = ACTIONS(1534), - [anon_sym_u_DQUOTE] = ACTIONS(1534), - [anon_sym_U_DQUOTE] = ACTIONS(1534), - [anon_sym_u8_DQUOTE] = ACTIONS(1534), - [anon_sym_DQUOTE] = ACTIONS(1534), - [sym_true] = ACTIONS(1536), - [sym_false] = ACTIONS(1536), - [anon_sym_NULL] = ACTIONS(1538), - [anon_sym_nullptr] = ACTIONS(1538), - [sym_comment] = ACTIONS(5), - }, - [557] = { - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1808), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym_macro_modifier] = STATE(1962), - [sym_ms_call_modifier] = STATE(1759), - [sym__declarator] = STATE(2285), - [sym__abstract_declarator] = STATE(2440), - [sym_parenthesized_declarator] = STATE(2209), - [sym_abstract_parenthesized_declarator] = STATE(2380), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_abstract_pointer_declarator] = STATE(2380), - [sym_function_declarator] = STATE(2209), - [sym_abstract_function_declarator] = STATE(2380), - [sym_array_declarator] = STATE(2209), - [sym_abstract_array_declarator] = STATE(2380), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym_variadic_parameter] = STATE(2506), - [sym_parameter_list] = STATE(2375), - [sym_parameter_declaration] = STATE(2506), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2101), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2103), - [anon_sym_RPAREN] = ACTIONS(2105), - [anon_sym_LPAREN2] = ACTIONS(2107), - [anon_sym_STAR] = ACTIONS(2109), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym___init] = ACTIONS(2111), - [anon_sym___exit] = ACTIONS(2111), - [anon_sym___cdecl] = ACTIONS(2113), - [anon_sym___clrcall] = ACTIONS(2113), - [anon_sym___stdcall] = ACTIONS(2113), - [anon_sym___fastcall] = ACTIONS(2113), - [anon_sym___thiscall] = ACTIONS(2113), - [anon_sym___vectorcall] = ACTIONS(2113), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_LBRACK] = ACTIONS(2115), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), - [sym_comment] = ACTIONS(5), - }, - [558] = { - [sym_preproc_def] = STATE(558), - [sym_preproc_function_def] = STATE(558), - [sym_preproc_call] = STATE(558), - [sym_preproc_if_in_field_declaration_list] = STATE(558), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(558), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1734), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2312), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(558), - [sym_macro_invocation] = STATE(558), - [sym_field_declaration] = STATE(558), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(558), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2117), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2120), - [aux_sym_preproc_if_token1] = ACTIONS(2123), - [aux_sym_preproc_if_token2] = ACTIONS(2126), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2128), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2128), - [aux_sym_preproc_else_token1] = ACTIONS(2126), - [aux_sym_preproc_elif_token1] = ACTIONS(2126), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2126), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2126), - [sym_preproc_directive] = ACTIONS(2131), - [anon_sym_LPAREN2] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2137), - [anon_sym___extension__] = ACTIONS(2140), - [anon_sym_extern] = ACTIONS(2143), - [anon_sym___attribute__] = ACTIONS(2146), - [anon_sym___scanf] = ACTIONS(2149), - [anon_sym___printf] = ACTIONS(2149), - [anon_sym___read_mostly] = ACTIONS(2152), - [anon_sym___must_hold] = ACTIONS(2146), - [anon_sym___ro_after_init] = ACTIONS(2152), - [anon_sym___noreturn] = ACTIONS(2152), - [anon_sym___cold] = ACTIONS(2152), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2155), - [anon_sym___declspec] = ACTIONS(2158), - [anon_sym___based] = ACTIONS(2161), - [anon_sym_signed] = ACTIONS(2164), - [anon_sym_unsigned] = ACTIONS(2164), - [anon_sym_long] = ACTIONS(2164), - [anon_sym_short] = ACTIONS(2164), - [anon_sym_static] = ACTIONS(2143), - [anon_sym_auto] = ACTIONS(2143), - [anon_sym_register] = ACTIONS(2143), - [anon_sym_inline] = ACTIONS(2143), - [anon_sym___inline] = ACTIONS(2143), - [anon_sym___inline__] = ACTIONS(2143), - [anon_sym___forceinline] = ACTIONS(2143), - [anon_sym_thread_local] = ACTIONS(2143), - [anon_sym___thread] = ACTIONS(2143), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_constexpr] = ACTIONS(2140), - [anon_sym_volatile] = ACTIONS(2140), - [anon_sym_restrict] = ACTIONS(2140), - [anon_sym___restrict__] = ACTIONS(2140), - [anon_sym__Atomic] = ACTIONS(2140), - [anon_sym__Noreturn] = ACTIONS(2140), - [anon_sym_noreturn] = ACTIONS(2140), - [anon_sym_alignas] = ACTIONS(2167), - [anon_sym__Alignas] = ACTIONS(2167), - [sym_primitive_type] = ACTIONS(2170), - [anon_sym_enum] = ACTIONS(2173), - [anon_sym_struct] = ACTIONS(2176), - [anon_sym_union] = ACTIONS(2179), - [sym_comment] = ACTIONS(5), - }, - [559] = { - [sym_expression] = STATE(1136), - [sym__string] = STATE(1200), - [sym_conditional_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1200), - [sym_pointer_expression] = STATE(1222), - [sym_unary_expression] = STATE(1200), - [sym_binary_expression] = STATE(1200), - [sym_update_expression] = STATE(1200), - [sym_cast_expression] = STATE(1200), - [sym_sizeof_expression] = STATE(1200), - [sym_alignof_expression] = STATE(1200), - [sym_offsetof_expression] = STATE(1200), - [sym_generic_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1222), - [sym_call_expression] = STATE(1222), - [sym_gnu_asm_expression] = STATE(1200), - [sym_field_expression] = STATE(1222), - [sym_compound_literal_expression] = STATE(1200), - [sym_parenthesized_expression] = STATE(1222), - [sym_initializer_list] = STATE(1234), - [sym_char_literal] = STATE(1200), - [sym_concatenated_string] = STATE(1200), - [sym_string_literal] = STATE(987), - [sym_null] = STATE(1200), - [sym_identifier] = ACTIONS(1516), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1510), - [aux_sym_preproc_if_token2] = ACTIONS(1510), - [aux_sym_preproc_else_token1] = ACTIONS(1510), - [aux_sym_preproc_elif_token1] = ACTIONS(1516), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1510), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1510), - [anon_sym_LPAREN2] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(2182), - [anon_sym_TILDE] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_SLASH] = ACTIONS(1516), - [anon_sym_PERCENT] = ACTIONS(1510), - [anon_sym_PIPE_PIPE] = ACTIONS(1510), - [anon_sym_AMP_AMP] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_CARET] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_EQ_EQ] = ACTIONS(1510), - [anon_sym_BANG_EQ] = ACTIONS(1510), - [anon_sym_GT] = ACTIONS(1516), - [anon_sym_GT_EQ] = ACTIONS(1510), - [anon_sym_LT_EQ] = ACTIONS(1510), - [anon_sym_LT] = ACTIONS(1516), - [anon_sym_LT_LT] = ACTIONS(1510), - [anon_sym_GT_GT] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_QMARK] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_sizeof] = ACTIONS(2186), - [anon_sym___alignof__] = ACTIONS(1548), - [anon_sym___alignof] = ACTIONS(1548), - [anon_sym__alignof] = ACTIONS(1548), - [anon_sym_alignof] = ACTIONS(1548), - [anon_sym__Alignof] = ACTIONS(1548), - [anon_sym_offsetof] = ACTIONS(1550), - [anon_sym__Generic] = ACTIONS(1552), - [anon_sym_asm] = ACTIONS(1554), - [anon_sym___asm__] = ACTIONS(1554), - [anon_sym_DOT] = ACTIONS(1516), - [anon_sym_DASH_GT] = ACTIONS(1510), - [sym_number_literal] = ACTIONS(1556), - [anon_sym_L_SQUOTE] = ACTIONS(1558), - [anon_sym_u_SQUOTE] = ACTIONS(1558), - [anon_sym_U_SQUOTE] = ACTIONS(1558), - [anon_sym_u8_SQUOTE] = ACTIONS(1558), - [anon_sym_SQUOTE] = ACTIONS(1558), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(1560), - [sym_false] = ACTIONS(1560), - [anon_sym_NULL] = ACTIONS(1562), - [anon_sym_nullptr] = ACTIONS(1562), + [507] = { + [sym_identifier] = ACTIONS(1318), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym___scanf] = ACTIONS(1318), + [anon_sym___printf] = ACTIONS(1318), + [anon_sym___read_mostly] = ACTIONS(1318), + [anon_sym___must_hold] = ACTIONS(1318), + [anon_sym___ro_after_init] = ACTIONS(1318), + [anon_sym___noreturn] = ACTIONS(1318), + [anon_sym___cold] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [anon_sym_alignas] = ACTIONS(1318), + [anon_sym__Alignas] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(5), }, - [560] = { - [sym_expression] = STATE(1270), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_initializer_list] = STATE(1252), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_identifier] = ACTIONS(2188), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1510), - [anon_sym_RPAREN] = ACTIONS(1510), - [anon_sym_LPAREN2] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(25), + [508] = { + [sym_type_qualifier] = STATE(1531), + [sym_alignas_qualifier] = STATE(1695), + [sym_type_specifier] = STATE(1705), + [sym_sized_type_specifier] = STATE(2008), + [sym_enum_specifier] = STATE(2008), + [sym_struct_specifier] = STATE(2008), + [sym_union_specifier] = STATE(2008), + [sym_expression] = STATE(1593), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3298), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_type_descriptor] = STATE(3301), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(2008), + [aux_sym__type_definition_type_repeat1] = STATE(1531), + [aux_sym_sized_type_specifier_repeat1] = STATE(1733), + [sym_identifier] = ACTIONS(2028), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_SLASH] = ACTIONS(1516), - [anon_sym_PERCENT] = ACTIONS(1510), - [anon_sym_PIPE_PIPE] = ACTIONS(1510), - [anon_sym_AMP_AMP] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_CARET] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_EQ_EQ] = ACTIONS(1510), - [anon_sym_BANG_EQ] = ACTIONS(1510), - [anon_sym_GT] = ACTIONS(1516), - [anon_sym_GT_EQ] = ACTIONS(1510), - [anon_sym_LT_EQ] = ACTIONS(1510), - [anon_sym_LT] = ACTIONS(1516), - [anon_sym_LT_LT] = ACTIONS(1510), - [anon_sym_GT_GT] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_COLON] = ACTIONS(1510), - [anon_sym_QMARK] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym___extension__] = ACTIONS(2030), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_constexpr] = ACTIONS(2030), + [anon_sym_volatile] = ACTIONS(2030), + [anon_sym_restrict] = ACTIONS(2030), + [anon_sym___restrict__] = ACTIONS(2030), + [anon_sym__Atomic] = ACTIONS(2030), + [anon_sym__Noreturn] = ACTIONS(2030), + [anon_sym_noreturn] = ACTIONS(2030), + [anon_sym_alignas] = ACTIONS(2034), + [anon_sym__Alignas] = ACTIONS(2034), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2042), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), [anon_sym___alignof__] = ACTIONS(93), [anon_sym___alignof] = ACTIONS(93), @@ -81423,8 +76862,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(97), [anon_sym_asm] = ACTIONS(99), [anon_sym___asm__] = ACTIONS(99), - [anon_sym_DOT] = ACTIONS(1516), - [anon_sym_DASH_GT] = ACTIONS(1510), [sym_number_literal] = ACTIONS(167), [anon_sym_L_SQUOTE] = ACTIONS(103), [anon_sym_u_SQUOTE] = ACTIONS(103), @@ -81442,2081 +76879,1468 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [561] = { - [sym_preproc_def] = STATE(564), - [sym_preproc_function_def] = STATE(564), - [sym_preproc_call] = STATE(564), - [sym_preproc_if_in_field_declaration_list] = STATE(564), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(564), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1740), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2361), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(564), - [sym_macro_invocation] = STATE(564), - [sym_field_declaration] = STATE(564), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(564), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2190), - [aux_sym_preproc_if_token1] = ACTIONS(2192), - [aux_sym_preproc_if_token2] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2196), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2196), - [sym_preproc_directive] = ACTIONS(2198), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), - [sym_comment] = ACTIONS(5), - }, - [562] = { - [sym_preproc_def] = STATE(572), - [sym_preproc_function_def] = STATE(572), - [sym_preproc_call] = STATE(572), - [sym_preproc_if_in_field_declaration_list] = STATE(572), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(572), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1728), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2336), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(572), - [sym_macro_invocation] = STATE(572), - [sym_field_declaration] = STATE(572), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(572), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2200), - [aux_sym_preproc_if_token1] = ACTIONS(2202), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2204), - [sym_preproc_directive] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), - [sym_comment] = ACTIONS(5), - }, - [563] = { - [sym_preproc_def] = STATE(561), - [sym_preproc_function_def] = STATE(561), - [sym_preproc_call] = STATE(561), - [sym_preproc_if_in_field_declaration_list] = STATE(561), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(561), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1740), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2361), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(561), - [sym_macro_invocation] = STATE(561), - [sym_field_declaration] = STATE(561), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(561), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2190), - [aux_sym_preproc_if_token1] = ACTIONS(2192), - [aux_sym_preproc_if_token2] = ACTIONS(2210), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2196), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2196), - [sym_preproc_directive] = ACTIONS(2198), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), - [sym_comment] = ACTIONS(5), - }, - [564] = { - [sym_preproc_def] = STATE(564), - [sym_preproc_function_def] = STATE(564), - [sym_preproc_call] = STATE(564), - [sym_preproc_if_in_field_declaration_list] = STATE(564), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(564), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1740), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2361), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(564), - [sym_macro_invocation] = STATE(564), - [sym_field_declaration] = STATE(564), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(564), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2117), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2212), - [aux_sym_preproc_if_token1] = ACTIONS(2215), - [aux_sym_preproc_if_token2] = ACTIONS(2126), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2218), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2218), - [sym_preproc_directive] = ACTIONS(2221), - [anon_sym_LPAREN2] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2137), - [anon_sym___extension__] = ACTIONS(2140), - [anon_sym_extern] = ACTIONS(2143), - [anon_sym___attribute__] = ACTIONS(2146), - [anon_sym___scanf] = ACTIONS(2149), - [anon_sym___printf] = ACTIONS(2149), - [anon_sym___read_mostly] = ACTIONS(2152), - [anon_sym___must_hold] = ACTIONS(2146), - [anon_sym___ro_after_init] = ACTIONS(2152), - [anon_sym___noreturn] = ACTIONS(2152), - [anon_sym___cold] = ACTIONS(2152), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2155), - [anon_sym___declspec] = ACTIONS(2158), - [anon_sym___based] = ACTIONS(2161), - [anon_sym_signed] = ACTIONS(2164), - [anon_sym_unsigned] = ACTIONS(2164), - [anon_sym_long] = ACTIONS(2164), - [anon_sym_short] = ACTIONS(2164), - [anon_sym_static] = ACTIONS(2143), - [anon_sym_auto] = ACTIONS(2143), - [anon_sym_register] = ACTIONS(2143), - [anon_sym_inline] = ACTIONS(2143), - [anon_sym___inline] = ACTIONS(2143), - [anon_sym___inline__] = ACTIONS(2143), - [anon_sym___forceinline] = ACTIONS(2143), - [anon_sym_thread_local] = ACTIONS(2143), - [anon_sym___thread] = ACTIONS(2143), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_constexpr] = ACTIONS(2140), - [anon_sym_volatile] = ACTIONS(2140), - [anon_sym_restrict] = ACTIONS(2140), - [anon_sym___restrict__] = ACTIONS(2140), - [anon_sym__Atomic] = ACTIONS(2140), - [anon_sym__Noreturn] = ACTIONS(2140), - [anon_sym_noreturn] = ACTIONS(2140), - [anon_sym_alignas] = ACTIONS(2167), - [anon_sym__Alignas] = ACTIONS(2167), - [sym_primitive_type] = ACTIONS(2170), - [anon_sym_enum] = ACTIONS(2173), - [anon_sym_struct] = ACTIONS(2176), - [anon_sym_union] = ACTIONS(2179), + [509] = { + [sym_identifier] = ACTIONS(1374), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym___extension__] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym___attribute__] = ACTIONS(1374), + [anon_sym___scanf] = ACTIONS(1374), + [anon_sym___printf] = ACTIONS(1374), + [anon_sym___read_mostly] = ACTIONS(1374), + [anon_sym___must_hold] = ACTIONS(1374), + [anon_sym___ro_after_init] = ACTIONS(1374), + [anon_sym___noreturn] = ACTIONS(1374), + [anon_sym___cold] = ACTIONS(1374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym___declspec] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_constexpr] = ACTIONS(1374), + [anon_sym_volatile] = ACTIONS(1374), + [anon_sym_restrict] = ACTIONS(1374), + [anon_sym___restrict__] = ACTIONS(1374), + [anon_sym__Atomic] = ACTIONS(1374), + [anon_sym__Noreturn] = ACTIONS(1374), + [anon_sym_noreturn] = ACTIONS(1374), + [anon_sym_alignas] = ACTIONS(1374), + [anon_sym__Alignas] = ACTIONS(1374), + [sym_primitive_type] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_switch] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_goto] = ACTIONS(1374), + [anon_sym___try] = ACTIONS(1374), + [anon_sym___leave] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = ACTIONS(1374), + [anon_sym_offsetof] = ACTIONS(1374), + [anon_sym__Generic] = ACTIONS(1374), + [anon_sym_asm] = ACTIONS(1374), + [anon_sym___asm__] = ACTIONS(1374), + [sym_number_literal] = ACTIONS(1376), + [anon_sym_L_SQUOTE] = ACTIONS(1376), + [anon_sym_u_SQUOTE] = ACTIONS(1376), + [anon_sym_U_SQUOTE] = ACTIONS(1376), + [anon_sym_u8_SQUOTE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_L_DQUOTE] = ACTIONS(1376), + [anon_sym_u_DQUOTE] = ACTIONS(1376), + [anon_sym_U_DQUOTE] = ACTIONS(1376), + [anon_sym_u8_DQUOTE] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [anon_sym_NULL] = ACTIONS(1374), + [anon_sym_nullptr] = ACTIONS(1374), [sym_comment] = ACTIONS(5), }, - [565] = { - [sym_preproc_def] = STATE(572), - [sym_preproc_function_def] = STATE(572), - [sym_preproc_call] = STATE(572), - [sym_preproc_if_in_field_declaration_list] = STATE(572), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(572), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1728), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2336), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(572), - [sym_macro_invocation] = STATE(572), - [sym_field_declaration] = STATE(572), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(572), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2200), - [aux_sym_preproc_if_token1] = ACTIONS(2202), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2204), - [sym_preproc_directive] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2224), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), + [510] = { + [sym_identifier] = ACTIONS(1378), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym___scanf] = ACTIONS(1378), + [anon_sym___printf] = ACTIONS(1378), + [anon_sym___read_mostly] = ACTIONS(1378), + [anon_sym___must_hold] = ACTIONS(1378), + [anon_sym___ro_after_init] = ACTIONS(1378), + [anon_sym___noreturn] = ACTIONS(1378), + [anon_sym___cold] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [anon_sym_alignas] = ACTIONS(1378), + [anon_sym__Alignas] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(5), }, - [566] = { - [sym_preproc_def] = STATE(569), - [sym_preproc_function_def] = STATE(569), - [sym_preproc_call] = STATE(569), - [sym_preproc_if_in_field_declaration_list] = STATE(569), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(569), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1728), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2336), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(569), - [sym_macro_invocation] = STATE(569), - [sym_field_declaration] = STATE(569), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(569), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2200), - [aux_sym_preproc_if_token1] = ACTIONS(2202), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2204), - [sym_preproc_directive] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2226), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), + [511] = { + [sym_identifier] = ACTIONS(1374), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym___extension__] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym___attribute__] = ACTIONS(1374), + [anon_sym___scanf] = ACTIONS(1374), + [anon_sym___printf] = ACTIONS(1374), + [anon_sym___read_mostly] = ACTIONS(1374), + [anon_sym___must_hold] = ACTIONS(1374), + [anon_sym___ro_after_init] = ACTIONS(1374), + [anon_sym___noreturn] = ACTIONS(1374), + [anon_sym___cold] = ACTIONS(1374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym___declspec] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_constexpr] = ACTIONS(1374), + [anon_sym_volatile] = ACTIONS(1374), + [anon_sym_restrict] = ACTIONS(1374), + [anon_sym___restrict__] = ACTIONS(1374), + [anon_sym__Atomic] = ACTIONS(1374), + [anon_sym__Noreturn] = ACTIONS(1374), + [anon_sym_noreturn] = ACTIONS(1374), + [anon_sym_alignas] = ACTIONS(1374), + [anon_sym__Alignas] = ACTIONS(1374), + [sym_primitive_type] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_switch] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_goto] = ACTIONS(1374), + [anon_sym___try] = ACTIONS(1374), + [anon_sym___leave] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = ACTIONS(1374), + [anon_sym_offsetof] = ACTIONS(1374), + [anon_sym__Generic] = ACTIONS(1374), + [anon_sym_asm] = ACTIONS(1374), + [anon_sym___asm__] = ACTIONS(1374), + [sym_number_literal] = ACTIONS(1376), + [anon_sym_L_SQUOTE] = ACTIONS(1376), + [anon_sym_u_SQUOTE] = ACTIONS(1376), + [anon_sym_U_SQUOTE] = ACTIONS(1376), + [anon_sym_u8_SQUOTE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_L_DQUOTE] = ACTIONS(1376), + [anon_sym_u_DQUOTE] = ACTIONS(1376), + [anon_sym_U_DQUOTE] = ACTIONS(1376), + [anon_sym_u8_DQUOTE] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [anon_sym_NULL] = ACTIONS(1374), + [anon_sym_nullptr] = ACTIONS(1374), [sym_comment] = ACTIONS(5), }, - [567] = { - [sym_preproc_def] = STATE(572), - [sym_preproc_function_def] = STATE(572), - [sym_preproc_call] = STATE(572), - [sym_preproc_if_in_field_declaration_list] = STATE(572), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(572), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1728), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2336), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(572), - [sym_macro_invocation] = STATE(572), - [sym_field_declaration] = STATE(572), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(572), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2200), - [aux_sym_preproc_if_token1] = ACTIONS(2202), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2204), - [sym_preproc_directive] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2228), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), + [512] = { + [sym_identifier] = ACTIONS(1374), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym___extension__] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym___attribute__] = ACTIONS(1374), + [anon_sym___scanf] = ACTIONS(1374), + [anon_sym___printf] = ACTIONS(1374), + [anon_sym___read_mostly] = ACTIONS(1374), + [anon_sym___must_hold] = ACTIONS(1374), + [anon_sym___ro_after_init] = ACTIONS(1374), + [anon_sym___noreturn] = ACTIONS(1374), + [anon_sym___cold] = ACTIONS(1374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym___declspec] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_constexpr] = ACTIONS(1374), + [anon_sym_volatile] = ACTIONS(1374), + [anon_sym_restrict] = ACTIONS(1374), + [anon_sym___restrict__] = ACTIONS(1374), + [anon_sym__Atomic] = ACTIONS(1374), + [anon_sym__Noreturn] = ACTIONS(1374), + [anon_sym_noreturn] = ACTIONS(1374), + [anon_sym_alignas] = ACTIONS(1374), + [anon_sym__Alignas] = ACTIONS(1374), + [sym_primitive_type] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_switch] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_goto] = ACTIONS(1374), + [anon_sym___try] = ACTIONS(1374), + [anon_sym___leave] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = ACTIONS(1374), + [anon_sym_offsetof] = ACTIONS(1374), + [anon_sym__Generic] = ACTIONS(1374), + [anon_sym_asm] = ACTIONS(1374), + [anon_sym___asm__] = ACTIONS(1374), + [sym_number_literal] = ACTIONS(1376), + [anon_sym_L_SQUOTE] = ACTIONS(1376), + [anon_sym_u_SQUOTE] = ACTIONS(1376), + [anon_sym_U_SQUOTE] = ACTIONS(1376), + [anon_sym_u8_SQUOTE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_L_DQUOTE] = ACTIONS(1376), + [anon_sym_u_DQUOTE] = ACTIONS(1376), + [anon_sym_U_DQUOTE] = ACTIONS(1376), + [anon_sym_u8_DQUOTE] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [anon_sym_NULL] = ACTIONS(1374), + [anon_sym_nullptr] = ACTIONS(1374), [sym_comment] = ACTIONS(5), }, - [568] = { - [sym_preproc_def] = STATE(567), - [sym_preproc_function_def] = STATE(567), - [sym_preproc_call] = STATE(567), - [sym_preproc_if_in_field_declaration_list] = STATE(567), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(567), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1728), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2336), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(567), - [sym_macro_invocation] = STATE(567), - [sym_field_declaration] = STATE(567), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(567), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2200), - [aux_sym_preproc_if_token1] = ACTIONS(2202), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2204), - [sym_preproc_directive] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2230), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), + [513] = { + [sym_identifier] = ACTIONS(1266), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_TILDE] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_AMP] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1268), + [anon_sym___extension__] = ACTIONS(1266), + [anon_sym_typedef] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym___attribute__] = ACTIONS(1266), + [anon_sym___scanf] = ACTIONS(1266), + [anon_sym___printf] = ACTIONS(1266), + [anon_sym___read_mostly] = ACTIONS(1266), + [anon_sym___must_hold] = ACTIONS(1266), + [anon_sym___ro_after_init] = ACTIONS(1266), + [anon_sym___noreturn] = ACTIONS(1266), + [anon_sym___cold] = ACTIONS(1266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1268), + [anon_sym___declspec] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_signed] = ACTIONS(1266), + [anon_sym_unsigned] = ACTIONS(1266), + [anon_sym_long] = ACTIONS(1266), + [anon_sym_short] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(1266), + [anon_sym_auto] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_inline] = ACTIONS(1266), + [anon_sym___inline] = ACTIONS(1266), + [anon_sym___inline__] = ACTIONS(1266), + [anon_sym___forceinline] = ACTIONS(1266), + [anon_sym_thread_local] = ACTIONS(1266), + [anon_sym___thread] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_constexpr] = ACTIONS(1266), + [anon_sym_volatile] = ACTIONS(1266), + [anon_sym_restrict] = ACTIONS(1266), + [anon_sym___restrict__] = ACTIONS(1266), + [anon_sym__Atomic] = ACTIONS(1266), + [anon_sym__Noreturn] = ACTIONS(1266), + [anon_sym_noreturn] = ACTIONS(1266), + [anon_sym_alignas] = ACTIONS(1266), + [anon_sym__Alignas] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(1266), + [anon_sym_enum] = ACTIONS(1266), + [anon_sym_struct] = ACTIONS(1266), + [anon_sym_union] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_else] = ACTIONS(1266), + [anon_sym_switch] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_goto] = ACTIONS(1266), + [anon_sym___try] = ACTIONS(1266), + [anon_sym___leave] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1268), + [anon_sym_sizeof] = ACTIONS(1266), + [anon_sym___alignof__] = ACTIONS(1266), + [anon_sym___alignof] = ACTIONS(1266), + [anon_sym__alignof] = ACTIONS(1266), + [anon_sym_alignof] = ACTIONS(1266), + [anon_sym__Alignof] = ACTIONS(1266), + [anon_sym_offsetof] = ACTIONS(1266), + [anon_sym__Generic] = ACTIONS(1266), + [anon_sym_asm] = ACTIONS(1266), + [anon_sym___asm__] = ACTIONS(1266), + [sym_number_literal] = ACTIONS(1268), + [anon_sym_L_SQUOTE] = ACTIONS(1268), + [anon_sym_u_SQUOTE] = ACTIONS(1268), + [anon_sym_U_SQUOTE] = ACTIONS(1268), + [anon_sym_u8_SQUOTE] = ACTIONS(1268), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_L_DQUOTE] = ACTIONS(1268), + [anon_sym_u_DQUOTE] = ACTIONS(1268), + [anon_sym_U_DQUOTE] = ACTIONS(1268), + [anon_sym_u8_DQUOTE] = ACTIONS(1268), + [anon_sym_DQUOTE] = ACTIONS(1268), + [sym_true] = ACTIONS(1266), + [sym_false] = ACTIONS(1266), + [anon_sym_NULL] = ACTIONS(1266), + [anon_sym_nullptr] = ACTIONS(1266), [sym_comment] = ACTIONS(5), }, - [569] = { - [sym_preproc_def] = STATE(572), - [sym_preproc_function_def] = STATE(572), - [sym_preproc_call] = STATE(572), - [sym_preproc_if_in_field_declaration_list] = STATE(572), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(572), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1728), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2336), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(572), - [sym_macro_invocation] = STATE(572), - [sym_field_declaration] = STATE(572), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(572), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2200), - [aux_sym_preproc_if_token1] = ACTIONS(2202), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2204), - [sym_preproc_directive] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2232), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), + [514] = { + [sym_identifier] = ACTIONS(1378), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym___scanf] = ACTIONS(1378), + [anon_sym___printf] = ACTIONS(1378), + [anon_sym___read_mostly] = ACTIONS(1378), + [anon_sym___must_hold] = ACTIONS(1378), + [anon_sym___ro_after_init] = ACTIONS(1378), + [anon_sym___noreturn] = ACTIONS(1378), + [anon_sym___cold] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [anon_sym_alignas] = ACTIONS(1378), + [anon_sym__Alignas] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(5), }, - [570] = { - [sym_preproc_def] = STATE(562), - [sym_preproc_function_def] = STATE(562), - [sym_preproc_call] = STATE(562), - [sym_preproc_if_in_field_declaration_list] = STATE(562), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(562), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1728), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2336), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(562), - [sym_macro_invocation] = STATE(562), - [sym_field_declaration] = STATE(562), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(562), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2200), - [aux_sym_preproc_if_token1] = ACTIONS(2202), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2204), - [sym_preproc_directive] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2234), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), - [sym_comment] = ACTIONS(5), - }, - [571] = { - [sym_preproc_def] = STATE(572), - [sym_preproc_function_def] = STATE(572), - [sym_preproc_call] = STATE(572), - [sym_preproc_if_in_field_declaration_list] = STATE(572), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(572), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1728), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2336), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(572), - [sym_macro_invocation] = STATE(572), - [sym_field_declaration] = STATE(572), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(572), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2200), - [aux_sym_preproc_if_token1] = ACTIONS(2202), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2204), - [sym_preproc_directive] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2236), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), + [515] = { + [sym_identifier] = ACTIONS(1378), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym___scanf] = ACTIONS(1378), + [anon_sym___printf] = ACTIONS(1378), + [anon_sym___read_mostly] = ACTIONS(1378), + [anon_sym___must_hold] = ACTIONS(1378), + [anon_sym___ro_after_init] = ACTIONS(1378), + [anon_sym___noreturn] = ACTIONS(1378), + [anon_sym___cold] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [anon_sym_alignas] = ACTIONS(1378), + [anon_sym__Alignas] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(5), }, - [572] = { - [sym_preproc_def] = STATE(572), - [sym_preproc_function_def] = STATE(572), - [sym_preproc_call] = STATE(572), - [sym_preproc_if_in_field_declaration_list] = STATE(572), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(572), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1728), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2336), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(572), - [sym_macro_invocation] = STATE(572), - [sym_field_declaration] = STATE(572), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(572), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2117), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2238), - [aux_sym_preproc_if_token1] = ACTIONS(2241), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2244), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2244), - [sym_preproc_directive] = ACTIONS(2247), - [anon_sym_LPAREN2] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2137), - [anon_sym___extension__] = ACTIONS(2140), - [anon_sym_extern] = ACTIONS(2143), - [anon_sym___attribute__] = ACTIONS(2146), - [anon_sym___scanf] = ACTIONS(2149), - [anon_sym___printf] = ACTIONS(2149), - [anon_sym___read_mostly] = ACTIONS(2152), - [anon_sym___must_hold] = ACTIONS(2146), - [anon_sym___ro_after_init] = ACTIONS(2152), - [anon_sym___noreturn] = ACTIONS(2152), - [anon_sym___cold] = ACTIONS(2152), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2155), - [anon_sym___declspec] = ACTIONS(2158), - [anon_sym___based] = ACTIONS(2161), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_signed] = ACTIONS(2164), - [anon_sym_unsigned] = ACTIONS(2164), - [anon_sym_long] = ACTIONS(2164), - [anon_sym_short] = ACTIONS(2164), - [anon_sym_static] = ACTIONS(2143), - [anon_sym_auto] = ACTIONS(2143), - [anon_sym_register] = ACTIONS(2143), - [anon_sym_inline] = ACTIONS(2143), - [anon_sym___inline] = ACTIONS(2143), - [anon_sym___inline__] = ACTIONS(2143), - [anon_sym___forceinline] = ACTIONS(2143), - [anon_sym_thread_local] = ACTIONS(2143), - [anon_sym___thread] = ACTIONS(2143), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_constexpr] = ACTIONS(2140), - [anon_sym_volatile] = ACTIONS(2140), - [anon_sym_restrict] = ACTIONS(2140), - [anon_sym___restrict__] = ACTIONS(2140), - [anon_sym__Atomic] = ACTIONS(2140), - [anon_sym__Noreturn] = ACTIONS(2140), - [anon_sym_noreturn] = ACTIONS(2140), - [anon_sym_alignas] = ACTIONS(2167), - [anon_sym__Alignas] = ACTIONS(2167), - [sym_primitive_type] = ACTIONS(2170), - [anon_sym_enum] = ACTIONS(2173), - [anon_sym_struct] = ACTIONS(2176), - [anon_sym_union] = ACTIONS(2179), + [516] = { + [sym_identifier] = ACTIONS(1250), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym___extension__] = ACTIONS(1250), + [anon_sym_typedef] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1250), + [anon_sym___attribute__] = ACTIONS(1250), + [anon_sym___scanf] = ACTIONS(1250), + [anon_sym___printf] = ACTIONS(1250), + [anon_sym___read_mostly] = ACTIONS(1250), + [anon_sym___must_hold] = ACTIONS(1250), + [anon_sym___ro_after_init] = ACTIONS(1250), + [anon_sym___noreturn] = ACTIONS(1250), + [anon_sym___cold] = ACTIONS(1250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), + [anon_sym___declspec] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_signed] = ACTIONS(1250), + [anon_sym_unsigned] = ACTIONS(1250), + [anon_sym_long] = ACTIONS(1250), + [anon_sym_short] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_auto] = ACTIONS(1250), + [anon_sym_register] = ACTIONS(1250), + [anon_sym_inline] = ACTIONS(1250), + [anon_sym___inline] = ACTIONS(1250), + [anon_sym___inline__] = ACTIONS(1250), + [anon_sym___forceinline] = ACTIONS(1250), + [anon_sym_thread_local] = ACTIONS(1250), + [anon_sym___thread] = ACTIONS(1250), + [anon_sym_const] = ACTIONS(1250), + [anon_sym_constexpr] = ACTIONS(1250), + [anon_sym_volatile] = ACTIONS(1250), + [anon_sym_restrict] = ACTIONS(1250), + [anon_sym___restrict__] = ACTIONS(1250), + [anon_sym__Atomic] = ACTIONS(1250), + [anon_sym__Noreturn] = ACTIONS(1250), + [anon_sym_noreturn] = ACTIONS(1250), + [anon_sym_alignas] = ACTIONS(1250), + [anon_sym__Alignas] = ACTIONS(1250), + [sym_primitive_type] = ACTIONS(1250), + [anon_sym_enum] = ACTIONS(1250), + [anon_sym_struct] = ACTIONS(1250), + [anon_sym_union] = ACTIONS(1250), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_else] = ACTIONS(1250), + [anon_sym_switch] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [anon_sym_do] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_goto] = ACTIONS(1250), + [anon_sym___try] = ACTIONS(1250), + [anon_sym___leave] = ACTIONS(1250), + [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_sizeof] = ACTIONS(1250), + [anon_sym___alignof__] = ACTIONS(1250), + [anon_sym___alignof] = ACTIONS(1250), + [anon_sym__alignof] = ACTIONS(1250), + [anon_sym_alignof] = ACTIONS(1250), + [anon_sym__Alignof] = ACTIONS(1250), + [anon_sym_offsetof] = ACTIONS(1250), + [anon_sym__Generic] = ACTIONS(1250), + [anon_sym_asm] = ACTIONS(1250), + [anon_sym___asm__] = ACTIONS(1250), + [sym_number_literal] = ACTIONS(1252), + [anon_sym_L_SQUOTE] = ACTIONS(1252), + [anon_sym_u_SQUOTE] = ACTIONS(1252), + [anon_sym_U_SQUOTE] = ACTIONS(1252), + [anon_sym_u8_SQUOTE] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1252), + [anon_sym_L_DQUOTE] = ACTIONS(1252), + [anon_sym_u_DQUOTE] = ACTIONS(1252), + [anon_sym_U_DQUOTE] = ACTIONS(1252), + [anon_sym_u8_DQUOTE] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_true] = ACTIONS(1250), + [sym_false] = ACTIONS(1250), + [anon_sym_NULL] = ACTIONS(1250), + [anon_sym_nullptr] = ACTIONS(1250), [sym_comment] = ACTIONS(5), }, - [573] = { - [sym_preproc_def] = STATE(572), - [sym_preproc_function_def] = STATE(572), - [sym_preproc_call] = STATE(572), - [sym_preproc_if_in_field_declaration_list] = STATE(572), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(572), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1728), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2336), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(572), - [sym_macro_invocation] = STATE(572), - [sym_field_declaration] = STATE(572), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(572), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2200), - [aux_sym_preproc_if_token1] = ACTIONS(2202), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2204), - [sym_preproc_directive] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2252), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), + [517] = { + [sym_identifier] = ACTIONS(1334), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym___scanf] = ACTIONS(1334), + [anon_sym___printf] = ACTIONS(1334), + [anon_sym___read_mostly] = ACTIONS(1334), + [anon_sym___must_hold] = ACTIONS(1334), + [anon_sym___ro_after_init] = ACTIONS(1334), + [anon_sym___noreturn] = ACTIONS(1334), + [anon_sym___cold] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [anon_sym_alignas] = ACTIONS(1334), + [anon_sym__Alignas] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_L_SQUOTE] = ACTIONS(1336), + [anon_sym_u_SQUOTE] = ACTIONS(1336), + [anon_sym_U_SQUOTE] = ACTIONS(1336), + [anon_sym_u8_SQUOTE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_L_DQUOTE] = ACTIONS(1336), + [anon_sym_u_DQUOTE] = ACTIONS(1336), + [anon_sym_U_DQUOTE] = ACTIONS(1336), + [anon_sym_u8_DQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(5), }, - [574] = { - [sym_preproc_def] = STATE(571), - [sym_preproc_function_def] = STATE(571), - [sym_preproc_call] = STATE(571), - [sym_preproc_if_in_field_declaration_list] = STATE(571), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(571), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1728), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2336), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(571), - [sym_macro_invocation] = STATE(571), - [sym_field_declaration] = STATE(571), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(571), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2200), - [aux_sym_preproc_if_token1] = ACTIONS(2202), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2204), - [sym_preproc_directive] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), + [518] = { + [sym_identifier] = ACTIONS(1250), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym___extension__] = ACTIONS(1250), + [anon_sym_typedef] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1250), + [anon_sym___attribute__] = ACTIONS(1250), + [anon_sym___scanf] = ACTIONS(1250), + [anon_sym___printf] = ACTIONS(1250), + [anon_sym___read_mostly] = ACTIONS(1250), + [anon_sym___must_hold] = ACTIONS(1250), + [anon_sym___ro_after_init] = ACTIONS(1250), + [anon_sym___noreturn] = ACTIONS(1250), + [anon_sym___cold] = ACTIONS(1250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), + [anon_sym___declspec] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_signed] = ACTIONS(1250), + [anon_sym_unsigned] = ACTIONS(1250), + [anon_sym_long] = ACTIONS(1250), + [anon_sym_short] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_auto] = ACTIONS(1250), + [anon_sym_register] = ACTIONS(1250), + [anon_sym_inline] = ACTIONS(1250), + [anon_sym___inline] = ACTIONS(1250), + [anon_sym___inline__] = ACTIONS(1250), + [anon_sym___forceinline] = ACTIONS(1250), + [anon_sym_thread_local] = ACTIONS(1250), + [anon_sym___thread] = ACTIONS(1250), + [anon_sym_const] = ACTIONS(1250), + [anon_sym_constexpr] = ACTIONS(1250), + [anon_sym_volatile] = ACTIONS(1250), + [anon_sym_restrict] = ACTIONS(1250), + [anon_sym___restrict__] = ACTIONS(1250), + [anon_sym__Atomic] = ACTIONS(1250), + [anon_sym__Noreturn] = ACTIONS(1250), + [anon_sym_noreturn] = ACTIONS(1250), + [anon_sym_alignas] = ACTIONS(1250), + [anon_sym__Alignas] = ACTIONS(1250), + [sym_primitive_type] = ACTIONS(1250), + [anon_sym_enum] = ACTIONS(1250), + [anon_sym_struct] = ACTIONS(1250), + [anon_sym_union] = ACTIONS(1250), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_else] = ACTIONS(1250), + [anon_sym_switch] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [anon_sym_do] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_goto] = ACTIONS(1250), + [anon_sym___try] = ACTIONS(1250), + [anon_sym___leave] = ACTIONS(1250), + [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_sizeof] = ACTIONS(1250), + [anon_sym___alignof__] = ACTIONS(1250), + [anon_sym___alignof] = ACTIONS(1250), + [anon_sym__alignof] = ACTIONS(1250), + [anon_sym_alignof] = ACTIONS(1250), + [anon_sym__Alignof] = ACTIONS(1250), + [anon_sym_offsetof] = ACTIONS(1250), + [anon_sym__Generic] = ACTIONS(1250), + [anon_sym_asm] = ACTIONS(1250), + [anon_sym___asm__] = ACTIONS(1250), + [sym_number_literal] = ACTIONS(1252), + [anon_sym_L_SQUOTE] = ACTIONS(1252), + [anon_sym_u_SQUOTE] = ACTIONS(1252), + [anon_sym_U_SQUOTE] = ACTIONS(1252), + [anon_sym_u8_SQUOTE] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1252), + [anon_sym_L_DQUOTE] = ACTIONS(1252), + [anon_sym_u_DQUOTE] = ACTIONS(1252), + [anon_sym_U_DQUOTE] = ACTIONS(1252), + [anon_sym_u8_DQUOTE] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_true] = ACTIONS(1250), + [sym_false] = ACTIONS(1250), + [anon_sym_NULL] = ACTIONS(1250), + [anon_sym_nullptr] = ACTIONS(1250), [sym_comment] = ACTIONS(5), }, - [575] = { - [sym_preproc_def] = STATE(572), - [sym_preproc_function_def] = STATE(572), - [sym_preproc_call] = STATE(572), - [sym_preproc_if_in_field_declaration_list] = STATE(572), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(572), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1728), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2336), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(572), - [sym_macro_invocation] = STATE(572), - [sym_field_declaration] = STATE(572), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(572), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2200), - [aux_sym_preproc_if_token1] = ACTIONS(2202), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2204), - [sym_preproc_directive] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2256), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), + [519] = { + [sym_identifier] = ACTIONS(1250), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym___extension__] = ACTIONS(1250), + [anon_sym_typedef] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1250), + [anon_sym___attribute__] = ACTIONS(1250), + [anon_sym___scanf] = ACTIONS(1250), + [anon_sym___printf] = ACTIONS(1250), + [anon_sym___read_mostly] = ACTIONS(1250), + [anon_sym___must_hold] = ACTIONS(1250), + [anon_sym___ro_after_init] = ACTIONS(1250), + [anon_sym___noreturn] = ACTIONS(1250), + [anon_sym___cold] = ACTIONS(1250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), + [anon_sym___declspec] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_signed] = ACTIONS(1250), + [anon_sym_unsigned] = ACTIONS(1250), + [anon_sym_long] = ACTIONS(1250), + [anon_sym_short] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_auto] = ACTIONS(1250), + [anon_sym_register] = ACTIONS(1250), + [anon_sym_inline] = ACTIONS(1250), + [anon_sym___inline] = ACTIONS(1250), + [anon_sym___inline__] = ACTIONS(1250), + [anon_sym___forceinline] = ACTIONS(1250), + [anon_sym_thread_local] = ACTIONS(1250), + [anon_sym___thread] = ACTIONS(1250), + [anon_sym_const] = ACTIONS(1250), + [anon_sym_constexpr] = ACTIONS(1250), + [anon_sym_volatile] = ACTIONS(1250), + [anon_sym_restrict] = ACTIONS(1250), + [anon_sym___restrict__] = ACTIONS(1250), + [anon_sym__Atomic] = ACTIONS(1250), + [anon_sym__Noreturn] = ACTIONS(1250), + [anon_sym_noreturn] = ACTIONS(1250), + [anon_sym_alignas] = ACTIONS(1250), + [anon_sym__Alignas] = ACTIONS(1250), + [sym_primitive_type] = ACTIONS(1250), + [anon_sym_enum] = ACTIONS(1250), + [anon_sym_struct] = ACTIONS(1250), + [anon_sym_union] = ACTIONS(1250), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_else] = ACTIONS(1250), + [anon_sym_switch] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [anon_sym_do] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_goto] = ACTIONS(1250), + [anon_sym___try] = ACTIONS(1250), + [anon_sym___leave] = ACTIONS(1250), + [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_sizeof] = ACTIONS(1250), + [anon_sym___alignof__] = ACTIONS(1250), + [anon_sym___alignof] = ACTIONS(1250), + [anon_sym__alignof] = ACTIONS(1250), + [anon_sym_alignof] = ACTIONS(1250), + [anon_sym__Alignof] = ACTIONS(1250), + [anon_sym_offsetof] = ACTIONS(1250), + [anon_sym__Generic] = ACTIONS(1250), + [anon_sym_asm] = ACTIONS(1250), + [anon_sym___asm__] = ACTIONS(1250), + [sym_number_literal] = ACTIONS(1252), + [anon_sym_L_SQUOTE] = ACTIONS(1252), + [anon_sym_u_SQUOTE] = ACTIONS(1252), + [anon_sym_U_SQUOTE] = ACTIONS(1252), + [anon_sym_u8_SQUOTE] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1252), + [anon_sym_L_DQUOTE] = ACTIONS(1252), + [anon_sym_u_DQUOTE] = ACTIONS(1252), + [anon_sym_U_DQUOTE] = ACTIONS(1252), + [anon_sym_u8_DQUOTE] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_true] = ACTIONS(1250), + [sym_false] = ACTIONS(1250), + [anon_sym_NULL] = ACTIONS(1250), + [anon_sym_nullptr] = ACTIONS(1250), [sym_comment] = ACTIONS(5), }, - [576] = { - [sym_preproc_def] = STATE(575), - [sym_preproc_function_def] = STATE(575), - [sym_preproc_call] = STATE(575), - [sym_preproc_if_in_field_declaration_list] = STATE(575), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(575), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1728), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2336), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(575), - [sym_macro_invocation] = STATE(575), - [sym_field_declaration] = STATE(575), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(575), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2200), - [aux_sym_preproc_if_token1] = ACTIONS(2202), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2204), - [sym_preproc_directive] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2258), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), + [520] = { + [sym_identifier] = ACTIONS(1282), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1284), + [anon_sym_BANG] = ACTIONS(1284), + [anon_sym_TILDE] = ACTIONS(1284), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_PLUS] = ACTIONS(1282), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1284), + [anon_sym___extension__] = ACTIONS(1282), + [anon_sym_typedef] = ACTIONS(1282), + [anon_sym_extern] = ACTIONS(1282), + [anon_sym___attribute__] = ACTIONS(1282), + [anon_sym___scanf] = ACTIONS(1282), + [anon_sym___printf] = ACTIONS(1282), + [anon_sym___read_mostly] = ACTIONS(1282), + [anon_sym___must_hold] = ACTIONS(1282), + [anon_sym___ro_after_init] = ACTIONS(1282), + [anon_sym___noreturn] = ACTIONS(1282), + [anon_sym___cold] = ACTIONS(1282), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1284), + [anon_sym___declspec] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_signed] = ACTIONS(1282), + [anon_sym_unsigned] = ACTIONS(1282), + [anon_sym_long] = ACTIONS(1282), + [anon_sym_short] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1282), + [anon_sym_auto] = ACTIONS(1282), + [anon_sym_register] = ACTIONS(1282), + [anon_sym_inline] = ACTIONS(1282), + [anon_sym___inline] = ACTIONS(1282), + [anon_sym___inline__] = ACTIONS(1282), + [anon_sym___forceinline] = ACTIONS(1282), + [anon_sym_thread_local] = ACTIONS(1282), + [anon_sym___thread] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(1282), + [anon_sym_constexpr] = ACTIONS(1282), + [anon_sym_volatile] = ACTIONS(1282), + [anon_sym_restrict] = ACTIONS(1282), + [anon_sym___restrict__] = ACTIONS(1282), + [anon_sym__Atomic] = ACTIONS(1282), + [anon_sym__Noreturn] = ACTIONS(1282), + [anon_sym_noreturn] = ACTIONS(1282), + [anon_sym_alignas] = ACTIONS(1282), + [anon_sym__Alignas] = ACTIONS(1282), + [sym_primitive_type] = ACTIONS(1282), + [anon_sym_enum] = ACTIONS(1282), + [anon_sym_struct] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_if] = ACTIONS(1282), + [anon_sym_else] = ACTIONS(1282), + [anon_sym_switch] = ACTIONS(1282), + [anon_sym_while] = ACTIONS(1282), + [anon_sym_do] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(1282), + [anon_sym_break] = ACTIONS(1282), + [anon_sym_continue] = ACTIONS(1282), + [anon_sym_goto] = ACTIONS(1282), + [anon_sym___try] = ACTIONS(1282), + [anon_sym___leave] = ACTIONS(1282), + [anon_sym_DASH_DASH] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1284), + [anon_sym_sizeof] = ACTIONS(1282), + [anon_sym___alignof__] = ACTIONS(1282), + [anon_sym___alignof] = ACTIONS(1282), + [anon_sym__alignof] = ACTIONS(1282), + [anon_sym_alignof] = ACTIONS(1282), + [anon_sym__Alignof] = ACTIONS(1282), + [anon_sym_offsetof] = ACTIONS(1282), + [anon_sym__Generic] = ACTIONS(1282), + [anon_sym_asm] = ACTIONS(1282), + [anon_sym___asm__] = ACTIONS(1282), + [sym_number_literal] = ACTIONS(1284), + [anon_sym_L_SQUOTE] = ACTIONS(1284), + [anon_sym_u_SQUOTE] = ACTIONS(1284), + [anon_sym_U_SQUOTE] = ACTIONS(1284), + [anon_sym_u8_SQUOTE] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(1284), + [anon_sym_L_DQUOTE] = ACTIONS(1284), + [anon_sym_u_DQUOTE] = ACTIONS(1284), + [anon_sym_U_DQUOTE] = ACTIONS(1284), + [anon_sym_u8_DQUOTE] = ACTIONS(1284), + [anon_sym_DQUOTE] = ACTIONS(1284), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(1282), + [anon_sym_nullptr] = ACTIONS(1282), [sym_comment] = ACTIONS(5), }, - [577] = { - [sym_preproc_def] = STATE(572), - [sym_preproc_function_def] = STATE(572), - [sym_preproc_call] = STATE(572), - [sym_preproc_if_in_field_declaration_list] = STATE(572), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(572), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1728), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2336), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(572), - [sym_macro_invocation] = STATE(572), - [sym_field_declaration] = STATE(572), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(572), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2200), - [aux_sym_preproc_if_token1] = ACTIONS(2202), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2204), - [sym_preproc_directive] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2260), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), + [521] = { + [sym_identifier] = ACTIONS(1254), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1256), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_SEMI] = ACTIONS(1256), + [anon_sym___extension__] = ACTIONS(1254), + [anon_sym_typedef] = ACTIONS(1254), + [anon_sym_extern] = ACTIONS(1254), + [anon_sym___attribute__] = ACTIONS(1254), + [anon_sym___scanf] = ACTIONS(1254), + [anon_sym___printf] = ACTIONS(1254), + [anon_sym___read_mostly] = ACTIONS(1254), + [anon_sym___must_hold] = ACTIONS(1254), + [anon_sym___ro_after_init] = ACTIONS(1254), + [anon_sym___noreturn] = ACTIONS(1254), + [anon_sym___cold] = ACTIONS(1254), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1256), + [anon_sym___declspec] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_signed] = ACTIONS(1254), + [anon_sym_unsigned] = ACTIONS(1254), + [anon_sym_long] = ACTIONS(1254), + [anon_sym_short] = ACTIONS(1254), + [anon_sym_static] = ACTIONS(1254), + [anon_sym_auto] = ACTIONS(1254), + [anon_sym_register] = ACTIONS(1254), + [anon_sym_inline] = ACTIONS(1254), + [anon_sym___inline] = ACTIONS(1254), + [anon_sym___inline__] = ACTIONS(1254), + [anon_sym___forceinline] = ACTIONS(1254), + [anon_sym_thread_local] = ACTIONS(1254), + [anon_sym___thread] = ACTIONS(1254), + [anon_sym_const] = ACTIONS(1254), + [anon_sym_constexpr] = ACTIONS(1254), + [anon_sym_volatile] = ACTIONS(1254), + [anon_sym_restrict] = ACTIONS(1254), + [anon_sym___restrict__] = ACTIONS(1254), + [anon_sym__Atomic] = ACTIONS(1254), + [anon_sym__Noreturn] = ACTIONS(1254), + [anon_sym_noreturn] = ACTIONS(1254), + [anon_sym_alignas] = ACTIONS(1254), + [anon_sym__Alignas] = ACTIONS(1254), + [sym_primitive_type] = ACTIONS(1254), + [anon_sym_enum] = ACTIONS(1254), + [anon_sym_struct] = ACTIONS(1254), + [anon_sym_union] = ACTIONS(1254), + [anon_sym_if] = ACTIONS(1254), + [anon_sym_else] = ACTIONS(1254), + [anon_sym_switch] = ACTIONS(1254), + [anon_sym_while] = ACTIONS(1254), + [anon_sym_do] = ACTIONS(1254), + [anon_sym_for] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1254), + [anon_sym_break] = ACTIONS(1254), + [anon_sym_continue] = ACTIONS(1254), + [anon_sym_goto] = ACTIONS(1254), + [anon_sym___try] = ACTIONS(1254), + [anon_sym___leave] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1256), + [anon_sym_sizeof] = ACTIONS(1254), + [anon_sym___alignof__] = ACTIONS(1254), + [anon_sym___alignof] = ACTIONS(1254), + [anon_sym__alignof] = ACTIONS(1254), + [anon_sym_alignof] = ACTIONS(1254), + [anon_sym__Alignof] = ACTIONS(1254), + [anon_sym_offsetof] = ACTIONS(1254), + [anon_sym__Generic] = ACTIONS(1254), + [anon_sym_asm] = ACTIONS(1254), + [anon_sym___asm__] = ACTIONS(1254), + [sym_number_literal] = ACTIONS(1256), + [anon_sym_L_SQUOTE] = ACTIONS(1256), + [anon_sym_u_SQUOTE] = ACTIONS(1256), + [anon_sym_U_SQUOTE] = ACTIONS(1256), + [anon_sym_u8_SQUOTE] = ACTIONS(1256), + [anon_sym_SQUOTE] = ACTIONS(1256), + [anon_sym_L_DQUOTE] = ACTIONS(1256), + [anon_sym_u_DQUOTE] = ACTIONS(1256), + [anon_sym_U_DQUOTE] = ACTIONS(1256), + [anon_sym_u8_DQUOTE] = ACTIONS(1256), + [anon_sym_DQUOTE] = ACTIONS(1256), + [sym_true] = ACTIONS(1254), + [sym_false] = ACTIONS(1254), + [anon_sym_NULL] = ACTIONS(1254), + [anon_sym_nullptr] = ACTIONS(1254), [sym_comment] = ACTIONS(5), }, - [578] = { - [sym_preproc_def] = STATE(565), - [sym_preproc_function_def] = STATE(565), - [sym_preproc_call] = STATE(565), - [sym_preproc_if_in_field_declaration_list] = STATE(565), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(565), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1728), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2336), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(565), - [sym_macro_invocation] = STATE(565), - [sym_field_declaration] = STATE(565), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(565), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2200), - [aux_sym_preproc_if_token1] = ACTIONS(2202), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2204), - [sym_preproc_directive] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2262), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), + [522] = { + [sym_identifier] = ACTIONS(1258), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1260), + [anon_sym_BANG] = ACTIONS(1260), + [anon_sym_TILDE] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1260), + [anon_sym_AMP] = ACTIONS(1260), + [anon_sym_SEMI] = ACTIONS(1260), + [anon_sym___extension__] = ACTIONS(1258), + [anon_sym_typedef] = ACTIONS(1258), + [anon_sym_extern] = ACTIONS(1258), + [anon_sym___attribute__] = ACTIONS(1258), + [anon_sym___scanf] = ACTIONS(1258), + [anon_sym___printf] = ACTIONS(1258), + [anon_sym___read_mostly] = ACTIONS(1258), + [anon_sym___must_hold] = ACTIONS(1258), + [anon_sym___ro_after_init] = ACTIONS(1258), + [anon_sym___noreturn] = ACTIONS(1258), + [anon_sym___cold] = ACTIONS(1258), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1260), + [anon_sym___declspec] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1260), + [anon_sym_signed] = ACTIONS(1258), + [anon_sym_unsigned] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_static] = ACTIONS(1258), + [anon_sym_auto] = ACTIONS(1258), + [anon_sym_register] = ACTIONS(1258), + [anon_sym_inline] = ACTIONS(1258), + [anon_sym___inline] = ACTIONS(1258), + [anon_sym___inline__] = ACTIONS(1258), + [anon_sym___forceinline] = ACTIONS(1258), + [anon_sym_thread_local] = ACTIONS(1258), + [anon_sym___thread] = ACTIONS(1258), + [anon_sym_const] = ACTIONS(1258), + [anon_sym_constexpr] = ACTIONS(1258), + [anon_sym_volatile] = ACTIONS(1258), + [anon_sym_restrict] = ACTIONS(1258), + [anon_sym___restrict__] = ACTIONS(1258), + [anon_sym__Atomic] = ACTIONS(1258), + [anon_sym__Noreturn] = ACTIONS(1258), + [anon_sym_noreturn] = ACTIONS(1258), + [anon_sym_alignas] = ACTIONS(1258), + [anon_sym__Alignas] = ACTIONS(1258), + [sym_primitive_type] = ACTIONS(1258), + [anon_sym_enum] = ACTIONS(1258), + [anon_sym_struct] = ACTIONS(1258), + [anon_sym_union] = ACTIONS(1258), + [anon_sym_if] = ACTIONS(1258), + [anon_sym_else] = ACTIONS(1258), + [anon_sym_switch] = ACTIONS(1258), + [anon_sym_while] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1258), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_break] = ACTIONS(1258), + [anon_sym_continue] = ACTIONS(1258), + [anon_sym_goto] = ACTIONS(1258), + [anon_sym___try] = ACTIONS(1258), + [anon_sym___leave] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1260), + [anon_sym_sizeof] = ACTIONS(1258), + [anon_sym___alignof__] = ACTIONS(1258), + [anon_sym___alignof] = ACTIONS(1258), + [anon_sym__alignof] = ACTIONS(1258), + [anon_sym_alignof] = ACTIONS(1258), + [anon_sym__Alignof] = ACTIONS(1258), + [anon_sym_offsetof] = ACTIONS(1258), + [anon_sym__Generic] = ACTIONS(1258), + [anon_sym_asm] = ACTIONS(1258), + [anon_sym___asm__] = ACTIONS(1258), + [sym_number_literal] = ACTIONS(1260), + [anon_sym_L_SQUOTE] = ACTIONS(1260), + [anon_sym_u_SQUOTE] = ACTIONS(1260), + [anon_sym_U_SQUOTE] = ACTIONS(1260), + [anon_sym_u8_SQUOTE] = ACTIONS(1260), + [anon_sym_SQUOTE] = ACTIONS(1260), + [anon_sym_L_DQUOTE] = ACTIONS(1260), + [anon_sym_u_DQUOTE] = ACTIONS(1260), + [anon_sym_U_DQUOTE] = ACTIONS(1260), + [anon_sym_u8_DQUOTE] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(1260), + [sym_true] = ACTIONS(1258), + [sym_false] = ACTIONS(1258), + [anon_sym_NULL] = ACTIONS(1258), + [anon_sym_nullptr] = ACTIONS(1258), [sym_comment] = ACTIONS(5), }, - [579] = { - [sym_preproc_def] = STATE(573), - [sym_preproc_function_def] = STATE(573), - [sym_preproc_call] = STATE(573), - [sym_preproc_if_in_field_declaration_list] = STATE(573), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(573), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1728), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2336), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(573), - [sym_macro_invocation] = STATE(573), - [sym_field_declaration] = STATE(573), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(573), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2200), - [aux_sym_preproc_if_token1] = ACTIONS(2202), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2204), - [sym_preproc_directive] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2264), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), - [sym_comment] = ACTIONS(5), - }, - [580] = { - [sym_preproc_def] = STATE(577), - [sym_preproc_function_def] = STATE(577), - [sym_preproc_call] = STATE(577), - [sym_preproc_if_in_field_declaration_list] = STATE(577), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(577), - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1728), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_ms_based_modifier] = STATE(3337), - [sym__declarator] = STATE(2336), - [sym_parenthesized_declarator] = STATE(2209), - [sym_attributed_declarator] = STATE(2209), - [sym_pointer_declarator] = STATE(2209), - [sym_function_declarator] = STATE(2209), - [sym_array_declarator] = STATE(2209), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym__field_declaration_list_item] = STATE(577), - [sym_macro_invocation] = STATE(577), - [sym_field_declaration] = STATE(577), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(577), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2029), - [sym__linux_kernel_annotations] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2200), - [aux_sym_preproc_if_token1] = ACTIONS(2202), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2204), - [sym_preproc_directive] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___based] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2266), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), - [sym_comment] = ACTIONS(5), - }, - [581] = { - [sym_expression] = STATE(1353), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1406), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1406), - [sym_call_expression] = STATE(1406), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1406), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1406), - [sym_initializer_list] = STATE(1252), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [sym_identifier] = ACTIONS(2268), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1510), - [anon_sym_LPAREN2] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_SLASH] = ACTIONS(1516), - [anon_sym_PERCENT] = ACTIONS(1510), - [anon_sym_PIPE_PIPE] = ACTIONS(1510), - [anon_sym_AMP_AMP] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_CARET] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_EQ_EQ] = ACTIONS(1510), - [anon_sym_BANG_EQ] = ACTIONS(1510), - [anon_sym_GT] = ACTIONS(1516), - [anon_sym_GT_EQ] = ACTIONS(1510), - [anon_sym_LT_EQ] = ACTIONS(1510), - [anon_sym_LT] = ACTIONS(1516), - [anon_sym_LT_LT] = ACTIONS(1510), - [anon_sym_GT_GT] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_RBRACK] = ACTIONS(1510), - [anon_sym_QMARK] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_sizeof] = ACTIONS(2274), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [anon_sym_DOT] = ACTIONS(1516), - [anon_sym_DASH_GT] = ACTIONS(1510), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), - [sym_comment] = ACTIONS(5), - }, - [582] = { - [sym__declaration_modifiers] = STATE(891), - [sym__declaration_specifiers] = STATE(1808), - [sym_attribute_specifier] = STATE(891), - [sym_attribute_declaration] = STATE(891), - [sym_ms_declspec_modifier] = STATE(891), - [sym_macro_modifier] = STATE(2232), - [sym_ms_call_modifier] = STATE(2125), - [sym__abstract_declarator] = STATE(2440), - [sym_abstract_parenthesized_declarator] = STATE(2380), - [sym_abstract_pointer_declarator] = STATE(2380), - [sym_abstract_function_declarator] = STATE(2380), - [sym_abstract_array_declarator] = STATE(2380), - [sym_storage_class_specifier] = STATE(891), - [sym_type_qualifier] = STATE(891), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(1012), - [sym_sized_type_specifier] = STATE(1371), - [sym_enum_specifier] = STATE(1371), - [sym_struct_specifier] = STATE(1371), - [sym_union_specifier] = STATE(1371), - [sym_variadic_parameter] = STATE(2506), - [sym_parameter_list] = STATE(2375), - [sym_parameter_declaration] = STATE(2506), - [sym_macro_type_specifier] = STATE(1371), - [aux_sym__declaration_specifiers_repeat1] = STATE(891), - [aux_sym_sized_type_specifier_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2276), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2103), - [anon_sym_RPAREN] = ACTIONS(2105), - [anon_sym_LPAREN2] = ACTIONS(2278), - [anon_sym_STAR] = ACTIONS(2280), - [anon_sym___extension__] = ACTIONS(55), - [anon_sym_extern] = ACTIONS(53), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___scanf] = ACTIONS(37), - [anon_sym___printf] = ACTIONS(37), - [anon_sym___read_mostly] = ACTIONS(39), - [anon_sym___must_hold] = ACTIONS(35), - [anon_sym___ro_after_init] = ACTIONS(39), - [anon_sym___noreturn] = ACTIONS(39), - [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(43), - [anon_sym___init] = ACTIONS(2282), - [anon_sym___exit] = ACTIONS(2282), - [anon_sym___cdecl] = ACTIONS(2284), - [anon_sym___clrcall] = ACTIONS(2284), - [anon_sym___stdcall] = ACTIONS(2284), - [anon_sym___fastcall] = ACTIONS(2284), - [anon_sym___thiscall] = ACTIONS(2284), - [anon_sym___vectorcall] = ACTIONS(2284), - [anon_sym_signed] = ACTIONS(2053), - [anon_sym_unsigned] = ACTIONS(2053), - [anon_sym_long] = ACTIONS(2053), - [anon_sym_short] = ACTIONS(2053), - [anon_sym_LBRACK] = ACTIONS(2115), - [anon_sym_static] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(53), - [anon_sym_register] = ACTIONS(53), - [anon_sym_inline] = ACTIONS(53), - [anon_sym___inline] = ACTIONS(53), - [anon_sym___inline__] = ACTIONS(53), - [anon_sym___forceinline] = ACTIONS(53), - [anon_sym_thread_local] = ACTIONS(53), - [anon_sym___thread] = ACTIONS(53), - [anon_sym_const] = ACTIONS(55), - [anon_sym_constexpr] = ACTIONS(55), - [anon_sym_volatile] = ACTIONS(55), - [anon_sym_restrict] = ACTIONS(55), - [anon_sym___restrict__] = ACTIONS(55), - [anon_sym__Atomic] = ACTIONS(55), - [anon_sym__Noreturn] = ACTIONS(55), - [anon_sym_noreturn] = ACTIONS(55), - [anon_sym_alignas] = ACTIONS(57), - [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2061), - [sym_comment] = ACTIONS(5), - }, - [583] = { - [sym_type_qualifier] = STATE(595), - [sym_alignas_qualifier] = STATE(995), - [sym_expression] = STATE(1660), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1406), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1406), - [sym_call_expression] = STATE(1406), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1406), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1406), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_array_declarator_repeat1] = STATE(595), - [sym_identifier] = ACTIONS(2268), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(2286), - [anon_sym_BANG] = ACTIONS(2272), - [anon_sym_TILDE] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_PLUS] = ACTIONS(2270), - [anon_sym_STAR] = ACTIONS(2288), - [anon_sym_AMP] = ACTIONS(2290), - [anon_sym___extension__] = ACTIONS(2292), - [anon_sym_static] = ACTIONS(2294), - [anon_sym_RBRACK] = ACTIONS(2296), - [anon_sym_const] = ACTIONS(2292), - [anon_sym_constexpr] = ACTIONS(2292), - [anon_sym_volatile] = ACTIONS(2292), - [anon_sym_restrict] = ACTIONS(2292), - [anon_sym___restrict__] = ACTIONS(2292), - [anon_sym__Atomic] = ACTIONS(2292), - [anon_sym__Noreturn] = ACTIONS(2292), - [anon_sym_noreturn] = ACTIONS(2292), - [anon_sym_alignas] = ACTIONS(2298), - [anon_sym__Alignas] = ACTIONS(2298), - [anon_sym_DASH_DASH] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2300), - [anon_sym_sizeof] = ACTIONS(2274), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), - [sym_comment] = ACTIONS(5), - }, - [584] = { - [sym_type_qualifier] = STATE(593), - [sym_alignas_qualifier] = STATE(995), - [sym_expression] = STATE(1651), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1406), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1406), - [sym_call_expression] = STATE(1406), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1406), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1406), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_array_declarator_repeat1] = STATE(593), - [sym_identifier] = ACTIONS(2268), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(2286), - [anon_sym_BANG] = ACTIONS(2272), - [anon_sym_TILDE] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_PLUS] = ACTIONS(2270), - [anon_sym_STAR] = ACTIONS(2302), - [anon_sym_AMP] = ACTIONS(2290), - [anon_sym___extension__] = ACTIONS(2292), - [anon_sym_static] = ACTIONS(2304), - [anon_sym_RBRACK] = ACTIONS(2306), - [anon_sym_const] = ACTIONS(2292), - [anon_sym_constexpr] = ACTIONS(2292), - [anon_sym_volatile] = ACTIONS(2292), - [anon_sym_restrict] = ACTIONS(2292), - [anon_sym___restrict__] = ACTIONS(2292), - [anon_sym__Atomic] = ACTIONS(2292), - [anon_sym__Noreturn] = ACTIONS(2292), - [anon_sym_noreturn] = ACTIONS(2292), - [anon_sym_alignas] = ACTIONS(2298), - [anon_sym__Alignas] = ACTIONS(2298), - [anon_sym_DASH_DASH] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2300), - [anon_sym_sizeof] = ACTIONS(2274), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [523] = { + [sym_identifier] = ACTIONS(1262), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1264), + [anon_sym___extension__] = ACTIONS(1262), + [anon_sym_typedef] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(1262), + [anon_sym___attribute__] = ACTIONS(1262), + [anon_sym___scanf] = ACTIONS(1262), + [anon_sym___printf] = ACTIONS(1262), + [anon_sym___read_mostly] = ACTIONS(1262), + [anon_sym___must_hold] = ACTIONS(1262), + [anon_sym___ro_after_init] = ACTIONS(1262), + [anon_sym___noreturn] = ACTIONS(1262), + [anon_sym___cold] = ACTIONS(1262), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym___declspec] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_signed] = ACTIONS(1262), + [anon_sym_unsigned] = ACTIONS(1262), + [anon_sym_long] = ACTIONS(1262), + [anon_sym_short] = ACTIONS(1262), + [anon_sym_static] = ACTIONS(1262), + [anon_sym_auto] = ACTIONS(1262), + [anon_sym_register] = ACTIONS(1262), + [anon_sym_inline] = ACTIONS(1262), + [anon_sym___inline] = ACTIONS(1262), + [anon_sym___inline__] = ACTIONS(1262), + [anon_sym___forceinline] = ACTIONS(1262), + [anon_sym_thread_local] = ACTIONS(1262), + [anon_sym___thread] = ACTIONS(1262), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_constexpr] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_restrict] = ACTIONS(1262), + [anon_sym___restrict__] = ACTIONS(1262), + [anon_sym__Atomic] = ACTIONS(1262), + [anon_sym__Noreturn] = ACTIONS(1262), + [anon_sym_noreturn] = ACTIONS(1262), + [anon_sym_alignas] = ACTIONS(1262), + [anon_sym__Alignas] = ACTIONS(1262), + [sym_primitive_type] = ACTIONS(1262), + [anon_sym_enum] = ACTIONS(1262), + [anon_sym_struct] = ACTIONS(1262), + [anon_sym_union] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1262), + [anon_sym_else] = ACTIONS(1262), + [anon_sym_switch] = ACTIONS(1262), + [anon_sym_while] = ACTIONS(1262), + [anon_sym_do] = ACTIONS(1262), + [anon_sym_for] = ACTIONS(1262), + [anon_sym_return] = ACTIONS(1262), + [anon_sym_break] = ACTIONS(1262), + [anon_sym_continue] = ACTIONS(1262), + [anon_sym_goto] = ACTIONS(1262), + [anon_sym___try] = ACTIONS(1262), + [anon_sym___leave] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1264), + [anon_sym_PLUS_PLUS] = ACTIONS(1264), + [anon_sym_sizeof] = ACTIONS(1262), + [anon_sym___alignof__] = ACTIONS(1262), + [anon_sym___alignof] = ACTIONS(1262), + [anon_sym__alignof] = ACTIONS(1262), + [anon_sym_alignof] = ACTIONS(1262), + [anon_sym__Alignof] = ACTIONS(1262), + [anon_sym_offsetof] = ACTIONS(1262), + [anon_sym__Generic] = ACTIONS(1262), + [anon_sym_asm] = ACTIONS(1262), + [anon_sym___asm__] = ACTIONS(1262), + [sym_number_literal] = ACTIONS(1264), + [anon_sym_L_SQUOTE] = ACTIONS(1264), + [anon_sym_u_SQUOTE] = ACTIONS(1264), + [anon_sym_U_SQUOTE] = ACTIONS(1264), + [anon_sym_u8_SQUOTE] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_L_DQUOTE] = ACTIONS(1264), + [anon_sym_u_DQUOTE] = ACTIONS(1264), + [anon_sym_U_DQUOTE] = ACTIONS(1264), + [anon_sym_u8_DQUOTE] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1264), + [sym_true] = ACTIONS(1262), + [sym_false] = ACTIONS(1262), + [anon_sym_NULL] = ACTIONS(1262), + [anon_sym_nullptr] = ACTIONS(1262), [sym_comment] = ACTIONS(5), }, - [585] = { - [sym_type_qualifier] = STATE(591), - [sym_alignas_qualifier] = STATE(995), - [sym_expression] = STATE(1658), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1406), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1406), - [sym_call_expression] = STATE(1406), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1406), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1406), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_array_declarator_repeat1] = STATE(591), - [sym_identifier] = ACTIONS(2268), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(2286), - [anon_sym_BANG] = ACTIONS(2272), - [anon_sym_TILDE] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_PLUS] = ACTIONS(2270), - [anon_sym_STAR] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(2290), - [anon_sym___extension__] = ACTIONS(2292), - [anon_sym_static] = ACTIONS(2310), - [anon_sym_RBRACK] = ACTIONS(2312), - [anon_sym_const] = ACTIONS(2292), - [anon_sym_constexpr] = ACTIONS(2292), - [anon_sym_volatile] = ACTIONS(2292), - [anon_sym_restrict] = ACTIONS(2292), - [anon_sym___restrict__] = ACTIONS(2292), - [anon_sym__Atomic] = ACTIONS(2292), - [anon_sym__Noreturn] = ACTIONS(2292), - [anon_sym_noreturn] = ACTIONS(2292), - [anon_sym_alignas] = ACTIONS(2298), - [anon_sym__Alignas] = ACTIONS(2298), - [anon_sym_DASH_DASH] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2300), - [anon_sym_sizeof] = ACTIONS(2274), + [524] = { + [sym_type_qualifier] = STATE(1531), + [sym_alignas_qualifier] = STATE(1695), + [sym_type_specifier] = STATE(1705), + [sym_sized_type_specifier] = STATE(2008), + [sym_enum_specifier] = STATE(2008), + [sym_struct_specifier] = STATE(2008), + [sym_union_specifier] = STATE(2008), + [sym_expression] = STATE(1593), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3298), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_type_descriptor] = STATE(3336), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(2008), + [aux_sym__type_definition_type_repeat1] = STATE(1531), + [aux_sym_sized_type_specifier_repeat1] = STATE(1733), + [sym_identifier] = ACTIONS(2028), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym___extension__] = ACTIONS(2030), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_constexpr] = ACTIONS(2030), + [anon_sym_volatile] = ACTIONS(2030), + [anon_sym_restrict] = ACTIONS(2030), + [anon_sym___restrict__] = ACTIONS(2030), + [anon_sym__Atomic] = ACTIONS(2030), + [anon_sym__Noreturn] = ACTIONS(2030), + [anon_sym_noreturn] = ACTIONS(2030), + [anon_sym_alignas] = ACTIONS(2034), + [anon_sym__Alignas] = ACTIONS(2034), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2042), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), [anon_sym___alignof__] = ACTIONS(93), [anon_sym___alignof] = ACTIONS(93), [anon_sym__alignof] = ACTIONS(93), @@ -83543,58 +78367,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [586] = { - [sym_type_qualifier] = STATE(590), - [sym_alignas_qualifier] = STATE(995), - [sym_expression] = STATE(1644), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1406), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1406), - [sym_call_expression] = STATE(1406), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1406), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1406), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_array_declarator_repeat1] = STATE(590), - [sym_identifier] = ACTIONS(2268), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(2286), - [anon_sym_BANG] = ACTIONS(2272), - [anon_sym_TILDE] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_PLUS] = ACTIONS(2270), - [anon_sym_STAR] = ACTIONS(2314), - [anon_sym_AMP] = ACTIONS(2290), - [anon_sym___extension__] = ACTIONS(2292), - [anon_sym_static] = ACTIONS(2316), - [anon_sym_RBRACK] = ACTIONS(2318), - [anon_sym_const] = ACTIONS(2292), - [anon_sym_constexpr] = ACTIONS(2292), - [anon_sym_volatile] = ACTIONS(2292), - [anon_sym_restrict] = ACTIONS(2292), - [anon_sym___restrict__] = ACTIONS(2292), - [anon_sym__Atomic] = ACTIONS(2292), - [anon_sym__Noreturn] = ACTIONS(2292), - [anon_sym_noreturn] = ACTIONS(2292), - [anon_sym_alignas] = ACTIONS(2298), - [anon_sym__Alignas] = ACTIONS(2298), - [anon_sym_DASH_DASH] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2300), - [anon_sym_sizeof] = ACTIONS(2274), + [525] = { + [sym_type_qualifier] = STATE(1531), + [sym_alignas_qualifier] = STATE(1695), + [sym_type_specifier] = STATE(1705), + [sym_sized_type_specifier] = STATE(2008), + [sym_enum_specifier] = STATE(2008), + [sym_struct_specifier] = STATE(2008), + [sym_union_specifier] = STATE(2008), + [sym_expression] = STATE(1614), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3110), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_type_descriptor] = STATE(3334), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(2008), + [aux_sym__type_definition_type_repeat1] = STATE(1531), + [aux_sym_sized_type_specifier_repeat1] = STATE(1733), + [sym_identifier] = ACTIONS(2028), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym___extension__] = ACTIONS(2030), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_constexpr] = ACTIONS(2030), + [anon_sym_volatile] = ACTIONS(2030), + [anon_sym_restrict] = ACTIONS(2030), + [anon_sym___restrict__] = ACTIONS(2030), + [anon_sym__Atomic] = ACTIONS(2030), + [anon_sym__Noreturn] = ACTIONS(2030), + [anon_sym_noreturn] = ACTIONS(2030), + [anon_sym_alignas] = ACTIONS(2034), + [anon_sym__Alignas] = ACTIONS(2034), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2042), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), [anon_sym___alignof__] = ACTIONS(93), [anon_sym___alignof] = ACTIONS(93), [anon_sym__alignof] = ACTIONS(93), @@ -83621,136 +78460,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [587] = { - [sym_type_qualifier] = STATE(592), - [sym_alignas_qualifier] = STATE(995), - [sym_expression] = STATE(1636), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1406), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1406), - [sym_call_expression] = STATE(1406), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1406), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1406), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_array_declarator_repeat1] = STATE(592), - [sym_identifier] = ACTIONS(2268), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(2286), - [anon_sym_BANG] = ACTIONS(2272), - [anon_sym_TILDE] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_PLUS] = ACTIONS(2270), - [anon_sym_STAR] = ACTIONS(2320), - [anon_sym_AMP] = ACTIONS(2290), - [anon_sym___extension__] = ACTIONS(2292), - [anon_sym_static] = ACTIONS(2322), - [anon_sym_RBRACK] = ACTIONS(2324), - [anon_sym_const] = ACTIONS(2292), - [anon_sym_constexpr] = ACTIONS(2292), - [anon_sym_volatile] = ACTIONS(2292), - [anon_sym_restrict] = ACTIONS(2292), - [anon_sym___restrict__] = ACTIONS(2292), - [anon_sym__Atomic] = ACTIONS(2292), - [anon_sym__Noreturn] = ACTIONS(2292), - [anon_sym_noreturn] = ACTIONS(2292), - [anon_sym_alignas] = ACTIONS(2298), - [anon_sym__Alignas] = ACTIONS(2298), - [anon_sym_DASH_DASH] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2300), - [anon_sym_sizeof] = ACTIONS(2274), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [526] = { + [sym_identifier] = ACTIONS(1330), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym___scanf] = ACTIONS(1330), + [anon_sym___printf] = ACTIONS(1330), + [anon_sym___read_mostly] = ACTIONS(1330), + [anon_sym___must_hold] = ACTIONS(1330), + [anon_sym___ro_after_init] = ACTIONS(1330), + [anon_sym___noreturn] = ACTIONS(1330), + [anon_sym___cold] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [anon_sym_alignas] = ACTIONS(1330), + [anon_sym__Alignas] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_else] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), [sym_comment] = ACTIONS(5), }, - [588] = { - [sym_type_qualifier] = STATE(589), - [sym_alignas_qualifier] = STATE(995), - [sym_expression] = STATE(1646), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1406), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1406), - [sym_call_expression] = STATE(1406), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1406), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1406), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_array_declarator_repeat1] = STATE(589), - [sym_identifier] = ACTIONS(2268), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(2286), - [anon_sym_BANG] = ACTIONS(2272), - [anon_sym_TILDE] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_PLUS] = ACTIONS(2270), - [anon_sym_STAR] = ACTIONS(2326), - [anon_sym_AMP] = ACTIONS(2290), - [anon_sym___extension__] = ACTIONS(2292), - [anon_sym_static] = ACTIONS(2328), - [anon_sym_RBRACK] = ACTIONS(2330), - [anon_sym_const] = ACTIONS(2292), - [anon_sym_constexpr] = ACTIONS(2292), - [anon_sym_volatile] = ACTIONS(2292), - [anon_sym_restrict] = ACTIONS(2292), - [anon_sym___restrict__] = ACTIONS(2292), - [anon_sym__Atomic] = ACTIONS(2292), - [anon_sym__Noreturn] = ACTIONS(2292), - [anon_sym_noreturn] = ACTIONS(2292), - [anon_sym_alignas] = ACTIONS(2298), - [anon_sym__Alignas] = ACTIONS(2298), - [anon_sym_DASH_DASH] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2300), - [anon_sym_sizeof] = ACTIONS(2274), + [527] = { + [sym_type_qualifier] = STATE(1531), + [sym_alignas_qualifier] = STATE(1695), + [sym_type_specifier] = STATE(1705), + [sym_sized_type_specifier] = STATE(2008), + [sym_enum_specifier] = STATE(2008), + [sym_struct_specifier] = STATE(2008), + [sym_union_specifier] = STATE(2008), + [sym_expression] = STATE(1614), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3110), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_type_descriptor] = STATE(3059), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(2008), + [aux_sym__type_definition_type_repeat1] = STATE(1531), + [aux_sym_sized_type_specifier_repeat1] = STATE(1733), + [sym_identifier] = ACTIONS(2028), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym___extension__] = ACTIONS(2030), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_constexpr] = ACTIONS(2030), + [anon_sym_volatile] = ACTIONS(2030), + [anon_sym_restrict] = ACTIONS(2030), + [anon_sym___restrict__] = ACTIONS(2030), + [anon_sym__Atomic] = ACTIONS(2030), + [anon_sym__Noreturn] = ACTIONS(2030), + [anon_sym_noreturn] = ACTIONS(2030), + [anon_sym_alignas] = ACTIONS(2034), + [anon_sym__Alignas] = ACTIONS(2034), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2042), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), [anon_sym___alignof__] = ACTIONS(93), [anon_sym___alignof] = ACTIONS(93), [anon_sym__alignof] = ACTIONS(93), @@ -83777,58 +78646,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [589] = { - [sym_type_qualifier] = STATE(935), - [sym_alignas_qualifier] = STATE(995), - [sym_expression] = STATE(1631), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1406), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1406), - [sym_call_expression] = STATE(1406), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1406), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1406), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_array_declarator_repeat1] = STATE(935), - [sym_identifier] = ACTIONS(2268), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(2286), - [anon_sym_BANG] = ACTIONS(2272), - [anon_sym_TILDE] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_PLUS] = ACTIONS(2270), - [anon_sym_STAR] = ACTIONS(2332), - [anon_sym_AMP] = ACTIONS(2290), - [anon_sym___extension__] = ACTIONS(2292), - [anon_sym_static] = ACTIONS(2334), - [anon_sym_RBRACK] = ACTIONS(2336), - [anon_sym_const] = ACTIONS(2292), - [anon_sym_constexpr] = ACTIONS(2292), - [anon_sym_volatile] = ACTIONS(2292), - [anon_sym_restrict] = ACTIONS(2292), - [anon_sym___restrict__] = ACTIONS(2292), - [anon_sym__Atomic] = ACTIONS(2292), - [anon_sym__Noreturn] = ACTIONS(2292), - [anon_sym_noreturn] = ACTIONS(2292), - [anon_sym_alignas] = ACTIONS(2298), - [anon_sym__Alignas] = ACTIONS(2298), - [anon_sym_DASH_DASH] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2300), - [anon_sym_sizeof] = ACTIONS(2274), + [528] = { + [sym_type_qualifier] = STATE(1531), + [sym_alignas_qualifier] = STATE(1695), + [sym_type_specifier] = STATE(1705), + [sym_sized_type_specifier] = STATE(2008), + [sym_enum_specifier] = STATE(2008), + [sym_struct_specifier] = STATE(2008), + [sym_union_specifier] = STATE(2008), + [sym_expression] = STATE(1593), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3298), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_type_descriptor] = STATE(3095), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(2008), + [aux_sym__type_definition_type_repeat1] = STATE(1531), + [aux_sym_sized_type_specifier_repeat1] = STATE(1733), + [sym_identifier] = ACTIONS(2028), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym___extension__] = ACTIONS(2030), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_constexpr] = ACTIONS(2030), + [anon_sym_volatile] = ACTIONS(2030), + [anon_sym_restrict] = ACTIONS(2030), + [anon_sym___restrict__] = ACTIONS(2030), + [anon_sym__Atomic] = ACTIONS(2030), + [anon_sym__Noreturn] = ACTIONS(2030), + [anon_sym_noreturn] = ACTIONS(2030), + [anon_sym_alignas] = ACTIONS(2034), + [anon_sym__Alignas] = ACTIONS(2034), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2042), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), [anon_sym___alignof__] = ACTIONS(93), [anon_sym___alignof] = ACTIONS(93), [anon_sym__alignof] = ACTIONS(93), @@ -83855,58 +78739,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [590] = { - [sym_type_qualifier] = STATE(935), - [sym_alignas_qualifier] = STATE(995), - [sym_expression] = STATE(1661), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1406), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1406), - [sym_call_expression] = STATE(1406), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1406), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1406), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_array_declarator_repeat1] = STATE(935), - [sym_identifier] = ACTIONS(2268), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(2286), - [anon_sym_BANG] = ACTIONS(2272), - [anon_sym_TILDE] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_PLUS] = ACTIONS(2270), - [anon_sym_STAR] = ACTIONS(2338), - [anon_sym_AMP] = ACTIONS(2290), - [anon_sym___extension__] = ACTIONS(2292), - [anon_sym_static] = ACTIONS(2334), - [anon_sym_RBRACK] = ACTIONS(2340), - [anon_sym_const] = ACTIONS(2292), - [anon_sym_constexpr] = ACTIONS(2292), - [anon_sym_volatile] = ACTIONS(2292), - [anon_sym_restrict] = ACTIONS(2292), - [anon_sym___restrict__] = ACTIONS(2292), - [anon_sym__Atomic] = ACTIONS(2292), - [anon_sym__Noreturn] = ACTIONS(2292), - [anon_sym_noreturn] = ACTIONS(2292), - [anon_sym_alignas] = ACTIONS(2298), - [anon_sym__Alignas] = ACTIONS(2298), - [anon_sym_DASH_DASH] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2300), - [anon_sym_sizeof] = ACTIONS(2274), + [529] = { + [sym_type_qualifier] = STATE(1531), + [sym_alignas_qualifier] = STATE(1695), + [sym_type_specifier] = STATE(1705), + [sym_sized_type_specifier] = STATE(2008), + [sym_enum_specifier] = STATE(2008), + [sym_struct_specifier] = STATE(2008), + [sym_union_specifier] = STATE(2008), + [sym_expression] = STATE(1614), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3110), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_type_descriptor] = STATE(3357), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(2008), + [aux_sym__type_definition_type_repeat1] = STATE(1531), + [aux_sym_sized_type_specifier_repeat1] = STATE(1733), + [sym_identifier] = ACTIONS(2028), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym___extension__] = ACTIONS(2030), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_constexpr] = ACTIONS(2030), + [anon_sym_volatile] = ACTIONS(2030), + [anon_sym_restrict] = ACTIONS(2030), + [anon_sym___restrict__] = ACTIONS(2030), + [anon_sym__Atomic] = ACTIONS(2030), + [anon_sym__Noreturn] = ACTIONS(2030), + [anon_sym_noreturn] = ACTIONS(2030), + [anon_sym_alignas] = ACTIONS(2034), + [anon_sym__Alignas] = ACTIONS(2034), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2042), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), [anon_sym___alignof__] = ACTIONS(93), [anon_sym___alignof] = ACTIONS(93), [anon_sym__alignof] = ACTIONS(93), @@ -83933,580 +78832,788 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [591] = { - [sym_type_qualifier] = STATE(935), - [sym_alignas_qualifier] = STATE(995), - [sym_expression] = STATE(1641), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1406), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1406), - [sym_call_expression] = STATE(1406), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1406), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1406), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_array_declarator_repeat1] = STATE(935), - [sym_identifier] = ACTIONS(2268), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(2286), - [anon_sym_BANG] = ACTIONS(2272), - [anon_sym_TILDE] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_PLUS] = ACTIONS(2270), - [anon_sym_STAR] = ACTIONS(2342), - [anon_sym_AMP] = ACTIONS(2290), - [anon_sym___extension__] = ACTIONS(2292), - [anon_sym_static] = ACTIONS(2334), - [anon_sym_RBRACK] = ACTIONS(2344), - [anon_sym_const] = ACTIONS(2292), - [anon_sym_constexpr] = ACTIONS(2292), - [anon_sym_volatile] = ACTIONS(2292), - [anon_sym_restrict] = ACTIONS(2292), - [anon_sym___restrict__] = ACTIONS(2292), - [anon_sym__Atomic] = ACTIONS(2292), - [anon_sym__Noreturn] = ACTIONS(2292), - [anon_sym_noreturn] = ACTIONS(2292), - [anon_sym_alignas] = ACTIONS(2298), - [anon_sym__Alignas] = ACTIONS(2298), - [anon_sym_DASH_DASH] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2300), - [anon_sym_sizeof] = ACTIONS(2274), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [530] = { + [sym_identifier] = ACTIONS(2056), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2058), + [anon_sym_TILDE] = ACTIONS(2058), + [anon_sym_DASH] = ACTIONS(2056), + [anon_sym_PLUS] = ACTIONS(2056), + [anon_sym_STAR] = ACTIONS(2058), + [anon_sym_AMP] = ACTIONS(2058), + [anon_sym_SEMI] = ACTIONS(2058), + [anon_sym___extension__] = ACTIONS(2056), + [anon_sym_extern] = ACTIONS(2056), + [anon_sym___attribute__] = ACTIONS(2056), + [anon_sym___scanf] = ACTIONS(2056), + [anon_sym___printf] = ACTIONS(2056), + [anon_sym___read_mostly] = ACTIONS(2056), + [anon_sym___must_hold] = ACTIONS(2056), + [anon_sym___ro_after_init] = ACTIONS(2056), + [anon_sym___noreturn] = ACTIONS(2056), + [anon_sym___cold] = ACTIONS(2056), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2058), + [anon_sym___declspec] = ACTIONS(2056), + [anon_sym_LBRACE] = ACTIONS(2058), + [anon_sym_signed] = ACTIONS(2056), + [anon_sym_unsigned] = ACTIONS(2056), + [anon_sym_long] = ACTIONS(2056), + [anon_sym_short] = ACTIONS(2056), + [anon_sym_static] = ACTIONS(2056), + [anon_sym_auto] = ACTIONS(2056), + [anon_sym_register] = ACTIONS(2056), + [anon_sym_inline] = ACTIONS(2056), + [anon_sym___inline] = ACTIONS(2056), + [anon_sym___inline__] = ACTIONS(2056), + [anon_sym___forceinline] = ACTIONS(2056), + [anon_sym_thread_local] = ACTIONS(2056), + [anon_sym___thread] = ACTIONS(2056), + [anon_sym_const] = ACTIONS(2056), + [anon_sym_constexpr] = ACTIONS(2056), + [anon_sym_volatile] = ACTIONS(2056), + [anon_sym_restrict] = ACTIONS(2056), + [anon_sym___restrict__] = ACTIONS(2056), + [anon_sym__Atomic] = ACTIONS(2056), + [anon_sym__Noreturn] = ACTIONS(2056), + [anon_sym_noreturn] = ACTIONS(2056), + [anon_sym_alignas] = ACTIONS(2056), + [anon_sym__Alignas] = ACTIONS(2056), + [sym_primitive_type] = ACTIONS(2056), + [anon_sym_enum] = ACTIONS(2056), + [anon_sym_struct] = ACTIONS(2056), + [anon_sym_union] = ACTIONS(2056), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_switch] = ACTIONS(2056), + [anon_sym_case] = ACTIONS(2056), + [anon_sym_default] = ACTIONS(2056), + [anon_sym_while] = ACTIONS(2056), + [anon_sym_do] = ACTIONS(2056), + [anon_sym_for] = ACTIONS(2056), + [anon_sym_return] = ACTIONS(2056), + [anon_sym_break] = ACTIONS(2056), + [anon_sym_continue] = ACTIONS(2056), + [anon_sym_goto] = ACTIONS(2056), + [anon_sym___try] = ACTIONS(2056), + [anon_sym___leave] = ACTIONS(2056), + [anon_sym_DASH_DASH] = ACTIONS(2058), + [anon_sym_PLUS_PLUS] = ACTIONS(2058), + [anon_sym_sizeof] = ACTIONS(2056), + [anon_sym___alignof__] = ACTIONS(2056), + [anon_sym___alignof] = ACTIONS(2056), + [anon_sym__alignof] = ACTIONS(2056), + [anon_sym_alignof] = ACTIONS(2056), + [anon_sym__Alignof] = ACTIONS(2056), + [anon_sym_offsetof] = ACTIONS(2056), + [anon_sym__Generic] = ACTIONS(2056), + [anon_sym_asm] = ACTIONS(2056), + [anon_sym___asm__] = ACTIONS(2056), + [sym_number_literal] = ACTIONS(2058), + [anon_sym_L_SQUOTE] = ACTIONS(2058), + [anon_sym_u_SQUOTE] = ACTIONS(2058), + [anon_sym_U_SQUOTE] = ACTIONS(2058), + [anon_sym_u8_SQUOTE] = ACTIONS(2058), + [anon_sym_SQUOTE] = ACTIONS(2058), + [anon_sym_L_DQUOTE] = ACTIONS(2058), + [anon_sym_u_DQUOTE] = ACTIONS(2058), + [anon_sym_U_DQUOTE] = ACTIONS(2058), + [anon_sym_u8_DQUOTE] = ACTIONS(2058), + [anon_sym_DQUOTE] = ACTIONS(2058), + [sym_true] = ACTIONS(2056), + [sym_false] = ACTIONS(2056), + [anon_sym_NULL] = ACTIONS(2056), + [anon_sym_nullptr] = ACTIONS(2056), [sym_comment] = ACTIONS(5), }, - [592] = { - [sym_type_qualifier] = STATE(935), - [sym_alignas_qualifier] = STATE(995), - [sym_expression] = STATE(1648), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1406), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1406), - [sym_call_expression] = STATE(1406), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1406), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1406), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_array_declarator_repeat1] = STATE(935), - [sym_identifier] = ACTIONS(2268), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(2286), - [anon_sym_BANG] = ACTIONS(2272), - [anon_sym_TILDE] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_PLUS] = ACTIONS(2270), - [anon_sym_STAR] = ACTIONS(2346), - [anon_sym_AMP] = ACTIONS(2290), - [anon_sym___extension__] = ACTIONS(2292), - [anon_sym_static] = ACTIONS(2334), - [anon_sym_RBRACK] = ACTIONS(2348), - [anon_sym_const] = ACTIONS(2292), - [anon_sym_constexpr] = ACTIONS(2292), - [anon_sym_volatile] = ACTIONS(2292), - [anon_sym_restrict] = ACTIONS(2292), - [anon_sym___restrict__] = ACTIONS(2292), - [anon_sym__Atomic] = ACTIONS(2292), - [anon_sym__Noreturn] = ACTIONS(2292), - [anon_sym_noreturn] = ACTIONS(2292), - [anon_sym_alignas] = ACTIONS(2298), - [anon_sym__Alignas] = ACTIONS(2298), - [anon_sym_DASH_DASH] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2300), - [anon_sym_sizeof] = ACTIONS(2274), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [531] = { + [sym_identifier] = ACTIONS(1270), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1272), + [anon_sym_BANG] = ACTIONS(1272), + [anon_sym_TILDE] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_PLUS] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(1272), + [anon_sym_AMP] = ACTIONS(1272), + [anon_sym_SEMI] = ACTIONS(1272), + [anon_sym___extension__] = ACTIONS(1270), + [anon_sym_typedef] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1270), + [anon_sym___attribute__] = ACTIONS(1270), + [anon_sym___scanf] = ACTIONS(1270), + [anon_sym___printf] = ACTIONS(1270), + [anon_sym___read_mostly] = ACTIONS(1270), + [anon_sym___must_hold] = ACTIONS(1270), + [anon_sym___ro_after_init] = ACTIONS(1270), + [anon_sym___noreturn] = ACTIONS(1270), + [anon_sym___cold] = ACTIONS(1270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1272), + [anon_sym___declspec] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_signed] = ACTIONS(1270), + [anon_sym_unsigned] = ACTIONS(1270), + [anon_sym_long] = ACTIONS(1270), + [anon_sym_short] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_auto] = ACTIONS(1270), + [anon_sym_register] = ACTIONS(1270), + [anon_sym_inline] = ACTIONS(1270), + [anon_sym___inline] = ACTIONS(1270), + [anon_sym___inline__] = ACTIONS(1270), + [anon_sym___forceinline] = ACTIONS(1270), + [anon_sym_thread_local] = ACTIONS(1270), + [anon_sym___thread] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_constexpr] = ACTIONS(1270), + [anon_sym_volatile] = ACTIONS(1270), + [anon_sym_restrict] = ACTIONS(1270), + [anon_sym___restrict__] = ACTIONS(1270), + [anon_sym__Atomic] = ACTIONS(1270), + [anon_sym__Noreturn] = ACTIONS(1270), + [anon_sym_noreturn] = ACTIONS(1270), + [anon_sym_alignas] = ACTIONS(1270), + [anon_sym__Alignas] = ACTIONS(1270), + [sym_primitive_type] = ACTIONS(1270), + [anon_sym_enum] = ACTIONS(1270), + [anon_sym_struct] = ACTIONS(1270), + [anon_sym_union] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_else] = ACTIONS(1270), + [anon_sym_switch] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_do] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_goto] = ACTIONS(1270), + [anon_sym___try] = ACTIONS(1270), + [anon_sym___leave] = ACTIONS(1270), + [anon_sym_DASH_DASH] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1272), + [anon_sym_sizeof] = ACTIONS(1270), + [anon_sym___alignof__] = ACTIONS(1270), + [anon_sym___alignof] = ACTIONS(1270), + [anon_sym__alignof] = ACTIONS(1270), + [anon_sym_alignof] = ACTIONS(1270), + [anon_sym__Alignof] = ACTIONS(1270), + [anon_sym_offsetof] = ACTIONS(1270), + [anon_sym__Generic] = ACTIONS(1270), + [anon_sym_asm] = ACTIONS(1270), + [anon_sym___asm__] = ACTIONS(1270), + [sym_number_literal] = ACTIONS(1272), + [anon_sym_L_SQUOTE] = ACTIONS(1272), + [anon_sym_u_SQUOTE] = ACTIONS(1272), + [anon_sym_U_SQUOTE] = ACTIONS(1272), + [anon_sym_u8_SQUOTE] = ACTIONS(1272), + [anon_sym_SQUOTE] = ACTIONS(1272), + [anon_sym_L_DQUOTE] = ACTIONS(1272), + [anon_sym_u_DQUOTE] = ACTIONS(1272), + [anon_sym_U_DQUOTE] = ACTIONS(1272), + [anon_sym_u8_DQUOTE] = ACTIONS(1272), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym_true] = ACTIONS(1270), + [sym_false] = ACTIONS(1270), + [anon_sym_NULL] = ACTIONS(1270), + [anon_sym_nullptr] = ACTIONS(1270), [sym_comment] = ACTIONS(5), }, - [593] = { - [sym_type_qualifier] = STATE(935), - [sym_alignas_qualifier] = STATE(995), - [sym_expression] = STATE(1626), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1406), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1406), - [sym_call_expression] = STATE(1406), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1406), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1406), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_array_declarator_repeat1] = STATE(935), - [sym_identifier] = ACTIONS(2268), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(2286), - [anon_sym_BANG] = ACTIONS(2272), - [anon_sym_TILDE] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_PLUS] = ACTIONS(2270), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_AMP] = ACTIONS(2290), - [anon_sym___extension__] = ACTIONS(2292), - [anon_sym_static] = ACTIONS(2334), - [anon_sym_RBRACK] = ACTIONS(2352), - [anon_sym_const] = ACTIONS(2292), - [anon_sym_constexpr] = ACTIONS(2292), - [anon_sym_volatile] = ACTIONS(2292), - [anon_sym_restrict] = ACTIONS(2292), - [anon_sym___restrict__] = ACTIONS(2292), - [anon_sym__Atomic] = ACTIONS(2292), - [anon_sym__Noreturn] = ACTIONS(2292), - [anon_sym_noreturn] = ACTIONS(2292), - [anon_sym_alignas] = ACTIONS(2298), - [anon_sym__Alignas] = ACTIONS(2298), - [anon_sym_DASH_DASH] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2300), - [anon_sym_sizeof] = ACTIONS(2274), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [532] = { + [sym_identifier] = ACTIONS(1326), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym___scanf] = ACTIONS(1326), + [anon_sym___printf] = ACTIONS(1326), + [anon_sym___read_mostly] = ACTIONS(1326), + [anon_sym___must_hold] = ACTIONS(1326), + [anon_sym___ro_after_init] = ACTIONS(1326), + [anon_sym___noreturn] = ACTIONS(1326), + [anon_sym___cold] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [anon_sym_alignas] = ACTIONS(1326), + [anon_sym__Alignas] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), [sym_comment] = ACTIONS(5), }, - [594] = { - [sym_type_qualifier] = STATE(596), - [sym_alignas_qualifier] = STATE(995), - [sym_expression] = STATE(1628), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1406), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1406), - [sym_call_expression] = STATE(1406), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1406), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1406), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_array_declarator_repeat1] = STATE(596), - [sym_identifier] = ACTIONS(2268), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(2286), - [anon_sym_BANG] = ACTIONS(2272), - [anon_sym_TILDE] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_PLUS] = ACTIONS(2270), - [anon_sym_STAR] = ACTIONS(2354), - [anon_sym_AMP] = ACTIONS(2290), - [anon_sym___extension__] = ACTIONS(2292), - [anon_sym_static] = ACTIONS(2356), - [anon_sym_RBRACK] = ACTIONS(2358), - [anon_sym_const] = ACTIONS(2292), - [anon_sym_constexpr] = ACTIONS(2292), - [anon_sym_volatile] = ACTIONS(2292), - [anon_sym_restrict] = ACTIONS(2292), - [anon_sym___restrict__] = ACTIONS(2292), - [anon_sym__Atomic] = ACTIONS(2292), - [anon_sym__Noreturn] = ACTIONS(2292), - [anon_sym_noreturn] = ACTIONS(2292), - [anon_sym_alignas] = ACTIONS(2298), - [anon_sym__Alignas] = ACTIONS(2298), - [anon_sym_DASH_DASH] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2300), - [anon_sym_sizeof] = ACTIONS(2274), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [533] = { + [sym_identifier] = ACTIONS(1274), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1276), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_PLUS] = ACTIONS(1274), + [anon_sym_STAR] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1276), + [anon_sym_SEMI] = ACTIONS(1276), + [anon_sym___extension__] = ACTIONS(1274), + [anon_sym_typedef] = ACTIONS(1274), + [anon_sym_extern] = ACTIONS(1274), + [anon_sym___attribute__] = ACTIONS(1274), + [anon_sym___scanf] = ACTIONS(1274), + [anon_sym___printf] = ACTIONS(1274), + [anon_sym___read_mostly] = ACTIONS(1274), + [anon_sym___must_hold] = ACTIONS(1274), + [anon_sym___ro_after_init] = ACTIONS(1274), + [anon_sym___noreturn] = ACTIONS(1274), + [anon_sym___cold] = ACTIONS(1274), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1276), + [anon_sym___declspec] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_signed] = ACTIONS(1274), + [anon_sym_unsigned] = ACTIONS(1274), + [anon_sym_long] = ACTIONS(1274), + [anon_sym_short] = ACTIONS(1274), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_auto] = ACTIONS(1274), + [anon_sym_register] = ACTIONS(1274), + [anon_sym_inline] = ACTIONS(1274), + [anon_sym___inline] = ACTIONS(1274), + [anon_sym___inline__] = ACTIONS(1274), + [anon_sym___forceinline] = ACTIONS(1274), + [anon_sym_thread_local] = ACTIONS(1274), + [anon_sym___thread] = ACTIONS(1274), + [anon_sym_const] = ACTIONS(1274), + [anon_sym_constexpr] = ACTIONS(1274), + [anon_sym_volatile] = ACTIONS(1274), + [anon_sym_restrict] = ACTIONS(1274), + [anon_sym___restrict__] = ACTIONS(1274), + [anon_sym__Atomic] = ACTIONS(1274), + [anon_sym__Noreturn] = ACTIONS(1274), + [anon_sym_noreturn] = ACTIONS(1274), + [anon_sym_alignas] = ACTIONS(1274), + [anon_sym__Alignas] = ACTIONS(1274), + [sym_primitive_type] = ACTIONS(1274), + [anon_sym_enum] = ACTIONS(1274), + [anon_sym_struct] = ACTIONS(1274), + [anon_sym_union] = ACTIONS(1274), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_else] = ACTIONS(1274), + [anon_sym_switch] = ACTIONS(1274), + [anon_sym_while] = ACTIONS(1274), + [anon_sym_do] = ACTIONS(1274), + [anon_sym_for] = ACTIONS(1274), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_break] = ACTIONS(1274), + [anon_sym_continue] = ACTIONS(1274), + [anon_sym_goto] = ACTIONS(1274), + [anon_sym___try] = ACTIONS(1274), + [anon_sym___leave] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1276), + [anon_sym_PLUS_PLUS] = ACTIONS(1276), + [anon_sym_sizeof] = ACTIONS(1274), + [anon_sym___alignof__] = ACTIONS(1274), + [anon_sym___alignof] = ACTIONS(1274), + [anon_sym__alignof] = ACTIONS(1274), + [anon_sym_alignof] = ACTIONS(1274), + [anon_sym__Alignof] = ACTIONS(1274), + [anon_sym_offsetof] = ACTIONS(1274), + [anon_sym__Generic] = ACTIONS(1274), + [anon_sym_asm] = ACTIONS(1274), + [anon_sym___asm__] = ACTIONS(1274), + [sym_number_literal] = ACTIONS(1276), + [anon_sym_L_SQUOTE] = ACTIONS(1276), + [anon_sym_u_SQUOTE] = ACTIONS(1276), + [anon_sym_U_SQUOTE] = ACTIONS(1276), + [anon_sym_u8_SQUOTE] = ACTIONS(1276), + [anon_sym_SQUOTE] = ACTIONS(1276), + [anon_sym_L_DQUOTE] = ACTIONS(1276), + [anon_sym_u_DQUOTE] = ACTIONS(1276), + [anon_sym_U_DQUOTE] = ACTIONS(1276), + [anon_sym_u8_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE] = ACTIONS(1276), + [sym_true] = ACTIONS(1274), + [sym_false] = ACTIONS(1274), + [anon_sym_NULL] = ACTIONS(1274), + [anon_sym_nullptr] = ACTIONS(1274), [sym_comment] = ACTIONS(5), }, - [595] = { - [sym_type_qualifier] = STATE(935), - [sym_alignas_qualifier] = STATE(995), - [sym_expression] = STATE(1657), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1406), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1406), - [sym_call_expression] = STATE(1406), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1406), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1406), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_array_declarator_repeat1] = STATE(935), - [sym_identifier] = ACTIONS(2268), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(2286), - [anon_sym_BANG] = ACTIONS(2272), - [anon_sym_TILDE] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_PLUS] = ACTIONS(2270), - [anon_sym_STAR] = ACTIONS(2360), - [anon_sym_AMP] = ACTIONS(2290), - [anon_sym___extension__] = ACTIONS(2292), - [anon_sym_static] = ACTIONS(2334), - [anon_sym_RBRACK] = ACTIONS(2362), - [anon_sym_const] = ACTIONS(2292), - [anon_sym_constexpr] = ACTIONS(2292), - [anon_sym_volatile] = ACTIONS(2292), - [anon_sym_restrict] = ACTIONS(2292), - [anon_sym___restrict__] = ACTIONS(2292), - [anon_sym__Atomic] = ACTIONS(2292), - [anon_sym__Noreturn] = ACTIONS(2292), - [anon_sym_noreturn] = ACTIONS(2292), - [anon_sym_alignas] = ACTIONS(2298), - [anon_sym__Alignas] = ACTIONS(2298), - [anon_sym_DASH_DASH] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2300), - [anon_sym_sizeof] = ACTIONS(2274), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [534] = { + [sym_identifier] = ACTIONS(2060), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(2062), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym___extension__] = ACTIONS(2060), + [anon_sym_extern] = ACTIONS(2060), + [anon_sym___attribute__] = ACTIONS(2060), + [anon_sym___scanf] = ACTIONS(2060), + [anon_sym___printf] = ACTIONS(2060), + [anon_sym___read_mostly] = ACTIONS(2060), + [anon_sym___must_hold] = ACTIONS(2060), + [anon_sym___ro_after_init] = ACTIONS(2060), + [anon_sym___noreturn] = ACTIONS(2060), + [anon_sym___cold] = ACTIONS(2060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2062), + [anon_sym___declspec] = ACTIONS(2060), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_signed] = ACTIONS(2060), + [anon_sym_unsigned] = ACTIONS(2060), + [anon_sym_long] = ACTIONS(2060), + [anon_sym_short] = ACTIONS(2060), + [anon_sym_static] = ACTIONS(2060), + [anon_sym_auto] = ACTIONS(2060), + [anon_sym_register] = ACTIONS(2060), + [anon_sym_inline] = ACTIONS(2060), + [anon_sym___inline] = ACTIONS(2060), + [anon_sym___inline__] = ACTIONS(2060), + [anon_sym___forceinline] = ACTIONS(2060), + [anon_sym_thread_local] = ACTIONS(2060), + [anon_sym___thread] = ACTIONS(2060), + [anon_sym_const] = ACTIONS(2060), + [anon_sym_constexpr] = ACTIONS(2060), + [anon_sym_volatile] = ACTIONS(2060), + [anon_sym_restrict] = ACTIONS(2060), + [anon_sym___restrict__] = ACTIONS(2060), + [anon_sym__Atomic] = ACTIONS(2060), + [anon_sym__Noreturn] = ACTIONS(2060), + [anon_sym_noreturn] = ACTIONS(2060), + [anon_sym_alignas] = ACTIONS(2060), + [anon_sym__Alignas] = ACTIONS(2060), + [sym_primitive_type] = ACTIONS(2060), + [anon_sym_enum] = ACTIONS(2060), + [anon_sym_struct] = ACTIONS(2060), + [anon_sym_union] = ACTIONS(2060), + [anon_sym_if] = ACTIONS(2060), + [anon_sym_switch] = ACTIONS(2060), + [anon_sym_case] = ACTIONS(2060), + [anon_sym_default] = ACTIONS(2060), + [anon_sym_while] = ACTIONS(2060), + [anon_sym_do] = ACTIONS(2060), + [anon_sym_for] = ACTIONS(2060), + [anon_sym_return] = ACTIONS(2060), + [anon_sym_break] = ACTIONS(2060), + [anon_sym_continue] = ACTIONS(2060), + [anon_sym_goto] = ACTIONS(2060), + [anon_sym___try] = ACTIONS(2060), + [anon_sym___leave] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2062), + [anon_sym_PLUS_PLUS] = ACTIONS(2062), + [anon_sym_sizeof] = ACTIONS(2060), + [anon_sym___alignof__] = ACTIONS(2060), + [anon_sym___alignof] = ACTIONS(2060), + [anon_sym__alignof] = ACTIONS(2060), + [anon_sym_alignof] = ACTIONS(2060), + [anon_sym__Alignof] = ACTIONS(2060), + [anon_sym_offsetof] = ACTIONS(2060), + [anon_sym__Generic] = ACTIONS(2060), + [anon_sym_asm] = ACTIONS(2060), + [anon_sym___asm__] = ACTIONS(2060), + [sym_number_literal] = ACTIONS(2062), + [anon_sym_L_SQUOTE] = ACTIONS(2062), + [anon_sym_u_SQUOTE] = ACTIONS(2062), + [anon_sym_U_SQUOTE] = ACTIONS(2062), + [anon_sym_u8_SQUOTE] = ACTIONS(2062), + [anon_sym_SQUOTE] = ACTIONS(2062), + [anon_sym_L_DQUOTE] = ACTIONS(2062), + [anon_sym_u_DQUOTE] = ACTIONS(2062), + [anon_sym_U_DQUOTE] = ACTIONS(2062), + [anon_sym_u8_DQUOTE] = ACTIONS(2062), + [anon_sym_DQUOTE] = ACTIONS(2062), + [sym_true] = ACTIONS(2060), + [sym_false] = ACTIONS(2060), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), [sym_comment] = ACTIONS(5), }, - [596] = { - [sym_type_qualifier] = STATE(935), - [sym_alignas_qualifier] = STATE(995), - [sym_expression] = STATE(1645), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1406), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1406), - [sym_call_expression] = STATE(1406), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1406), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1406), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_array_declarator_repeat1] = STATE(935), - [sym_identifier] = ACTIONS(2268), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(2286), - [anon_sym_BANG] = ACTIONS(2272), - [anon_sym_TILDE] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_PLUS] = ACTIONS(2270), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_AMP] = ACTIONS(2290), - [anon_sym___extension__] = ACTIONS(2292), - [anon_sym_static] = ACTIONS(2334), - [anon_sym_RBRACK] = ACTIONS(2366), - [anon_sym_const] = ACTIONS(2292), - [anon_sym_constexpr] = ACTIONS(2292), - [anon_sym_volatile] = ACTIONS(2292), - [anon_sym_restrict] = ACTIONS(2292), - [anon_sym___restrict__] = ACTIONS(2292), - [anon_sym__Atomic] = ACTIONS(2292), - [anon_sym__Noreturn] = ACTIONS(2292), - [anon_sym_noreturn] = ACTIONS(2292), - [anon_sym_alignas] = ACTIONS(2298), - [anon_sym__Alignas] = ACTIONS(2298), - [anon_sym_DASH_DASH] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2300), - [anon_sym_sizeof] = ACTIONS(2274), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [535] = { + [sym_identifier] = ACTIONS(1322), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym___extension__] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym___attribute__] = ACTIONS(1322), + [anon_sym___scanf] = ACTIONS(1322), + [anon_sym___printf] = ACTIONS(1322), + [anon_sym___read_mostly] = ACTIONS(1322), + [anon_sym___must_hold] = ACTIONS(1322), + [anon_sym___ro_after_init] = ACTIONS(1322), + [anon_sym___noreturn] = ACTIONS(1322), + [anon_sym___cold] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [anon_sym_alignas] = ACTIONS(1322), + [anon_sym__Alignas] = ACTIONS(1322), + [sym_primitive_type] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym___try] = ACTIONS(1322), + [anon_sym___leave] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), [sym_comment] = ACTIONS(5), }, - [597] = { - [sym_expression] = STATE(1539), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_initializer_list] = STATE(2536), - [sym_initializer_pair] = STATE(2536), - [sym_subscript_designator] = STATE(2298), - [sym_subscript_range_designator] = STATE(2298), - [sym_field_designator] = STATE(2298), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_initializer_pair_repeat1] = STATE(2298), - [sym_identifier] = ACTIONS(2368), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2370), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(2372), - [anon_sym_LBRACK] = ACTIONS(2374), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [anon_sym_DOT] = ACTIONS(2376), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [536] = { + [sym_identifier] = ACTIONS(1278), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1280), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1278), + [anon_sym_PLUS] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_AMP] = ACTIONS(1280), + [anon_sym_SEMI] = ACTIONS(1280), + [anon_sym___extension__] = ACTIONS(1278), + [anon_sym_typedef] = ACTIONS(1278), + [anon_sym_extern] = ACTIONS(1278), + [anon_sym___attribute__] = ACTIONS(1278), + [anon_sym___scanf] = ACTIONS(1278), + [anon_sym___printf] = ACTIONS(1278), + [anon_sym___read_mostly] = ACTIONS(1278), + [anon_sym___must_hold] = ACTIONS(1278), + [anon_sym___ro_after_init] = ACTIONS(1278), + [anon_sym___noreturn] = ACTIONS(1278), + [anon_sym___cold] = ACTIONS(1278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1280), + [anon_sym___declspec] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(1280), + [anon_sym_signed] = ACTIONS(1278), + [anon_sym_unsigned] = ACTIONS(1278), + [anon_sym_long] = ACTIONS(1278), + [anon_sym_short] = ACTIONS(1278), + [anon_sym_static] = ACTIONS(1278), + [anon_sym_auto] = ACTIONS(1278), + [anon_sym_register] = ACTIONS(1278), + [anon_sym_inline] = ACTIONS(1278), + [anon_sym___inline] = ACTIONS(1278), + [anon_sym___inline__] = ACTIONS(1278), + [anon_sym___forceinline] = ACTIONS(1278), + [anon_sym_thread_local] = ACTIONS(1278), + [anon_sym___thread] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1278), + [anon_sym_constexpr] = ACTIONS(1278), + [anon_sym_volatile] = ACTIONS(1278), + [anon_sym_restrict] = ACTIONS(1278), + [anon_sym___restrict__] = ACTIONS(1278), + [anon_sym__Atomic] = ACTIONS(1278), + [anon_sym__Noreturn] = ACTIONS(1278), + [anon_sym_noreturn] = ACTIONS(1278), + [anon_sym_alignas] = ACTIONS(1278), + [anon_sym__Alignas] = ACTIONS(1278), + [sym_primitive_type] = ACTIONS(1278), + [anon_sym_enum] = ACTIONS(1278), + [anon_sym_struct] = ACTIONS(1278), + [anon_sym_union] = ACTIONS(1278), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_else] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(1278), + [anon_sym_while] = ACTIONS(1278), + [anon_sym_do] = ACTIONS(1278), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_return] = ACTIONS(1278), + [anon_sym_break] = ACTIONS(1278), + [anon_sym_continue] = ACTIONS(1278), + [anon_sym_goto] = ACTIONS(1278), + [anon_sym___try] = ACTIONS(1278), + [anon_sym___leave] = ACTIONS(1278), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_sizeof] = ACTIONS(1278), + [anon_sym___alignof__] = ACTIONS(1278), + [anon_sym___alignof] = ACTIONS(1278), + [anon_sym__alignof] = ACTIONS(1278), + [anon_sym_alignof] = ACTIONS(1278), + [anon_sym__Alignof] = ACTIONS(1278), + [anon_sym_offsetof] = ACTIONS(1278), + [anon_sym__Generic] = ACTIONS(1278), + [anon_sym_asm] = ACTIONS(1278), + [anon_sym___asm__] = ACTIONS(1278), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(1280), + [anon_sym_u_SQUOTE] = ACTIONS(1280), + [anon_sym_U_SQUOTE] = ACTIONS(1280), + [anon_sym_u8_SQUOTE] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1280), + [anon_sym_L_DQUOTE] = ACTIONS(1280), + [anon_sym_u_DQUOTE] = ACTIONS(1280), + [anon_sym_U_DQUOTE] = ACTIONS(1280), + [anon_sym_u8_DQUOTE] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(1280), + [sym_true] = ACTIONS(1278), + [sym_false] = ACTIONS(1278), + [anon_sym_NULL] = ACTIONS(1278), + [anon_sym_nullptr] = ACTIONS(1278), [sym_comment] = ACTIONS(5), }, - [598] = { - [sym_expression] = STATE(1555), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_initializer_list] = STATE(2540), - [sym_initializer_pair] = STATE(2540), - [sym_subscript_designator] = STATE(2298), - [sym_subscript_range_designator] = STATE(2298), - [sym_field_designator] = STATE(2298), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_initializer_pair_repeat1] = STATE(2298), - [sym_identifier] = ACTIONS(2368), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2378), + [537] = { + [sym_identifier] = ACTIONS(1286), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1288), + [anon_sym_BANG] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_DASH] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1288), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym___extension__] = ACTIONS(1286), + [anon_sym_typedef] = ACTIONS(1286), + [anon_sym_extern] = ACTIONS(1286), + [anon_sym___attribute__] = ACTIONS(1286), + [anon_sym___scanf] = ACTIONS(1286), + [anon_sym___printf] = ACTIONS(1286), + [anon_sym___read_mostly] = ACTIONS(1286), + [anon_sym___must_hold] = ACTIONS(1286), + [anon_sym___ro_after_init] = ACTIONS(1286), + [anon_sym___noreturn] = ACTIONS(1286), + [anon_sym___cold] = ACTIONS(1286), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1288), + [anon_sym___declspec] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_signed] = ACTIONS(1286), + [anon_sym_unsigned] = ACTIONS(1286), + [anon_sym_long] = ACTIONS(1286), + [anon_sym_short] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_auto] = ACTIONS(1286), + [anon_sym_register] = ACTIONS(1286), + [anon_sym_inline] = ACTIONS(1286), + [anon_sym___inline] = ACTIONS(1286), + [anon_sym___inline__] = ACTIONS(1286), + [anon_sym___forceinline] = ACTIONS(1286), + [anon_sym_thread_local] = ACTIONS(1286), + [anon_sym___thread] = ACTIONS(1286), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_constexpr] = ACTIONS(1286), + [anon_sym_volatile] = ACTIONS(1286), + [anon_sym_restrict] = ACTIONS(1286), + [anon_sym___restrict__] = ACTIONS(1286), + [anon_sym__Atomic] = ACTIONS(1286), + [anon_sym__Noreturn] = ACTIONS(1286), + [anon_sym_noreturn] = ACTIONS(1286), + [anon_sym_alignas] = ACTIONS(1286), + [anon_sym__Alignas] = ACTIONS(1286), + [sym_primitive_type] = ACTIONS(1286), + [anon_sym_enum] = ACTIONS(1286), + [anon_sym_struct] = ACTIONS(1286), + [anon_sym_union] = ACTIONS(1286), + [anon_sym_if] = ACTIONS(1286), + [anon_sym_else] = ACTIONS(1286), + [anon_sym_switch] = ACTIONS(1286), + [anon_sym_while] = ACTIONS(1286), + [anon_sym_do] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1286), + [anon_sym_return] = ACTIONS(1286), + [anon_sym_break] = ACTIONS(1286), + [anon_sym_continue] = ACTIONS(1286), + [anon_sym_goto] = ACTIONS(1286), + [anon_sym___try] = ACTIONS(1286), + [anon_sym___leave] = ACTIONS(1286), + [anon_sym_DASH_DASH] = ACTIONS(1288), + [anon_sym_PLUS_PLUS] = ACTIONS(1288), + [anon_sym_sizeof] = ACTIONS(1286), + [anon_sym___alignof__] = ACTIONS(1286), + [anon_sym___alignof] = ACTIONS(1286), + [anon_sym__alignof] = ACTIONS(1286), + [anon_sym_alignof] = ACTIONS(1286), + [anon_sym__Alignof] = ACTIONS(1286), + [anon_sym_offsetof] = ACTIONS(1286), + [anon_sym__Generic] = ACTIONS(1286), + [anon_sym_asm] = ACTIONS(1286), + [anon_sym___asm__] = ACTIONS(1286), + [sym_number_literal] = ACTIONS(1288), + [anon_sym_L_SQUOTE] = ACTIONS(1288), + [anon_sym_u_SQUOTE] = ACTIONS(1288), + [anon_sym_U_SQUOTE] = ACTIONS(1288), + [anon_sym_u8_SQUOTE] = ACTIONS(1288), + [anon_sym_SQUOTE] = ACTIONS(1288), + [anon_sym_L_DQUOTE] = ACTIONS(1288), + [anon_sym_u_DQUOTE] = ACTIONS(1288), + [anon_sym_U_DQUOTE] = ACTIONS(1288), + [anon_sym_u8_DQUOTE] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1288), + [sym_true] = ACTIONS(1286), + [sym_false] = ACTIONS(1286), + [anon_sym_NULL] = ACTIONS(1286), + [anon_sym_nullptr] = ACTIONS(1286), + [sym_comment] = ACTIONS(5), + }, + [538] = { + [sym_type_qualifier] = STATE(1531), + [sym_alignas_qualifier] = STATE(1695), + [sym_type_specifier] = STATE(1705), + [sym_sized_type_specifier] = STATE(2008), + [sym_enum_specifier] = STATE(2008), + [sym_struct_specifier] = STATE(2008), + [sym_union_specifier] = STATE(2008), + [sym_expression] = STATE(1638), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3332), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_type_descriptor] = STATE(3170), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(2008), + [aux_sym__type_definition_type_repeat1] = STATE(1531), + [aux_sym_sized_type_specifier_repeat1] = STATE(1733), + [sym_identifier] = ACTIONS(2028), + [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(23), @@ -84514,9 +79621,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(2380), - [anon_sym_LBRACK] = ACTIONS(2374), + [anon_sym___extension__] = ACTIONS(2030), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_constexpr] = ACTIONS(2030), + [anon_sym_volatile] = ACTIONS(2030), + [anon_sym_restrict] = ACTIONS(2030), + [anon_sym___restrict__] = ACTIONS(2030), + [anon_sym__Atomic] = ACTIONS(2030), + [anon_sym__Noreturn] = ACTIONS(2030), + [anon_sym_noreturn] = ACTIONS(2030), + [anon_sym_alignas] = ACTIONS(2034), + [anon_sym__Alignas] = ACTIONS(2034), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2042), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -84529,7 +79652,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(97), [anon_sym_asm] = ACTIONS(99), [anon_sym___asm__] = ACTIONS(99), - [anon_sym_DOT] = ACTIONS(2376), [sym_number_literal] = ACTIONS(167), [anon_sym_L_SQUOTE] = ACTIONS(103), [anon_sym_u_SQUOTE] = ACTIONS(103), @@ -84547,39 +79669,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [599] = { - [sym_expression] = STATE(1553), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_initializer_list] = STATE(2616), - [sym_initializer_pair] = STATE(2616), - [sym_subscript_designator] = STATE(2298), - [sym_subscript_range_designator] = STATE(2298), - [sym_field_designator] = STATE(2298), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_initializer_pair_repeat1] = STATE(2298), - [sym_identifier] = ACTIONS(2368), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2382), + [539] = { + [sym_identifier] = ACTIONS(1290), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1290), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym___extension__] = ACTIONS(1290), + [anon_sym_typedef] = ACTIONS(1290), + [anon_sym_extern] = ACTIONS(1290), + [anon_sym___attribute__] = ACTIONS(1290), + [anon_sym___scanf] = ACTIONS(1290), + [anon_sym___printf] = ACTIONS(1290), + [anon_sym___read_mostly] = ACTIONS(1290), + [anon_sym___must_hold] = ACTIONS(1290), + [anon_sym___ro_after_init] = ACTIONS(1290), + [anon_sym___noreturn] = ACTIONS(1290), + [anon_sym___cold] = ACTIONS(1290), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1292), + [anon_sym___declspec] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_signed] = ACTIONS(1290), + [anon_sym_unsigned] = ACTIONS(1290), + [anon_sym_long] = ACTIONS(1290), + [anon_sym_short] = ACTIONS(1290), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_auto] = ACTIONS(1290), + [anon_sym_register] = ACTIONS(1290), + [anon_sym_inline] = ACTIONS(1290), + [anon_sym___inline] = ACTIONS(1290), + [anon_sym___inline__] = ACTIONS(1290), + [anon_sym___forceinline] = ACTIONS(1290), + [anon_sym_thread_local] = ACTIONS(1290), + [anon_sym___thread] = ACTIONS(1290), + [anon_sym_const] = ACTIONS(1290), + [anon_sym_constexpr] = ACTIONS(1290), + [anon_sym_volatile] = ACTIONS(1290), + [anon_sym_restrict] = ACTIONS(1290), + [anon_sym___restrict__] = ACTIONS(1290), + [anon_sym__Atomic] = ACTIONS(1290), + [anon_sym__Noreturn] = ACTIONS(1290), + [anon_sym_noreturn] = ACTIONS(1290), + [anon_sym_alignas] = ACTIONS(1290), + [anon_sym__Alignas] = ACTIONS(1290), + [sym_primitive_type] = ACTIONS(1290), + [anon_sym_enum] = ACTIONS(1290), + [anon_sym_struct] = ACTIONS(1290), + [anon_sym_union] = ACTIONS(1290), + [anon_sym_if] = ACTIONS(1290), + [anon_sym_else] = ACTIONS(1290), + [anon_sym_switch] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_do] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1290), + [anon_sym_return] = ACTIONS(1290), + [anon_sym_break] = ACTIONS(1290), + [anon_sym_continue] = ACTIONS(1290), + [anon_sym_goto] = ACTIONS(1290), + [anon_sym___try] = ACTIONS(1290), + [anon_sym___leave] = ACTIONS(1290), + [anon_sym_DASH_DASH] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [anon_sym_sizeof] = ACTIONS(1290), + [anon_sym___alignof__] = ACTIONS(1290), + [anon_sym___alignof] = ACTIONS(1290), + [anon_sym__alignof] = ACTIONS(1290), + [anon_sym_alignof] = ACTIONS(1290), + [anon_sym__Alignof] = ACTIONS(1290), + [anon_sym_offsetof] = ACTIONS(1290), + [anon_sym__Generic] = ACTIONS(1290), + [anon_sym_asm] = ACTIONS(1290), + [anon_sym___asm__] = ACTIONS(1290), + [sym_number_literal] = ACTIONS(1292), + [anon_sym_L_SQUOTE] = ACTIONS(1292), + [anon_sym_u_SQUOTE] = ACTIONS(1292), + [anon_sym_U_SQUOTE] = ACTIONS(1292), + [anon_sym_u8_SQUOTE] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1292), + [anon_sym_L_DQUOTE] = ACTIONS(1292), + [anon_sym_u_DQUOTE] = ACTIONS(1292), + [anon_sym_U_DQUOTE] = ACTIONS(1292), + [anon_sym_u8_DQUOTE] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(1292), + [sym_true] = ACTIONS(1290), + [sym_false] = ACTIONS(1290), + [anon_sym_NULL] = ACTIONS(1290), + [anon_sym_nullptr] = ACTIONS(1290), + [sym_comment] = ACTIONS(5), + }, + [540] = { + [sym_type_qualifier] = STATE(1531), + [sym_alignas_qualifier] = STATE(1695), + [sym_type_specifier] = STATE(1705), + [sym_sized_type_specifier] = STATE(2008), + [sym_enum_specifier] = STATE(2008), + [sym_struct_specifier] = STATE(2008), + [sym_union_specifier] = STATE(2008), + [sym_expression] = STATE(1593), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3298), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_type_descriptor] = STATE(3112), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(2008), + [aux_sym__type_definition_type_repeat1] = STATE(1531), + [aux_sym_sized_type_specifier_repeat1] = STATE(1733), + [sym_identifier] = ACTIONS(2028), + [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(23), @@ -84587,9 +79807,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(2384), - [anon_sym_LBRACK] = ACTIONS(2374), + [anon_sym___extension__] = ACTIONS(2030), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_constexpr] = ACTIONS(2030), + [anon_sym_volatile] = ACTIONS(2030), + [anon_sym_restrict] = ACTIONS(2030), + [anon_sym___restrict__] = ACTIONS(2030), + [anon_sym__Atomic] = ACTIONS(2030), + [anon_sym__Noreturn] = ACTIONS(2030), + [anon_sym_noreturn] = ACTIONS(2030), + [anon_sym_alignas] = ACTIONS(2034), + [anon_sym__Alignas] = ACTIONS(2034), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2042), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -84602,7 +79838,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(97), [anon_sym_asm] = ACTIONS(99), [anon_sym___asm__] = ACTIONS(99), - [anon_sym_DOT] = ACTIONS(2376), [sym_number_literal] = ACTIONS(167), [anon_sym_L_SQUOTE] = ACTIONS(103), [anon_sym_u_SQUOTE] = ACTIONS(103), @@ -84620,37 +79855,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [600] = { - [sym_expression] = STATE(1605), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_initializer_list] = STATE(2926), - [sym_initializer_pair] = STATE(2926), - [sym_subscript_designator] = STATE(2298), - [sym_subscript_range_designator] = STATE(2298), - [sym_field_designator] = STATE(2298), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_initializer_pair_repeat1] = STATE(2298), - [sym_identifier] = ACTIONS(2368), + [541] = { + [sym_type_qualifier] = STATE(1531), + [sym_alignas_qualifier] = STATE(1695), + [sym_type_specifier] = STATE(1705), + [sym_sized_type_specifier] = STATE(2008), + [sym_enum_specifier] = STATE(2008), + [sym_struct_specifier] = STATE(2008), + [sym_union_specifier] = STATE(2008), + [sym_expression] = STATE(1593), + [sym__string] = STATE(1209), + [sym_comma_expression] = STATE(3298), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_type_descriptor] = STATE(3142), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(2008), + [aux_sym__type_definition_type_repeat1] = STATE(1531), + [aux_sym_sized_type_specifier_repeat1] = STATE(1733), + [sym_identifier] = ACTIONS(2028), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -84659,9 +79900,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(2386), - [anon_sym_LBRACK] = ACTIONS(2374), + [anon_sym___extension__] = ACTIONS(2030), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_constexpr] = ACTIONS(2030), + [anon_sym_volatile] = ACTIONS(2030), + [anon_sym_restrict] = ACTIONS(2030), + [anon_sym___restrict__] = ACTIONS(2030), + [anon_sym__Atomic] = ACTIONS(2030), + [anon_sym__Noreturn] = ACTIONS(2030), + [anon_sym_noreturn] = ACTIONS(2030), + [anon_sym_alignas] = ACTIONS(2034), + [anon_sym__Alignas] = ACTIONS(2034), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2042), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -84674,7 +79931,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(97), [anon_sym_asm] = ACTIONS(99), [anon_sym___asm__] = ACTIONS(99), - [anon_sym_DOT] = ACTIONS(2376), [sym_number_literal] = ACTIONS(167), [anon_sym_L_SQUOTE] = ACTIONS(103), [anon_sym_u_SQUOTE] = ACTIONS(103), @@ -84692,37 +79948,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [601] = { - [sym_expression] = STATE(1605), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_initializer_list] = STATE(2926), - [sym_initializer_pair] = STATE(2926), - [sym_subscript_designator] = STATE(2298), - [sym_subscript_range_designator] = STATE(2298), - [sym_field_designator] = STATE(2298), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_initializer_pair_repeat1] = STATE(2298), - [sym_identifier] = ACTIONS(2368), + [542] = { + [sym_identifier] = ACTIONS(1298), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym___scanf] = ACTIONS(1298), + [anon_sym___printf] = ACTIONS(1298), + [anon_sym___read_mostly] = ACTIONS(1298), + [anon_sym___must_hold] = ACTIONS(1298), + [anon_sym___ro_after_init] = ACTIONS(1298), + [anon_sym___noreturn] = ACTIONS(1298), + [anon_sym___cold] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [anon_sym_alignas] = ACTIONS(1298), + [anon_sym__Alignas] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(5), + }, + [543] = { + [sym_identifier] = ACTIONS(1302), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym___scanf] = ACTIONS(1302), + [anon_sym___printf] = ACTIONS(1302), + [anon_sym___read_mostly] = ACTIONS(1302), + [anon_sym___must_hold] = ACTIONS(1302), + [anon_sym___ro_after_init] = ACTIONS(1302), + [anon_sym___noreturn] = ACTIONS(1302), + [anon_sym___cold] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [anon_sym_alignas] = ACTIONS(1302), + [anon_sym__Alignas] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), + [sym_comment] = ACTIONS(5), + }, + [544] = { + [sym_expression] = STATE(1022), + [sym__string] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_assignment_expression] = STATE(1069), + [sym_pointer_expression] = STATE(1072), + [sym_unary_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_update_expression] = STATE(1069), + [sym_cast_expression] = STATE(1069), + [sym_sizeof_expression] = STATE(1069), + [sym_alignof_expression] = STATE(1069), + [sym_offsetof_expression] = STATE(1069), + [sym_generic_expression] = STATE(1069), + [sym_subscript_expression] = STATE(1072), + [sym_call_expression] = STATE(1072), + [sym_gnu_asm_expression] = STATE(1069), + [sym_field_expression] = STATE(1072), + [sym_compound_literal_expression] = STATE(1069), + [sym_parenthesized_expression] = STATE(1072), + [sym_initializer_list] = STATE(1087), + [sym_char_literal] = STATE(1069), + [sym_concatenated_string] = STATE(1069), + [sym_string_literal] = STATE(913), + [sym_null] = STATE(1069), + [sym_identifier] = ACTIONS(2064), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(2066), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1544), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_PIPE_PIPE] = ACTIONS(1538), + [anon_sym_AMP_AMP] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1544), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym___attribute__] = ACTIONS(1544), + [anon_sym___scanf] = ACTIONS(1544), + [anon_sym___printf] = ACTIONS(1544), + [anon_sym___read_mostly] = ACTIONS(1544), + [anon_sym___must_hold] = ACTIONS(1544), + [anon_sym___ro_after_init] = ACTIONS(1544), + [anon_sym___noreturn] = ACTIONS(1544), + [anon_sym___cold] = ACTIONS(1544), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_QMARK] = ACTIONS(1538), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_sizeof] = ACTIONS(2070), + [anon_sym___alignof__] = ACTIONS(1550), + [anon_sym___alignof] = ACTIONS(1550), + [anon_sym__alignof] = ACTIONS(1550), + [anon_sym_alignof] = ACTIONS(1550), + [anon_sym__Alignof] = ACTIONS(1550), + [anon_sym_offsetof] = ACTIONS(1552), + [anon_sym__Generic] = ACTIONS(1554), + [anon_sym_asm] = ACTIONS(1556), + [anon_sym___asm__] = ACTIONS(1556), + [anon_sym_DOT] = ACTIONS(1544), + [anon_sym_DASH_GT] = ACTIONS(1538), + [sym_number_literal] = ACTIONS(1558), + [anon_sym_L_SQUOTE] = ACTIONS(1560), + [anon_sym_u_SQUOTE] = ACTIONS(1560), + [anon_sym_U_SQUOTE] = ACTIONS(1560), + [anon_sym_u8_SQUOTE] = ACTIONS(1560), + [anon_sym_SQUOTE] = ACTIONS(1560), + [anon_sym_L_DQUOTE] = ACTIONS(1562), + [anon_sym_u_DQUOTE] = ACTIONS(1562), + [anon_sym_U_DQUOTE] = ACTIONS(1562), + [anon_sym_u8_DQUOTE] = ACTIONS(1562), + [anon_sym_DQUOTE] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [anon_sym_NULL] = ACTIONS(1566), + [anon_sym_nullptr] = ACTIONS(1566), + [sym_comment] = ACTIONS(5), + }, + [545] = { + [sym_type_qualifier] = STATE(1531), + [sym_alignas_qualifier] = STATE(1695), + [sym_type_specifier] = STATE(1705), + [sym_sized_type_specifier] = STATE(2008), + [sym_enum_specifier] = STATE(2008), + [sym_struct_specifier] = STATE(2008), + [sym_union_specifier] = STATE(2008), + [sym_expression] = STATE(1661), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_type_descriptor] = STATE(3134), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(2008), + [aux_sym__type_definition_type_repeat1] = STATE(1531), + [aux_sym_sized_type_specifier_repeat1] = STATE(1733), + [sym_identifier] = ACTIONS(2028), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -84731,9 +80270,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(2388), - [anon_sym_LBRACK] = ACTIONS(2374), + [anon_sym___extension__] = ACTIONS(2030), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_constexpr] = ACTIONS(2030), + [anon_sym_volatile] = ACTIONS(2030), + [anon_sym_restrict] = ACTIONS(2030), + [anon_sym___restrict__] = ACTIONS(2030), + [anon_sym__Atomic] = ACTIONS(2030), + [anon_sym__Noreturn] = ACTIONS(2030), + [anon_sym_noreturn] = ACTIONS(2030), + [anon_sym_alignas] = ACTIONS(2034), + [anon_sym__Alignas] = ACTIONS(2034), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2042), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -84746,7 +80301,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(97), [anon_sym_asm] = ACTIONS(99), [anon_sym___asm__] = ACTIONS(99), - [anon_sym_DOT] = ACTIONS(2376), [sym_number_literal] = ACTIONS(167), [anon_sym_L_SQUOTE] = ACTIONS(103), [anon_sym_u_SQUOTE] = ACTIONS(103), @@ -84764,253 +80318,594 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [602] = { - [sym_expression] = STATE(1605), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_initializer_list] = STATE(2926), - [sym_initializer_pair] = STATE(2926), - [sym_subscript_designator] = STATE(2298), - [sym_subscript_range_designator] = STATE(2298), - [sym_field_designator] = STATE(2298), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_initializer_pair_repeat1] = STATE(2298), - [sym_identifier] = ACTIONS(2368), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(2390), - [anon_sym_LBRACK] = ACTIONS(2374), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [anon_sym_DOT] = ACTIONS(2376), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [546] = { + [sym_preproc_def] = STATE(567), + [sym_preproc_function_def] = STATE(567), + [sym_preproc_call] = STATE(567), + [sym_preproc_if_in_field_declaration_list] = STATE(567), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(567), + [sym_preproc_else_in_field_declaration_list] = STATE(3227), + [sym_preproc_elif_in_field_declaration_list] = STATE(3227), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(3227), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1756), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2316), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(567), + [sym_macro_invocation] = STATE(567), + [sym_field_declaration] = STATE(567), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(567), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2076), + [aux_sym_preproc_if_token2] = ACTIONS(2078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2080), + [aux_sym_preproc_else_token1] = ACTIONS(2082), + [aux_sym_preproc_elif_token1] = ACTIONS(2084), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2086), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2086), + [sym_preproc_directive] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), [sym_comment] = ACTIONS(5), }, - [603] = { - [sym_expression] = STATE(1605), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_initializer_list] = STATE(2926), - [sym_initializer_pair] = STATE(2926), - [sym_subscript_designator] = STATE(2298), - [sym_subscript_range_designator] = STATE(2298), - [sym_field_designator] = STATE(2298), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_initializer_pair_repeat1] = STATE(2298), - [sym_identifier] = ACTIONS(2368), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(2392), - [anon_sym_LBRACK] = ACTIONS(2374), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [anon_sym_DOT] = ACTIONS(2376), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [547] = { + [sym_preproc_def] = STATE(546), + [sym_preproc_function_def] = STATE(546), + [sym_preproc_call] = STATE(546), + [sym_preproc_if_in_field_declaration_list] = STATE(546), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(546), + [sym_preproc_else_in_field_declaration_list] = STATE(3163), + [sym_preproc_elif_in_field_declaration_list] = STATE(3163), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(3163), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1756), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2316), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(546), + [sym_macro_invocation] = STATE(546), + [sym_field_declaration] = STATE(546), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(546), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2076), + [aux_sym_preproc_if_token2] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2080), + [aux_sym_preproc_else_token1] = ACTIONS(2082), + [aux_sym_preproc_elif_token1] = ACTIONS(2084), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2086), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2086), + [sym_preproc_directive] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), [sym_comment] = ACTIONS(5), }, - [604] = { - [sym_expression] = STATE(1605), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_initializer_list] = STATE(2926), - [sym_initializer_pair] = STATE(2926), - [sym_subscript_designator] = STATE(2298), - [sym_subscript_range_designator] = STATE(2298), - [sym_field_designator] = STATE(2298), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_initializer_pair_repeat1] = STATE(2298), - [sym_identifier] = ACTIONS(2368), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(2374), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [anon_sym_DOT] = ACTIONS(2376), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [548] = { + [sym_preproc_def] = STATE(567), + [sym_preproc_function_def] = STATE(567), + [sym_preproc_call] = STATE(567), + [sym_preproc_if_in_field_declaration_list] = STATE(567), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(567), + [sym_preproc_else_in_field_declaration_list] = STATE(3253), + [sym_preproc_elif_in_field_declaration_list] = STATE(3253), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(3253), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1756), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2316), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(567), + [sym_macro_invocation] = STATE(567), + [sym_field_declaration] = STATE(567), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(567), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2076), + [aux_sym_preproc_if_token2] = ACTIONS(2098), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2080), + [aux_sym_preproc_else_token1] = ACTIONS(2082), + [aux_sym_preproc_elif_token1] = ACTIONS(2084), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2086), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2086), + [sym_preproc_directive] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), [sym_comment] = ACTIONS(5), }, - [605] = { - [sym_expression] = STATE(1605), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_initializer_list] = STATE(2926), - [sym_initializer_pair] = STATE(2926), - [sym_subscript_designator] = STATE(2298), - [sym_subscript_range_designator] = STATE(2298), - [sym_field_designator] = STATE(2298), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_initializer_pair_repeat1] = STATE(2298), - [sym_identifier] = ACTIONS(2368), + [549] = { + [sym_preproc_def] = STATE(567), + [sym_preproc_function_def] = STATE(567), + [sym_preproc_call] = STATE(567), + [sym_preproc_if_in_field_declaration_list] = STATE(567), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(567), + [sym_preproc_else_in_field_declaration_list] = STATE(3160), + [sym_preproc_elif_in_field_declaration_list] = STATE(3160), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(3160), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1756), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2316), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(567), + [sym_macro_invocation] = STATE(567), + [sym_field_declaration] = STATE(567), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(567), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2076), + [aux_sym_preproc_if_token2] = ACTIONS(2100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2080), + [aux_sym_preproc_else_token1] = ACTIONS(2082), + [aux_sym_preproc_elif_token1] = ACTIONS(2084), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2086), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2086), + [sym_preproc_directive] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), + [sym_comment] = ACTIONS(5), + }, + [550] = { + [sym_preproc_def] = STATE(548), + [sym_preproc_function_def] = STATE(548), + [sym_preproc_call] = STATE(548), + [sym_preproc_if_in_field_declaration_list] = STATE(548), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(548), + [sym_preproc_else_in_field_declaration_list] = STATE(3226), + [sym_preproc_elif_in_field_declaration_list] = STATE(3226), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(3226), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1756), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2316), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(548), + [sym_macro_invocation] = STATE(548), + [sym_field_declaration] = STATE(548), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(548), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2076), + [aux_sym_preproc_if_token2] = ACTIONS(2102), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2080), + [aux_sym_preproc_else_token1] = ACTIONS(2082), + [aux_sym_preproc_elif_token1] = ACTIONS(2084), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2086), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2086), + [sym_preproc_directive] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), + [sym_comment] = ACTIONS(5), + }, + [551] = { + [sym_preproc_def] = STATE(554), + [sym_preproc_function_def] = STATE(554), + [sym_preproc_call] = STATE(554), + [sym_preproc_if_in_field_declaration_list] = STATE(554), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(554), + [sym_preproc_else_in_field_declaration_list] = STATE(3019), + [sym_preproc_elif_in_field_declaration_list] = STATE(3019), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(3019), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1756), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2316), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(554), + [sym_macro_invocation] = STATE(554), + [sym_field_declaration] = STATE(554), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(554), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2076), + [aux_sym_preproc_if_token2] = ACTIONS(2104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2080), + [aux_sym_preproc_else_token1] = ACTIONS(2082), + [aux_sym_preproc_elif_token1] = ACTIONS(2084), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2086), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2086), + [sym_preproc_directive] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), + [sym_comment] = ACTIONS(5), + }, + [552] = { + [sym_type_qualifier] = STATE(1531), + [sym_alignas_qualifier] = STATE(1695), + [sym_type_specifier] = STATE(1705), + [sym_sized_type_specifier] = STATE(2008), + [sym_enum_specifier] = STATE(2008), + [sym_struct_specifier] = STATE(2008), + [sym_union_specifier] = STATE(2008), + [sym_expression] = STATE(1667), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_type_descriptor] = STATE(3176), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(2008), + [aux_sym__type_definition_type_repeat1] = STATE(1531), + [aux_sym_sized_type_specifier_repeat1] = STATE(1733), + [sym_identifier] = ACTIONS(2028), [sym__linux_kernel_annotations] = ACTIONS(3), [anon_sym_LPAREN2] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -85019,9 +80914,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(2396), - [anon_sym_LBRACK] = ACTIONS(2374), + [anon_sym___extension__] = ACTIONS(2030), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_constexpr] = ACTIONS(2030), + [anon_sym_volatile] = ACTIONS(2030), + [anon_sym_restrict] = ACTIONS(2030), + [anon_sym___restrict__] = ACTIONS(2030), + [anon_sym__Atomic] = ACTIONS(2030), + [anon_sym__Noreturn] = ACTIONS(2030), + [anon_sym_noreturn] = ACTIONS(2030), + [anon_sym_alignas] = ACTIONS(2034), + [anon_sym__Alignas] = ACTIONS(2034), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2042), [anon_sym_DASH_DASH] = ACTIONS(89), [anon_sym_PLUS_PLUS] = ACTIONS(89), [anon_sym_sizeof] = ACTIONS(91), @@ -85034,7 +80945,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(97), [anon_sym_asm] = ACTIONS(99), [anon_sym___asm__] = ACTIONS(99), - [anon_sym_DOT] = ACTIONS(2376), [sym_number_literal] = ACTIONS(167), [anon_sym_L_SQUOTE] = ACTIONS(103), [anon_sym_u_SQUOTE] = ACTIONS(103), @@ -85052,29 +80962,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(109), [sym_comment] = ACTIONS(5), }, - [606] = { - [sym_function_definition] = STATE(156), - [sym_declaration] = STATE(156), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1718), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(882), - [sym_declaration_list] = STATE(156), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [sym_identifier] = ACTIONS(2398), - [sym__linux_kernel_annotations] = ACTIONS(3), + [553] = { + [sym_preproc_def] = STATE(557), + [sym_preproc_function_def] = STATE(557), + [sym_preproc_call] = STATE(557), + [sym_preproc_if_in_field_declaration_list] = STATE(557), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(557), + [sym_preproc_else_in_field_declaration_list] = STATE(3008), + [sym_preproc_elif_in_field_declaration_list] = STATE(3008), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(3008), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1756), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2316), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(557), + [sym_macro_invocation] = STATE(557), + [sym_field_declaration] = STATE(557), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(557), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2076), + [aux_sym_preproc_if_token2] = ACTIONS(2106), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2080), + [aux_sym_preproc_else_token1] = ACTIONS(2082), + [aux_sym_preproc_elif_token1] = ACTIONS(2084), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2086), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2086), + [sym_preproc_directive] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), [anon_sym___extension__] = ACTIONS(55), [anon_sym_extern] = ACTIONS(53), [anon_sym___attribute__] = ACTIONS(35), @@ -85085,19 +81022,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ro_after_init] = ACTIONS(39), [anon_sym___noreturn] = ACTIONS(39), [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), [anon_sym___declspec] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(2400), - [anon_sym___clrcall] = ACTIONS(2400), - [anon_sym___stdcall] = ACTIONS(2400), - [anon_sym___fastcall] = ACTIONS(2400), - [anon_sym___thiscall] = ACTIONS(2400), - [anon_sym___vectorcall] = ACTIONS(2400), - [anon_sym_LBRACE] = ACTIONS(2402), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), [anon_sym_static] = ACTIONS(53), [anon_sym_auto] = ACTIONS(53), [anon_sym_register] = ACTIONS(53), @@ -85117,35 +81048,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_noreturn] = ACTIONS(55), [anon_sym_alignas] = ACTIONS(57), [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(59), - [anon_sym_enum] = ACTIONS(61), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), [sym_comment] = ACTIONS(5), }, - [607] = { - [sym_function_definition] = STATE(366), - [sym_declaration] = STATE(366), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1709), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(883), - [sym_declaration_list] = STATE(366), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [sym_identifier] = ACTIONS(2398), - [sym__linux_kernel_annotations] = ACTIONS(3), + [554] = { + [sym_preproc_def] = STATE(567), + [sym_preproc_function_def] = STATE(567), + [sym_preproc_call] = STATE(567), + [sym_preproc_if_in_field_declaration_list] = STATE(567), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(567), + [sym_preproc_else_in_field_declaration_list] = STATE(3005), + [sym_preproc_elif_in_field_declaration_list] = STATE(3005), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(3005), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1756), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2316), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(567), + [sym_macro_invocation] = STATE(567), + [sym_field_declaration] = STATE(567), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(567), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2076), + [aux_sym_preproc_if_token2] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2080), + [aux_sym_preproc_else_token1] = ACTIONS(2082), + [aux_sym_preproc_elif_token1] = ACTIONS(2084), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2086), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2086), + [sym_preproc_directive] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), [anon_sym___extension__] = ACTIONS(55), [anon_sym_extern] = ACTIONS(53), [anon_sym___attribute__] = ACTIONS(35), @@ -85156,19 +81114,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ro_after_init] = ACTIONS(39), [anon_sym___noreturn] = ACTIONS(39), [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), [anon_sym___declspec] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(2400), - [anon_sym___clrcall] = ACTIONS(2400), - [anon_sym___stdcall] = ACTIONS(2400), - [anon_sym___fastcall] = ACTIONS(2400), - [anon_sym___thiscall] = ACTIONS(2400), - [anon_sym___vectorcall] = ACTIONS(2400), - [anon_sym_LBRACE] = ACTIONS(2404), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), [anon_sym_static] = ACTIONS(53), [anon_sym_auto] = ACTIONS(53), [anon_sym_register] = ACTIONS(53), @@ -85188,35 +81140,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_noreturn] = ACTIONS(55), [anon_sym_alignas] = ACTIONS(57), [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(59), - [anon_sym_enum] = ACTIONS(61), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), [sym_comment] = ACTIONS(5), }, - [608] = { - [sym_function_definition] = STATE(307), - [sym_declaration] = STATE(307), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1713), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(886), - [sym_declaration_list] = STATE(307), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [sym_identifier] = ACTIONS(2398), - [sym__linux_kernel_annotations] = ACTIONS(3), + [555] = { + [sym_preproc_def] = STATE(567), + [sym_preproc_function_def] = STATE(567), + [sym_preproc_call] = STATE(567), + [sym_preproc_if_in_field_declaration_list] = STATE(567), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(567), + [sym_preproc_else_in_field_declaration_list] = STATE(3023), + [sym_preproc_elif_in_field_declaration_list] = STATE(3023), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(3023), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1756), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2316), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(567), + [sym_macro_invocation] = STATE(567), + [sym_field_declaration] = STATE(567), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(567), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2076), + [aux_sym_preproc_if_token2] = ACTIONS(2110), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2080), + [aux_sym_preproc_else_token1] = ACTIONS(2082), + [aux_sym_preproc_elif_token1] = ACTIONS(2084), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2086), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2086), + [sym_preproc_directive] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), [anon_sym___extension__] = ACTIONS(55), [anon_sym_extern] = ACTIONS(53), [anon_sym___attribute__] = ACTIONS(35), @@ -85227,19 +81206,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ro_after_init] = ACTIONS(39), [anon_sym___noreturn] = ACTIONS(39), [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), [anon_sym___declspec] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(2400), - [anon_sym___clrcall] = ACTIONS(2400), - [anon_sym___stdcall] = ACTIONS(2400), - [anon_sym___fastcall] = ACTIONS(2400), - [anon_sym___thiscall] = ACTIONS(2400), - [anon_sym___vectorcall] = ACTIONS(2400), - [anon_sym_LBRACE] = ACTIONS(2406), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), [anon_sym_static] = ACTIONS(53), [anon_sym_auto] = ACTIONS(53), [anon_sym_register] = ACTIONS(53), @@ -85259,106 +81232,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_noreturn] = ACTIONS(55), [anon_sym_alignas] = ACTIONS(57), [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(59), - [anon_sym_enum] = ACTIONS(61), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), [sym_comment] = ACTIONS(5), }, - [609] = { - [sym_expression] = STATE(1605), - [sym__string] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1292), - [sym_unary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_alignof_expression] = STATE(1199), - [sym_offsetof_expression] = STATE(1199), - [sym_generic_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1292), - [sym_call_expression] = STATE(1292), - [sym_gnu_asm_expression] = STATE(1199), - [sym_field_expression] = STATE(1292), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1292), - [sym_initializer_list] = STATE(2926), - [sym_initializer_pair] = STATE(2926), - [sym_subscript_designator] = STATE(2298), - [sym_subscript_range_designator] = STATE(2298), - [sym_field_designator] = STATE(2298), - [sym_char_literal] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_string_literal] = STATE(944), - [sym_null] = STATE(1199), - [aux_sym_initializer_pair_repeat1] = STATE(2298), - [sym_identifier] = ACTIONS(2368), - [sym__linux_kernel_annotations] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2374), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_sizeof] = ACTIONS(91), - [anon_sym___alignof__] = ACTIONS(93), - [anon_sym___alignof] = ACTIONS(93), - [anon_sym__alignof] = ACTIONS(93), - [anon_sym_alignof] = ACTIONS(93), - [anon_sym__Alignof] = ACTIONS(93), - [anon_sym_offsetof] = ACTIONS(95), - [anon_sym__Generic] = ACTIONS(97), - [anon_sym_asm] = ACTIONS(99), - [anon_sym___asm__] = ACTIONS(99), - [anon_sym_DOT] = ACTIONS(2376), - [sym_number_literal] = ACTIONS(167), - [anon_sym_L_SQUOTE] = ACTIONS(103), - [anon_sym_u_SQUOTE] = ACTIONS(103), - [anon_sym_U_SQUOTE] = ACTIONS(103), - [anon_sym_u8_SQUOTE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_L_DQUOTE] = ACTIONS(105), - [anon_sym_u_DQUOTE] = ACTIONS(105), - [anon_sym_U_DQUOTE] = ACTIONS(105), - [anon_sym_u8_DQUOTE] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [anon_sym_NULL] = ACTIONS(109), - [anon_sym_nullptr] = ACTIONS(109), + [556] = { + [sym_preproc_def] = STATE(567), + [sym_preproc_function_def] = STATE(567), + [sym_preproc_call] = STATE(567), + [sym_preproc_if_in_field_declaration_list] = STATE(567), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(567), + [sym_preproc_else_in_field_declaration_list] = STATE(3248), + [sym_preproc_elif_in_field_declaration_list] = STATE(3248), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(3248), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1756), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2316), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(567), + [sym_macro_invocation] = STATE(567), + [sym_field_declaration] = STATE(567), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(567), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2076), + [aux_sym_preproc_if_token2] = ACTIONS(2112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2080), + [aux_sym_preproc_else_token1] = ACTIONS(2082), + [aux_sym_preproc_elif_token1] = ACTIONS(2084), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2086), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2086), + [sym_preproc_directive] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), [sym_comment] = ACTIONS(5), }, - [610] = { - [sym_function_definition] = STATE(393), - [sym_declaration] = STATE(393), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1705), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(874), - [sym_declaration_list] = STATE(393), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym_alignas_qualifier] = STATE(1036), - [sym_type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1122), - [sym_enum_specifier] = STATE(1122), - [sym_struct_specifier] = STATE(1122), - [sym_union_specifier] = STATE(1122), - [sym_macro_type_specifier] = STATE(1122), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(942), - [sym_identifier] = ACTIONS(2398), - [sym__linux_kernel_annotations] = ACTIONS(3), + [557] = { + [sym_preproc_def] = STATE(567), + [sym_preproc_function_def] = STATE(567), + [sym_preproc_call] = STATE(567), + [sym_preproc_if_in_field_declaration_list] = STATE(567), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(567), + [sym_preproc_else_in_field_declaration_list] = STATE(2994), + [sym_preproc_elif_in_field_declaration_list] = STATE(2994), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2994), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1756), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2316), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(567), + [sym_macro_invocation] = STATE(567), + [sym_field_declaration] = STATE(567), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(567), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2076), + [aux_sym_preproc_if_token2] = ACTIONS(2114), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2080), + [aux_sym_preproc_else_token1] = ACTIONS(2082), + [aux_sym_preproc_elif_token1] = ACTIONS(2084), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2086), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2086), + [sym_preproc_directive] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), [anon_sym___extension__] = ACTIONS(55), [anon_sym_extern] = ACTIONS(53), [anon_sym___attribute__] = ACTIONS(35), @@ -85369,19 +81390,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ro_after_init] = ACTIONS(39), [anon_sym___noreturn] = ACTIONS(39), [anon_sym___cold] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), [anon_sym___declspec] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(2400), - [anon_sym___clrcall] = ACTIONS(2400), - [anon_sym___stdcall] = ACTIONS(2400), - [anon_sym___fastcall] = ACTIONS(2400), - [anon_sym___thiscall] = ACTIONS(2400), - [anon_sym___vectorcall] = ACTIONS(2400), - [anon_sym_LBRACE] = ACTIONS(2408), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), [anon_sym_static] = ACTIONS(53), [anon_sym_auto] = ACTIONS(53), [anon_sym_register] = ACTIONS(53), @@ -85401,2297 +81416,5158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_noreturn] = ACTIONS(55), [anon_sym_alignas] = ACTIONS(57), [anon_sym__Alignas] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(59), - [anon_sym_enum] = ACTIONS(61), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), [sym_comment] = ACTIONS(5), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 26, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, - ACTIONS(95), 1, - anon_sym_offsetof, - ACTIONS(97), 1, - anon_sym__Generic, - ACTIONS(167), 1, - sym_number_literal, - ACTIONS(1570), 1, - anon_sym_LBRACE, - ACTIONS(2188), 1, - sym_identifier, - ACTIONS(2410), 1, - anon_sym_RPAREN, - ACTIONS(2412), 1, - anon_sym___extension__, - STATE(944), 1, - sym_string_literal, - STATE(1534), 1, - sym_expression, - STATE(2738), 1, - sym_compound_statement, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(93), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(103), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1292), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1199), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [117] = 26, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, - ACTIONS(95), 1, - anon_sym_offsetof, - ACTIONS(97), 1, - anon_sym__Generic, - ACTIONS(167), 1, - sym_number_literal, - ACTIONS(1570), 1, - anon_sym_LBRACE, - ACTIONS(2188), 1, - sym_identifier, - ACTIONS(2414), 1, - anon_sym_RPAREN, - ACTIONS(2416), 1, - anon_sym___extension__, - STATE(944), 1, - sym_string_literal, - STATE(1540), 1, - sym_expression, - STATE(2589), 1, - sym_compound_statement, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(93), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(103), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1292), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1199), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [234] = 26, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, - ACTIONS(95), 1, - anon_sym_offsetof, - ACTIONS(97), 1, - anon_sym__Generic, - ACTIONS(167), 1, - sym_number_literal, - ACTIONS(1570), 1, - anon_sym_LBRACE, - ACTIONS(2188), 1, - sym_identifier, - ACTIONS(2418), 1, - anon_sym_RPAREN, - ACTIONS(2420), 1, - anon_sym___extension__, - STATE(944), 1, - sym_string_literal, - STATE(1543), 1, - sym_expression, - STATE(2498), 1, - sym_compound_statement, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(93), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(103), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1292), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1199), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [351] = 26, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, - ACTIONS(95), 1, - anon_sym_offsetof, - ACTIONS(97), 1, - anon_sym__Generic, - ACTIONS(167), 1, - sym_number_literal, - ACTIONS(1570), 1, - anon_sym_LBRACE, - ACTIONS(2188), 1, - sym_identifier, - ACTIONS(2422), 1, - anon_sym_RPAREN, - ACTIONS(2424), 1, - anon_sym___extension__, - STATE(944), 1, - sym_string_literal, - STATE(1548), 1, - sym_expression, - STATE(2567), 1, - sym_compound_statement, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(93), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(103), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1292), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1199), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [468] = 25, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, - ACTIONS(95), 1, - anon_sym_offsetof, - ACTIONS(97), 1, - anon_sym__Generic, - ACTIONS(167), 1, - sym_number_literal, - ACTIONS(1570), 1, - anon_sym_LBRACE, - ACTIONS(2188), 1, - sym_identifier, - ACTIONS(2426), 1, - anon_sym___extension__, - STATE(944), 1, - sym_string_literal, - STATE(1604), 1, - sym_expression, - STATE(2921), 1, - sym_compound_statement, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(93), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(103), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1292), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1199), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [582] = 25, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___declspec, - ACTIONS(49), 1, - anon_sym_LBRACE, - ACTIONS(59), 1, - sym_primitive_type, - ACTIONS(61), 1, - anon_sym_enum, - ACTIONS(63), 1, - anon_sym_struct, - ACTIONS(65), 1, - anon_sym_union, - ACTIONS(1210), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, - sym_identifier, - STATE(377), 1, - sym_compound_statement, - STATE(939), 1, - sym_type_specifier, - STATE(942), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, - sym_alignas_qualifier, - STATE(1717), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(37), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(57), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(697), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(39), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(51), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1122), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(893), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(55), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(53), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [695] = 25, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___declspec, - ACTIONS(59), 1, - sym_primitive_type, - ACTIONS(61), 1, - anon_sym_enum, - ACTIONS(63), 1, - anon_sym_struct, - ACTIONS(65), 1, - anon_sym_union, - ACTIONS(463), 1, - anon_sym_LBRACE, - ACTIONS(1210), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, - sym_identifier, - STATE(318), 1, - sym_compound_statement, - STATE(939), 1, - sym_type_specifier, - STATE(942), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, - sym_alignas_qualifier, - STATE(1717), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(37), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(57), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(697), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(39), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(51), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1122), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(893), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(55), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(53), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [808] = 13, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2428), 1, - sym_identifier, - ACTIONS(2434), 1, - anon_sym_STAR, - ACTIONS(2442), 1, - anon_sym_LBRACK, - STATE(1747), 1, - sym_gnu_asm_expression, - ACTIONS(2432), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(2436), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(2438), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2444), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1742), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(2440), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(2430), 41, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - [897] = 24, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, - ACTIONS(95), 1, - anon_sym_offsetof, - ACTIONS(97), 1, - anon_sym__Generic, - ACTIONS(167), 1, - sym_number_literal, - ACTIONS(1806), 1, - anon_sym_LBRACE, - ACTIONS(2188), 1, - sym_identifier, - STATE(944), 1, - sym_string_literal, - STATE(1252), 1, - sym_initializer_list, - STATE(1270), 1, - sym_expression, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(93), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(103), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1292), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1199), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [1008] = 24, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, - ACTIONS(95), 1, - anon_sym_offsetof, - ACTIONS(97), 1, - anon_sym__Generic, - ACTIONS(167), 1, - sym_number_literal, - ACTIONS(2188), 1, - sym_identifier, - ACTIONS(2446), 1, - anon_sym_SEMI, - STATE(944), 1, - sym_string_literal, - STATE(1601), 1, - sym_expression, - STATE(3059), 1, - sym_comma_expression, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(93), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(103), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1292), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1199), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [1119] = 25, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___declspec, - ACTIONS(49), 1, - anon_sym_LBRACE, - ACTIONS(59), 1, - sym_primitive_type, - ACTIONS(61), 1, - anon_sym_enum, - ACTIONS(63), 1, - anon_sym_struct, - ACTIONS(65), 1, - anon_sym_union, - ACTIONS(1210), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, - sym_identifier, - STATE(381), 1, - sym_compound_statement, - STATE(939), 1, - sym_type_specifier, - STATE(942), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, - sym_alignas_qualifier, - STATE(1717), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(37), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(57), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(616), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(39), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(51), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1122), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(893), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(55), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(53), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [1232] = 25, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___declspec, - ACTIONS(59), 1, - sym_primitive_type, - ACTIONS(61), 1, - anon_sym_enum, - ACTIONS(63), 1, - anon_sym_struct, - ACTIONS(65), 1, - anon_sym_union, - ACTIONS(139), 1, - anon_sym_LBRACE, - ACTIONS(1210), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, - sym_identifier, - STATE(125), 1, - sym_compound_statement, - STATE(939), 1, - sym_type_specifier, - STATE(942), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, - sym_alignas_qualifier, - STATE(1717), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(37), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(57), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(697), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(39), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(51), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1122), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(893), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(55), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(53), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [1345] = 24, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, - ACTIONS(95), 1, - anon_sym_offsetof, - ACTIONS(97), 1, - anon_sym__Generic, - ACTIONS(167), 1, - sym_number_literal, - ACTIONS(2188), 1, - sym_identifier, - ACTIONS(2448), 1, - anon_sym_COLON, - STATE(944), 1, - sym_string_literal, - STATE(1590), 1, - sym_expression, - STATE(3011), 1, - sym_comma_expression, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(93), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(103), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1292), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1199), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [1456] = 25, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___declspec, - ACTIONS(59), 1, - sym_primitive_type, - ACTIONS(61), 1, - anon_sym_enum, - ACTIONS(63), 1, - anon_sym_struct, - ACTIONS(65), 1, - anon_sym_union, - ACTIONS(463), 1, - anon_sym_LBRACE, - ACTIONS(1210), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, - sym_identifier, - STATE(351), 1, - sym_compound_statement, - STATE(939), 1, - sym_type_specifier, - STATE(942), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, - sym_alignas_qualifier, - STATE(1717), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(37), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(57), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(697), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(39), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(51), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1122), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(893), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(55), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(53), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [1569] = 25, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___declspec, - ACTIONS(59), 1, - sym_primitive_type, - ACTIONS(61), 1, - anon_sym_enum, - ACTIONS(63), 1, - anon_sym_struct, - ACTIONS(65), 1, - anon_sym_union, - ACTIONS(393), 1, - anon_sym_LBRACE, - ACTIONS(1210), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, - sym_identifier, - STATE(309), 1, - sym_compound_statement, - STATE(939), 1, - sym_type_specifier, - STATE(942), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, - sym_alignas_qualifier, - STATE(1717), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(37), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(57), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(684), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(39), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(51), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1122), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(893), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(55), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(53), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [1682] = 25, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___declspec, - ACTIONS(59), 1, - sym_primitive_type, - ACTIONS(61), 1, - anon_sym_enum, - ACTIONS(63), 1, - anon_sym_struct, - ACTIONS(65), 1, - anon_sym_union, - ACTIONS(139), 1, - anon_sym_LBRACE, - ACTIONS(1210), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, - sym_identifier, - STATE(142), 1, - sym_compound_statement, - STATE(939), 1, - sym_type_specifier, - STATE(942), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, - sym_alignas_qualifier, - STATE(1717), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(37), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(57), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(661), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(39), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(51), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1122), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(893), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(55), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(53), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [1795] = 24, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, - ACTIONS(95), 1, - anon_sym_offsetof, - ACTIONS(97), 1, - anon_sym__Generic, - ACTIONS(167), 1, - sym_number_literal, - ACTIONS(2188), 1, - sym_identifier, - ACTIONS(2450), 1, - anon_sym_SEMI, - STATE(944), 1, - sym_string_literal, - STATE(1613), 1, - sym_expression, - STATE(3172), 1, - sym_comma_expression, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(93), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(103), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1292), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1199), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [1906] = 25, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___declspec, - ACTIONS(59), 1, - sym_primitive_type, - ACTIONS(61), 1, - anon_sym_enum, - ACTIONS(63), 1, - anon_sym_struct, - ACTIONS(65), 1, - anon_sym_union, - ACTIONS(463), 1, - anon_sym_LBRACE, - ACTIONS(1210), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, - sym_identifier, - STATE(322), 1, - sym_compound_statement, - STATE(939), 1, - sym_type_specifier, - STATE(942), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, - sym_alignas_qualifier, - STATE(1717), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(37), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(57), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(653), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(39), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(51), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1122), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(893), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(55), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(53), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [2019] = 24, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, - ACTIONS(95), 1, - anon_sym_offsetof, - ACTIONS(97), 1, - anon_sym__Generic, - ACTIONS(167), 1, - sym_number_literal, - ACTIONS(2188), 1, - sym_identifier, - ACTIONS(2452), 1, - anon_sym_SEMI, - STATE(944), 1, - sym_string_literal, - STATE(1611), 1, - sym_expression, - STATE(3171), 1, - sym_comma_expression, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(93), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(103), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1292), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1199), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [2130] = 25, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___declspec, - ACTIONS(1210), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2055), 1, - sym_primitive_type, - ACTIONS(2057), 1, - anon_sym_enum, - ACTIONS(2059), 1, - anon_sym_struct, - ACTIONS(2061), 1, - anon_sym_union, - ACTIONS(2103), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2276), 1, - sym_identifier, - ACTIONS(2454), 1, - anon_sym_RPAREN, - STATE(1012), 1, - sym_type_specifier, - STATE(1036), 1, - sym_alignas_qualifier, - STATE(1090), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1808), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(37), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(57), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2578), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(39), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(2053), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1371), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(891), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(55), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(53), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [2243] = 24, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, - ACTIONS(95), 1, - anon_sym_offsetof, - ACTIONS(97), 1, - anon_sym__Generic, - ACTIONS(167), 1, - sym_number_literal, - ACTIONS(2188), 1, - sym_identifier, - ACTIONS(2456), 1, - anon_sym_RPAREN, - STATE(944), 1, - sym_string_literal, - STATE(1622), 1, - sym_expression, - STATE(3222), 1, - sym_comma_expression, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(93), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(103), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1292), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1199), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [2354] = 25, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___declspec, - ACTIONS(1210), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2055), 1, - sym_primitive_type, - ACTIONS(2057), 1, - anon_sym_enum, - ACTIONS(2059), 1, - anon_sym_struct, - ACTIONS(2061), 1, - anon_sym_union, - ACTIONS(2103), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2276), 1, - sym_identifier, - ACTIONS(2458), 1, - anon_sym_RPAREN, - STATE(1012), 1, - sym_type_specifier, - STATE(1036), 1, - sym_alignas_qualifier, - STATE(1090), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1808), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(37), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(57), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2643), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(39), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(2053), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1371), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(891), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(55), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(53), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [2467] = 26, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___declspec, - ACTIONS(1210), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2055), 1, - sym_primitive_type, - ACTIONS(2057), 1, - anon_sym_enum, - ACTIONS(2059), 1, - anon_sym_struct, - ACTIONS(2061), 1, - anon_sym_union, - ACTIONS(2103), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2460), 1, - sym_identifier, - ACTIONS(2462), 1, - anon_sym_RPAREN, - STATE(1012), 1, - sym_type_specifier, - STATE(1036), 1, - sym_alignas_qualifier, - STATE(1090), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1808), 1, - sym__declaration_specifiers, - STATE(2460), 1, - sym_variadic_parameter, - STATE(2578), 1, - sym_parameter_declaration, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(37), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(57), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(39), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(2053), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1371), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(891), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(55), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(53), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [2582] = 24, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, - ACTIONS(95), 1, - anon_sym_offsetof, - ACTIONS(97), 1, - anon_sym__Generic, - ACTIONS(167), 1, - sym_number_literal, - ACTIONS(1806), 1, - anon_sym_LBRACE, - ACTIONS(2188), 1, - sym_identifier, - STATE(944), 1, - sym_string_literal, - STATE(1593), 1, - sym_expression, - STATE(2869), 1, - sym_initializer_list, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(93), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(103), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1292), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1199), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [2693] = 24, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, - ACTIONS(95), 1, - anon_sym_offsetof, - ACTIONS(97), 1, - anon_sym__Generic, - ACTIONS(167), 1, - sym_number_literal, - ACTIONS(2188), 1, - sym_identifier, - ACTIONS(2464), 1, - anon_sym_SEMI, - STATE(944), 1, - sym_string_literal, - STATE(1568), 1, - sym_expression, - STATE(3187), 1, - sym_comma_expression, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(93), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(103), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1292), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1199), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [2804] = 24, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1544), 1, - anon_sym_LBRACE, - ACTIONS(1546), 1, - anon_sym_sizeof, - ACTIONS(1550), 1, - anon_sym_offsetof, - ACTIONS(1552), 1, - anon_sym__Generic, - ACTIONS(1556), 1, - sym_number_literal, - ACTIONS(2466), 1, - sym_identifier, - ACTIONS(2468), 1, - anon_sym_LPAREN2, - STATE(987), 1, - sym_string_literal, - STATE(1136), 1, - sym_expression, - STATE(1234), 1, - sym_initializer_list, - ACTIONS(1540), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1542), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1554), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1560), 2, - sym_true, - sym_false, - ACTIONS(1562), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2470), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2472), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1548), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1558), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1205), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1200), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [2915] = 24, + [558] = { + [sym_preproc_def] = STATE(567), + [sym_preproc_function_def] = STATE(567), + [sym_preproc_call] = STATE(567), + [sym_preproc_if_in_field_declaration_list] = STATE(567), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(567), + [sym_preproc_else_in_field_declaration_list] = STATE(3218), + [sym_preproc_elif_in_field_declaration_list] = STATE(3218), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(3218), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1756), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2316), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(567), + [sym_macro_invocation] = STATE(567), + [sym_field_declaration] = STATE(567), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(567), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2076), + [aux_sym_preproc_if_token2] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2080), + [aux_sym_preproc_else_token1] = ACTIONS(2082), + [aux_sym_preproc_elif_token1] = ACTIONS(2084), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2086), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2086), + [sym_preproc_directive] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), + [sym_comment] = ACTIONS(5), + }, + [559] = { + [sym_preproc_def] = STATE(549), + [sym_preproc_function_def] = STATE(549), + [sym_preproc_call] = STATE(549), + [sym_preproc_if_in_field_declaration_list] = STATE(549), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(549), + [sym_preproc_else_in_field_declaration_list] = STATE(3020), + [sym_preproc_elif_in_field_declaration_list] = STATE(3020), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(3020), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1756), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2316), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(549), + [sym_macro_invocation] = STATE(549), + [sym_field_declaration] = STATE(549), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(549), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2076), + [aux_sym_preproc_if_token2] = ACTIONS(2118), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2080), + [aux_sym_preproc_else_token1] = ACTIONS(2082), + [aux_sym_preproc_elif_token1] = ACTIONS(2084), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2086), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2086), + [sym_preproc_directive] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), + [sym_comment] = ACTIONS(5), + }, + [560] = { + [sym_preproc_def] = STATE(556), + [sym_preproc_function_def] = STATE(556), + [sym_preproc_call] = STATE(556), + [sym_preproc_if_in_field_declaration_list] = STATE(556), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(556), + [sym_preproc_else_in_field_declaration_list] = STATE(3216), + [sym_preproc_elif_in_field_declaration_list] = STATE(3216), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(3216), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1756), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2316), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(556), + [sym_macro_invocation] = STATE(556), + [sym_field_declaration] = STATE(556), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(556), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2076), + [aux_sym_preproc_if_token2] = ACTIONS(2120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2080), + [aux_sym_preproc_else_token1] = ACTIONS(2082), + [aux_sym_preproc_elif_token1] = ACTIONS(2084), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2086), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2086), + [sym_preproc_directive] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), + [sym_comment] = ACTIONS(5), + }, + [561] = { + [sym_type_qualifier] = STATE(1531), + [sym_alignas_qualifier] = STATE(1695), + [sym_type_specifier] = STATE(1705), + [sym_sized_type_specifier] = STATE(2008), + [sym_enum_specifier] = STATE(2008), + [sym_struct_specifier] = STATE(2008), + [sym_union_specifier] = STATE(2008), + [sym_expression] = STATE(1664), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_type_descriptor] = STATE(3090), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(2008), + [aux_sym__type_definition_type_repeat1] = STATE(1531), + [aux_sym_sized_type_specifier_repeat1] = STATE(1733), + [sym_identifier] = ACTIONS(2028), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym___extension__] = ACTIONS(2030), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_constexpr] = ACTIONS(2030), + [anon_sym_volatile] = ACTIONS(2030), + [anon_sym_restrict] = ACTIONS(2030), + [anon_sym___restrict__] = ACTIONS(2030), + [anon_sym__Atomic] = ACTIONS(2030), + [anon_sym__Noreturn] = ACTIONS(2030), + [anon_sym_noreturn] = ACTIONS(2030), + [anon_sym_alignas] = ACTIONS(2034), + [anon_sym__Alignas] = ACTIONS(2034), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2042), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [562] = { + [sym_type_qualifier] = STATE(1531), + [sym_alignas_qualifier] = STATE(1695), + [sym_type_specifier] = STATE(1705), + [sym_sized_type_specifier] = STATE(2008), + [sym_enum_specifier] = STATE(2008), + [sym_struct_specifier] = STATE(2008), + [sym_union_specifier] = STATE(2008), + [sym_expression] = STATE(1682), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_type_descriptor] = STATE(3391), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(2008), + [aux_sym__type_definition_type_repeat1] = STATE(1531), + [aux_sym_sized_type_specifier_repeat1] = STATE(1733), + [sym_identifier] = ACTIONS(2028), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym___extension__] = ACTIONS(2030), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_constexpr] = ACTIONS(2030), + [anon_sym_volatile] = ACTIONS(2030), + [anon_sym_restrict] = ACTIONS(2030), + [anon_sym___restrict__] = ACTIONS(2030), + [anon_sym__Atomic] = ACTIONS(2030), + [anon_sym__Noreturn] = ACTIONS(2030), + [anon_sym_noreturn] = ACTIONS(2030), + [anon_sym_alignas] = ACTIONS(2034), + [anon_sym__Alignas] = ACTIONS(2034), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2042), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [563] = { + [sym_type_qualifier] = STATE(1531), + [sym_alignas_qualifier] = STATE(1695), + [sym_type_specifier] = STATE(1705), + [sym_sized_type_specifier] = STATE(2008), + [sym_enum_specifier] = STATE(2008), + [sym_struct_specifier] = STATE(2008), + [sym_union_specifier] = STATE(2008), + [sym_expression] = STATE(1649), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_type_descriptor] = STATE(3474), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_macro_type_specifier] = STATE(2008), + [aux_sym__type_definition_type_repeat1] = STATE(1531), + [aux_sym_sized_type_specifier_repeat1] = STATE(1733), + [sym_identifier] = ACTIONS(2028), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym___extension__] = ACTIONS(2030), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_constexpr] = ACTIONS(2030), + [anon_sym_volatile] = ACTIONS(2030), + [anon_sym_restrict] = ACTIONS(2030), + [anon_sym___restrict__] = ACTIONS(2030), + [anon_sym__Atomic] = ACTIONS(2030), + [anon_sym__Noreturn] = ACTIONS(2030), + [anon_sym_noreturn] = ACTIONS(2030), + [anon_sym_alignas] = ACTIONS(2034), + [anon_sym__Alignas] = ACTIONS(2034), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2042), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [564] = { + [sym_preproc_def] = STATE(558), + [sym_preproc_function_def] = STATE(558), + [sym_preproc_call] = STATE(558), + [sym_preproc_if_in_field_declaration_list] = STATE(558), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(558), + [sym_preproc_else_in_field_declaration_list] = STATE(3201), + [sym_preproc_elif_in_field_declaration_list] = STATE(3201), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(3201), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1756), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2316), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(558), + [sym_macro_invocation] = STATE(558), + [sym_field_declaration] = STATE(558), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(558), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2076), + [aux_sym_preproc_if_token2] = ACTIONS(2122), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2080), + [aux_sym_preproc_else_token1] = ACTIONS(2082), + [aux_sym_preproc_elif_token1] = ACTIONS(2084), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2086), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2086), + [sym_preproc_directive] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), + [sym_comment] = ACTIONS(5), + }, + [565] = { + [sym_preproc_def] = STATE(555), + [sym_preproc_function_def] = STATE(555), + [sym_preproc_call] = STATE(555), + [sym_preproc_if_in_field_declaration_list] = STATE(555), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), + [sym_preproc_else_in_field_declaration_list] = STATE(3295), + [sym_preproc_elif_in_field_declaration_list] = STATE(3295), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(3295), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1756), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2316), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(555), + [sym_macro_invocation] = STATE(555), + [sym_field_declaration] = STATE(555), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2076), + [aux_sym_preproc_if_token2] = ACTIONS(2124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2080), + [aux_sym_preproc_else_token1] = ACTIONS(2082), + [aux_sym_preproc_elif_token1] = ACTIONS(2084), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2086), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2086), + [sym_preproc_directive] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), + [sym_comment] = ACTIONS(5), + }, + [566] = { + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1877), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym_macro_modifier] = STATE(1986), + [sym_ms_call_modifier] = STATE(1789), + [sym__declarator] = STATE(2292), + [sym__abstract_declarator] = STATE(2490), + [sym_parenthesized_declarator] = STATE(2220), + [sym_abstract_parenthesized_declarator] = STATE(2396), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_abstract_pointer_declarator] = STATE(2396), + [sym_function_declarator] = STATE(2220), + [sym_abstract_function_declarator] = STATE(2396), + [sym_array_declarator] = STATE(2220), + [sym_abstract_array_declarator] = STATE(2396), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym_variadic_parameter] = STATE(2762), + [sym_parameter_list] = STATE(2397), + [sym_parameter_declaration] = STATE(2762), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2126), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1208), + [anon_sym_RPAREN] = ACTIONS(2128), + [anon_sym_LPAREN2] = ACTIONS(2130), + [anon_sym_STAR] = ACTIONS(2132), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(2094), + [anon_sym___init] = ACTIONS(2134), + [anon_sym___exit] = ACTIONS(2134), + [anon_sym___cdecl] = ACTIONS(2136), + [anon_sym___clrcall] = ACTIONS(2136), + [anon_sym___stdcall] = ACTIONS(2136), + [anon_sym___fastcall] = ACTIONS(2136), + [anon_sym___thiscall] = ACTIONS(2136), + [anon_sym___vectorcall] = ACTIONS(2136), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), + [sym_comment] = ACTIONS(5), + }, + [567] = { + [sym_preproc_def] = STATE(567), + [sym_preproc_function_def] = STATE(567), + [sym_preproc_call] = STATE(567), + [sym_preproc_if_in_field_declaration_list] = STATE(567), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(567), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1756), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2316), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(567), + [sym_macro_invocation] = STATE(567), + [sym_field_declaration] = STATE(567), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(567), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2140), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2143), + [aux_sym_preproc_if_token1] = ACTIONS(2146), + [aux_sym_preproc_if_token2] = ACTIONS(2149), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2151), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2151), + [aux_sym_preproc_else_token1] = ACTIONS(2149), + [aux_sym_preproc_elif_token1] = ACTIONS(2149), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2149), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2149), + [sym_preproc_directive] = ACTIONS(2154), + [anon_sym_LPAREN2] = ACTIONS(2157), + [anon_sym_STAR] = ACTIONS(2160), + [anon_sym___extension__] = ACTIONS(2163), + [anon_sym_extern] = ACTIONS(2166), + [anon_sym___attribute__] = ACTIONS(2169), + [anon_sym___scanf] = ACTIONS(2172), + [anon_sym___printf] = ACTIONS(2172), + [anon_sym___read_mostly] = ACTIONS(2175), + [anon_sym___must_hold] = ACTIONS(2169), + [anon_sym___ro_after_init] = ACTIONS(2175), + [anon_sym___noreturn] = ACTIONS(2175), + [anon_sym___cold] = ACTIONS(2175), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2178), + [anon_sym___declspec] = ACTIONS(2181), + [anon_sym___based] = ACTIONS(2184), + [anon_sym_signed] = ACTIONS(2187), + [anon_sym_unsigned] = ACTIONS(2187), + [anon_sym_long] = ACTIONS(2187), + [anon_sym_short] = ACTIONS(2187), + [anon_sym_static] = ACTIONS(2166), + [anon_sym_auto] = ACTIONS(2166), + [anon_sym_register] = ACTIONS(2166), + [anon_sym_inline] = ACTIONS(2166), + [anon_sym___inline] = ACTIONS(2166), + [anon_sym___inline__] = ACTIONS(2166), + [anon_sym___forceinline] = ACTIONS(2166), + [anon_sym_thread_local] = ACTIONS(2166), + [anon_sym___thread] = ACTIONS(2166), + [anon_sym_const] = ACTIONS(2163), + [anon_sym_constexpr] = ACTIONS(2163), + [anon_sym_volatile] = ACTIONS(2163), + [anon_sym_restrict] = ACTIONS(2163), + [anon_sym___restrict__] = ACTIONS(2163), + [anon_sym__Atomic] = ACTIONS(2163), + [anon_sym__Noreturn] = ACTIONS(2163), + [anon_sym_noreturn] = ACTIONS(2163), + [anon_sym_alignas] = ACTIONS(2190), + [anon_sym__Alignas] = ACTIONS(2190), + [sym_primitive_type] = ACTIONS(2193), + [anon_sym_enum] = ACTIONS(2196), + [anon_sym_struct] = ACTIONS(2199), + [anon_sym_union] = ACTIONS(2202), + [sym_comment] = ACTIONS(5), + }, + [568] = { + [sym_expression] = STATE(1160), + [sym__string] = STATE(1225), + [sym_conditional_expression] = STATE(1225), + [sym_assignment_expression] = STATE(1225), + [sym_pointer_expression] = STATE(1205), + [sym_unary_expression] = STATE(1225), + [sym_binary_expression] = STATE(1225), + [sym_update_expression] = STATE(1225), + [sym_cast_expression] = STATE(1225), + [sym_sizeof_expression] = STATE(1225), + [sym_alignof_expression] = STATE(1225), + [sym_offsetof_expression] = STATE(1225), + [sym_generic_expression] = STATE(1225), + [sym_subscript_expression] = STATE(1205), + [sym_call_expression] = STATE(1205), + [sym_gnu_asm_expression] = STATE(1225), + [sym_field_expression] = STATE(1205), + [sym_compound_literal_expression] = STATE(1225), + [sym_parenthesized_expression] = STATE(1205), + [sym_initializer_list] = STATE(1211), + [sym_char_literal] = STATE(1225), + [sym_concatenated_string] = STATE(1225), + [sym_string_literal] = STATE(993), + [sym_null] = STATE(1225), + [sym_identifier] = ACTIONS(1544), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1538), + [aux_sym_preproc_if_token2] = ACTIONS(1538), + [aux_sym_preproc_else_token1] = ACTIONS(1538), + [aux_sym_preproc_elif_token1] = ACTIONS(1544), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1538), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(2205), + [anon_sym_TILDE] = ACTIONS(2207), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1544), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_PIPE_PIPE] = ACTIONS(1538), + [anon_sym_AMP_AMP] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1544), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_QMARK] = ACTIONS(1538), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_sizeof] = ACTIONS(2209), + [anon_sym___alignof__] = ACTIONS(1583), + [anon_sym___alignof] = ACTIONS(1583), + [anon_sym__alignof] = ACTIONS(1583), + [anon_sym_alignof] = ACTIONS(1583), + [anon_sym__Alignof] = ACTIONS(1583), + [anon_sym_offsetof] = ACTIONS(1585), + [anon_sym__Generic] = ACTIONS(1587), + [anon_sym_asm] = ACTIONS(1589), + [anon_sym___asm__] = ACTIONS(1589), + [anon_sym_DOT] = ACTIONS(1544), + [anon_sym_DASH_GT] = ACTIONS(1538), + [sym_number_literal] = ACTIONS(1591), + [anon_sym_L_SQUOTE] = ACTIONS(1593), + [anon_sym_u_SQUOTE] = ACTIONS(1593), + [anon_sym_U_SQUOTE] = ACTIONS(1593), + [anon_sym_u8_SQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1593), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(1595), + [sym_false] = ACTIONS(1595), + [anon_sym_NULL] = ACTIONS(1597), + [anon_sym_nullptr] = ACTIONS(1597), + [sym_comment] = ACTIONS(5), + }, + [569] = { + [sym_expression] = STATE(1296), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_initializer_list] = STATE(1212), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_identifier] = ACTIONS(2211), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1544), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_PIPE_PIPE] = ACTIONS(1538), + [anon_sym_AMP_AMP] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1544), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1743), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_COLON] = ACTIONS(1538), + [anon_sym_QMARK] = ACTIONS(1538), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(1544), + [anon_sym_DASH_GT] = ACTIONS(1538), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [570] = { + [sym_string_literal] = STATE(891), + [aux_sym_sized_type_specifier_repeat1] = STATE(1134), + [sym_identifier] = ACTIONS(1983), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(2006), + [anon_sym_RPAREN] = ACTIONS(2006), + [anon_sym_LPAREN2] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_PLUS] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_SLASH] = ACTIONS(1991), + [anon_sym_PERCENT] = ACTIONS(1991), + [anon_sym_PIPE_PIPE] = ACTIONS(1985), + [anon_sym_AMP_AMP] = ACTIONS(1985), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_CARET] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym_EQ_EQ] = ACTIONS(1985), + [anon_sym_BANG_EQ] = ACTIONS(1985), + [anon_sym_GT] = ACTIONS(1991), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym___extension__] = ACTIONS(1983), + [anon_sym_extern] = ACTIONS(1983), + [anon_sym___attribute__] = ACTIONS(1983), + [anon_sym___scanf] = ACTIONS(1983), + [anon_sym___printf] = ACTIONS(1983), + [anon_sym___read_mostly] = ACTIONS(1983), + [anon_sym___must_hold] = ACTIONS(1983), + [anon_sym___ro_after_init] = ACTIONS(1983), + [anon_sym___noreturn] = ACTIONS(1983), + [anon_sym___cold] = ACTIONS(1983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1996), + [anon_sym___declspec] = ACTIONS(1983), + [anon_sym___based] = ACTIONS(1983), + [anon_sym_signed] = ACTIONS(2217), + [anon_sym_unsigned] = ACTIONS(2217), + [anon_sym_long] = ACTIONS(2217), + [anon_sym_short] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(1993), + [anon_sym_static] = ACTIONS(1983), + [anon_sym_EQ] = ACTIONS(2000), + [anon_sym_auto] = ACTIONS(1983), + [anon_sym_register] = ACTIONS(1983), + [anon_sym_inline] = ACTIONS(1983), + [anon_sym___inline] = ACTIONS(1983), + [anon_sym___inline__] = ACTIONS(1983), + [anon_sym___forceinline] = ACTIONS(1983), + [anon_sym_thread_local] = ACTIONS(1983), + [anon_sym___thread] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1983), + [anon_sym_constexpr] = ACTIONS(1983), + [anon_sym_volatile] = ACTIONS(1983), + [anon_sym_restrict] = ACTIONS(1983), + [anon_sym___restrict__] = ACTIONS(1983), + [anon_sym__Atomic] = ACTIONS(1983), + [anon_sym__Noreturn] = ACTIONS(1983), + [anon_sym_noreturn] = ACTIONS(1983), + [anon_sym_alignas] = ACTIONS(1983), + [anon_sym__Alignas] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1985), + [anon_sym_STAR_EQ] = ACTIONS(2004), + [anon_sym_SLASH_EQ] = ACTIONS(2004), + [anon_sym_PERCENT_EQ] = ACTIONS(2004), + [anon_sym_PLUS_EQ] = ACTIONS(2004), + [anon_sym_DASH_EQ] = ACTIONS(2004), + [anon_sym_LT_LT_EQ] = ACTIONS(2004), + [anon_sym_GT_GT_EQ] = ACTIONS(2004), + [anon_sym_AMP_EQ] = ACTIONS(2004), + [anon_sym_CARET_EQ] = ACTIONS(2004), + [anon_sym_PIPE_EQ] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_PLUS_PLUS] = ACTIONS(1985), + [anon_sym_DOT] = ACTIONS(1985), + [anon_sym_DASH_GT] = ACTIONS(1985), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_comment] = ACTIONS(5), + }, + [571] = { + [sym_preproc_def] = STATE(589), + [sym_preproc_function_def] = STATE(589), + [sym_preproc_call] = STATE(589), + [sym_preproc_if_in_field_declaration_list] = STATE(589), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(589), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1764), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2311), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(589), + [sym_macro_invocation] = STATE(589), + [sym_field_declaration] = STATE(589), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(589), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2219), + [aux_sym_preproc_if_token1] = ACTIONS(2221), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2223), + [sym_preproc_directive] = ACTIONS(2225), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), + [sym_comment] = ACTIONS(5), + }, + [572] = { + [sym_preproc_def] = STATE(572), + [sym_preproc_function_def] = STATE(572), + [sym_preproc_call] = STATE(572), + [sym_preproc_if_in_field_declaration_list] = STATE(572), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(572), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1764), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2311), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(572), + [sym_macro_invocation] = STATE(572), + [sym_field_declaration] = STATE(572), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(572), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2140), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2229), + [aux_sym_preproc_if_token1] = ACTIONS(2232), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2235), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2235), + [sym_preproc_directive] = ACTIONS(2238), + [anon_sym_LPAREN2] = ACTIONS(2157), + [anon_sym_STAR] = ACTIONS(2160), + [anon_sym___extension__] = ACTIONS(2163), + [anon_sym_extern] = ACTIONS(2166), + [anon_sym___attribute__] = ACTIONS(2169), + [anon_sym___scanf] = ACTIONS(2172), + [anon_sym___printf] = ACTIONS(2172), + [anon_sym___read_mostly] = ACTIONS(2175), + [anon_sym___must_hold] = ACTIONS(2169), + [anon_sym___ro_after_init] = ACTIONS(2175), + [anon_sym___noreturn] = ACTIONS(2175), + [anon_sym___cold] = ACTIONS(2175), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2178), + [anon_sym___declspec] = ACTIONS(2181), + [anon_sym___based] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2241), + [anon_sym_signed] = ACTIONS(2187), + [anon_sym_unsigned] = ACTIONS(2187), + [anon_sym_long] = ACTIONS(2187), + [anon_sym_short] = ACTIONS(2187), + [anon_sym_static] = ACTIONS(2166), + [anon_sym_auto] = ACTIONS(2166), + [anon_sym_register] = ACTIONS(2166), + [anon_sym_inline] = ACTIONS(2166), + [anon_sym___inline] = ACTIONS(2166), + [anon_sym___inline__] = ACTIONS(2166), + [anon_sym___forceinline] = ACTIONS(2166), + [anon_sym_thread_local] = ACTIONS(2166), + [anon_sym___thread] = ACTIONS(2166), + [anon_sym_const] = ACTIONS(2163), + [anon_sym_constexpr] = ACTIONS(2163), + [anon_sym_volatile] = ACTIONS(2163), + [anon_sym_restrict] = ACTIONS(2163), + [anon_sym___restrict__] = ACTIONS(2163), + [anon_sym__Atomic] = ACTIONS(2163), + [anon_sym__Noreturn] = ACTIONS(2163), + [anon_sym_noreturn] = ACTIONS(2163), + [anon_sym_alignas] = ACTIONS(2190), + [anon_sym__Alignas] = ACTIONS(2190), + [sym_primitive_type] = ACTIONS(2193), + [anon_sym_enum] = ACTIONS(2196), + [anon_sym_struct] = ACTIONS(2199), + [anon_sym_union] = ACTIONS(2202), + [sym_comment] = ACTIONS(5), + }, + [573] = { + [sym_preproc_def] = STATE(572), + [sym_preproc_function_def] = STATE(572), + [sym_preproc_call] = STATE(572), + [sym_preproc_if_in_field_declaration_list] = STATE(572), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(572), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1764), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2311), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(572), + [sym_macro_invocation] = STATE(572), + [sym_field_declaration] = STATE(572), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(572), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2219), + [aux_sym_preproc_if_token1] = ACTIONS(2221), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2223), + [sym_preproc_directive] = ACTIONS(2225), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), + [sym_comment] = ACTIONS(5), + }, + [574] = { + [sym_preproc_def] = STATE(572), + [sym_preproc_function_def] = STATE(572), + [sym_preproc_call] = STATE(572), + [sym_preproc_if_in_field_declaration_list] = STATE(572), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(572), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1764), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2311), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(572), + [sym_macro_invocation] = STATE(572), + [sym_field_declaration] = STATE(572), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(572), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2219), + [aux_sym_preproc_if_token1] = ACTIONS(2221), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2223), + [sym_preproc_directive] = ACTIONS(2225), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2245), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), + [sym_comment] = ACTIONS(5), + }, + [575] = { + [sym_preproc_def] = STATE(587), + [sym_preproc_function_def] = STATE(587), + [sym_preproc_call] = STATE(587), + [sym_preproc_if_in_field_declaration_list] = STATE(587), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(587), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1764), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2311), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(587), + [sym_macro_invocation] = STATE(587), + [sym_field_declaration] = STATE(587), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(587), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2219), + [aux_sym_preproc_if_token1] = ACTIONS(2221), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2223), + [sym_preproc_directive] = ACTIONS(2225), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2247), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), + [sym_comment] = ACTIONS(5), + }, + [576] = { + [sym_preproc_def] = STATE(573), + [sym_preproc_function_def] = STATE(573), + [sym_preproc_call] = STATE(573), + [sym_preproc_if_in_field_declaration_list] = STATE(573), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(573), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1764), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2311), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(573), + [sym_macro_invocation] = STATE(573), + [sym_field_declaration] = STATE(573), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(573), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2219), + [aux_sym_preproc_if_token1] = ACTIONS(2221), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2223), + [sym_preproc_directive] = ACTIONS(2225), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2249), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), + [sym_comment] = ACTIONS(5), + }, + [577] = { + [sym_preproc_def] = STATE(572), + [sym_preproc_function_def] = STATE(572), + [sym_preproc_call] = STATE(572), + [sym_preproc_if_in_field_declaration_list] = STATE(572), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(572), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1764), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2311), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(572), + [sym_macro_invocation] = STATE(572), + [sym_field_declaration] = STATE(572), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(572), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2219), + [aux_sym_preproc_if_token1] = ACTIONS(2221), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2223), + [sym_preproc_directive] = ACTIONS(2225), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2251), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), + [sym_comment] = ACTIONS(5), + }, + [578] = { + [sym_preproc_def] = STATE(572), + [sym_preproc_function_def] = STATE(572), + [sym_preproc_call] = STATE(572), + [sym_preproc_if_in_field_declaration_list] = STATE(572), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(572), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1764), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2311), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(572), + [sym_macro_invocation] = STATE(572), + [sym_field_declaration] = STATE(572), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(572), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2219), + [aux_sym_preproc_if_token1] = ACTIONS(2221), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2223), + [sym_preproc_directive] = ACTIONS(2225), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2253), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), + [sym_comment] = ACTIONS(5), + }, + [579] = { + [sym_preproc_def] = STATE(574), + [sym_preproc_function_def] = STATE(574), + [sym_preproc_call] = STATE(574), + [sym_preproc_if_in_field_declaration_list] = STATE(574), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(574), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1764), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2311), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(574), + [sym_macro_invocation] = STATE(574), + [sym_field_declaration] = STATE(574), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(574), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2219), + [aux_sym_preproc_if_token1] = ACTIONS(2221), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2223), + [sym_preproc_directive] = ACTIONS(2225), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2255), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), + [sym_comment] = ACTIONS(5), + }, + [580] = { + [sym_preproc_def] = STATE(577), + [sym_preproc_function_def] = STATE(577), + [sym_preproc_call] = STATE(577), + [sym_preproc_if_in_field_declaration_list] = STATE(577), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(577), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1764), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2311), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(577), + [sym_macro_invocation] = STATE(577), + [sym_field_declaration] = STATE(577), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(577), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2219), + [aux_sym_preproc_if_token1] = ACTIONS(2221), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2223), + [sym_preproc_directive] = ACTIONS(2225), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2257), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), + [sym_comment] = ACTIONS(5), + }, + [581] = { + [sym_preproc_def] = STATE(572), + [sym_preproc_function_def] = STATE(572), + [sym_preproc_call] = STATE(572), + [sym_preproc_if_in_field_declaration_list] = STATE(572), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(572), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1764), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2311), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(572), + [sym_macro_invocation] = STATE(572), + [sym_field_declaration] = STATE(572), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(572), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2219), + [aux_sym_preproc_if_token1] = ACTIONS(2221), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2223), + [sym_preproc_directive] = ACTIONS(2225), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), + [sym_comment] = ACTIONS(5), + }, + [582] = { + [sym_preproc_def] = STATE(585), + [sym_preproc_function_def] = STATE(585), + [sym_preproc_call] = STATE(585), + [sym_preproc_if_in_field_declaration_list] = STATE(585), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(585), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1749), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2302), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(585), + [sym_macro_invocation] = STATE(585), + [sym_field_declaration] = STATE(585), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(585), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2261), + [aux_sym_preproc_if_token1] = ACTIONS(2263), + [aux_sym_preproc_if_token2] = ACTIONS(2265), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2267), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2267), + [sym_preproc_directive] = ACTIONS(2269), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), + [sym_comment] = ACTIONS(5), + }, + [583] = { + [sym_preproc_def] = STATE(582), + [sym_preproc_function_def] = STATE(582), + [sym_preproc_call] = STATE(582), + [sym_preproc_if_in_field_declaration_list] = STATE(582), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(582), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1749), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2302), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(582), + [sym_macro_invocation] = STATE(582), + [sym_field_declaration] = STATE(582), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(582), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2261), + [aux_sym_preproc_if_token1] = ACTIONS(2263), + [aux_sym_preproc_if_token2] = ACTIONS(2271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2267), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2267), + [sym_preproc_directive] = ACTIONS(2269), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), + [sym_comment] = ACTIONS(5), + }, + [584] = { + [sym_preproc_def] = STATE(586), + [sym_preproc_function_def] = STATE(586), + [sym_preproc_call] = STATE(586), + [sym_preproc_if_in_field_declaration_list] = STATE(586), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(586), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1764), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2311), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(586), + [sym_macro_invocation] = STATE(586), + [sym_field_declaration] = STATE(586), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(586), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2219), + [aux_sym_preproc_if_token1] = ACTIONS(2221), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2223), + [sym_preproc_directive] = ACTIONS(2225), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2273), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), + [sym_comment] = ACTIONS(5), + }, + [585] = { + [sym_preproc_def] = STATE(585), + [sym_preproc_function_def] = STATE(585), + [sym_preproc_call] = STATE(585), + [sym_preproc_if_in_field_declaration_list] = STATE(585), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(585), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1749), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2302), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(585), + [sym_macro_invocation] = STATE(585), + [sym_field_declaration] = STATE(585), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(585), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2140), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2275), + [aux_sym_preproc_if_token1] = ACTIONS(2278), + [aux_sym_preproc_if_token2] = ACTIONS(2149), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2281), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2281), + [sym_preproc_directive] = ACTIONS(2284), + [anon_sym_LPAREN2] = ACTIONS(2157), + [anon_sym_STAR] = ACTIONS(2160), + [anon_sym___extension__] = ACTIONS(2163), + [anon_sym_extern] = ACTIONS(2166), + [anon_sym___attribute__] = ACTIONS(2169), + [anon_sym___scanf] = ACTIONS(2172), + [anon_sym___printf] = ACTIONS(2172), + [anon_sym___read_mostly] = ACTIONS(2175), + [anon_sym___must_hold] = ACTIONS(2169), + [anon_sym___ro_after_init] = ACTIONS(2175), + [anon_sym___noreturn] = ACTIONS(2175), + [anon_sym___cold] = ACTIONS(2175), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2178), + [anon_sym___declspec] = ACTIONS(2181), + [anon_sym___based] = ACTIONS(2184), + [anon_sym_signed] = ACTIONS(2187), + [anon_sym_unsigned] = ACTIONS(2187), + [anon_sym_long] = ACTIONS(2187), + [anon_sym_short] = ACTIONS(2187), + [anon_sym_static] = ACTIONS(2166), + [anon_sym_auto] = ACTIONS(2166), + [anon_sym_register] = ACTIONS(2166), + [anon_sym_inline] = ACTIONS(2166), + [anon_sym___inline] = ACTIONS(2166), + [anon_sym___inline__] = ACTIONS(2166), + [anon_sym___forceinline] = ACTIONS(2166), + [anon_sym_thread_local] = ACTIONS(2166), + [anon_sym___thread] = ACTIONS(2166), + [anon_sym_const] = ACTIONS(2163), + [anon_sym_constexpr] = ACTIONS(2163), + [anon_sym_volatile] = ACTIONS(2163), + [anon_sym_restrict] = ACTIONS(2163), + [anon_sym___restrict__] = ACTIONS(2163), + [anon_sym__Atomic] = ACTIONS(2163), + [anon_sym__Noreturn] = ACTIONS(2163), + [anon_sym_noreturn] = ACTIONS(2163), + [anon_sym_alignas] = ACTIONS(2190), + [anon_sym__Alignas] = ACTIONS(2190), + [sym_primitive_type] = ACTIONS(2193), + [anon_sym_enum] = ACTIONS(2196), + [anon_sym_struct] = ACTIONS(2199), + [anon_sym_union] = ACTIONS(2202), + [sym_comment] = ACTIONS(5), + }, + [586] = { + [sym_preproc_def] = STATE(572), + [sym_preproc_function_def] = STATE(572), + [sym_preproc_call] = STATE(572), + [sym_preproc_if_in_field_declaration_list] = STATE(572), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(572), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1764), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2311), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(572), + [sym_macro_invocation] = STATE(572), + [sym_field_declaration] = STATE(572), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(572), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2219), + [aux_sym_preproc_if_token1] = ACTIONS(2221), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2223), + [sym_preproc_directive] = ACTIONS(2225), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2287), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), + [sym_comment] = ACTIONS(5), + }, + [587] = { + [sym_preproc_def] = STATE(572), + [sym_preproc_function_def] = STATE(572), + [sym_preproc_call] = STATE(572), + [sym_preproc_if_in_field_declaration_list] = STATE(572), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(572), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1764), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2311), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(572), + [sym_macro_invocation] = STATE(572), + [sym_field_declaration] = STATE(572), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(572), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2219), + [aux_sym_preproc_if_token1] = ACTIONS(2221), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2223), + [sym_preproc_directive] = ACTIONS(2225), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2289), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), + [sym_comment] = ACTIONS(5), + }, + [588] = { + [sym_preproc_def] = STATE(581), + [sym_preproc_function_def] = STATE(581), + [sym_preproc_call] = STATE(581), + [sym_preproc_if_in_field_declaration_list] = STATE(581), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(581), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1764), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2311), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(581), + [sym_macro_invocation] = STATE(581), + [sym_field_declaration] = STATE(581), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(581), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2219), + [aux_sym_preproc_if_token1] = ACTIONS(2221), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2223), + [sym_preproc_directive] = ACTIONS(2225), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2291), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), + [sym_comment] = ACTIONS(5), + }, + [589] = { + [sym_preproc_def] = STATE(572), + [sym_preproc_function_def] = STATE(572), + [sym_preproc_call] = STATE(572), + [sym_preproc_if_in_field_declaration_list] = STATE(572), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(572), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1764), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2311), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(572), + [sym_macro_invocation] = STATE(572), + [sym_field_declaration] = STATE(572), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(572), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2219), + [aux_sym_preproc_if_token1] = ACTIONS(2221), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2223), + [sym_preproc_directive] = ACTIONS(2225), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2293), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), + [sym_comment] = ACTIONS(5), + }, + [590] = { + [sym_preproc_def] = STATE(578), + [sym_preproc_function_def] = STATE(578), + [sym_preproc_call] = STATE(578), + [sym_preproc_if_in_field_declaration_list] = STATE(578), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(578), + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1764), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_ms_based_modifier] = STATE(3453), + [sym__declarator] = STATE(2311), + [sym_parenthesized_declarator] = STATE(2220), + [sym_attributed_declarator] = STATE(2220), + [sym_pointer_declarator] = STATE(2220), + [sym_function_declarator] = STATE(2220), + [sym_array_declarator] = STATE(2220), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym__field_declaration_list_item] = STATE(578), + [sym_macro_invocation] = STATE(578), + [sym_field_declaration] = STATE(578), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(578), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2072), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2219), + [aux_sym_preproc_if_token1] = ACTIONS(2221), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2223), + [sym_preproc_directive] = ACTIONS(2225), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2295), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), + [sym_comment] = ACTIONS(5), + }, + [591] = { + [sym_expression] = STATE(1367), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1410), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1410), + [sym_call_expression] = STATE(1410), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1410), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1410), + [sym_initializer_list] = STATE(1212), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [sym_identifier] = ACTIONS(2297), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(2299), + [anon_sym_TILDE] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1544), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_PIPE_PIPE] = ACTIONS(1538), + [anon_sym_AMP_AMP] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1544), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_RBRACK] = ACTIONS(1538), + [anon_sym_QMARK] = ACTIONS(1538), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_sizeof] = ACTIONS(2303), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(1544), + [anon_sym_DASH_GT] = ACTIONS(1538), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [592] = { + [sym__declaration_modifiers] = STATE(896), + [sym__declaration_specifiers] = STATE(1877), + [sym_attribute_specifier] = STATE(896), + [sym_attribute_declaration] = STATE(896), + [sym_ms_declspec_modifier] = STATE(896), + [sym_macro_modifier] = STATE(2253), + [sym_ms_call_modifier] = STATE(2153), + [sym__abstract_declarator] = STATE(2490), + [sym_abstract_parenthesized_declarator] = STATE(2396), + [sym_abstract_pointer_declarator] = STATE(2396), + [sym_abstract_function_declarator] = STATE(2396), + [sym_abstract_array_declarator] = STATE(2396), + [sym_storage_class_specifier] = STATE(896), + [sym_type_qualifier] = STATE(896), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(1034), + [sym_sized_type_specifier] = STATE(1408), + [sym_enum_specifier] = STATE(1408), + [sym_struct_specifier] = STATE(1408), + [sym_union_specifier] = STATE(1408), + [sym_variadic_parameter] = STATE(2762), + [sym_parameter_list] = STATE(2397), + [sym_parameter_declaration] = STATE(2762), + [sym_macro_type_specifier] = STATE(1408), + [aux_sym__declaration_specifiers_repeat1] = STATE(896), + [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2305), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1208), + [anon_sym_RPAREN] = ACTIONS(2128), + [anon_sym_LPAREN2] = ACTIONS(2307), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___init] = ACTIONS(2311), + [anon_sym___exit] = ACTIONS(2311), + [anon_sym___cdecl] = ACTIONS(2313), + [anon_sym___clrcall] = ACTIONS(2313), + [anon_sym___stdcall] = ACTIONS(2313), + [anon_sym___fastcall] = ACTIONS(2313), + [anon_sym___thiscall] = ACTIONS(2313), + [anon_sym___vectorcall] = ACTIONS(2313), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1224), + [sym_comment] = ACTIONS(5), + }, + [593] = { + [sym_type_qualifier] = STATE(599), + [sym_alignas_qualifier] = STATE(1010), + [sym_expression] = STATE(1670), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1410), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1410), + [sym_call_expression] = STATE(1410), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1410), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1410), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_array_declarator_repeat1] = STATE(599), + [sym_identifier] = ACTIONS(2297), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(2315), + [anon_sym_BANG] = ACTIONS(2301), + [anon_sym_TILDE] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_PLUS] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(2317), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym___extension__] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2323), + [anon_sym_RBRACK] = ACTIONS(2325), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_constexpr] = ACTIONS(2321), + [anon_sym_volatile] = ACTIONS(2321), + [anon_sym_restrict] = ACTIONS(2321), + [anon_sym___restrict__] = ACTIONS(2321), + [anon_sym__Atomic] = ACTIONS(2321), + [anon_sym__Noreturn] = ACTIONS(2321), + [anon_sym_noreturn] = ACTIONS(2321), + [anon_sym_alignas] = ACTIONS(2327), + [anon_sym__Alignas] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2329), + [anon_sym_PLUS_PLUS] = ACTIONS(2329), + [anon_sym_sizeof] = ACTIONS(2303), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [594] = { + [sym_type_qualifier] = STATE(943), + [sym_alignas_qualifier] = STATE(1010), + [sym_expression] = STATE(1673), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1410), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1410), + [sym_call_expression] = STATE(1410), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1410), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1410), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_array_declarator_repeat1] = STATE(943), + [sym_identifier] = ACTIONS(2297), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(2315), + [anon_sym_BANG] = ACTIONS(2301), + [anon_sym_TILDE] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_PLUS] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(2331), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym___extension__] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2333), + [anon_sym_RBRACK] = ACTIONS(2335), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_constexpr] = ACTIONS(2321), + [anon_sym_volatile] = ACTIONS(2321), + [anon_sym_restrict] = ACTIONS(2321), + [anon_sym___restrict__] = ACTIONS(2321), + [anon_sym__Atomic] = ACTIONS(2321), + [anon_sym__Noreturn] = ACTIONS(2321), + [anon_sym_noreturn] = ACTIONS(2321), + [anon_sym_alignas] = ACTIONS(2327), + [anon_sym__Alignas] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2329), + [anon_sym_PLUS_PLUS] = ACTIONS(2329), + [anon_sym_sizeof] = ACTIONS(2303), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [595] = { + [sym_type_qualifier] = STATE(598), + [sym_alignas_qualifier] = STATE(1010), + [sym_expression] = STATE(1645), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1410), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1410), + [sym_call_expression] = STATE(1410), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1410), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1410), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_array_declarator_repeat1] = STATE(598), + [sym_identifier] = ACTIONS(2297), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(2315), + [anon_sym_BANG] = ACTIONS(2301), + [anon_sym_TILDE] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_PLUS] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(2337), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym___extension__] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2339), + [anon_sym_RBRACK] = ACTIONS(2341), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_constexpr] = ACTIONS(2321), + [anon_sym_volatile] = ACTIONS(2321), + [anon_sym_restrict] = ACTIONS(2321), + [anon_sym___restrict__] = ACTIONS(2321), + [anon_sym__Atomic] = ACTIONS(2321), + [anon_sym__Noreturn] = ACTIONS(2321), + [anon_sym_noreturn] = ACTIONS(2321), + [anon_sym_alignas] = ACTIONS(2327), + [anon_sym__Alignas] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2329), + [anon_sym_PLUS_PLUS] = ACTIONS(2329), + [anon_sym_sizeof] = ACTIONS(2303), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [596] = { + [sym_type_qualifier] = STATE(943), + [sym_alignas_qualifier] = STATE(1010), + [sym_expression] = STATE(1676), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1410), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1410), + [sym_call_expression] = STATE(1410), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1410), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1410), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_array_declarator_repeat1] = STATE(943), + [sym_identifier] = ACTIONS(2297), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(2315), + [anon_sym_BANG] = ACTIONS(2301), + [anon_sym_TILDE] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_PLUS] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(2343), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym___extension__] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2333), + [anon_sym_RBRACK] = ACTIONS(2345), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_constexpr] = ACTIONS(2321), + [anon_sym_volatile] = ACTIONS(2321), + [anon_sym_restrict] = ACTIONS(2321), + [anon_sym___restrict__] = ACTIONS(2321), + [anon_sym__Atomic] = ACTIONS(2321), + [anon_sym__Noreturn] = ACTIONS(2321), + [anon_sym_noreturn] = ACTIONS(2321), + [anon_sym_alignas] = ACTIONS(2327), + [anon_sym__Alignas] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2329), + [anon_sym_PLUS_PLUS] = ACTIONS(2329), + [anon_sym_sizeof] = ACTIONS(2303), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [597] = { + [sym_type_qualifier] = STATE(606), + [sym_alignas_qualifier] = STATE(1010), + [sym_expression] = STATE(1677), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1410), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1410), + [sym_call_expression] = STATE(1410), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1410), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1410), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_array_declarator_repeat1] = STATE(606), + [sym_identifier] = ACTIONS(2297), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(2315), + [anon_sym_BANG] = ACTIONS(2301), + [anon_sym_TILDE] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_PLUS] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(2347), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym___extension__] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2349), + [anon_sym_RBRACK] = ACTIONS(2351), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_constexpr] = ACTIONS(2321), + [anon_sym_volatile] = ACTIONS(2321), + [anon_sym_restrict] = ACTIONS(2321), + [anon_sym___restrict__] = ACTIONS(2321), + [anon_sym__Atomic] = ACTIONS(2321), + [anon_sym__Noreturn] = ACTIONS(2321), + [anon_sym_noreturn] = ACTIONS(2321), + [anon_sym_alignas] = ACTIONS(2327), + [anon_sym__Alignas] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2329), + [anon_sym_PLUS_PLUS] = ACTIONS(2329), + [anon_sym_sizeof] = ACTIONS(2303), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [598] = { + [sym_type_qualifier] = STATE(943), + [sym_alignas_qualifier] = STATE(1010), + [sym_expression] = STATE(1646), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1410), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1410), + [sym_call_expression] = STATE(1410), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1410), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1410), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_array_declarator_repeat1] = STATE(943), + [sym_identifier] = ACTIONS(2297), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(2315), + [anon_sym_BANG] = ACTIONS(2301), + [anon_sym_TILDE] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_PLUS] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym___extension__] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2333), + [anon_sym_RBRACK] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_constexpr] = ACTIONS(2321), + [anon_sym_volatile] = ACTIONS(2321), + [anon_sym_restrict] = ACTIONS(2321), + [anon_sym___restrict__] = ACTIONS(2321), + [anon_sym__Atomic] = ACTIONS(2321), + [anon_sym__Noreturn] = ACTIONS(2321), + [anon_sym_noreturn] = ACTIONS(2321), + [anon_sym_alignas] = ACTIONS(2327), + [anon_sym__Alignas] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2329), + [anon_sym_PLUS_PLUS] = ACTIONS(2329), + [anon_sym_sizeof] = ACTIONS(2303), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [599] = { + [sym_type_qualifier] = STATE(943), + [sym_alignas_qualifier] = STATE(1010), + [sym_expression] = STATE(1666), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1410), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1410), + [sym_call_expression] = STATE(1410), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1410), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1410), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_array_declarator_repeat1] = STATE(943), + [sym_identifier] = ACTIONS(2297), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(2315), + [anon_sym_BANG] = ACTIONS(2301), + [anon_sym_TILDE] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_PLUS] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym___extension__] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2333), + [anon_sym_RBRACK] = ACTIONS(2359), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_constexpr] = ACTIONS(2321), + [anon_sym_volatile] = ACTIONS(2321), + [anon_sym_restrict] = ACTIONS(2321), + [anon_sym___restrict__] = ACTIONS(2321), + [anon_sym__Atomic] = ACTIONS(2321), + [anon_sym__Noreturn] = ACTIONS(2321), + [anon_sym_noreturn] = ACTIONS(2321), + [anon_sym_alignas] = ACTIONS(2327), + [anon_sym__Alignas] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2329), + [anon_sym_PLUS_PLUS] = ACTIONS(2329), + [anon_sym_sizeof] = ACTIONS(2303), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [600] = { + [sym_type_qualifier] = STATE(594), + [sym_alignas_qualifier] = STATE(1010), + [sym_expression] = STATE(1675), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1410), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1410), + [sym_call_expression] = STATE(1410), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1410), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1410), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_array_declarator_repeat1] = STATE(594), + [sym_identifier] = ACTIONS(2297), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(2315), + [anon_sym_BANG] = ACTIONS(2301), + [anon_sym_TILDE] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_PLUS] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(2361), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym___extension__] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2363), + [anon_sym_RBRACK] = ACTIONS(2365), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_constexpr] = ACTIONS(2321), + [anon_sym_volatile] = ACTIONS(2321), + [anon_sym_restrict] = ACTIONS(2321), + [anon_sym___restrict__] = ACTIONS(2321), + [anon_sym__Atomic] = ACTIONS(2321), + [anon_sym__Noreturn] = ACTIONS(2321), + [anon_sym_noreturn] = ACTIONS(2321), + [anon_sym_alignas] = ACTIONS(2327), + [anon_sym__Alignas] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2329), + [anon_sym_PLUS_PLUS] = ACTIONS(2329), + [anon_sym_sizeof] = ACTIONS(2303), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [601] = { + [sym_type_qualifier] = STATE(943), + [sym_alignas_qualifier] = STATE(1010), + [sym_expression] = STATE(1679), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1410), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1410), + [sym_call_expression] = STATE(1410), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1410), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1410), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_array_declarator_repeat1] = STATE(943), + [sym_identifier] = ACTIONS(2297), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(2315), + [anon_sym_BANG] = ACTIONS(2301), + [anon_sym_TILDE] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_PLUS] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym___extension__] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2333), + [anon_sym_RBRACK] = ACTIONS(2369), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_constexpr] = ACTIONS(2321), + [anon_sym_volatile] = ACTIONS(2321), + [anon_sym_restrict] = ACTIONS(2321), + [anon_sym___restrict__] = ACTIONS(2321), + [anon_sym__Atomic] = ACTIONS(2321), + [anon_sym__Noreturn] = ACTIONS(2321), + [anon_sym_noreturn] = ACTIONS(2321), + [anon_sym_alignas] = ACTIONS(2327), + [anon_sym__Alignas] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2329), + [anon_sym_PLUS_PLUS] = ACTIONS(2329), + [anon_sym_sizeof] = ACTIONS(2303), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [602] = { + [sym_type_qualifier] = STATE(601), + [sym_alignas_qualifier] = STATE(1010), + [sym_expression] = STATE(1653), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1410), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1410), + [sym_call_expression] = STATE(1410), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1410), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1410), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_array_declarator_repeat1] = STATE(601), + [sym_identifier] = ACTIONS(2297), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(2315), + [anon_sym_BANG] = ACTIONS(2301), + [anon_sym_TILDE] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_PLUS] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(2371), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym___extension__] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2373), + [anon_sym_RBRACK] = ACTIONS(2375), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_constexpr] = ACTIONS(2321), + [anon_sym_volatile] = ACTIONS(2321), + [anon_sym_restrict] = ACTIONS(2321), + [anon_sym___restrict__] = ACTIONS(2321), + [anon_sym__Atomic] = ACTIONS(2321), + [anon_sym__Noreturn] = ACTIONS(2321), + [anon_sym_noreturn] = ACTIONS(2321), + [anon_sym_alignas] = ACTIONS(2327), + [anon_sym__Alignas] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2329), + [anon_sym_PLUS_PLUS] = ACTIONS(2329), + [anon_sym_sizeof] = ACTIONS(2303), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [603] = { + [sym_type_qualifier] = STATE(596), + [sym_alignas_qualifier] = STATE(1010), + [sym_expression] = STATE(1678), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1410), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1410), + [sym_call_expression] = STATE(1410), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1410), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1410), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_array_declarator_repeat1] = STATE(596), + [sym_identifier] = ACTIONS(2297), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(2315), + [anon_sym_BANG] = ACTIONS(2301), + [anon_sym_TILDE] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_PLUS] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(2377), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym___extension__] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2379), + [anon_sym_RBRACK] = ACTIONS(2381), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_constexpr] = ACTIONS(2321), + [anon_sym_volatile] = ACTIONS(2321), + [anon_sym_restrict] = ACTIONS(2321), + [anon_sym___restrict__] = ACTIONS(2321), + [anon_sym__Atomic] = ACTIONS(2321), + [anon_sym__Noreturn] = ACTIONS(2321), + [anon_sym_noreturn] = ACTIONS(2321), + [anon_sym_alignas] = ACTIONS(2327), + [anon_sym__Alignas] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2329), + [anon_sym_PLUS_PLUS] = ACTIONS(2329), + [anon_sym_sizeof] = ACTIONS(2303), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [604] = { + [sym_type_qualifier] = STATE(605), + [sym_alignas_qualifier] = STATE(1010), + [sym_expression] = STATE(1681), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1410), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1410), + [sym_call_expression] = STATE(1410), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1410), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1410), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_array_declarator_repeat1] = STATE(605), + [sym_identifier] = ACTIONS(2297), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(2315), + [anon_sym_BANG] = ACTIONS(2301), + [anon_sym_TILDE] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_PLUS] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(2383), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym___extension__] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2385), + [anon_sym_RBRACK] = ACTIONS(2387), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_constexpr] = ACTIONS(2321), + [anon_sym_volatile] = ACTIONS(2321), + [anon_sym_restrict] = ACTIONS(2321), + [anon_sym___restrict__] = ACTIONS(2321), + [anon_sym__Atomic] = ACTIONS(2321), + [anon_sym__Noreturn] = ACTIONS(2321), + [anon_sym_noreturn] = ACTIONS(2321), + [anon_sym_alignas] = ACTIONS(2327), + [anon_sym__Alignas] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2329), + [anon_sym_PLUS_PLUS] = ACTIONS(2329), + [anon_sym_sizeof] = ACTIONS(2303), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [605] = { + [sym_type_qualifier] = STATE(943), + [sym_alignas_qualifier] = STATE(1010), + [sym_expression] = STATE(1658), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1410), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1410), + [sym_call_expression] = STATE(1410), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1410), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1410), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_array_declarator_repeat1] = STATE(943), + [sym_identifier] = ACTIONS(2297), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(2315), + [anon_sym_BANG] = ACTIONS(2301), + [anon_sym_TILDE] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_PLUS] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(2389), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym___extension__] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2333), + [anon_sym_RBRACK] = ACTIONS(2391), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_constexpr] = ACTIONS(2321), + [anon_sym_volatile] = ACTIONS(2321), + [anon_sym_restrict] = ACTIONS(2321), + [anon_sym___restrict__] = ACTIONS(2321), + [anon_sym__Atomic] = ACTIONS(2321), + [anon_sym__Noreturn] = ACTIONS(2321), + [anon_sym_noreturn] = ACTIONS(2321), + [anon_sym_alignas] = ACTIONS(2327), + [anon_sym__Alignas] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2329), + [anon_sym_PLUS_PLUS] = ACTIONS(2329), + [anon_sym_sizeof] = ACTIONS(2303), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [606] = { + [sym_type_qualifier] = STATE(943), + [sym_alignas_qualifier] = STATE(1010), + [sym_expression] = STATE(1665), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1410), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1410), + [sym_call_expression] = STATE(1410), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1410), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1410), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_array_declarator_repeat1] = STATE(943), + [sym_identifier] = ACTIONS(2297), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(2315), + [anon_sym_BANG] = ACTIONS(2301), + [anon_sym_TILDE] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_PLUS] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(2393), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym___extension__] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2333), + [anon_sym_RBRACK] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_constexpr] = ACTIONS(2321), + [anon_sym_volatile] = ACTIONS(2321), + [anon_sym_restrict] = ACTIONS(2321), + [anon_sym___restrict__] = ACTIONS(2321), + [anon_sym__Atomic] = ACTIONS(2321), + [anon_sym__Noreturn] = ACTIONS(2321), + [anon_sym_noreturn] = ACTIONS(2321), + [anon_sym_alignas] = ACTIONS(2327), + [anon_sym__Alignas] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2329), + [anon_sym_PLUS_PLUS] = ACTIONS(2329), + [anon_sym_sizeof] = ACTIONS(2303), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [607] = { + [sym_expression] = STATE(1564), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_initializer_list] = STATE(2517), + [sym_initializer_pair] = STATE(2517), + [sym_subscript_designator] = STATE(2293), + [sym_subscript_range_designator] = STATE(2293), + [sym_field_designator] = STATE(2293), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_initializer_pair_repeat1] = STATE(2293), + [sym_identifier] = ACTIONS(2397), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(2399), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(1743), + [anon_sym_RBRACE] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [608] = { + [sym_expression] = STATE(1565), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_initializer_list] = STATE(2739), + [sym_initializer_pair] = STATE(2739), + [sym_subscript_designator] = STATE(2293), + [sym_subscript_range_designator] = STATE(2293), + [sym_field_designator] = STATE(2293), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_initializer_pair_repeat1] = STATE(2293), + [sym_identifier] = ACTIONS(2397), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(2407), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(1743), + [anon_sym_RBRACE] = ACTIONS(2409), + [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [609] = { + [sym_expression] = STATE(1553), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_initializer_list] = STATE(2642), + [sym_initializer_pair] = STATE(2642), + [sym_subscript_designator] = STATE(2293), + [sym_subscript_range_designator] = STATE(2293), + [sym_field_designator] = STATE(2293), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_initializer_pair_repeat1] = STATE(2293), + [sym_identifier] = ACTIONS(2397), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(1743), + [anon_sym_RBRACE] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [610] = { + [sym_expression] = STATE(1618), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_initializer_list] = STATE(2917), + [sym_initializer_pair] = STATE(2917), + [sym_subscript_designator] = STATE(2293), + [sym_subscript_range_designator] = STATE(2293), + [sym_field_designator] = STATE(2293), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_initializer_pair_repeat1] = STATE(2293), + [sym_identifier] = ACTIONS(2397), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(1743), + [anon_sym_RBRACE] = ACTIONS(2415), + [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [611] = { + [sym_expression] = STATE(1618), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_initializer_list] = STATE(2917), + [sym_initializer_pair] = STATE(2917), + [sym_subscript_designator] = STATE(2293), + [sym_subscript_range_designator] = STATE(2293), + [sym_field_designator] = STATE(2293), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_initializer_pair_repeat1] = STATE(2293), + [sym_identifier] = ACTIONS(2397), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(1743), + [anon_sym_RBRACE] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [612] = { + [sym_expression] = STATE(1618), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_initializer_list] = STATE(2917), + [sym_initializer_pair] = STATE(2917), + [sym_subscript_designator] = STATE(2293), + [sym_subscript_range_designator] = STATE(2293), + [sym_field_designator] = STATE(2293), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_initializer_pair_repeat1] = STATE(2293), + [sym_identifier] = ACTIONS(2397), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(1743), + [anon_sym_RBRACE] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [613] = { + [sym_expression] = STATE(1618), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_initializer_list] = STATE(2917), + [sym_initializer_pair] = STATE(2917), + [sym_subscript_designator] = STATE(2293), + [sym_subscript_range_designator] = STATE(2293), + [sym_field_designator] = STATE(2293), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_initializer_pair_repeat1] = STATE(2293), + [sym_identifier] = ACTIONS(2397), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(1743), + [anon_sym_RBRACE] = ACTIONS(2421), + [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [614] = { + [sym_expression] = STATE(1618), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_initializer_list] = STATE(2917), + [sym_initializer_pair] = STATE(2917), + [sym_subscript_designator] = STATE(2293), + [sym_subscript_range_designator] = STATE(2293), + [sym_field_designator] = STATE(2293), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_initializer_pair_repeat1] = STATE(2293), + [sym_identifier] = ACTIONS(2397), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(1743), + [anon_sym_RBRACE] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [615] = { + [sym_expression] = STATE(1618), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_initializer_list] = STATE(2917), + [sym_initializer_pair] = STATE(2917), + [sym_subscript_designator] = STATE(2293), + [sym_subscript_range_designator] = STATE(2293), + [sym_field_designator] = STATE(2293), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_initializer_pair_repeat1] = STATE(2293), + [sym_identifier] = ACTIONS(2397), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(1743), + [anon_sym_RBRACE] = ACTIONS(2425), + [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [616] = { + [sym_function_definition] = STATE(335), + [sym_declaration] = STATE(335), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1739), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(895), + [sym_ms_declspec_modifier] = STATE(895), + [sym_ms_call_modifier] = STATE(887), + [sym_declaration_list] = STATE(335), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [sym_identifier] = ACTIONS(2427), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(2429), + [anon_sym___clrcall] = ACTIONS(2429), + [anon_sym___stdcall] = ACTIONS(2429), + [anon_sym___fastcall] = ACTIONS(2429), + [anon_sym___thiscall] = ACTIONS(2429), + [anon_sym___vectorcall] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(59), + [anon_sym_enum] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [sym_comment] = ACTIONS(5), + }, + [617] = { + [sym_function_definition] = STATE(343), + [sym_declaration] = STATE(343), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1731), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(895), + [sym_ms_declspec_modifier] = STATE(895), + [sym_ms_call_modifier] = STATE(886), + [sym_declaration_list] = STATE(343), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [sym_identifier] = ACTIONS(2427), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(2429), + [anon_sym___clrcall] = ACTIONS(2429), + [anon_sym___stdcall] = ACTIONS(2429), + [anon_sym___fastcall] = ACTIONS(2429), + [anon_sym___thiscall] = ACTIONS(2429), + [anon_sym___vectorcall] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2433), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(59), + [anon_sym_enum] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [sym_comment] = ACTIONS(5), + }, + [618] = { + [sym_expression] = STATE(1618), + [sym__string] = STATE(1209), + [sym_conditional_expression] = STATE(1209), + [sym_assignment_expression] = STATE(1209), + [sym_pointer_expression] = STATE(1316), + [sym_unary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_cast_expression] = STATE(1209), + [sym_sizeof_expression] = STATE(1209), + [sym_alignof_expression] = STATE(1209), + [sym_offsetof_expression] = STATE(1209), + [sym_generic_expression] = STATE(1209), + [sym_subscript_expression] = STATE(1316), + [sym_call_expression] = STATE(1316), + [sym_gnu_asm_expression] = STATE(1209), + [sym_field_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1209), + [sym_parenthesized_expression] = STATE(1316), + [sym_initializer_list] = STATE(2917), + [sym_initializer_pair] = STATE(2917), + [sym_subscript_designator] = STATE(2293), + [sym_subscript_range_designator] = STATE(2293), + [sym_field_designator] = STATE(2293), + [sym_char_literal] = STATE(1209), + [sym_concatenated_string] = STATE(1209), + [sym_string_literal] = STATE(949), + [sym_null] = STATE(1209), + [aux_sym_initializer_pair_repeat1] = STATE(2293), + [sym_identifier] = ACTIONS(2397), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_sizeof] = ACTIONS(91), + [anon_sym___alignof__] = ACTIONS(93), + [anon_sym___alignof] = ACTIONS(93), + [anon_sym__alignof] = ACTIONS(93), + [anon_sym_alignof] = ACTIONS(93), + [anon_sym__Alignof] = ACTIONS(93), + [anon_sym_offsetof] = ACTIONS(95), + [anon_sym__Generic] = ACTIONS(97), + [anon_sym_asm] = ACTIONS(99), + [anon_sym___asm__] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(167), + [anon_sym_L_SQUOTE] = ACTIONS(103), + [anon_sym_u_SQUOTE] = ACTIONS(103), + [anon_sym_U_SQUOTE] = ACTIONS(103), + [anon_sym_u8_SQUOTE] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(103), + [anon_sym_L_DQUOTE] = ACTIONS(105), + [anon_sym_u_DQUOTE] = ACTIONS(105), + [anon_sym_U_DQUOTE] = ACTIONS(105), + [anon_sym_u8_DQUOTE] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + }, + [619] = { + [sym_function_definition] = STATE(150), + [sym_declaration] = STATE(150), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1728), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(895), + [sym_ms_declspec_modifier] = STATE(895), + [sym_ms_call_modifier] = STATE(889), + [sym_declaration_list] = STATE(150), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [sym_identifier] = ACTIONS(2427), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(2429), + [anon_sym___clrcall] = ACTIONS(2429), + [anon_sym___stdcall] = ACTIONS(2429), + [anon_sym___fastcall] = ACTIONS(2429), + [anon_sym___thiscall] = ACTIONS(2429), + [anon_sym___vectorcall] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(59), + [anon_sym_enum] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [sym_comment] = ACTIONS(5), + }, + [620] = { + [sym_function_definition] = STATE(413), + [sym_declaration] = STATE(413), + [sym__declaration_modifiers] = STATE(895), + [sym__declaration_specifiers] = STATE(1738), + [sym_attribute_specifier] = STATE(895), + [sym_attribute_declaration] = STATE(895), + [sym_ms_declspec_modifier] = STATE(895), + [sym_ms_call_modifier] = STATE(892), + [sym_declaration_list] = STATE(413), + [sym_storage_class_specifier] = STATE(895), + [sym_type_qualifier] = STATE(895), + [sym_alignas_qualifier] = STATE(1048), + [sym_type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1195), + [sym_enum_specifier] = STATE(1195), + [sym_struct_specifier] = STATE(1195), + [sym_union_specifier] = STATE(1195), + [sym_macro_type_specifier] = STATE(1195), + [aux_sym__declaration_specifiers_repeat1] = STATE(895), + [aux_sym_sized_type_specifier_repeat1] = STATE(947), + [sym_identifier] = ACTIONS(2427), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___scanf] = ACTIONS(37), + [anon_sym___printf] = ACTIONS(37), + [anon_sym___read_mostly] = ACTIONS(39), + [anon_sym___must_hold] = ACTIONS(35), + [anon_sym___ro_after_init] = ACTIONS(39), + [anon_sym___noreturn] = ACTIONS(39), + [anon_sym___cold] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(2429), + [anon_sym___clrcall] = ACTIONS(2429), + [anon_sym___stdcall] = ACTIONS(2429), + [anon_sym___fastcall] = ACTIONS(2429), + [anon_sym___thiscall] = ACTIONS(2429), + [anon_sym___vectorcall] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2437), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym___inline] = ACTIONS(53), + [anon_sym___inline__] = ACTIONS(53), + [anon_sym___forceinline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym___thread] = ACTIONS(53), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [sym_primitive_type] = ACTIONS(59), + [anon_sym_enum] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [sym_comment] = ACTIONS(5), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 26, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -87706,16 +86582,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(1713), 1, + anon_sym_LBRACE, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(2474), 1, - anon_sym_SEMI, - STATE(944), 1, + ACTIONS(2439), 1, + anon_sym_RPAREN, + ACTIONS(2441), 1, + anon_sym___extension__, + STATE(949), 1, sym_string_literal, - STATE(1573), 1, + STATE(1558), 1, sym_expression, - STATE(3088), 1, - sym_comma_expression, + STATE(2592), 1, + sym_compound_statement, ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, @@ -87755,13 +86635,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -87778,207 +86658,47 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3026] = 25, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___declspec, - ACTIONS(49), 1, - anon_sym_LBRACE, - ACTIONS(59), 1, - sym_primitive_type, - ACTIONS(61), 1, - anon_sym_enum, - ACTIONS(63), 1, - anon_sym_struct, - ACTIONS(65), 1, - anon_sym_union, - ACTIONS(1210), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, - sym_identifier, - STATE(396), 1, - sym_compound_statement, - STATE(939), 1, - sym_type_specifier, - STATE(942), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, - sym_alignas_qualifier, - STATE(1717), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(37), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(57), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(667), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(39), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(51), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1122), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(893), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(55), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(53), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [3139] = 25, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___declspec, - ACTIONS(49), 1, - anon_sym_LBRACE, - ACTIONS(59), 1, - sym_primitive_type, - ACTIONS(61), 1, - anon_sym_enum, - ACTIONS(63), 1, - anon_sym_struct, - ACTIONS(65), 1, - anon_sym_union, - ACTIONS(1210), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, - sym_identifier, - STATE(384), 1, - sym_compound_statement, - STATE(939), 1, - sym_type_specifier, - STATE(942), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, - sym_alignas_qualifier, - STATE(1717), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(37), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(57), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(652), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(39), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(51), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1122), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(893), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(55), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(53), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [3252] = 24, + [117] = 26, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, + anon_sym_sizeof, ACTIONS(95), 1, anon_sym_offsetof, ACTIONS(97), 1, anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, - sym_identifier, - ACTIONS(1806), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(1952), 1, - anon_sym_sizeof, - ACTIONS(2476), 1, - anon_sym_LPAREN2, - STATE(944), 1, + ACTIONS(2211), 1, + sym_identifier, + ACTIONS(2443), 1, + anon_sym_RPAREN, + ACTIONS(2445), 1, + anon_sym___extension__, + STATE(949), 1, sym_string_literal, - STATE(1252), 1, - sym_initializer_list, - STATE(1353), 1, + STATE(1570), 1, sym_expression, + STATE(2495), 1, + sym_compound_statement, + ACTIONS(23), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, @@ -87988,18 +86708,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1948), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1950), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2290), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2478), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, @@ -88018,13 +86726,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -88041,77 +86749,81 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3363] = 24, + [234] = 26, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1518), 1, - anon_sym_LBRACE, - ACTIONS(1524), 1, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, + anon_sym_sizeof, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2093), 1, + ACTIONS(1713), 1, + anon_sym_LBRACE, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(2099), 1, - anon_sym_sizeof, - ACTIONS(2480), 1, - anon_sym_LPAREN2, - STATE(915), 1, + ACTIONS(2447), 1, + anon_sym_RPAREN, + ACTIONS(2449), 1, + anon_sym___extension__, + STATE(949), 1, sym_string_literal, - STATE(1011), 1, + STATE(1556), 1, sym_expression, - STATE(1071), 1, - sym_initializer_list, - ACTIONS(1528), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1536), 2, - sym_true, - sym_false, - ACTIONS(1538), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2095), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2097), 2, + STATE(2594), 1, + sym_compound_statement, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2482), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2484), 2, + ACTIONS(89), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(103), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, + ACTIONS(105), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1049), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -88128,77 +86840,81 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3474] = 24, + [351] = 26, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1544), 1, - anon_sym_LBRACE, - ACTIONS(1550), 1, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, + anon_sym_sizeof, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1552), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1556), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2186), 1, - anon_sym_sizeof, - ACTIONS(2486), 1, + ACTIONS(1713), 1, + anon_sym_LBRACE, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(2488), 1, - anon_sym_LPAREN2, - STATE(987), 1, + ACTIONS(2451), 1, + anon_sym_RPAREN, + ACTIONS(2453), 1, + anon_sym___extension__, + STATE(949), 1, sym_string_literal, - STATE(1136), 1, + STATE(1551), 1, sym_expression, - STATE(1234), 1, - sym_initializer_list, - ACTIONS(1554), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1560), 2, - sym_true, - sym_false, - ACTIONS(1562), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2182), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2184), 2, + STATE(2750), 1, + sym_compound_statement, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2470), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2490), 2, + ACTIONS(89), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1548), 5, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1558), 5, + ACTIONS(103), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1222), 5, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1200), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -88215,7 +86931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3585] = 24, + [468] = 25, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -88230,16 +86946,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1806), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(2188), 1, + ACTIONS(2211), 1, sym_identifier, - STATE(944), 1, + ACTIONS(2455), 1, + anon_sym___extension__, + STATE(949), 1, sym_string_literal, - STATE(1608), 1, + STATE(1619), 1, sym_expression, - STATE(2923), 1, - sym_initializer_list, + STATE(2922), 1, + sym_compound_statement, ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, @@ -88279,13 +86997,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -88302,37 +87020,41 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3696] = 25, + [582] = 26, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(59), 1, + ACTIONS(1208), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1214), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1218), 1, sym_primitive_type, - ACTIONS(61), 1, + ACTIONS(1220), 1, anon_sym_enum, - ACTIONS(63), 1, + ACTIONS(1222), 1, anon_sym_struct, - ACTIONS(65), 1, + ACTIONS(1224), 1, anon_sym_union, - ACTIONS(463), 1, - anon_sym_LBRACE, - ACTIONS(1210), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, + ACTIONS(2457), 1, sym_identifier, - STATE(363), 1, - sym_compound_statement, - STATE(939), 1, + ACTIONS(2459), 1, + anon_sym_RPAREN, + STATE(1034), 1, sym_type_specifier, - STATE(942), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1717), 1, + STATE(1113), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1877), 1, sym__declaration_specifiers, + STATE(2442), 1, + sym_variadic_parameter, + STATE(2655), 1, + sym_parameter_declaration, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___must_hold, @@ -88342,26 +87064,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(666), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, ACTIONS(39), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(51), 4, + ACTIONS(1216), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1122), 5, + STATE(1408), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(896), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -88390,7 +87109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [3809] = 24, + [697] = 24, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -88405,16 +87124,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1806), 1, - anon_sym_LBRACE, - ACTIONS(2188), 1, + ACTIONS(2211), 1, sym_identifier, - STATE(944), 1, + ACTIONS(2461), 1, + anon_sym_RPAREN, + STATE(949), 1, sym_string_literal, - STATE(1602), 1, + STATE(1639), 1, sym_expression, - STATE(2928), 1, - sym_initializer_list, + STATE(3343), 1, + sym_comma_expression, ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, @@ -88454,13 +87173,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -88477,94 +87196,95 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3920] = 24, + [808] = 25, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, - ACTIONS(95), 1, - anon_sym_offsetof, - ACTIONS(97), 1, - anon_sym__Generic, - ACTIONS(167), 1, - sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + sym_primitive_type, + ACTIONS(61), 1, + anon_sym_enum, + ACTIONS(63), 1, + anon_sym_struct, + ACTIONS(65), 1, + anon_sym_union, + ACTIONS(1214), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2427), 1, sym_identifier, - ACTIONS(2492), 1, - anon_sym_SEMI, - STATE(944), 1, - sym_string_literal, - STATE(1598), 1, - sym_expression, - STATE(3068), 1, - sym_comma_expression, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(93), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(103), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1292), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1199), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [4031] = 24, + STATE(388), 1, + sym_compound_statement, + STATE(945), 1, + sym_type_specifier, + STATE(947), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1048), 1, + sym_alignas_qualifier, + STATE(1726), 1, + sym__declaration_specifiers, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(37), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(707), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(39), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(51), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1195), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(895), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(55), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(53), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [921] = 24, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -88579,15 +87299,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(2494), 1, + ACTIONS(2463), 1, anon_sym_SEMI, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1619), 1, + STATE(1636), 1, sym_expression, - STATE(3362), 1, + STATE(3396), 1, sym_comma_expression, ACTIONS(23), 2, anon_sym_BANG, @@ -88628,13 +87348,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -88651,7 +87371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4142] = 24, + [1032] = 24, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -88666,16 +87386,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(1743), 1, + anon_sym_LBRACE, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(2496), 1, - anon_sym_COLON, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1585), 1, + STATE(1592), 1, sym_expression, - STATE(3442), 1, - sym_comma_expression, + STATE(2919), 1, + sym_initializer_list, ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, @@ -88715,13 +87435,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -88738,103 +87458,13 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4253] = 25, + [1143] = 25, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(1210), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2055), 1, - sym_primitive_type, - ACTIONS(2057), 1, - anon_sym_enum, - ACTIONS(2059), 1, - anon_sym_struct, - ACTIONS(2061), 1, - anon_sym_union, - ACTIONS(2103), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2276), 1, - sym_identifier, - ACTIONS(2498), 1, - anon_sym_RPAREN, - STATE(1012), 1, - sym_type_specifier, - STATE(1036), 1, - sym_alignas_qualifier, - STATE(1090), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1808), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(37), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(57), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2577), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(39), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(2053), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1371), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(891), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(55), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(53), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [4366] = 25, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___declspec, - ACTIONS(49), 1, - anon_sym_LBRACE, ACTIONS(59), 1, sym_primitive_type, ACTIONS(61), 1, @@ -88843,19 +87473,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(65), 1, anon_sym_union, - ACTIONS(1210), 1, + ACTIONS(625), 1, + anon_sym_LBRACE, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, + ACTIONS(2427), 1, sym_identifier, - STATE(401), 1, + STATE(359), 1, sym_compound_statement, - STATE(939), 1, + STATE(945), 1, sym_type_specifier, - STATE(942), 1, + STATE(947), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1717), 1, + STATE(1726), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -88866,7 +87498,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(657), 2, + STATE(707), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(39), 4, @@ -88879,13 +87511,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1122), 5, + STATE(1195), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(895), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -88914,7 +87546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [4479] = 25, + [1256] = 25, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -88929,21 +87561,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(65), 1, anon_sym_union, - ACTIONS(463), 1, + ACTIONS(393), 1, anon_sym_LBRACE, - ACTIONS(1210), 1, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, + ACTIONS(2427), 1, sym_identifier, - STATE(337), 1, + STATE(324), 1, sym_compound_statement, - STATE(939), 1, + STATE(945), 1, sym_type_specifier, - STATE(942), 1, + STATE(947), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1717), 1, + STATE(1726), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -88954,7 +87586,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(617), 2, + STATE(707), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(39), 4, @@ -88967,13 +87599,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1122), 5, + STATE(1195), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(895), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -89002,15 +87634,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [4592] = 25, + [1369] = 25, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(49), 1, - anon_sym_LBRACE, ACTIONS(59), 1, sym_primitive_type, ACTIONS(61), 1, @@ -89019,19 +87649,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(65), 1, anon_sym_union, - ACTIONS(1210), 1, + ACTIONS(393), 1, + anon_sym_LBRACE, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, + ACTIONS(2427), 1, sym_identifier, - STATE(404), 1, + STATE(327), 1, sym_compound_statement, - STATE(939), 1, + STATE(945), 1, sym_type_specifier, - STATE(942), 1, + STATE(947), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1717), 1, + STATE(1726), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -89042,7 +87674,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(697), 2, + STATE(707), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(39), 4, @@ -89055,13 +87687,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1122), 5, + STATE(1195), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(895), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -89090,7 +87722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [4705] = 25, + [1482] = 25, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -89105,21 +87737,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(65), 1, anon_sym_union, - ACTIONS(463), 1, + ACTIONS(393), 1, anon_sym_LBRACE, - ACTIONS(1210), 1, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, + ACTIONS(2427), 1, sym_identifier, - STATE(360), 1, + STATE(329), 1, sym_compound_statement, - STATE(939), 1, + STATE(945), 1, sym_type_specifier, - STATE(942), 1, + STATE(947), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1717), 1, + STATE(1726), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -89130,7 +87762,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(697), 2, + STATE(639), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(39), 4, @@ -89143,13 +87775,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1122), 5, + STATE(1195), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(895), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -89178,7 +87810,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [4818] = 25, + [1595] = 24, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, + anon_sym_sizeof, + ACTIONS(95), 1, + anon_sym_offsetof, + ACTIONS(97), 1, + anon_sym__Generic, + ACTIONS(167), 1, + sym_number_literal, + ACTIONS(1743), 1, + anon_sym_LBRACE, + ACTIONS(2211), 1, + sym_identifier, + STATE(949), 1, + sym_string_literal, + STATE(1212), 1, + sym_initializer_list, + STATE(1296), 1, + sym_expression, + ACTIONS(23), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(93), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(103), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1316), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1209), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [1706] = 24, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, + anon_sym_sizeof, + ACTIONS(95), 1, + anon_sym_offsetof, + ACTIONS(97), 1, + anon_sym__Generic, + ACTIONS(167), 1, + sym_number_literal, + ACTIONS(2211), 1, + sym_identifier, + ACTIONS(2465), 1, + anon_sym_RPAREN, + STATE(949), 1, + sym_string_literal, + STATE(1577), 1, + sym_expression, + STATE(3075), 1, + sym_comma_expression, + ACTIONS(23), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(93), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(103), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1316), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1209), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [1817] = 25, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -89193,21 +87999,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(65), 1, anon_sym_union, - ACTIONS(393), 1, + ACTIONS(625), 1, anon_sym_LBRACE, - ACTIONS(1210), 1, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, + ACTIONS(2427), 1, sym_identifier, - STATE(331), 1, + STATE(361), 1, sym_compound_statement, - STATE(939), 1, + STATE(945), 1, sym_type_specifier, - STATE(942), 1, + STATE(947), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1717), 1, + STATE(1726), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -89218,7 +88024,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(690), 2, + STATE(670), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(39), 4, @@ -89231,13 +88037,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1122), 5, + STATE(1195), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(895), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -89266,77 +88072,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [4931] = 24, + [1930] = 24, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(1546), 1, + anon_sym_LBRACE, + ACTIONS(1552), 1, anon_sym_offsetof, - ACTIONS(97), 1, + ACTIONS(1554), 1, anon_sym__Generic, - ACTIONS(167), 1, + ACTIONS(1558), 1, sym_number_literal, - ACTIONS(1806), 1, - anon_sym_LBRACE, - ACTIONS(2268), 1, + ACTIONS(2064), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2070), 1, anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2467), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(913), 1, sym_string_literal, - STATE(1252), 1, - sym_initializer_list, - STATE(1353), 1, + STATE(1022), 1, sym_expression, - ACTIONS(99), 2, + STATE(1087), 1, + sym_initializer_list, + ACTIONS(1556), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, + ACTIONS(1564), 2, sym_true, sym_false, - ACTIONS(2270), 2, + ACTIONS(1566), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2066), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2272), 2, + ACTIONS(2068), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2300), 2, + ACTIONS(2471), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(93), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, + ACTIONS(1562), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1406), 5, + STATE(1072), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -89353,7 +88159,95 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5042] = 24, + [2041] = 25, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(59), 1, + sym_primitive_type, + ACTIONS(61), 1, + anon_sym_enum, + ACTIONS(63), 1, + anon_sym_struct, + ACTIONS(65), 1, + anon_sym_union, + ACTIONS(393), 1, + anon_sym_LBRACE, + ACTIONS(1214), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2427), 1, + sym_identifier, + STATE(332), 1, + sym_compound_statement, + STATE(945), 1, + sym_type_specifier, + STATE(947), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1048), 1, + sym_alignas_qualifier, + STATE(1726), 1, + sym__declaration_specifiers, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(37), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(707), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(39), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(51), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1195), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(895), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(55), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(53), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [2154] = 24, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -89368,15 +88262,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(2500), 1, - anon_sym_COLON, - STATE(944), 1, + ACTIONS(2473), 1, + anon_sym_RPAREN, + STATE(949), 1, sym_string_literal, - STATE(1577), 1, + STATE(1610), 1, sym_expression, - STATE(2999), 1, + STATE(3073), 1, sym_comma_expression, ACTIONS(23), 2, anon_sym_BANG, @@ -89417,13 +88311,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -89440,7 +88334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5153] = 25, + [2265] = 25, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -89457,19 +88351,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(65), 1, anon_sym_union, - ACTIONS(1210), 1, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, + ACTIONS(2427), 1, sym_identifier, - STATE(373), 1, + STATE(387), 1, sym_compound_statement, - STATE(939), 1, + STATE(945), 1, sym_type_specifier, - STATE(942), 1, + STATE(947), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1717), 1, + STATE(1726), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -89480,7 +88374,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(697), 2, + STATE(628), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(39), 4, @@ -89493,13 +88387,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1122), 5, + STATE(1195), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(895), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -89528,7 +88422,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [5266] = 25, + [2378] = 24, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, + anon_sym_sizeof, + ACTIONS(95), 1, + anon_sym_offsetof, + ACTIONS(97), 1, + anon_sym__Generic, + ACTIONS(167), 1, + sym_number_literal, + ACTIONS(2211), 1, + sym_identifier, + ACTIONS(2475), 1, + anon_sym_COLON, + STATE(949), 1, + sym_string_literal, + STATE(1591), 1, + sym_expression, + STATE(3155), 1, + sym_comma_expression, + ACTIONS(23), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(93), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(103), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1316), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1209), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [2489] = 25, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -89543,21 +88524,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(65), 1, anon_sym_union, - ACTIONS(139), 1, + ACTIONS(625), 1, anon_sym_LBRACE, - ACTIONS(1210), 1, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, + ACTIONS(2427), 1, sym_identifier, - STATE(129), 1, + STATE(368), 1, sym_compound_statement, - STATE(939), 1, + STATE(945), 1, sym_type_specifier, - STATE(942), 1, + STATE(947), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1717), 1, + STATE(1726), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -89568,7 +88549,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(697), 2, + STATE(675), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(39), 4, @@ -89581,13 +88562,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1122), 5, + STATE(1195), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(895), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -89616,37 +88597,292 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [5379] = 25, + [2602] = 14, + ACTIONS(1983), 1, + anon_sym_const, + ACTIONS(1993), 1, + anon_sym_STAR, + ACTIONS(2000), 1, + anon_sym_EQ, + ACTIONS(2477), 1, + anon_sym_LPAREN2, + STATE(891), 1, + sym_string_literal, + STATE(1772), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(2006), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(2481), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1996), 10, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2004), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1991), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1985), 12, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [2693] = 24, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_offsetof, + ACTIONS(97), 1, + anon_sym__Generic, + ACTIONS(167), 1, + sym_number_literal, + ACTIONS(1743), 1, + anon_sym_LBRACE, + ACTIONS(2297), 1, + sym_identifier, + ACTIONS(2303), 1, + anon_sym_sizeof, + ACTIONS(2315), 1, + anon_sym_LPAREN2, + STATE(949), 1, + sym_string_literal, + STATE(1212), 1, + sym_initializer_list, + STATE(1367), 1, + sym_expression, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(2299), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2301), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2319), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2329), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(103), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1410), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1209), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [2804] = 24, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1579), 1, + anon_sym_LBRACE, + ACTIONS(1585), 1, + anon_sym_offsetof, + ACTIONS(1587), 1, + anon_sym__Generic, + ACTIONS(1591), 1, + sym_number_literal, + ACTIONS(2209), 1, + anon_sym_sizeof, + ACTIONS(2483), 1, + sym_identifier, + ACTIONS(2485), 1, + anon_sym_LPAREN2, + STATE(993), 1, + sym_string_literal, + STATE(1160), 1, + sym_expression, + STATE(1211), 1, + sym_initializer_list, + ACTIONS(1589), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1595), 2, + sym_true, + sym_false, + ACTIONS(1597), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2205), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2207), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2487), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2489), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1583), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(1593), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1205), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1225), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [2915] = 26, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(1210), 1, + ACTIONS(1208), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2055), 1, + ACTIONS(1218), 1, sym_primitive_type, - ACTIONS(2057), 1, + ACTIONS(1220), 1, anon_sym_enum, - ACTIONS(2059), 1, + ACTIONS(1222), 1, anon_sym_struct, - ACTIONS(2061), 1, + ACTIONS(1224), 1, anon_sym_union, - ACTIONS(2103), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2276), 1, + ACTIONS(2457), 1, sym_identifier, - ACTIONS(2502), 1, + ACTIONS(2491), 1, anon_sym_RPAREN, - STATE(1012), 1, + STATE(1034), 1, sym_type_specifier, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1090), 1, + STATE(1113), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1808), 1, + STATE(1877), 1, sym__declaration_specifiers, + STATE(2469), 1, + sym_variadic_parameter, + STATE(2655), 1, + sym_parameter_declaration, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___must_hold, @@ -89656,26 +88892,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2677), 2, - sym_variadic_parameter, - sym_parameter_declaration, ACTIONS(39), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2053), 4, + ACTIONS(1216), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1371), 5, + STATE(1408), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(891), 7, + STATE(896), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -89704,36 +88937,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [5492] = 25, + [3030] = 24, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_offsetof, + ACTIONS(97), 1, + anon_sym__Generic, + ACTIONS(167), 1, + sym_number_literal, + ACTIONS(1737), 1, + sym_identifier, + ACTIONS(1743), 1, + anon_sym_LBRACE, + ACTIONS(2017), 1, + anon_sym_sizeof, + ACTIONS(2493), 1, + anon_sym_LPAREN2, + STATE(949), 1, + sym_string_literal, + STATE(1212), 1, + sym_initializer_list, + STATE(1367), 1, + sym_expression, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(2013), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2015), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2319), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(103), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1224), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1209), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [3141] = 25, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(1210), 1, + ACTIONS(1208), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2055), 1, + ACTIONS(1218), 1, sym_primitive_type, - ACTIONS(2057), 1, + ACTIONS(1220), 1, anon_sym_enum, - ACTIONS(2059), 1, + ACTIONS(1222), 1, anon_sym_struct, - ACTIONS(2061), 1, + ACTIONS(1224), 1, anon_sym_union, - ACTIONS(2103), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2276), 1, + ACTIONS(2305), 1, sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2497), 1, anon_sym_RPAREN, - STATE(1012), 1, + STATE(1034), 1, sym_type_specifier, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1090), 1, + STATE(1113), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1808), 1, + STATE(1877), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -89744,7 +89064,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2741), 2, + STATE(2602), 2, sym_variadic_parameter, sym_parameter_declaration, ACTIONS(39), 4, @@ -89752,18 +89072,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2053), 4, + ACTIONS(1216), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1371), 5, + STATE(1408), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(891), 7, + STATE(896), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -89792,7 +89112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [5605] = 25, + [3254] = 25, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -89807,21 +89127,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(65), 1, anon_sym_union, - ACTIONS(139), 1, + ACTIONS(625), 1, anon_sym_LBRACE, - ACTIONS(1210), 1, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, + ACTIONS(2427), 1, sym_identifier, - STATE(137), 1, + STATE(348), 1, sym_compound_statement, - STATE(939), 1, + STATE(945), 1, sym_type_specifier, - STATE(942), 1, + STATE(947), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1717), 1, + STATE(1726), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -89832,7 +89152,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(697), 2, + STATE(631), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(39), 4, @@ -89845,13 +89165,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1122), 5, + STATE(1195), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(895), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -89880,7 +89200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [5718] = 25, + [3367] = 25, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -89897,19 +89217,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(393), 1, anon_sym_LBRACE, - ACTIONS(1210), 1, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, + ACTIONS(2427), 1, sym_identifier, - STATE(316), 1, + STATE(309), 1, sym_compound_statement, - STATE(939), 1, + STATE(945), 1, sym_type_specifier, - STATE(942), 1, + STATE(947), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1717), 1, + STATE(1726), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -89920,7 +89240,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(689), 2, + STATE(633), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(39), 4, @@ -89933,13 +89253,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1122), 5, + STATE(1195), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(895), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -89968,36 +89288,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [5831] = 25, + [3480] = 24, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, + anon_sym_sizeof, + ACTIONS(95), 1, + anon_sym_offsetof, + ACTIONS(97), 1, + anon_sym__Generic, + ACTIONS(167), 1, + sym_number_literal, + ACTIONS(2211), 1, + sym_identifier, + ACTIONS(2499), 1, + anon_sym_RPAREN, + STATE(949), 1, + sym_string_literal, + STATE(1629), 1, + sym_expression, + STATE(3195), 1, + sym_comma_expression, + ACTIONS(23), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(93), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(103), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1316), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1209), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [3591] = 25, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(1210), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2055), 1, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, sym_primitive_type, - ACTIONS(2057), 1, + ACTIONS(61), 1, anon_sym_enum, - ACTIONS(2059), 1, + ACTIONS(63), 1, anon_sym_struct, - ACTIONS(2061), 1, + ACTIONS(65), 1, anon_sym_union, - ACTIONS(2103), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2105), 1, - anon_sym_RPAREN, - ACTIONS(2276), 1, + ACTIONS(1214), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2427), 1, sym_identifier, - STATE(1012), 1, + STATE(398), 1, + sym_compound_statement, + STATE(945), 1, sym_type_specifier, - STATE(1036), 1, - sym_alignas_qualifier, - STATE(1090), 1, + STATE(947), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1808), 1, + STATE(1048), 1, + sym_alignas_qualifier, + STATE(1726), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -90008,26 +89415,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2506), 2, - sym_variadic_parameter, - sym_parameter_declaration, + STATE(707), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, ACTIONS(39), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2053), 4, + ACTIONS(51), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1371), 5, + STATE(1195), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(891), 7, + STATE(895), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -90056,7 +89463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [5944] = 24, + [3704] = 24, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -90071,15 +89478,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2501), 1, anon_sym_SEMI, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1595), 1, + STATE(1598), 1, sym_expression, - STATE(3269), 1, + STATE(3184), 1, sym_comma_expression, ACTIONS(23), 2, anon_sym_BANG, @@ -90120,13 +89527,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -90143,124 +89550,471 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6055] = 25, + [3815] = 24, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___declspec, - ACTIONS(59), 1, - sym_primitive_type, - ACTIONS(61), 1, - anon_sym_enum, - ACTIONS(63), 1, - anon_sym_struct, - ACTIONS(65), 1, - anon_sym_union, - ACTIONS(139), 1, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, + anon_sym_sizeof, + ACTIONS(95), 1, + anon_sym_offsetof, + ACTIONS(97), 1, + anon_sym__Generic, + ACTIONS(167), 1, + sym_number_literal, + ACTIONS(2211), 1, + sym_identifier, + ACTIONS(2503), 1, + anon_sym_COLON, + STATE(949), 1, + sym_string_literal, + STATE(1599), 1, + sym_expression, + STATE(3039), 1, + sym_comma_expression, + ACTIONS(23), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(93), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(103), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1316), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1209), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [3926] = 24, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, + anon_sym_sizeof, + ACTIONS(95), 1, + anon_sym_offsetof, + ACTIONS(97), 1, + anon_sym__Generic, + ACTIONS(167), 1, + sym_number_literal, + ACTIONS(2211), 1, + sym_identifier, + ACTIONS(2505), 1, + anon_sym_COLON, + STATE(949), 1, + sym_string_literal, + STATE(1622), 1, + sym_expression, + STATE(3063), 1, + sym_comma_expression, + ACTIONS(23), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(93), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(103), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1316), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1209), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [4037] = 24, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, + anon_sym_sizeof, + ACTIONS(95), 1, + anon_sym_offsetof, + ACTIONS(97), 1, + anon_sym__Generic, + ACTIONS(167), 1, + sym_number_literal, + ACTIONS(2211), 1, + sym_identifier, + ACTIONS(2507), 1, + anon_sym_COLON, + STATE(949), 1, + sym_string_literal, + STATE(1627), 1, + sym_expression, + STATE(3431), 1, + sym_comma_expression, + ACTIONS(23), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(93), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(103), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1316), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1209), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [4148] = 24, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1579), 1, anon_sym_LBRACE, - ACTIONS(1210), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, + ACTIONS(1581), 1, + anon_sym_sizeof, + ACTIONS(1585), 1, + anon_sym_offsetof, + ACTIONS(1587), 1, + anon_sym__Generic, + ACTIONS(1591), 1, + sym_number_literal, + ACTIONS(2509), 1, sym_identifier, - STATE(128), 1, - sym_compound_statement, - STATE(939), 1, - sym_type_specifier, - STATE(942), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, - sym_alignas_qualifier, - STATE(1717), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(37), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(57), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(622), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(39), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(51), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1122), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(893), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(55), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(53), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [6168] = 25, + ACTIONS(2511), 1, + anon_sym_LPAREN2, + STATE(993), 1, + sym_string_literal, + STATE(1160), 1, + sym_expression, + STATE(1211), 1, + sym_initializer_list, + ACTIONS(1575), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1577), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1589), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1595), 2, + sym_true, + sym_false, + ACTIONS(1597), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2487), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2513), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1583), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(1593), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1237), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1225), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [4259] = 24, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, + anon_sym_sizeof, + ACTIONS(95), 1, + anon_sym_offsetof, + ACTIONS(97), 1, + anon_sym__Generic, + ACTIONS(167), 1, + sym_number_literal, + ACTIONS(2211), 1, + sym_identifier, + ACTIONS(2515), 1, + anon_sym_SEMI, + STATE(949), 1, + sym_string_literal, + STATE(1601), 1, + sym_expression, + STATE(3189), 1, + sym_comma_expression, + ACTIONS(23), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(93), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(103), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1316), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1209), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [4370] = 25, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(59), 1, + ACTIONS(1208), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1214), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1218), 1, sym_primitive_type, - ACTIONS(61), 1, + ACTIONS(1220), 1, anon_sym_enum, - ACTIONS(63), 1, + ACTIONS(1222), 1, anon_sym_struct, - ACTIONS(65), 1, + ACTIONS(1224), 1, anon_sym_union, - ACTIONS(463), 1, - anon_sym_LBRACE, - ACTIONS(1210), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, + ACTIONS(2128), 1, + anon_sym_RPAREN, + ACTIONS(2305), 1, sym_identifier, - STATE(356), 1, - sym_compound_statement, - STATE(939), 1, + STATE(1034), 1, sym_type_specifier, - STATE(942), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1717), 1, + STATE(1113), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1877), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -90271,26 +90025,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(697), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, + STATE(2762), 2, + sym_variadic_parameter, + sym_parameter_declaration, ACTIONS(39), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(51), 4, + ACTIONS(1216), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1122), 5, + STATE(1408), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(896), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -90319,15 +90073,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [6281] = 25, + [4483] = 25, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(49), 1, - anon_sym_LBRACE, ACTIONS(59), 1, sym_primitive_type, ACTIONS(61), 1, @@ -90336,19 +90088,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(65), 1, anon_sym_union, - ACTIONS(1210), 1, + ACTIONS(393), 1, + anon_sym_LBRACE, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, + ACTIONS(2427), 1, sym_identifier, - STATE(395), 1, + STATE(307), 1, sym_compound_statement, - STATE(939), 1, + STATE(945), 1, sym_type_specifier, - STATE(942), 1, + STATE(947), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1717), 1, + STATE(1726), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -90359,7 +90113,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(697), 2, + STATE(632), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(39), 4, @@ -90372,13 +90126,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1122), 5, + STATE(1195), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(895), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -90407,7 +90161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [6394] = 25, + [4596] = 25, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -90424,19 +90178,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(393), 1, anon_sym_LBRACE, - ACTIONS(1210), 1, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, + ACTIONS(2427), 1, sym_identifier, - STATE(362), 1, + STATE(306), 1, sym_compound_statement, - STATE(939), 1, + STATE(945), 1, sym_type_specifier, - STATE(942), 1, + STATE(947), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1717), 1, + STATE(1726), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -90447,7 +90201,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(697), 2, + STATE(707), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(39), 4, @@ -90460,13 +90214,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1122), 5, + STATE(1195), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(895), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -90495,13 +90249,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [6507] = 25, + [4709] = 25, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, ACTIONS(43), 1, anon_sym___declspec, + ACTIONS(49), 1, + anon_sym_LBRACE, ACTIONS(59), 1, sym_primitive_type, ACTIONS(61), 1, @@ -90510,21 +90266,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(65), 1, anon_sym_union, - ACTIONS(139), 1, - anon_sym_LBRACE, - ACTIONS(1210), 1, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, + ACTIONS(2427), 1, sym_identifier, - STATE(153), 1, + STATE(407), 1, sym_compound_statement, - STATE(939), 1, + STATE(945), 1, sym_type_specifier, - STATE(942), 1, + STATE(947), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1717), 1, + STATE(1726), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -90535,7 +90289,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(683), 2, + STATE(653), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(39), 4, @@ -90548,13 +90302,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1122), 5, + STATE(1195), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(895), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -90583,7 +90337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [6620] = 24, + [4822] = 24, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -90598,102 +90352,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(2508), 1, - anon_sym_RPAREN, - STATE(944), 1, - sym_string_literal, - STATE(1578), 1, - sym_expression, - STATE(3090), 1, - sym_comma_expression, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(93), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(103), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1292), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1199), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [6731] = 24, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, - ACTIONS(95), 1, - anon_sym_offsetof, - ACTIONS(97), 1, - anon_sym__Generic, - ACTIONS(167), 1, - sym_number_literal, - ACTIONS(2188), 1, - sym_identifier, - ACTIONS(2510), 1, - anon_sym_COLON, - STATE(944), 1, + ACTIONS(2517), 1, + anon_sym_SEMI, + STATE(949), 1, sym_string_literal, - STATE(1609), 1, + STATE(1604), 1, sym_expression, - STATE(3140), 1, + STATE(3109), 1, sym_comma_expression, ACTIONS(23), 2, anon_sym_BANG, @@ -90734,13 +90401,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -90757,7 +90424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6842] = 24, + [4933] = 24, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -90772,15 +90439,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(2512), 1, - anon_sym_COLON, - STATE(944), 1, + ACTIONS(2519), 1, + anon_sym_RPAREN, + STATE(949), 1, sym_string_literal, - STATE(1583), 1, + STATE(1637), 1, sym_expression, - STATE(3052), 1, + STATE(3149), 1, sym_comma_expression, ACTIONS(23), 2, anon_sym_BANG, @@ -90821,13 +90488,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -90844,7 +90511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6953] = 24, + [5044] = 24, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -90859,16 +90526,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(1743), 1, + anon_sym_LBRACE, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(2514), 1, - anon_sym_RPAREN, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1584), 1, + STATE(1621), 1, sym_expression, - STATE(2986), 1, - sym_comma_expression, + STATE(2913), 1, + sym_initializer_list, ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, @@ -90908,13 +90575,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -90931,7 +90598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7064] = 24, + [5155] = 24, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -90946,16 +90613,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(1743), 1, + anon_sym_LBRACE, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(2516), 1, - anon_sym_RPAREN, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1576), 1, + STATE(1609), 1, sym_expression, - STATE(2993), 1, - sym_comma_expression, + STATE(2920), 1, + sym_initializer_list, ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, @@ -90995,13 +90662,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -91018,94 +90685,95 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7175] = 24, + [5266] = 25, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, - ACTIONS(95), 1, - anon_sym_offsetof, - ACTIONS(97), 1, - anon_sym__Generic, - ACTIONS(167), 1, - sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + sym_primitive_type, + ACTIONS(61), 1, + anon_sym_enum, + ACTIONS(63), 1, + anon_sym_struct, + ACTIONS(65), 1, + anon_sym_union, + ACTIONS(1214), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2427), 1, sym_identifier, - ACTIONS(2518), 1, - anon_sym_RPAREN, - STATE(944), 1, - sym_string_literal, - STATE(1574), 1, - sym_expression, - STATE(3002), 1, - sym_comma_expression, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(93), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(103), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1292), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1199), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [7286] = 24, + STATE(382), 1, + sym_compound_statement, + STATE(945), 1, + sym_type_specifier, + STATE(947), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1048), 1, + sym_alignas_qualifier, + STATE(1726), 1, + sym__declaration_specifiers, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(37), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(707), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(39), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(51), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1195), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(895), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(55), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(53), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [5379] = 24, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -91120,15 +90788,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(2520), 1, + ACTIONS(2521), 1, anon_sym_SEMI, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1614), 1, + STATE(1617), 1, sym_expression, - STATE(3169), 1, + STATE(3124), 1, sym_comma_expression, ACTIONS(23), 2, anon_sym_BANG, @@ -91169,13 +90837,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -91192,7 +90860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7397] = 25, + [5490] = 25, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -91207,21 +90875,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(65), 1, anon_sym_union, - ACTIONS(139), 1, + ACTIONS(625), 1, anon_sym_LBRACE, - ACTIONS(1210), 1, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, + ACTIONS(2427), 1, sym_identifier, - STATE(133), 1, + STATE(374), 1, sym_compound_statement, - STATE(939), 1, + STATE(945), 1, sym_type_specifier, - STATE(942), 1, + STATE(947), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1717), 1, + STATE(1726), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -91232,7 +90900,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(658), 2, + STATE(707), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(39), 4, @@ -91245,13 +90913,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1122), 5, + STATE(1195), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(895), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -91280,41 +90948,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [7510] = 26, + [5603] = 24, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, + anon_sym_sizeof, + ACTIONS(95), 1, + anon_sym_offsetof, + ACTIONS(97), 1, + anon_sym__Generic, + ACTIONS(167), 1, + sym_number_literal, + ACTIONS(2211), 1, + sym_identifier, + ACTIONS(2523), 1, + anon_sym_COLON, + STATE(949), 1, + sym_string_literal, + STATE(1590), 1, + sym_expression, + STATE(3053), 1, + sym_comma_expression, + ACTIONS(23), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(93), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(103), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1316), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1209), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [5714] = 25, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(1210), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2055), 1, + ACTIONS(59), 1, sym_primitive_type, - ACTIONS(2057), 1, + ACTIONS(61), 1, anon_sym_enum, - ACTIONS(2059), 1, + ACTIONS(63), 1, anon_sym_struct, - ACTIONS(2061), 1, + ACTIONS(65), 1, anon_sym_union, - ACTIONS(2103), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2460), 1, + ACTIONS(393), 1, + anon_sym_LBRACE, + ACTIONS(1214), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2427), 1, sym_identifier, - ACTIONS(2522), 1, - anon_sym_RPAREN, - STATE(1012), 1, + STATE(321), 1, + sym_compound_statement, + STATE(945), 1, sym_type_specifier, - STATE(1036), 1, - sym_alignas_qualifier, - STATE(1090), 1, + STATE(947), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1808), 1, + STATE(1048), 1, + sym_alignas_qualifier, + STATE(1726), 1, sym__declaration_specifiers, - STATE(2469), 1, - sym_variadic_parameter, - STATE(2578), 1, - sym_parameter_declaration, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___must_hold, @@ -91324,23 +91075,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, + STATE(662), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, ACTIONS(39), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2053), 4, + ACTIONS(51), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1371), 5, + STATE(1195), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(891), 7, + STATE(895), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -91369,7 +91123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [7625] = 24, + [5827] = 24, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -91384,15 +91138,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(2524), 1, - anon_sym_COLON, - STATE(944), 1, + ACTIONS(2525), 1, + anon_sym_RPAREN, + STATE(949), 1, sym_string_literal, - STATE(1591), 1, + STATE(1595), 1, sym_expression, - STATE(3338), 1, + STATE(3074), 1, sym_comma_expression, ACTIONS(23), 2, anon_sym_BANG, @@ -91433,13 +91187,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -91456,7 +91210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7736] = 24, + [5938] = 24, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -91471,15 +91225,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(2526), 1, + ACTIONS(2527), 1, anon_sym_COLON, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1617), 1, + STATE(1628), 1, sym_expression, - STATE(3129), 1, + STATE(3365), 1, sym_comma_expression, ACTIONS(23), 2, anon_sym_BANG, @@ -91520,13 +91274,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -91543,77 +91297,165 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7847] = 24, + [6049] = 25, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1508), 1, - sym_identifier, - ACTIONS(1518), 1, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(59), 1, + sym_primitive_type, + ACTIONS(61), 1, + anon_sym_enum, + ACTIONS(63), 1, + anon_sym_struct, + ACTIONS(65), 1, + anon_sym_union, + ACTIONS(625), 1, anon_sym_LBRACE, - ACTIONS(1520), 1, + ACTIONS(1214), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2427), 1, + sym_identifier, + STATE(365), 1, + sym_compound_statement, + STATE(945), 1, + sym_type_specifier, + STATE(947), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1048), 1, + sym_alignas_qualifier, + STATE(1726), 1, + sym__declaration_specifiers, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(37), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(707), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(39), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(51), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1195), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(895), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(55), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(53), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [6162] = 24, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, anon_sym_sizeof, - ACTIONS(1524), 1, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2528), 1, - anon_sym_LPAREN2, - STATE(915), 1, + ACTIONS(2211), 1, + sym_identifier, + ACTIONS(2529), 1, + anon_sym_COLON, + STATE(949), 1, sym_string_literal, - STATE(1011), 1, + STATE(1607), 1, sym_expression, - STATE(1071), 1, - sym_initializer_list, - ACTIONS(1512), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1514), 2, + STATE(3164), 1, + sym_comma_expression, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1528), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1536), 2, - sym_true, - sym_false, - ACTIONS(1538), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2482), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2530), 2, + ACTIONS(89), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(103), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, + ACTIONS(105), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1073), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -91630,34 +91472,131 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7958] = 24, + [6273] = 25, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(59), 1, + sym_primitive_type, + ACTIONS(61), 1, + anon_sym_enum, + ACTIONS(63), 1, + anon_sym_struct, + ACTIONS(65), 1, + anon_sym_union, + ACTIONS(139), 1, + anon_sym_LBRACE, + ACTIONS(1214), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2427), 1, + sym_identifier, + STATE(166), 1, + sym_compound_statement, + STATE(945), 1, + sym_type_specifier, + STATE(947), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1048), 1, + sym_alignas_qualifier, + STATE(1726), 1, + sym__declaration_specifiers, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(37), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(681), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(39), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(51), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1195), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(895), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(55), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(53), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [6386] = 24, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, + anon_sym_sizeof, ACTIONS(95), 1, anon_sym_offsetof, ACTIONS(97), 1, anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(1806), 1, - anon_sym_LBRACE, - ACTIONS(1808), 1, - anon_sym_sizeof, - ACTIONS(2532), 1, - anon_sym_LPAREN2, - STATE(944), 1, + ACTIONS(2531), 1, + anon_sym_COLON, + STATE(949), 1, sym_string_literal, - STATE(1252), 1, - sym_initializer_list, - STATE(1270), 1, + STATE(1623), 1, sym_expression, + STATE(3166), 1, + sym_comma_expression, + ACTIONS(23), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(89), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, @@ -91667,15 +91606,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1802), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1804), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2534), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, @@ -91694,13 +91624,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -91717,13 +91647,279 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8069] = 25, + [6497] = 25, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(59), 1, + sym_primitive_type, + ACTIONS(61), 1, + anon_sym_enum, + ACTIONS(63), 1, + anon_sym_struct, + ACTIONS(65), 1, + anon_sym_union, + ACTIONS(625), 1, + anon_sym_LBRACE, + ACTIONS(1214), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2427), 1, + sym_identifier, + STATE(364), 1, + sym_compound_statement, + STATE(945), 1, + sym_type_specifier, + STATE(947), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1048), 1, + sym_alignas_qualifier, + STATE(1726), 1, + sym__declaration_specifiers, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(37), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(692), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(39), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(51), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1195), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(895), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(55), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(53), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [6610] = 25, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + sym_primitive_type, + ACTIONS(61), 1, + anon_sym_enum, + ACTIONS(63), 1, + anon_sym_struct, + ACTIONS(65), 1, + anon_sym_union, + ACTIONS(1214), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2427), 1, + sym_identifier, + STATE(402), 1, + sym_compound_statement, + STATE(945), 1, + sym_type_specifier, + STATE(947), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1048), 1, + sym_alignas_qualifier, + STATE(1726), 1, + sym__declaration_specifiers, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(37), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(707), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(39), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(51), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1195), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(895), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(55), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(53), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [6723] = 25, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(59), 1, + sym_primitive_type, + ACTIONS(61), 1, + anon_sym_enum, + ACTIONS(63), 1, + anon_sym_struct, + ACTIONS(65), 1, + anon_sym_union, + ACTIONS(139), 1, + anon_sym_LBRACE, + ACTIONS(1214), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2427), 1, + sym_identifier, + STATE(152), 1, + sym_compound_statement, + STATE(945), 1, + sym_type_specifier, + STATE(947), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1048), 1, + sym_alignas_qualifier, + STATE(1726), 1, + sym__declaration_specifiers, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(37), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(707), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(39), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(51), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1195), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(895), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(55), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(53), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [6836] = 25, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, ACTIONS(43), 1, anon_sym___declspec, + ACTIONS(49), 1, + anon_sym_LBRACE, ACTIONS(59), 1, sym_primitive_type, ACTIONS(61), 1, @@ -91732,21 +91928,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(65), 1, anon_sym_union, - ACTIONS(139), 1, - anon_sym_LBRACE, - ACTIONS(1210), 1, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, + ACTIONS(2427), 1, sym_identifier, - STATE(136), 1, + STATE(394), 1, sym_compound_statement, - STATE(939), 1, + STATE(945), 1, sym_type_specifier, - STATE(942), 1, + STATE(947), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1717), 1, + STATE(1726), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -91757,7 +91951,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(697), 2, + STATE(668), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(39), 4, @@ -91770,13 +91964,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1122), 5, + STATE(1195), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(895), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -91805,7 +91999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [8182] = 25, + [6949] = 25, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -91820,21 +92014,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(65), 1, anon_sym_union, - ACTIONS(393), 1, + ACTIONS(139), 1, anon_sym_LBRACE, - ACTIONS(1210), 1, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, + ACTIONS(2427), 1, sym_identifier, - STATE(333), 1, + STATE(151), 1, sym_compound_statement, - STATE(939), 1, + STATE(945), 1, sym_type_specifier, - STATE(942), 1, + STATE(947), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1717), 1, + STATE(1726), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -91845,7 +92039,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(697), 2, + STATE(687), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(39), 4, @@ -91858,13 +92052,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1122), 5, + STATE(1195), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(895), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -91893,38 +92087,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [8295] = 14, - ACTIONS(1954), 1, - anon_sym_const, - ACTIONS(1964), 1, - anon_sym_STAR, - ACTIONS(1971), 1, - anon_sym_EQ, - ACTIONS(2536), 1, - anon_sym_LPAREN2, - STATE(875), 1, - sym_string_literal, - STATE(1726), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5), 2, + [7062] = 25, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1977), 2, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(2540), 4, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(59), 1, + sym_primitive_type, + ACTIONS(61), 1, + anon_sym_enum, + ACTIONS(63), 1, + anon_sym_struct, + ACTIONS(65), 1, + anon_sym_union, + ACTIONS(139), 1, + anon_sym_LBRACE, + ACTIONS(1214), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2427), 1, + sym_identifier, + STATE(149), 1, + sym_compound_statement, + STATE(945), 1, + sym_type_specifier, + STATE(947), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1048), 1, + sym_alignas_qualifier, + STATE(1726), 1, + sym__declaration_specifiers, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(37), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(689), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(39), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(51), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1967), 10, + STATE(1195), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(895), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(55), 9, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -91932,202 +92164,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(1975), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1962), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1956), 12, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [8386] = 24, + ACTIONS(53), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [7175] = 24, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, + ACTIONS(1536), 1, + sym_identifier, + ACTIONS(1546), 1, + anon_sym_LBRACE, + ACTIONS(1548), 1, anon_sym_sizeof, - ACTIONS(95), 1, + ACTIONS(1552), 1, anon_sym_offsetof, - ACTIONS(97), 1, + ACTIONS(1554), 1, anon_sym__Generic, - ACTIONS(167), 1, + ACTIONS(1558), 1, sym_number_literal, - ACTIONS(2188), 1, - sym_identifier, - ACTIONS(2542), 1, - anon_sym_RPAREN, - STATE(944), 1, + ACTIONS(2533), 1, + anon_sym_LPAREN2, + STATE(913), 1, sym_string_literal, - STATE(1563), 1, + STATE(1022), 1, sym_expression, - STATE(3089), 1, - sym_comma_expression, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, + STATE(1087), 1, + sym_initializer_list, + ACTIONS(1540), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(99), 2, + ACTIONS(1542), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1556), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, + ACTIONS(1564), 2, sym_true, sym_false, - ACTIONS(93), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(103), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1292), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1199), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [8497] = 24, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, - ACTIONS(95), 1, - anon_sym_offsetof, - ACTIONS(97), 1, - anon_sym__Generic, - ACTIONS(167), 1, - sym_number_literal, - ACTIONS(2188), 1, - sym_identifier, - ACTIONS(2544), 1, - anon_sym_COLON, - STATE(944), 1, - sym_string_literal, - STATE(1560), 1, - sym_expression, - STATE(3203), 1, - sym_comma_expression, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(27), 2, + ACTIONS(1566), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(2535), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(93), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, + ACTIONS(1562), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1056), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -92144,13 +92262,15 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8608] = 25, + [7286] = 25, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, ACTIONS(43), 1, anon_sym___declspec, + ACTIONS(49), 1, + anon_sym_LBRACE, ACTIONS(59), 1, sym_primitive_type, ACTIONS(61), 1, @@ -92159,21 +92279,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(65), 1, anon_sym_union, - ACTIONS(393), 1, - anon_sym_LBRACE, - ACTIONS(1210), 1, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, + ACTIONS(2427), 1, sym_identifier, - STATE(334), 1, + STATE(384), 1, sym_compound_statement, - STATE(939), 1, + STATE(945), 1, sym_type_specifier, - STATE(942), 1, + STATE(947), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1717), 1, + STATE(1726), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -92184,7 +92302,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(668), 2, + STATE(680), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(39), 4, @@ -92197,13 +92315,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1122), 5, + STATE(1195), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(895), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -92232,7 +92350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [8721] = 25, + [7399] = 25, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -92247,21 +92365,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(65), 1, anon_sym_union, - ACTIONS(393), 1, + ACTIONS(139), 1, anon_sym_LBRACE, - ACTIONS(1210), 1, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, + ACTIONS(2427), 1, sym_identifier, - STATE(329), 1, + STATE(134), 1, sym_compound_statement, - STATE(939), 1, + STATE(945), 1, sym_type_specifier, - STATE(942), 1, + STATE(947), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1717), 1, + STATE(1726), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -92272,7 +92390,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(697), 2, + STATE(707), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(39), 4, @@ -92285,13 +92403,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1122), 5, + STATE(1195), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(895), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -92320,7 +92438,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [8834] = 25, + [7512] = 24, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, + anon_sym_sizeof, + ACTIONS(95), 1, + anon_sym_offsetof, + ACTIONS(97), 1, + anon_sym__Generic, + ACTIONS(167), 1, + sym_number_literal, + ACTIONS(2211), 1, + sym_identifier, + ACTIONS(2537), 1, + anon_sym_SEMI, + STATE(949), 1, + sym_string_literal, + STATE(1644), 1, + sym_expression, + STATE(3364), 1, + sym_comma_expression, + ACTIONS(23), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(93), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(103), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1316), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1209), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [7623] = 25, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -92335,21 +92540,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(65), 1, anon_sym_union, - ACTIONS(393), 1, + ACTIONS(139), 1, anon_sym_LBRACE, - ACTIONS(1210), 1, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, + ACTIONS(2427), 1, sym_identifier, - STATE(326), 1, + STATE(137), 1, sym_compound_statement, - STATE(939), 1, + STATE(945), 1, sym_type_specifier, - STATE(942), 1, + STATE(947), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1717), 1, + STATE(1726), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -92360,7 +92565,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(697), 2, + STATE(707), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(39), 4, @@ -92373,13 +92578,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1122), 5, + STATE(1195), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(895), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -92408,7 +92613,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [8947] = 25, + [7736] = 24, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, + anon_sym_sizeof, + ACTIONS(95), 1, + anon_sym_offsetof, + ACTIONS(97), 1, + anon_sym__Generic, + ACTIONS(167), 1, + sym_number_literal, + ACTIONS(2211), 1, + sym_identifier, + ACTIONS(2539), 1, + anon_sym_SEMI, + STATE(949), 1, + sym_string_literal, + STATE(1578), 1, + sym_expression, + STATE(3210), 1, + sym_comma_expression, + ACTIONS(23), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(93), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(103), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1316), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1209), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [7847] = 25, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -92423,21 +92715,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(65), 1, anon_sym_union, - ACTIONS(463), 1, + ACTIONS(139), 1, anon_sym_LBRACE, - ACTIONS(1210), 1, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, + ACTIONS(2427), 1, sym_identifier, - STATE(320), 1, + STATE(142), 1, sym_compound_statement, - STATE(939), 1, + STATE(945), 1, sym_type_specifier, - STATE(942), 1, + STATE(947), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1717), 1, + STATE(1726), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -92448,7 +92740,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(624), 2, + STATE(695), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(39), 4, @@ -92461,13 +92753,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1122), 5, + STATE(1195), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(895), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -92495,178 +92787,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, - anon_sym___thread, - [9060] = 23, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_offsetof, - ACTIONS(97), 1, - anon_sym__Generic, - ACTIONS(167), 1, - sym_number_literal, - ACTIONS(1800), 1, - sym_identifier, - ACTIONS(1952), 1, - anon_sym_sizeof, - ACTIONS(2476), 1, - anon_sym_LPAREN2, - ACTIONS(2546), 1, - anon_sym_RBRACK, - STATE(944), 1, - sym_string_literal, - STATE(1343), 1, - sym_expression, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(1948), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1950), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2290), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2478), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(93), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(103), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1250), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1199), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [9168] = 23, + anon_sym___thread, + [7960] = 25, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_offsetof, - ACTIONS(97), 1, - anon_sym__Generic, - ACTIONS(167), 1, - sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(59), 1, + sym_primitive_type, + ACTIONS(61), 1, + anon_sym_enum, + ACTIONS(63), 1, + anon_sym_struct, + ACTIONS(65), 1, + anon_sym_union, + ACTIONS(625), 1, + anon_sym_LBRACE, + ACTIONS(1214), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2427), 1, sym_identifier, - ACTIONS(1952), 1, - anon_sym_sizeof, - ACTIONS(2476), 1, - anon_sym_LPAREN2, - ACTIONS(2548), 1, - anon_sym_RBRACK, - STATE(944), 1, - sym_string_literal, - STATE(1343), 1, - sym_expression, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(1948), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1950), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2290), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2478), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(93), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(103), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1250), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1199), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [9276] = 23, + STATE(355), 1, + sym_compound_statement, + STATE(945), 1, + sym_type_specifier, + STATE(947), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1048), 1, + sym_alignas_qualifier, + STATE(1726), 1, + sym__declaration_specifiers, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(37), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(707), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(39), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(51), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1195), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(895), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(55), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(53), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [8073] = 24, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -92681,13 +92891,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2211), 1, sym_identifier, - STATE(944), 1, + ACTIONS(2541), 1, + anon_sym_SEMI, + STATE(949), 1, sym_string_literal, - STATE(1566), 1, + STATE(1600), 1, sym_expression, - STATE(3144), 1, + STATE(3107), 1, sym_comma_expression, ACTIONS(23), 2, anon_sym_BANG, @@ -92728,13 +92940,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -92751,7 +92963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9384] = 23, + [8184] = 24, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -92762,18 +92974,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(1743), 1, + anon_sym_LBRACE, + ACTIONS(1745), 1, anon_sym_sizeof, - ACTIONS(2476), 1, + ACTIONS(2543), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_RBRACK, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1343), 1, + STATE(1212), 1, + sym_initializer_list, + STATE(1296), 1, sym_expression, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, @@ -92783,16 +93000,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1948), 2, + ACTIONS(1739), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1950), 2, + ACTIONS(1741), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2478), 2, + ACTIONS(2545), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -92813,13 +93027,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -92836,7 +93050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9492] = 24, + [8295] = 25, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -92851,19 +93065,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(65), 1, anon_sym_union, - ACTIONS(1210), 1, + ACTIONS(139), 1, + anon_sym_LBRACE, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, + ACTIONS(2427), 1, sym_identifier, - STATE(879), 1, - sym_macro_modifier, - STATE(939), 1, + STATE(161), 1, + sym_compound_statement, + STATE(945), 1, sym_type_specifier, - STATE(942), 1, + STATE(947), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1745), 1, + STATE(1726), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -92871,12 +93087,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(37), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(45), 2, - anon_sym___init, - anon_sym___exit, ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, + STATE(707), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, ACTIONS(39), 4, anon_sym___read_mostly, anon_sym___ro_after_init, @@ -92887,13 +93103,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1122), 5, + STATE(1195), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(895), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -92922,64 +93138,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [9602] = 24, + [8408] = 24, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2552), 1, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, + anon_sym_sizeof, + ACTIONS(95), 1, + anon_sym_offsetof, + ACTIONS(97), 1, + anon_sym__Generic, + ACTIONS(167), 1, + sym_number_literal, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(2570), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2573), 1, + ACTIONS(2547), 1, + anon_sym_SEMI, + STATE(949), 1, + sym_string_literal, + STATE(1635), 1, + sym_expression, + STATE(3324), 1, + sym_comma_expression, + ACTIONS(23), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(93), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(103), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1316), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1209), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [8519] = 25, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(2576), 1, - anon_sym_LBRACE, - ACTIONS(2584), 1, + ACTIONS(1208), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1214), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1218), 1, sym_primitive_type, - ACTIONS(2587), 1, + ACTIONS(1220), 1, anon_sym_enum, - ACTIONS(2590), 1, + ACTIONS(1222), 1, anon_sym_struct, - ACTIONS(2593), 1, + ACTIONS(1224), 1, anon_sym_union, - STATE(939), 1, + ACTIONS(2305), 1, + sym_identifier, + ACTIONS(2549), 1, + anon_sym_RPAREN, + STATE(1034), 1, sym_type_specifier, - STATE(942), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1717), 1, + STATE(1113), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1877), 1, sym__declaration_specifiers, - ACTIONS(2561), 2, + ACTIONS(35), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(2564), 2, + ACTIONS(37), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2581), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(697), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(2567), 4, + STATE(2655), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(39), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2578), 4, + ACTIONS(1216), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1122), 5, + STATE(1408), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(896), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -92987,7 +93292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2555), 9, + ACTIONS(55), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -92997,7 +93302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2558), 10, + ACTIONS(53), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -93008,7 +93313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [9712] = 23, + [8632] = 23, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -93023,13 +93328,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2211), 1, sym_identifier, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1558), 1, + STATE(1608), 1, sym_expression, - STATE(3398), 1, + STATE(3137), 1, sym_comma_expression, ACTIONS(23), 2, anon_sym_BANG, @@ -93070,13 +93375,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -93093,44 +93398,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9820] = 24, + [8740] = 25, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(59), 1, + ACTIONS(1208), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1214), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1218), 1, sym_primitive_type, - ACTIONS(61), 1, + ACTIONS(1220), 1, anon_sym_enum, - ACTIONS(63), 1, + ACTIONS(1222), 1, anon_sym_struct, - ACTIONS(65), 1, + ACTIONS(1224), 1, anon_sym_union, - ACTIONS(1210), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, + ACTIONS(2551), 1, sym_identifier, - STATE(890), 1, - sym_macro_modifier, - STATE(939), 1, + STATE(1034), 1, sym_type_specifier, - STATE(942), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1735), 1, + STATE(1113), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1877), 1, sym__declaration_specifiers, + STATE(2949), 1, + sym_variadic_parameter, + STATE(2961), 1, + sym_parameter_declaration, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___must_hold, ACTIONS(37), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(45), 2, - anon_sym___init, - anon_sym___exit, ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, @@ -93139,18 +93445,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(51), 4, + ACTIONS(1216), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1122), 5, + STATE(1408), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(896), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -93179,7 +93485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [9930] = 23, + [8852] = 23, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -93190,17 +93496,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(2017), 1, anon_sym_sizeof, - ACTIONS(2476), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2596), 1, + ACTIONS(2553), 1, anon_sym_RBRACK, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1343), 1, + STATE(1371), 1, sym_expression, ACTIONS(99), 2, anon_sym_asm, @@ -93211,16 +93517,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1948), 2, + ACTIONS(2013), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1950), 2, + ACTIONS(2015), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2478), 2, + ACTIONS(2495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -93241,13 +93547,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -93264,7 +93570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10038] = 23, + [8960] = 23, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -93279,13 +93585,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2211), 1, sym_identifier, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1528), 1, + STATE(1593), 1, sym_expression, - STATE(2509), 1, + STATE(3298), 1, sym_comma_expression, ACTIONS(23), 2, anon_sym_BANG, @@ -93326,13 +93632,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1209), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [9068] = 23, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_offsetof, + ACTIONS(97), 1, + anon_sym__Generic, + ACTIONS(167), 1, + sym_number_literal, + ACTIONS(1737), 1, + sym_identifier, + ACTIONS(2017), 1, + anon_sym_sizeof, + ACTIONS(2493), 1, + anon_sym_LPAREN2, + ACTIONS(2555), 1, + anon_sym_RBRACK, + STATE(949), 1, + sym_string_literal, + STATE(1371), 1, + sym_expression, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(2013), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2015), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2319), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(103), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1224), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1209), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [9176] = 23, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_offsetof, + ACTIONS(97), 1, + anon_sym__Generic, + ACTIONS(167), 1, + sym_number_literal, + ACTIONS(1737), 1, + sym_identifier, + ACTIONS(2017), 1, + anon_sym_sizeof, + ACTIONS(2493), 1, + anon_sym_LPAREN2, + ACTIONS(2557), 1, + anon_sym_RBRACK, + STATE(949), 1, + sym_string_literal, + STATE(1371), 1, + sym_expression, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(2013), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2015), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2319), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(103), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1224), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1209), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [9284] = 23, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_offsetof, + ACTIONS(97), 1, + anon_sym__Generic, + ACTIONS(167), 1, + sym_number_literal, + ACTIONS(1737), 1, + sym_identifier, + ACTIONS(2017), 1, + anon_sym_sizeof, + ACTIONS(2493), 1, + anon_sym_LPAREN2, + ACTIONS(2559), 1, + anon_sym_RBRACK, + STATE(949), 1, + sym_string_literal, + STATE(1371), 1, + sym_expression, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(2013), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2015), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2319), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(103), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -93349,34 +93910,34 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10146] = 24, + [9392] = 24, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(1210), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2055), 1, + ACTIONS(59), 1, sym_primitive_type, - ACTIONS(2057), 1, + ACTIONS(61), 1, anon_sym_enum, - ACTIONS(2059), 1, + ACTIONS(63), 1, anon_sym_struct, - ACTIONS(2061), 1, + ACTIONS(65), 1, anon_sym_union, - ACTIONS(2103), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2276), 1, + ACTIONS(1214), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2427), 1, sym_identifier, - STATE(1012), 1, + STATE(888), 1, + sym_macro_modifier, + STATE(945), 1, sym_type_specifier, - STATE(1036), 1, - sym_alignas_qualifier, - STATE(1090), 1, + STATE(947), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1808), 1, + STATE(1048), 1, + sym_alignas_qualifier, + STATE(1765), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -93384,29 +93945,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(37), 2, anon_sym___scanf, anon_sym___printf, + ACTIONS(45), 2, + anon_sym___init, + anon_sym___exit, ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2929), 2, - sym_variadic_parameter, - sym_parameter_declaration, ACTIONS(39), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2053), 4, + ACTIONS(51), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1371), 5, + STATE(1195), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(891), 7, + STATE(895), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -93435,7 +93996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [10256] = 23, + [9502] = 23, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -93446,17 +94007,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(2017), 1, anon_sym_sizeof, - ACTIONS(2476), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2598), 1, + ACTIONS(2561), 1, anon_sym_RBRACK, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1343), 1, + STATE(1371), 1, sym_expression, ACTIONS(99), 2, anon_sym_asm, @@ -93467,16 +94028,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1948), 2, + ACTIONS(2013), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1950), 2, + ACTIONS(2015), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2478), 2, + ACTIONS(2495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -93497,13 +94058,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -93520,7 +94081,179 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10364] = 23, + [9610] = 24, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2563), 1, + sym_identifier, + ACTIONS(2581), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2584), 1, + anon_sym___declspec, + ACTIONS(2587), 1, + anon_sym_LBRACE, + ACTIONS(2595), 1, + sym_primitive_type, + ACTIONS(2598), 1, + anon_sym_enum, + ACTIONS(2601), 1, + anon_sym_struct, + ACTIONS(2604), 1, + anon_sym_union, + STATE(945), 1, + sym_type_specifier, + STATE(947), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1048), 1, + sym_alignas_qualifier, + STATE(1726), 1, + sym__declaration_specifiers, + ACTIONS(2572), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(2575), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(2592), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(707), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(2578), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2589), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1195), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(895), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2566), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2569), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [9720] = 24, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(59), 1, + sym_primitive_type, + ACTIONS(61), 1, + anon_sym_enum, + ACTIONS(63), 1, + anon_sym_struct, + ACTIONS(65), 1, + anon_sym_union, + ACTIONS(1214), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2427), 1, + sym_identifier, + STATE(893), 1, + sym_macro_modifier, + STATE(945), 1, + sym_type_specifier, + STATE(947), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1048), 1, + sym_alignas_qualifier, + STATE(1753), 1, + sym__declaration_specifiers, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(37), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(45), 2, + anon_sym___init, + anon_sym___exit, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(39), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(51), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1195), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(895), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(55), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(53), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [9830] = 23, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -93531,17 +94264,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(2017), 1, anon_sym_sizeof, - ACTIONS(2476), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2600), 1, + ACTIONS(2607), 1, anon_sym_RBRACK, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1343), 1, + STATE(1371), 1, sym_expression, ACTIONS(99), 2, anon_sym_asm, @@ -93552,16 +94285,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1948), 2, + ACTIONS(2013), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1950), 2, + ACTIONS(2015), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2478), 2, + ACTIONS(2495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -93582,13 +94315,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -93605,29 +94338,41 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10472] = 23, + [9938] = 23, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, + anon_sym_sizeof, ACTIONS(95), 1, anon_sym_offsetof, ACTIONS(97), 1, anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(1952), 1, - anon_sym_sizeof, - ACTIONS(2476), 1, - anon_sym_LPAREN2, - ACTIONS(2602), 1, - anon_sym_RBRACK, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1343), 1, + STATE(1533), 1, sym_expression, + STATE(2746), 1, + sym_comma_expression, + ACTIONS(23), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, @@ -93637,18 +94382,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1948), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1950), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2290), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2478), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, @@ -93667,13 +94400,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -93690,7 +94423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10580] = 23, + [10046] = 23, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -93701,17 +94434,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(2017), 1, anon_sym_sizeof, - ACTIONS(2476), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2604), 1, + ACTIONS(2609), 1, anon_sym_RBRACK, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1343), 1, + STATE(1371), 1, sym_expression, ACTIONS(99), 2, anon_sym_asm, @@ -93722,16 +94455,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1948), 2, + ACTIONS(2013), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1950), 2, + ACTIONS(2015), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2478), 2, + ACTIONS(2495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -93752,13 +94485,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -93775,7 +94508,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10688] = 23, + [10154] = 23, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -93786,17 +94519,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(2017), 1, anon_sym_sizeof, - ACTIONS(2476), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2606), 1, + ACTIONS(2611), 1, anon_sym_RBRACK, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1343), 1, + STATE(1371), 1, sym_expression, ACTIONS(99), 2, anon_sym_asm, @@ -93807,16 +94540,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1948), 2, + ACTIONS(2013), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1950), 2, + ACTIONS(2015), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2478), 2, + ACTIONS(2495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -93837,13 +94570,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -93860,7 +94593,93 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10796] = 23, + [10262] = 24, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(1208), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1214), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1218), 1, + sym_primitive_type, + ACTIONS(1220), 1, + anon_sym_enum, + ACTIONS(1222), 1, + anon_sym_struct, + ACTIONS(1224), 1, + anon_sym_union, + ACTIONS(2305), 1, + sym_identifier, + STATE(1034), 1, + sym_type_specifier, + STATE(1048), 1, + sym_alignas_qualifier, + STATE(1113), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1877), 1, + sym__declaration_specifiers, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(37), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2961), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(39), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(1216), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1408), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(896), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(55), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(53), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [10372] = 23, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -93871,17 +94690,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(2017), 1, anon_sym_sizeof, - ACTIONS(2476), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2608), 1, + ACTIONS(2613), 1, anon_sym_RBRACK, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1343), 1, + STATE(1371), 1, sym_expression, ACTIONS(99), 2, anon_sym_asm, @@ -93892,16 +94711,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1948), 2, + ACTIONS(2013), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1950), 2, + ACTIONS(2015), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2478), 2, + ACTIONS(2495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -93922,13 +94741,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -93945,7 +94764,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10904] = 23, + [10480] = 23, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -93956,17 +94775,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(2017), 1, anon_sym_sizeof, - ACTIONS(2476), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2610), 1, + ACTIONS(2615), 1, anon_sym_RBRACK, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1343), 1, + STATE(1371), 1, sym_expression, ACTIONS(99), 2, anon_sym_asm, @@ -93977,16 +94796,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1948), 2, + ACTIONS(2013), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1950), 2, + ACTIONS(2015), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2478), 2, + ACTIONS(2495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -94007,13 +94826,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -94030,7 +94849,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11012] = 23, + [10588] = 23, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -94041,17 +94860,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(2017), 1, anon_sym_sizeof, - ACTIONS(2476), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2612), 1, + ACTIONS(2617), 1, anon_sym_RBRACK, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1343), 1, + STATE(1371), 1, sym_expression, ACTIONS(99), 2, anon_sym_asm, @@ -94062,16 +94881,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1948), 2, + ACTIONS(2013), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1950), 2, + ACTIONS(2015), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2478), 2, + ACTIONS(2495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -94092,13 +94911,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -94115,7 +94934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11120] = 23, + [10696] = 23, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -94126,17 +94945,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(2017), 1, anon_sym_sizeof, - ACTIONS(2476), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2614), 1, + ACTIONS(2619), 1, anon_sym_RBRACK, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1343), 1, + STATE(1371), 1, sym_expression, ACTIONS(99), 2, anon_sym_asm, @@ -94147,16 +94966,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1948), 2, + ACTIONS(2013), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1950), 2, + ACTIONS(2015), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2478), 2, + ACTIONS(2495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -94177,13 +94996,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -94200,94 +95019,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11228] = 25, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___declspec, - ACTIONS(1210), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2055), 1, - sym_primitive_type, - ACTIONS(2057), 1, - anon_sym_enum, - ACTIONS(2059), 1, - anon_sym_struct, - ACTIONS(2061), 1, - anon_sym_union, - ACTIONS(2103), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2616), 1, - sym_identifier, - STATE(1012), 1, - sym_type_specifier, - STATE(1036), 1, - sym_alignas_qualifier, - STATE(1090), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1808), 1, - sym__declaration_specifiers, - STATE(2929), 1, - sym_parameter_declaration, - STATE(2940), 1, - sym_variadic_parameter, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(37), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(57), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(39), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(2053), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1371), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(891), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(55), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(53), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [11340] = 24, + [10804] = 24, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -94302,19 +95034,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(65), 1, anon_sym_union, - ACTIONS(1210), 1, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, + ACTIONS(2427), 1, sym_identifier, - STATE(887), 1, + STATE(890), 1, sym_macro_modifier, - STATE(939), 1, + STATE(945), 1, sym_type_specifier, - STATE(942), 1, + STATE(947), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1736), 1, + STATE(1755), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -94338,13 +95070,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1122), 5, + STATE(1195), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(895), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -94373,7 +95105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [11450] = 24, + [10914] = 24, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -94388,19 +95120,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(65), 1, anon_sym_union, - ACTIONS(1210), 1, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, + ACTIONS(2427), 1, sym_identifier, - STATE(888), 1, + STATE(884), 1, sym_macro_modifier, - STATE(939), 1, + STATE(945), 1, sym_type_specifier, - STATE(942), 1, + STATE(947), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1738), 1, + STATE(1746), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -94424,13 +95156,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1122), 5, + STATE(1195), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(895), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -94459,7 +95191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [11560] = 23, + [11024] = 23, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -94470,17 +95202,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(2017), 1, anon_sym_sizeof, - ACTIONS(2476), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2618), 1, + ACTIONS(2621), 1, anon_sym_RBRACK, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1343), 1, + STATE(1371), 1, sym_expression, ACTIONS(99), 2, anon_sym_asm, @@ -94491,16 +95223,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1948), 2, + ACTIONS(2013), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1950), 2, + ACTIONS(2015), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2478), 2, + ACTIONS(2495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -94521,13 +95253,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -94544,7 +95276,92 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11668] = 22, + [11132] = 23, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_offsetof, + ACTIONS(97), 1, + anon_sym__Generic, + ACTIONS(167), 1, + sym_number_literal, + ACTIONS(1737), 1, + sym_identifier, + ACTIONS(2017), 1, + anon_sym_sizeof, + ACTIONS(2493), 1, + anon_sym_LPAREN2, + ACTIONS(2623), 1, + anon_sym_RBRACK, + STATE(949), 1, + sym_string_literal, + STATE(1371), 1, + sym_expression, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(2013), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2015), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2319), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(103), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1224), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1209), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [11240] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -94559,11 +95376,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2211), 1, sym_identifier, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1599), 1, + STATE(1655), 1, sym_expression, ACTIONS(23), 2, anon_sym_BANG, @@ -94604,13 +95421,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -94627,7 +95444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11773] = 22, + [11345] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -94642,11 +95459,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2211), 1, sym_identifier, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1542), 1, + STATE(1554), 1, sym_expression, ACTIONS(23), 2, anon_sym_BANG, @@ -94687,13 +95504,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1209), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [11450] = 22, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_offsetof, + ACTIONS(97), 1, + anon_sym__Generic, + ACTIONS(167), 1, + sym_number_literal, + ACTIONS(1737), 1, + sym_identifier, + ACTIONS(1745), 1, + anon_sym_sizeof, + ACTIONS(2543), 1, + anon_sym_LPAREN2, + STATE(949), 1, + sym_string_literal, + STATE(1283), 1, + sym_expression, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(1739), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1741), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2545), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(103), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1224), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1209), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [11555] = 22, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_offsetof, + ACTIONS(97), 1, + anon_sym__Generic, + ACTIONS(167), 1, + sym_number_literal, + ACTIONS(1737), 1, + sym_identifier, + ACTIONS(1745), 1, + anon_sym_sizeof, + ACTIONS(2543), 1, + anon_sym_LPAREN2, + STATE(949), 1, + sym_string_literal, + STATE(1284), 1, + sym_expression, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(1739), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1741), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2545), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(103), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -94710,73 +95693,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11878] = 22, + [11660] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1524), 1, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2093), 1, + ACTIONS(2297), 1, sym_identifier, - ACTIONS(2099), 1, + ACTIONS(2303), 1, anon_sym_sizeof, - ACTIONS(2480), 1, + ACTIONS(2315), 1, anon_sym_LPAREN2, - STATE(915), 1, + STATE(949), 1, sym_string_literal, - STATE(1412), 1, + STATE(1579), 1, sym_expression, - ACTIONS(1528), 2, + ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1536), 2, - sym_true, - sym_false, - ACTIONS(1538), 2, + ACTIONS(109), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2095), 2, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(2299), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2097), 2, + ACTIONS(2301), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2482), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2484), 2, + ACTIONS(2329), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(103), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, + ACTIONS(105), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1049), 5, + STATE(1410), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -94793,73 +95776,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11983] = 22, + [11765] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1508), 1, - sym_identifier, - ACTIONS(1520), 1, - anon_sym_sizeof, - ACTIONS(1524), 1, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2528), 1, + ACTIONS(2297), 1, + sym_identifier, + ACTIONS(2303), 1, + anon_sym_sizeof, + ACTIONS(2315), 1, anon_sym_LPAREN2, - STATE(915), 1, + STATE(949), 1, sym_string_literal, - STATE(1038), 1, + STATE(1580), 1, sym_expression, - ACTIONS(1512), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1514), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1528), 2, + ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1536), 2, - sym_true, - sym_false, - ACTIONS(1538), 2, + ACTIONS(109), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2482), 2, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(2299), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2301), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2530), 2, + ACTIONS(2329), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(103), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, + ACTIONS(105), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1073), 5, + STATE(1410), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -94876,73 +95859,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12088] = 22, + [11870] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(1552), 1, anon_sym_offsetof, - ACTIONS(97), 1, + ACTIONS(1554), 1, anon_sym__Generic, - ACTIONS(167), 1, + ACTIONS(1558), 1, sym_number_literal, - ACTIONS(2268), 1, + ACTIONS(2064), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2070), 1, anon_sym_sizeof, - ACTIONS(2620), 1, + ACTIONS(2467), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(913), 1, sym_string_literal, - STATE(1356), 1, + STATE(1450), 1, sym_expression, - ACTIONS(99), 2, + ACTIONS(1556), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, + ACTIONS(1564), 2, sym_true, sym_false, - ACTIONS(2270), 2, + ACTIONS(1566), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2066), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2272), 2, + ACTIONS(2068), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2300), 2, + ACTIONS(2471), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(93), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, + ACTIONS(1562), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1406), 5, + STATE(1072), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -94959,39 +95942,30 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12193] = 22, + [11975] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, ACTIONS(95), 1, anon_sym_offsetof, ACTIONS(97), 1, anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(1737), 1, sym_identifier, - STATE(944), 1, + ACTIONS(1745), 1, + anon_sym_sizeof, + ACTIONS(2543), 1, + anon_sym_LPAREN2, + STATE(949), 1, sym_string_literal, - STATE(1586), 1, + STATE(1270), 1, sym_expression, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, @@ -95001,6 +95975,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, + ACTIONS(1739), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1741), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2545), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, @@ -95019,13 +96002,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -95042,7 +96025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12298] = 22, + [12080] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -95053,16 +96036,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2268), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(1745), 1, anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2543), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1359), 1, + STATE(1286), 1, sym_expression, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, @@ -95072,16 +96058,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(2270), 2, + ACTIONS(1739), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2272), 2, + ACTIONS(1741), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2300), 2, + ACTIONS(2545), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -95102,13 +96085,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1406), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -95125,27 +96108,39 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12403] = 22, + [12185] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, + anon_sym_sizeof, ACTIONS(95), 1, anon_sym_offsetof, ACTIONS(97), 1, anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(1952), 1, - anon_sym_sizeof, - ACTIONS(2476), 1, - anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1358), 1, + STATE(1616), 1, sym_expression, + ACTIONS(23), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, @@ -95155,18 +96150,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1948), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1950), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2290), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2478), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, @@ -95185,13 +96168,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -95208,73 +96191,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12508] = 22, + [12290] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1508), 1, - sym_identifier, - ACTIONS(1520), 1, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, anon_sym_sizeof, - ACTIONS(1524), 1, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2528), 1, - anon_sym_LPAREN2, - STATE(915), 1, + ACTIONS(2211), 1, + sym_identifier, + STATE(949), 1, sym_string_literal, - STATE(1031), 1, + STATE(1680), 1, sym_expression, - ACTIONS(1512), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1514), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1528), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1536), 2, - sym_true, - sym_false, - ACTIONS(1538), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2482), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2530), 2, + ACTIONS(89), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(103), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, + ACTIONS(105), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1073), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -95291,73 +96274,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12613] = 22, + [12395] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(1581), 1, + anon_sym_sizeof, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(97), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(167), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(2509), 1, sym_identifier, - ACTIONS(1952), 1, - anon_sym_sizeof, - ACTIONS(2476), 1, + ACTIONS(2511), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(993), 1, sym_string_literal, - STATE(1364), 1, + STATE(1178), 1, sym_expression, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(1948), 2, + ACTIONS(1575), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1950), 2, + ACTIONS(1577), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(1589), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1595), 2, + sym_true, + sym_false, + ACTIONS(1597), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2487), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2478), 2, + ACTIONS(2513), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(93), 5, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1237), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -95374,7 +96357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12718] = 22, + [12500] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -95385,15 +96368,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(2297), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(2303), 1, anon_sym_sizeof, - ACTIONS(2476), 1, + ACTIONS(2315), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1365), 1, + STATE(1581), 1, sym_expression, ACTIONS(99), 2, anon_sym_asm, @@ -95404,16 +96387,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1948), 2, + ACTIONS(2299), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1950), 2, + ACTIONS(2301), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2478), 2, + ACTIONS(2329), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -95434,13 +96417,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1410), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -95457,7 +96440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12823] = 22, + [12605] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -95468,15 +96451,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(2297), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(2303), 1, anon_sym_sizeof, - ACTIONS(2476), 1, + ACTIONS(2315), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1366), 1, + STATE(1582), 1, sym_expression, ACTIONS(99), 2, anon_sym_asm, @@ -95487,16 +96470,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1948), 2, + ACTIONS(2299), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1950), 2, + ACTIONS(2301), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2478), 2, + ACTIONS(2329), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -95517,13 +96500,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1410), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -95540,73 +96523,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12928] = 22, + [12710] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(1552), 1, anon_sym_offsetof, - ACTIONS(97), 1, + ACTIONS(1554), 1, anon_sym__Generic, - ACTIONS(167), 1, + ACTIONS(1558), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(2064), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(2070), 1, anon_sym_sizeof, - ACTIONS(2476), 1, + ACTIONS(2467), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(913), 1, sym_string_literal, - STATE(1367), 1, + STATE(1453), 1, sym_expression, - ACTIONS(99), 2, + ACTIONS(1556), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, + ACTIONS(1564), 2, sym_true, sym_false, - ACTIONS(1948), 2, + ACTIONS(1566), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2066), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1950), 2, + ACTIONS(2068), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2478), 2, + ACTIONS(2471), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(93), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, + ACTIONS(1562), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1072), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -95623,7 +96606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13033] = 22, + [12815] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -95634,15 +96617,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(2297), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(2303), 1, anon_sym_sizeof, - ACTIONS(2476), 1, + ACTIONS(2315), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1368), 1, + STATE(1583), 1, sym_expression, ACTIONS(99), 2, anon_sym_asm, @@ -95653,16 +96636,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1948), 2, + ACTIONS(2299), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1950), 2, + ACTIONS(2301), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2478), 2, + ACTIONS(2329), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -95683,13 +96666,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1410), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -95706,7 +96689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13138] = 22, + [12920] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -95717,15 +96700,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(2297), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(2303), 1, anon_sym_sizeof, - ACTIONS(2476), 1, + ACTIONS(2315), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1369), 1, + STATE(1584), 1, sym_expression, ACTIONS(99), 2, anon_sym_asm, @@ -95736,16 +96719,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1948), 2, + ACTIONS(2299), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1950), 2, + ACTIONS(2301), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2478), 2, + ACTIONS(2329), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -95766,13 +96749,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1410), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -95789,73 +96772,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13243] = 22, + [13025] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(1536), 1, + sym_identifier, + ACTIONS(1548), 1, + anon_sym_sizeof, + ACTIONS(1552), 1, anon_sym_offsetof, - ACTIONS(97), 1, + ACTIONS(1554), 1, anon_sym__Generic, - ACTIONS(167), 1, + ACTIONS(1558), 1, sym_number_literal, - ACTIONS(1800), 1, - sym_identifier, - ACTIONS(1952), 1, - anon_sym_sizeof, - ACTIONS(2476), 1, + ACTIONS(2533), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(913), 1, sym_string_literal, - STATE(1374), 1, + STATE(1046), 1, sym_expression, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(1948), 2, + ACTIONS(1540), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1950), 2, + ACTIONS(1542), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(1556), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1564), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2478), 2, + ACTIONS(2535), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(93), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, + ACTIONS(1562), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1056), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -95872,39 +96855,27 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13348] = 22, + [13130] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, ACTIONS(95), 1, anon_sym_offsetof, ACTIONS(97), 1, anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2297), 1, sym_identifier, - STATE(944), 1, + ACTIONS(2303), 1, + anon_sym_sizeof, + ACTIONS(2315), 1, + anon_sym_LPAREN2, + STATE(949), 1, sym_string_literal, - STATE(1637), 1, + STATE(1594), 1, sym_expression, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, @@ -95914,6 +96885,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, + ACTIONS(2299), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2301), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2319), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2329), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, @@ -95932,13 +96915,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1410), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -95955,7 +96938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13453] = 22, + [13235] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -95966,15 +96949,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(2297), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(2303), 1, anon_sym_sizeof, - ACTIONS(2476), 1, + ACTIONS(2625), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1370), 1, + STATE(1391), 1, sym_expression, ACTIONS(99), 2, anon_sym_asm, @@ -95985,16 +96968,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1948), 2, + ACTIONS(2299), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1950), 2, + ACTIONS(2301), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2478), 2, + ACTIONS(2329), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -96015,13 +96998,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1410), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -96038,39 +97021,27 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13558] = 22, + [13340] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, ACTIONS(95), 1, anon_sym_offsetof, ACTIONS(97), 1, anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2297), 1, sym_identifier, - STATE(944), 1, + ACTIONS(2303), 1, + anon_sym_sizeof, + ACTIONS(2315), 1, + anon_sym_LPAREN2, + STATE(949), 1, sym_string_literal, - STATE(1632), 1, + STATE(1381), 1, sym_expression, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, @@ -96080,6 +97051,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, + ACTIONS(2299), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2301), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2319), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2329), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, @@ -96098,13 +97081,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1410), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -96121,73 +97104,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13663] = 22, + [13445] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1550), 1, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1552), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1556), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2186), 1, - anon_sym_sizeof, - ACTIONS(2486), 1, + ACTIONS(2297), 1, sym_identifier, - ACTIONS(2488), 1, + ACTIONS(2303), 1, + anon_sym_sizeof, + ACTIONS(2315), 1, anon_sym_LPAREN2, - STATE(987), 1, + STATE(949), 1, sym_string_literal, - STATE(1460), 1, + STATE(1586), 1, sym_expression, - ACTIONS(1554), 2, + ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1560), 2, - sym_true, - sym_false, - ACTIONS(1562), 2, + ACTIONS(109), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2182), 2, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(2299), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2184), 2, + ACTIONS(2301), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2470), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2490), 2, + ACTIONS(2329), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1548), 5, + ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1558), 5, + ACTIONS(103), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1222), 5, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1410), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1200), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -96204,27 +97187,39 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13768] = 22, + [13550] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, + anon_sym_sizeof, ACTIONS(95), 1, anon_sym_offsetof, ACTIONS(97), 1, anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(1952), 1, - anon_sym_sizeof, - ACTIONS(2476), 1, - anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1372), 1, + STATE(1517), 1, sym_expression, + ACTIONS(23), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, @@ -96234,18 +97229,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1948), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1950), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2290), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2478), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, @@ -96264,13 +97247,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -96287,73 +97270,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13873] = 22, + [13655] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1524), 1, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2093), 1, + ACTIONS(2297), 1, sym_identifier, - ACTIONS(2099), 1, + ACTIONS(2303), 1, anon_sym_sizeof, - ACTIONS(2480), 1, + ACTIONS(2315), 1, anon_sym_LPAREN2, - STATE(915), 1, + STATE(949), 1, sym_string_literal, - STATE(1007), 1, + STATE(1587), 1, sym_expression, - ACTIONS(1528), 2, + ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1536), 2, - sym_true, - sym_false, - ACTIONS(1538), 2, + ACTIONS(109), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2095), 2, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(2299), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2097), 2, + ACTIONS(2301), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2482), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2484), 2, + ACTIONS(2329), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(103), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, + ACTIONS(105), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1049), 5, + STATE(1410), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -96370,7 +97353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13978] = 22, + [13760] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -96385,11 +97368,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2211), 1, sym_identifier, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1538), 1, + STATE(1657), 1, sym_expression, ACTIONS(23), 2, anon_sym_BANG, @@ -96430,13 +97413,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -96453,7 +97436,173 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14083] = 22, + [13865] = 22, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1536), 1, + sym_identifier, + ACTIONS(1548), 1, + anon_sym_sizeof, + ACTIONS(1552), 1, + anon_sym_offsetof, + ACTIONS(1554), 1, + anon_sym__Generic, + ACTIONS(1558), 1, + sym_number_literal, + ACTIONS(2533), 1, + anon_sym_LPAREN2, + STATE(913), 1, + sym_string_literal, + STATE(1032), 1, + sym_expression, + ACTIONS(1540), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1542), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1556), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1564), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2469), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2535), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1550), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(1560), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(1562), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1056), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1069), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [13970] = 22, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1552), 1, + anon_sym_offsetof, + ACTIONS(1554), 1, + anon_sym__Generic, + ACTIONS(1558), 1, + sym_number_literal, + ACTIONS(2064), 1, + sym_identifier, + ACTIONS(2070), 1, + anon_sym_sizeof, + ACTIONS(2467), 1, + anon_sym_LPAREN2, + STATE(913), 1, + sym_string_literal, + STATE(1451), 1, + sym_expression, + ACTIONS(1556), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1564), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2066), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2068), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2469), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2471), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1550), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(1560), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(1562), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1072), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1069), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [14075] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -96464,15 +97613,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(2297), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(2303), 1, anon_sym_sizeof, - ACTIONS(2476), 1, + ACTIONS(2315), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1343), 1, + STATE(1669), 1, sym_expression, ACTIONS(99), 2, anon_sym_asm, @@ -96483,16 +97632,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1948), 2, + ACTIONS(2299), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1950), 2, + ACTIONS(2301), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2478), 2, + ACTIONS(2329), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -96513,13 +97662,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1410), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -96536,73 +97685,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14188] = 22, + [14180] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1550), 1, - anon_sym_offsetof, ACTIONS(1552), 1, + anon_sym_offsetof, + ACTIONS(1554), 1, anon_sym__Generic, - ACTIONS(1556), 1, + ACTIONS(1558), 1, sym_number_literal, - ACTIONS(2186), 1, - anon_sym_sizeof, - ACTIONS(2486), 1, + ACTIONS(2064), 1, sym_identifier, - ACTIONS(2488), 1, + ACTIONS(2070), 1, + anon_sym_sizeof, + ACTIONS(2467), 1, anon_sym_LPAREN2, - STATE(987), 1, + STATE(913), 1, sym_string_literal, - STATE(1453), 1, + STATE(1018), 1, sym_expression, - ACTIONS(1554), 2, + ACTIONS(1556), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1560), 2, + ACTIONS(1564), 2, sym_true, sym_false, - ACTIONS(1562), 2, + ACTIONS(1566), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2182), 2, + ACTIONS(2066), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2184), 2, + ACTIONS(2068), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2470), 2, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2490), 2, + ACTIONS(2471), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1548), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1558), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1222), 5, + ACTIONS(1562), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1072), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1200), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -96619,73 +97768,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14293] = 22, + [14285] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(1552), 1, anon_sym_offsetof, - ACTIONS(97), 1, + ACTIONS(1554), 1, anon_sym__Generic, - ACTIONS(167), 1, + ACTIONS(1558), 1, sym_number_literal, - ACTIONS(2268), 1, + ACTIONS(2064), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2070), 1, anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2467), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(913), 1, sym_string_literal, - STATE(1395), 1, + STATE(1447), 1, sym_expression, - ACTIONS(99), 2, + ACTIONS(1556), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, + ACTIONS(1564), 2, sym_true, sym_false, - ACTIONS(2270), 2, + ACTIONS(1566), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2066), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2272), 2, + ACTIONS(2068), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2300), 2, + ACTIONS(2471), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(93), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, + ACTIONS(1562), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1406), 5, + STATE(1072), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -96702,73 +97851,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14398] = 22, + [14390] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1550), 1, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1552), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1556), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2186), 1, - anon_sym_sizeof, - ACTIONS(2486), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(2488), 1, + ACTIONS(2017), 1, + anon_sym_sizeof, + ACTIONS(2493), 1, anon_sym_LPAREN2, - STATE(987), 1, + STATE(949), 1, sym_string_literal, - STATE(1459), 1, + STATE(1371), 1, sym_expression, - ACTIONS(1554), 2, + ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1560), 2, - sym_true, - sym_false, - ACTIONS(1562), 2, + ACTIONS(109), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2182), 2, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(2013), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2184), 2, + ACTIONS(2015), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2470), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2490), 2, + ACTIONS(2495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1548), 5, + ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1558), 5, + ACTIONS(103), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1222), 5, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1200), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -96785,7 +97934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14503] = 22, + [14495] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -96800,11 +97949,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2211), 1, sym_identifier, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1278), 1, + STATE(1611), 1, sym_expression, ACTIONS(23), 2, anon_sym_BANG, @@ -96845,13 +97994,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -96868,7 +98017,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14608] = 22, + [14600] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -96879,15 +98028,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2268), 1, + ACTIONS(2297), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2303), 1, anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2315), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1662), 1, + STATE(1359), 1, sym_expression, ACTIONS(99), 2, anon_sym_asm, @@ -96898,16 +98047,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(2270), 2, + ACTIONS(2299), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2272), 2, + ACTIONS(2301), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2300), 2, + ACTIONS(2329), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -96928,13 +98077,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1406), 5, + STATE(1410), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -96951,73 +98100,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14713] = 22, + [14705] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(1552), 1, anon_sym_offsetof, - ACTIONS(97), 1, + ACTIONS(1554), 1, anon_sym__Generic, - ACTIONS(167), 1, + ACTIONS(1558), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(2064), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(2070), 1, anon_sym_sizeof, - ACTIONS(2476), 1, + ACTIONS(2467), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(913), 1, sym_string_literal, - STATE(1395), 1, + STATE(1446), 1, sym_expression, - ACTIONS(99), 2, + ACTIONS(1556), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, + ACTIONS(1564), 2, sym_true, sym_false, - ACTIONS(1948), 2, + ACTIONS(1566), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2066), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1950), 2, + ACTIONS(2068), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2478), 2, + ACTIONS(2471), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(93), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, + ACTIONS(1562), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1072), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -97034,73 +98183,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14818] = 22, + [14810] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1508), 1, - sym_identifier, - ACTIONS(1520), 1, - anon_sym_sizeof, - ACTIONS(1524), 1, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(2528), 1, + ACTIONS(2209), 1, + anon_sym_sizeof, + ACTIONS(2483), 1, + sym_identifier, + ACTIONS(2627), 1, anon_sym_LPAREN2, - STATE(915), 1, + STATE(993), 1, sym_string_literal, - STATE(1030), 1, + STATE(1144), 1, sym_expression, - ACTIONS(1512), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1514), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1528), 2, + ACTIONS(1589), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1536), 2, + ACTIONS(1595), 2, sym_true, sym_false, - ACTIONS(1538), 2, + ACTIONS(1597), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2482), 2, + ACTIONS(2205), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2207), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2487), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2530), 2, + ACTIONS(2489), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1073), 5, + STATE(1205), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -97117,73 +98266,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14923] = 22, + [14915] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(97), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(167), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(1800), 1, - sym_identifier, - ACTIONS(1808), 1, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(2532), 1, + ACTIONS(2483), 1, + sym_identifier, + ACTIONS(2485), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(993), 1, sym_string_literal, - STATE(1281), 1, + STATE(1197), 1, sym_expression, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(99), 2, + ACTIONS(1589), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, + ACTIONS(1595), 2, sym_true, sym_false, - ACTIONS(1802), 2, + ACTIONS(1597), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2205), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1804), 2, + ACTIONS(2207), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2534), 2, + ACTIONS(2487), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2489), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(93), 5, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1205), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -97200,73 +98349,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15028] = 22, + [15020] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1508), 1, - sym_identifier, - ACTIONS(1520), 1, - anon_sym_sizeof, - ACTIONS(1524), 1, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2528), 1, + ACTIONS(1737), 1, + sym_identifier, + ACTIONS(1745), 1, + anon_sym_sizeof, + ACTIONS(2543), 1, anon_sym_LPAREN2, - STATE(915), 1, + STATE(949), 1, sym_string_literal, - STATE(1028), 1, + STATE(1280), 1, sym_expression, - ACTIONS(1512), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1514), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1528), 2, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1536), 2, - sym_true, - sym_false, - ACTIONS(1538), 2, + ACTIONS(109), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2482), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2530), 2, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(1739), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1741), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2545), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(103), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, + ACTIONS(105), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1073), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -97283,73 +98432,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15133] = 22, + [15125] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, - ACTIONS(95), 1, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(97), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(167), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2209), 1, + anon_sym_sizeof, + ACTIONS(2483), 1, sym_identifier, - STATE(944), 1, + ACTIONS(2485), 1, + anon_sym_LPAREN2, + STATE(993), 1, sym_string_literal, - STATE(1634), 1, + STATE(1175), 1, sym_expression, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, + ACTIONS(1589), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1595), 2, + sym_true, + sym_false, + ACTIONS(1597), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2205), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(27), 2, + ACTIONS(2207), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2487), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(2489), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(93), 5, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1205), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -97366,7 +98515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15238] = 22, + [15230] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -97381,11 +98530,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2211), 1, sym_identifier, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1491), 1, + STATE(1662), 1, sym_expression, ACTIONS(23), 2, anon_sym_BANG, @@ -97426,13 +98575,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -97449,7 +98598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15343] = 22, + [15335] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -97460,16 +98609,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2268), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(1745), 1, anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2543), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1600), 1, + STATE(1281), 1, sym_expression, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, @@ -97479,16 +98631,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(2270), 2, + ACTIONS(1739), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2272), 2, + ACTIONS(1741), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2300), 2, + ACTIONS(2545), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -97509,13 +98658,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1406), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -97532,30 +98681,39 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15448] = 22, + [15440] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, + anon_sym_sizeof, ACTIONS(95), 1, anon_sym_offsetof, ACTIONS(97), 1, anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(1808), 1, - anon_sym_sizeof, - ACTIONS(2532), 1, - anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1257), 1, + STATE(1559), 1, sym_expression, + ACTIONS(23), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(89), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, @@ -97565,15 +98723,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1802), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1804), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2534), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, @@ -97592,13 +98741,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -97615,73 +98764,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15553] = 22, + [15545] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1508), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1520), 1, + ACTIONS(1548), 1, anon_sym_sizeof, - ACTIONS(1524), 1, + ACTIONS(1552), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(1554), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(1558), 1, sym_number_literal, - ACTIONS(2528), 1, + ACTIONS(2533), 1, anon_sym_LPAREN2, - STATE(915), 1, + STATE(913), 1, sym_string_literal, - STATE(1007), 1, + STATE(1025), 1, sym_expression, - ACTIONS(1512), 2, + ACTIONS(1540), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1514), 2, + ACTIONS(1542), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1528), 2, + ACTIONS(1556), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1536), 2, + ACTIONS(1564), 2, sym_true, sym_false, - ACTIONS(1538), 2, + ACTIONS(1566), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2482), 2, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2530), 2, + ACTIONS(2535), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, + ACTIONS(1562), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1073), 5, + STATE(1056), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -97698,7 +98847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15658] = 22, + [15650] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -97709,15 +98858,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(1808), 1, + ACTIONS(1745), 1, anon_sym_sizeof, - ACTIONS(2532), 1, + ACTIONS(2543), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1273), 1, + STATE(1290), 1, sym_expression, ACTIONS(27), 2, anon_sym_STAR, @@ -97731,13 +98880,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1802), 2, + ACTIONS(1739), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1804), 2, + ACTIONS(1741), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2534), 2, + ACTIONS(2545), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -97758,13 +98907,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -97781,30 +98930,39 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15763] = 22, + [15755] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, + anon_sym_sizeof, ACTIONS(95), 1, anon_sym_offsetof, ACTIONS(97), 1, anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(1808), 1, - anon_sym_sizeof, - ACTIONS(2532), 1, - anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1275), 1, + STATE(1567), 1, sym_expression, + ACTIONS(23), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(89), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, @@ -97814,15 +98972,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1802), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1804), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2534), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, @@ -97841,13 +98990,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -97864,73 +99013,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15868] = 22, + [15860] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1508), 1, - sym_identifier, - ACTIONS(1520), 1, - anon_sym_sizeof, - ACTIONS(1524), 1, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2528), 1, + ACTIONS(2297), 1, + sym_identifier, + ACTIONS(2303), 1, + anon_sym_sizeof, + ACTIONS(2315), 1, anon_sym_LPAREN2, - STATE(915), 1, + STATE(949), 1, sym_string_literal, - STATE(1013), 1, + STATE(1597), 1, sym_expression, - ACTIONS(1512), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1514), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1528), 2, + ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1536), 2, - sym_true, - sym_false, - ACTIONS(1538), 2, + ACTIONS(109), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2482), 2, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(2299), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2301), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2530), 2, + ACTIONS(2329), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(103), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, + ACTIONS(105), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1073), 5, + STATE(1410), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -97947,7 +99096,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15973] = 22, + [15965] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -97962,11 +99111,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2211), 1, sym_identifier, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1554), 1, + STATE(1519), 1, sym_expression, ACTIONS(23), 2, anon_sym_BANG, @@ -98007,13 +99156,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -98030,7 +99179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16078] = 22, + [16070] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -98041,19 +99190,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(2297), 1, sym_identifier, - ACTIONS(1808), 1, + ACTIONS(2303), 1, anon_sym_sizeof, - ACTIONS(2532), 1, + ACTIONS(2315), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1259), 1, + STATE(1603), 1, sym_expression, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, @@ -98063,13 +99209,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1802), 2, + ACTIONS(2299), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1804), 2, + ACTIONS(2301), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2534), 2, + ACTIONS(2319), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2329), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -98090,13 +99239,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1410), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -98113,73 +99262,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16183] = 22, + [16175] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1508), 1, - sym_identifier, - ACTIONS(1520), 1, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, anon_sym_sizeof, - ACTIONS(1524), 1, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2622), 1, - anon_sym_LPAREN2, - STATE(915), 1, + ACTIONS(2211), 1, + sym_identifier, + STATE(949), 1, sym_string_literal, - STATE(1014), 1, + STATE(1521), 1, sym_expression, - ACTIONS(1512), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1514), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1528), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1536), 2, - sym_true, - sym_false, - ACTIONS(1538), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2482), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2530), 2, + ACTIONS(89), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(103), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, + ACTIONS(105), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1073), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -98196,7 +99345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16288] = 22, + [16280] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -98211,11 +99360,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2211), 1, sym_identifier, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1654), 1, + STATE(1561), 1, sym_expression, ACTIONS(23), 2, anon_sym_BANG, @@ -98256,13 +99405,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -98279,73 +99428,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16393] = 22, + [16385] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1524), 1, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2093), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(2099), 1, + ACTIONS(2017), 1, anon_sym_sizeof, - ACTIONS(2480), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - STATE(915), 1, + STATE(949), 1, sym_string_literal, - STATE(1413), 1, + STATE(1404), 1, sym_expression, - ACTIONS(1528), 2, + ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1536), 2, - sym_true, - sym_false, - ACTIONS(1538), 2, + ACTIONS(109), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2095), 2, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(2013), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2097), 2, + ACTIONS(2015), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2482), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2484), 2, + ACTIONS(2495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(103), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, + ACTIONS(105), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1049), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -98362,73 +99511,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16498] = 22, + [16490] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(1552), 1, anon_sym_offsetof, - ACTIONS(97), 1, + ACTIONS(1554), 1, anon_sym__Generic, - ACTIONS(167), 1, + ACTIONS(1558), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(2064), 1, sym_identifier, - ACTIONS(1808), 1, + ACTIONS(2070), 1, anon_sym_sizeof, - ACTIONS(2532), 1, + ACTIONS(2467), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(913), 1, sym_string_literal, - STATE(1260), 1, + STATE(1444), 1, sym_expression, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(99), 2, + ACTIONS(1556), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, + ACTIONS(1564), 2, sym_true, sym_false, - ACTIONS(1802), 2, + ACTIONS(1566), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2066), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1804), 2, + ACTIONS(2068), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2534), 2, + ACTIONS(2469), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2471), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(93), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, + ACTIONS(1562), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1072), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -98445,7 +99594,90 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16603] = 22, + [16595] = 22, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1536), 1, + sym_identifier, + ACTIONS(1548), 1, + anon_sym_sizeof, + ACTIONS(1552), 1, + anon_sym_offsetof, + ACTIONS(1554), 1, + anon_sym__Generic, + ACTIONS(1558), 1, + sym_number_literal, + ACTIONS(2533), 1, + anon_sym_LPAREN2, + STATE(913), 1, + sym_string_literal, + STATE(1027), 1, + sym_expression, + ACTIONS(1540), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1542), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1556), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1564), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2469), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2535), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1550), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(1560), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(1562), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1056), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1069), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [16700] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -98456,19 +99688,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(1808), 1, + ACTIONS(2017), 1, anon_sym_sizeof, - ACTIONS(2532), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1261), 1, + STATE(1401), 1, sym_expression, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, @@ -98478,13 +99707,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1802), 2, + ACTIONS(2013), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1804), 2, + ACTIONS(2015), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2534), 2, + ACTIONS(2319), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -98505,13 +99737,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -98528,7 +99760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16708] = 22, + [16805] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -98539,15 +99771,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(1808), 1, + ACTIONS(1745), 1, anon_sym_sizeof, - ACTIONS(2532), 1, + ACTIONS(2543), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1262), 1, + STATE(1285), 1, sym_expression, ACTIONS(27), 2, anon_sym_STAR, @@ -98561,13 +99793,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1802), 2, + ACTIONS(1739), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1804), 2, + ACTIONS(1741), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2534), 2, + ACTIONS(2545), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -98588,13 +99820,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -98611,7 +99843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16813] = 22, + [16910] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -98622,19 +99854,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(2297), 1, sym_identifier, - ACTIONS(1808), 1, + ACTIONS(2303), 1, anon_sym_sizeof, - ACTIONS(2532), 1, + ACTIONS(2315), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1263), 1, + STATE(1633), 1, sym_expression, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, @@ -98644,13 +99873,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1802), 2, + ACTIONS(2299), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1804), 2, + ACTIONS(2301), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2534), 2, + ACTIONS(2319), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2329), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -98671,13 +99903,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1410), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -98694,73 +99926,156 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16918] = 22, + [17015] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(1581), 1, + anon_sym_sizeof, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(97), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(167), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(2268), 1, + ACTIONS(2509), 1, sym_identifier, - ACTIONS(2274), 1, - anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2511), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(993), 1, sym_string_literal, - STATE(1569), 1, + STATE(1187), 1, sym_expression, - ACTIONS(99), 2, + ACTIONS(1575), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1577), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1589), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(109), 2, + ACTIONS(1595), 2, + sym_true, + sym_false, + ACTIONS(1597), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(169), 2, + ACTIONS(2487), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2513), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1583), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(1593), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1237), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1225), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [17120] = 22, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1552), 1, + anon_sym_offsetof, + ACTIONS(1554), 1, + anon_sym__Generic, + ACTIONS(1558), 1, + sym_number_literal, + ACTIONS(2064), 1, + sym_identifier, + ACTIONS(2070), 1, + anon_sym_sizeof, + ACTIONS(2467), 1, + anon_sym_LPAREN2, + STATE(913), 1, + sym_string_literal, + STATE(1443), 1, + sym_expression, + ACTIONS(1556), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1564), 2, sym_true, sym_false, - ACTIONS(2270), 2, + ACTIONS(1566), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2066), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2272), 2, + ACTIONS(2068), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2300), 2, + ACTIONS(2471), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(93), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, + ACTIONS(1562), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1406), 5, + STATE(1072), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -98777,7 +100092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17023] = 22, + [17225] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -98788,15 +100103,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(1808), 1, + ACTIONS(1745), 1, anon_sym_sizeof, - ACTIONS(2532), 1, + ACTIONS(2543), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1264), 1, + STATE(1279), 1, sym_expression, ACTIONS(27), 2, anon_sym_STAR, @@ -98810,13 +100125,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1802), 2, + ACTIONS(1739), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1804), 2, + ACTIONS(1741), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2534), 2, + ACTIONS(2545), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -98837,13 +100152,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -98860,73 +100175,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17128] = 22, + [17330] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1508), 1, - sym_identifier, - ACTIONS(1520), 1, - anon_sym_sizeof, - ACTIONS(1524), 1, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2528), 1, + ACTIONS(1737), 1, + sym_identifier, + ACTIONS(1745), 1, + anon_sym_sizeof, + ACTIONS(2543), 1, anon_sym_LPAREN2, - STATE(915), 1, + STATE(949), 1, sym_string_literal, - STATE(1001), 1, + STATE(1271), 1, sym_expression, - ACTIONS(1512), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1514), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1528), 2, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1536), 2, - sym_true, - sym_false, - ACTIONS(1538), 2, + ACTIONS(109), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2482), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2530), 2, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(1739), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1741), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2545), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(103), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, + ACTIONS(105), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1073), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -98943,7 +100258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17233] = 22, + [17435] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -98954,15 +100269,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(1808), 1, + ACTIONS(1745), 1, anon_sym_sizeof, - ACTIONS(2532), 1, + ACTIONS(2543), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1265), 1, + STATE(1292), 1, sym_expression, ACTIONS(27), 2, anon_sym_STAR, @@ -98976,13 +100291,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1802), 2, + ACTIONS(1739), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1804), 2, + ACTIONS(1741), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2534), 2, + ACTIONS(2545), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -99003,13 +100318,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -99026,73 +100341,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17338] = 22, + [17540] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(1536), 1, + sym_identifier, + ACTIONS(1548), 1, + anon_sym_sizeof, + ACTIONS(1552), 1, anon_sym_offsetof, - ACTIONS(97), 1, + ACTIONS(1554), 1, anon_sym__Generic, - ACTIONS(167), 1, + ACTIONS(1558), 1, sym_number_literal, - ACTIONS(1800), 1, - sym_identifier, - ACTIONS(1808), 1, - anon_sym_sizeof, - ACTIONS(2532), 1, + ACTIONS(2533), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(913), 1, sym_string_literal, - STATE(1266), 1, + STATE(1038), 1, sym_expression, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(1802), 2, + ACTIONS(1540), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1804), 2, + ACTIONS(1542), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2534), 2, + ACTIONS(1556), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1564), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2469), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2535), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(93), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, + ACTIONS(1562), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1056), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -99109,73 +100424,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17443] = 22, + [17645] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, - ACTIONS(95), 1, + ACTIONS(1552), 1, anon_sym_offsetof, - ACTIONS(97), 1, + ACTIONS(1554), 1, anon_sym__Generic, - ACTIONS(167), 1, + ACTIONS(1558), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2064), 1, sym_identifier, - STATE(944), 1, + ACTIONS(2070), 1, + anon_sym_sizeof, + ACTIONS(2467), 1, + anon_sym_LPAREN2, + STATE(913), 1, sym_string_literal, - STATE(1547), 1, + STATE(1442), 1, sym_expression, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, + ACTIONS(1556), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1564), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2066), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(27), 2, + ACTIONS(2068), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(2471), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(93), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, + ACTIONS(1562), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1072), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -99192,39 +100507,30 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17548] = 22, + [17750] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, ACTIONS(95), 1, anon_sym_offsetof, ACTIONS(97), 1, anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(1737), 1, sym_identifier, - STATE(944), 1, + ACTIONS(1745), 1, + anon_sym_sizeof, + ACTIONS(2543), 1, + anon_sym_LPAREN2, + STATE(949), 1, sym_string_literal, - STATE(1273), 1, + STATE(1277), 1, sym_expression, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, @@ -99234,6 +100540,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, + ACTIONS(1739), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1741), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2545), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, @@ -99252,13 +100567,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -99275,73 +100590,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17653] = 22, + [17855] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, - ACTIONS(95), 1, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(97), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(167), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2209), 1, + anon_sym_sizeof, + ACTIONS(2483), 1, sym_identifier, - STATE(944), 1, + ACTIONS(2485), 1, + anon_sym_LPAREN2, + STATE(993), 1, sym_string_literal, - STATE(1490), 1, + STATE(1480), 1, sym_expression, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, + ACTIONS(1589), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1595), 2, + sym_true, + sym_false, + ACTIONS(1597), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2205), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(27), 2, + ACTIONS(2207), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2487), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(2489), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(93), 5, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1205), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -99358,73 +100673,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17758] = 22, + [17960] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1550), 1, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1552), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1556), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2186), 1, - anon_sym_sizeof, - ACTIONS(2486), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(2488), 1, + ACTIONS(2017), 1, + anon_sym_sizeof, + ACTIONS(2493), 1, anon_sym_LPAREN2, - STATE(987), 1, + STATE(949), 1, sym_string_literal, - STATE(1452), 1, + STATE(1399), 1, sym_expression, - ACTIONS(1554), 2, + ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1560), 2, - sym_true, - sym_false, - ACTIONS(1562), 2, + ACTIONS(109), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2182), 2, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(2013), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2184), 2, + ACTIONS(2015), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2470), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2490), 2, + ACTIONS(2495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1548), 5, + ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1558), 5, + ACTIONS(103), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1222), 5, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1200), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -99441,39 +100756,30 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17863] = 22, + [18065] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, ACTIONS(95), 1, anon_sym_offsetof, ACTIONS(97), 1, anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(1737), 1, sym_identifier, - STATE(944), 1, + ACTIONS(1745), 1, + anon_sym_sizeof, + ACTIONS(2629), 1, + anon_sym_LPAREN2, + STATE(949), 1, sym_string_literal, - STATE(1489), 1, + STATE(1274), 1, sym_expression, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, @@ -99483,6 +100789,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, + ACTIONS(1739), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1741), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2545), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, @@ -99501,13 +100816,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -99524,39 +100839,27 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17968] = 22, + [18170] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, ACTIONS(95), 1, anon_sym_offsetof, ACTIONS(97), 1, anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2297), 1, sym_identifier, - STATE(944), 1, + ACTIONS(2303), 1, + anon_sym_sizeof, + ACTIONS(2315), 1, + anon_sym_LPAREN2, + STATE(949), 1, sym_string_literal, - STATE(1488), 1, + STATE(1652), 1, sym_expression, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, @@ -99566,6 +100869,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, + ACTIONS(2299), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2301), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2319), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2329), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, @@ -99584,13 +100899,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1410), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -99607,39 +100922,27 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18073] = 22, + [18275] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, ACTIONS(95), 1, anon_sym_offsetof, ACTIONS(97), 1, anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(1737), 1, sym_identifier, - STATE(944), 1, + ACTIONS(2017), 1, + anon_sym_sizeof, + ACTIONS(2493), 1, + anon_sym_LPAREN2, + STATE(949), 1, sym_string_literal, - STATE(1486), 1, + STATE(1393), 1, sym_expression, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, @@ -99649,6 +100952,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, + ACTIONS(2013), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2015), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2319), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, @@ -99667,13 +100982,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -99690,73 +101005,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18178] = 22, + [18380] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1524), 1, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2093), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(2099), 1, + ACTIONS(2017), 1, anon_sym_sizeof, - ACTIONS(2624), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - STATE(915), 1, + STATE(949), 1, sym_string_literal, - STATE(1014), 1, + STATE(1386), 1, sym_expression, - ACTIONS(1528), 2, + ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1536), 2, - sym_true, - sym_false, - ACTIONS(1538), 2, + ACTIONS(109), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2095), 2, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(2013), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2097), 2, + ACTIONS(2015), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2482), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2484), 2, + ACTIONS(2495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(103), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, + ACTIONS(105), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1049), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -99773,73 +101088,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18283] = 22, + [18485] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, - ACTIONS(95), 1, + ACTIONS(1552), 1, anon_sym_offsetof, - ACTIONS(97), 1, + ACTIONS(1554), 1, anon_sym__Generic, - ACTIONS(167), 1, + ACTIONS(1558), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2064), 1, sym_identifier, - STATE(944), 1, + ACTIONS(2070), 1, + anon_sym_sizeof, + ACTIONS(2467), 1, + anon_sym_LPAREN2, + STATE(913), 1, sym_string_literal, - STATE(1484), 1, + STATE(1425), 1, sym_expression, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, + ACTIONS(1556), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1564), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2066), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(27), 2, + ACTIONS(2068), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(2471), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(93), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, + ACTIONS(1562), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1072), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -99856,73 +101171,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18388] = 22, + [18590] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, - ACTIONS(95), 1, + ACTIONS(1552), 1, anon_sym_offsetof, - ACTIONS(97), 1, + ACTIONS(1554), 1, anon_sym__Generic, - ACTIONS(167), 1, + ACTIONS(1558), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2064), 1, sym_identifier, - STATE(944), 1, + ACTIONS(2070), 1, + anon_sym_sizeof, + ACTIONS(2467), 1, + anon_sym_LPAREN2, + STATE(913), 1, sym_string_literal, - STATE(1483), 1, + STATE(1445), 1, sym_expression, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, + ACTIONS(1556), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1564), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2066), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(27), 2, + ACTIONS(2068), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(2471), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(93), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, + ACTIONS(1562), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1072), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -99939,156 +101254,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18493] = 22, + [18695] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1550), 1, - anon_sym_offsetof, ACTIONS(1552), 1, + anon_sym_offsetof, + ACTIONS(1554), 1, anon_sym__Generic, - ACTIONS(1556), 1, + ACTIONS(1558), 1, sym_number_literal, - ACTIONS(2186), 1, - anon_sym_sizeof, - ACTIONS(2486), 1, + ACTIONS(2064), 1, sym_identifier, - ACTIONS(2488), 1, + ACTIONS(2070), 1, + anon_sym_sizeof, + ACTIONS(2467), 1, anon_sym_LPAREN2, - STATE(987), 1, + STATE(913), 1, sym_string_literal, - STATE(1458), 1, + STATE(1439), 1, sym_expression, - ACTIONS(1554), 2, + ACTIONS(1556), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1560), 2, + ACTIONS(1564), 2, sym_true, sym_false, - ACTIONS(1562), 2, + ACTIONS(1566), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2182), 2, + ACTIONS(2066), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2184), 2, + ACTIONS(2068), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2470), 2, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2490), 2, + ACTIONS(2471), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1548), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1558), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1222), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1200), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [18598] = 22, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, - ACTIONS(95), 1, - anon_sym_offsetof, - ACTIONS(97), 1, - anon_sym__Generic, - ACTIONS(167), 1, - sym_number_literal, - ACTIONS(2188), 1, - sym_identifier, - STATE(944), 1, - sym_string_literal, - STATE(1477), 1, - sym_expression, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(93), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(103), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(105), 5, + ACTIONS(1562), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1072), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -100105,46 +101337,46 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18703] = 22, + [18800] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1550), 1, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(1552), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(1556), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(2186), 1, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(2486), 1, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2488), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - STATE(987), 1, + STATE(993), 1, sym_string_literal, - STATE(1449), 1, + STATE(1479), 1, sym_expression, - ACTIONS(1554), 2, + ACTIONS(1589), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1560), 2, + ACTIONS(1595), 2, sym_true, sym_false, - ACTIONS(1562), 2, + ACTIONS(1597), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2182), 2, + ACTIONS(2205), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2184), 2, + ACTIONS(2207), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2470), 2, + ACTIONS(2487), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2490), 2, + ACTIONS(2489), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(105), 5, @@ -100153,25 +101385,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1548), 5, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1558), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1222), 5, + STATE(1205), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1200), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -100188,7 +101420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18808] = 22, + [18905] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -100203,11 +101435,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2211), 1, sym_identifier, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1478), 1, + STATE(1576), 1, sym_expression, ACTIONS(23), 2, anon_sym_BANG, @@ -100248,13 +101480,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -100271,73 +101503,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18913] = 22, + [19010] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(1536), 1, + sym_identifier, + ACTIONS(1548), 1, + anon_sym_sizeof, + ACTIONS(1552), 1, anon_sym_offsetof, - ACTIONS(97), 1, + ACTIONS(1554), 1, anon_sym__Generic, - ACTIONS(167), 1, + ACTIONS(1558), 1, sym_number_literal, - ACTIONS(2268), 1, - sym_identifier, - ACTIONS(2274), 1, - anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2631), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(913), 1, sym_string_literal, - STATE(1630), 1, + STATE(1039), 1, sym_expression, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(2270), 2, + ACTIONS(1540), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2272), 2, + ACTIONS(1542), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(1556), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1564), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2300), 2, + ACTIONS(2535), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(93), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, + ACTIONS(1562), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1406), 5, + STATE(1056), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -100354,7 +101586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19018] = 22, + [19115] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -100365,15 +101597,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(2297), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(2303), 1, anon_sym_sizeof, - ACTIONS(2476), 1, + ACTIONS(2315), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1357), 1, + STATE(1380), 1, sym_expression, ACTIONS(99), 2, anon_sym_asm, @@ -100384,16 +101616,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1948), 2, + ACTIONS(2299), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1950), 2, + ACTIONS(2301), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2478), 2, + ACTIONS(2329), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -100414,13 +101646,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1410), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -100437,156 +101669,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19123] = 22, + [19220] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1524), 1, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(2093), 1, - sym_identifier, - ACTIONS(2099), 1, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(2480), 1, + ACTIONS(2483), 1, + sym_identifier, + ACTIONS(2485), 1, anon_sym_LPAREN2, - STATE(915), 1, + STATE(993), 1, sym_string_literal, - STATE(1013), 1, + STATE(1478), 1, sym_expression, - ACTIONS(1528), 2, + ACTIONS(1589), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1536), 2, + ACTIONS(1595), 2, sym_true, sym_false, - ACTIONS(1538), 2, + ACTIONS(1597), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2095), 2, + ACTIONS(2205), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2097), 2, + ACTIONS(2207), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2482), 2, + ACTIONS(2487), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2484), 2, + ACTIONS(2489), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1532), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1534), 5, + ACTIONS(105), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1049), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1048), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [19228] = 22, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1508), 1, - sym_identifier, - ACTIONS(1520), 1, - anon_sym_sizeof, - ACTIONS(1524), 1, - anon_sym_offsetof, - ACTIONS(1526), 1, - anon_sym__Generic, - ACTIONS(1530), 1, - sym_number_literal, - ACTIONS(2528), 1, - anon_sym_LPAREN2, - STATE(915), 1, - sym_string_literal, - STATE(1022), 1, - sym_expression, - ACTIONS(1512), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1514), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1528), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1536), 2, - sym_true, - sym_false, - ACTIONS(1538), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2482), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2530), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1073), 5, + STATE(1205), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -100603,7 +101752,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19333] = 22, + [19325] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -100618,11 +101767,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2211), 1, sym_identifier, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1638), 1, + STATE(1522), 1, sym_expression, ACTIONS(23), 2, anon_sym_BANG, @@ -100663,13 +101812,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -100686,7 +101835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19438] = 22, + [19430] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -100701,11 +101850,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2211), 1, sym_identifier, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1541), 1, + STATE(1525), 1, sym_expression, ACTIONS(23), 2, anon_sym_BANG, @@ -100746,13 +101895,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -100769,73 +101918,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19543] = 22, + [19535] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1546), 1, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, anon_sym_sizeof, - ACTIONS(1550), 1, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1552), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1556), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2466), 1, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(2468), 1, - anon_sym_LPAREN2, - STATE(987), 1, + STATE(949), 1, sym_string_literal, - STATE(1129), 1, + STATE(1292), 1, sym_expression, - ACTIONS(1540), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1542), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1554), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1560), 2, - sym_true, - sym_false, - ACTIONS(1562), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2470), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2472), 2, + ACTIONS(89), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1548), 5, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1558), 5, + ACTIONS(103), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1205), 5, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1200), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -100852,73 +102001,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19648] = 22, + [19640] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1546), 1, - anon_sym_sizeof, - ACTIONS(1550), 1, - anon_sym_offsetof, ACTIONS(1552), 1, + anon_sym_offsetof, + ACTIONS(1554), 1, anon_sym__Generic, - ACTIONS(1556), 1, + ACTIONS(1558), 1, sym_number_literal, - ACTIONS(2466), 1, + ACTIONS(2064), 1, sym_identifier, - ACTIONS(2468), 1, + ACTIONS(2070), 1, + anon_sym_sizeof, + ACTIONS(2467), 1, anon_sym_LPAREN2, - STATE(987), 1, + STATE(913), 1, sym_string_literal, - STATE(1153), 1, + STATE(1438), 1, sym_expression, - ACTIONS(1540), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1542), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1554), 2, + ACTIONS(1556), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1560), 2, + ACTIONS(1564), 2, sym_true, sym_false, - ACTIONS(1562), 2, + ACTIONS(1566), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2470), 2, + ACTIONS(2066), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2068), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2472), 2, + ACTIONS(2471), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1548), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1558), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1205), 5, + ACTIONS(1562), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1072), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1200), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -100935,73 +102084,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19753] = 22, + [19745] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1550), 1, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1552), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1556), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2186), 1, - anon_sym_sizeof, - ACTIONS(2486), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(2488), 1, + ACTIONS(2017), 1, + anon_sym_sizeof, + ACTIONS(2493), 1, anon_sym_LPAREN2, - STATE(987), 1, + STATE(949), 1, sym_string_literal, - STATE(1469), 1, + STATE(1384), 1, sym_expression, - ACTIONS(1554), 2, + ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1560), 2, - sym_true, - sym_false, - ACTIONS(1562), 2, + ACTIONS(109), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2182), 2, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(2013), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2184), 2, + ACTIONS(2015), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2470), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2490), 2, + ACTIONS(2495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1548), 5, + ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1558), 5, + ACTIONS(103), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1222), 5, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1200), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -101018,7 +102167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19858] = 22, + [19850] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -101033,11 +102182,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2211), 1, sym_identifier, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1633), 1, + STATE(1606), 1, sym_expression, ACTIONS(23), 2, anon_sym_BANG, @@ -101078,13 +102227,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -101101,156 +102250,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19963] = 22, + [19955] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1550), 1, + ACTIONS(91), 1, + anon_sym_sizeof, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1552), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1556), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2186), 1, - anon_sym_sizeof, - ACTIONS(2486), 1, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(2488), 1, + ACTIONS(2633), 1, anon_sym_LPAREN2, - STATE(987), 1, + STATE(949), 1, sym_string_literal, - STATE(1470), 1, + STATE(1274), 1, sym_expression, - ACTIONS(1554), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1560), 2, - sym_true, - sym_false, - ACTIONS(1562), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2182), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2184), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2470), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2490), 2, + ACTIONS(89), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1548), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1558), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1222), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1200), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [20068] = 22, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1508), 1, - sym_identifier, - ACTIONS(1520), 1, - anon_sym_sizeof, - ACTIONS(1524), 1, - anon_sym_offsetof, - ACTIONS(1526), 1, - anon_sym__Generic, - ACTIONS(1530), 1, - sym_number_literal, - ACTIONS(2528), 1, - anon_sym_LPAREN2, - STATE(915), 1, - sym_string_literal, - STATE(1033), 1, - sym_expression, - ACTIONS(1512), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1514), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1528), 2, + ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1536), 2, - sym_true, - sym_false, - ACTIONS(1538), 2, + ACTIONS(109), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2482), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2530), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(103), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, + ACTIONS(105), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1073), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -101267,7 +102333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20173] = 22, + [20060] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -101282,11 +102348,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2211), 1, sym_identifier, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1635), 1, + STATE(1489), 1, sym_expression, ACTIONS(23), 2, anon_sym_BANG, @@ -101327,96 +102393,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1199), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [20278] = 22, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1550), 1, - anon_sym_offsetof, - ACTIONS(1552), 1, - anon_sym__Generic, - ACTIONS(1556), 1, - sym_number_literal, - ACTIONS(2186), 1, - anon_sym_sizeof, - ACTIONS(2486), 1, - sym_identifier, - ACTIONS(2488), 1, - anon_sym_LPAREN2, - STATE(987), 1, - sym_string_literal, - STATE(1182), 1, - sym_expression, - ACTIONS(1554), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1560), 2, - sym_true, - sym_false, - ACTIONS(1562), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2182), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2184), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2470), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1548), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1558), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1222), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1200), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -101433,156 +102416,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20383] = 22, + [20165] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1508), 1, - sym_identifier, - ACTIONS(1520), 1, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, anon_sym_sizeof, - ACTIONS(1524), 1, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2528), 1, - anon_sym_LPAREN2, - STATE(915), 1, + ACTIONS(2211), 1, + sym_identifier, + STATE(949), 1, sym_string_literal, - STATE(1032), 1, + STATE(1547), 1, sym_expression, - ACTIONS(1512), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1514), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1528), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1536), 2, - sym_true, - sym_false, - ACTIONS(1538), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2482), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2530), 2, + ACTIONS(89), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(103), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1073), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1048), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [20488] = 22, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1550), 1, - anon_sym_offsetof, - ACTIONS(1552), 1, - anon_sym__Generic, - ACTIONS(1556), 1, - sym_number_literal, - ACTIONS(2186), 1, - anon_sym_sizeof, - ACTIONS(2486), 1, - sym_identifier, - ACTIONS(2488), 1, - anon_sym_LPAREN2, - STATE(987), 1, - sym_string_literal, - STATE(1152), 1, - sym_expression, - ACTIONS(1554), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1560), 2, - sym_true, - sym_false, - ACTIONS(1562), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2182), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2184), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2470), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(105), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1548), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1558), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1222), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1200), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -101599,73 +102499,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20593] = 22, + [20270] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1508), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1520), 1, + ACTIONS(1548), 1, anon_sym_sizeof, - ACTIONS(1524), 1, + ACTIONS(1552), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(1554), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(1558), 1, sym_number_literal, - ACTIONS(2528), 1, + ACTIONS(2533), 1, anon_sym_LPAREN2, - STATE(915), 1, + STATE(913), 1, sym_string_literal, - STATE(1018), 1, + STATE(1030), 1, sym_expression, - ACTIONS(1512), 2, + ACTIONS(1540), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1514), 2, + ACTIONS(1542), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1528), 2, + ACTIONS(1556), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1536), 2, + ACTIONS(1564), 2, sym_true, sym_false, - ACTIONS(1538), 2, + ACTIONS(1566), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2482), 2, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2530), 2, + ACTIONS(2535), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, + ACTIONS(1562), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1073), 5, + STATE(1056), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -101682,7 +102582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20698] = 22, + [20375] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -101693,15 +102593,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2268), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2017), 1, anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1653), 1, + STATE(1383), 1, sym_expression, ACTIONS(99), 2, anon_sym_asm, @@ -101712,16 +102612,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(2270), 2, + ACTIONS(2013), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2272), 2, + ACTIONS(2015), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2300), 2, + ACTIONS(2495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -101742,13 +102642,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1406), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -101765,73 +102665,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20803] = 22, + [20480] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1508), 1, - sym_identifier, - ACTIONS(1520), 1, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, anon_sym_sizeof, - ACTIONS(1524), 1, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2528), 1, - anon_sym_LPAREN2, - STATE(915), 1, + ACTIONS(2211), 1, + sym_identifier, + STATE(949), 1, sym_string_literal, - STATE(1002), 1, + STATE(1512), 1, sym_expression, - ACTIONS(1512), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1514), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1528), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1536), 2, - sym_true, - sym_false, - ACTIONS(1538), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2482), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2530), 2, + ACTIONS(89), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(103), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, + ACTIONS(105), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1073), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -101848,46 +102748,46 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20908] = 22, + [20585] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1546), 1, - anon_sym_sizeof, - ACTIONS(1550), 1, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(1552), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(1556), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(2466), 1, + ACTIONS(2209), 1, + anon_sym_sizeof, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2468), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - STATE(987), 1, + STATE(993), 1, sym_string_literal, - STATE(1160), 1, + STATE(1477), 1, sym_expression, - ACTIONS(1540), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1542), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1554), 2, + ACTIONS(1589), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1560), 2, + ACTIONS(1595), 2, sym_true, sym_false, - ACTIONS(1562), 2, + ACTIONS(1597), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2470), 2, + ACTIONS(2205), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2207), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2487), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2472), 2, + ACTIONS(2489), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(105), 5, @@ -101896,13 +102796,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1548), 5, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1558), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -101914,7 +102814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1200), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -101931,7 +102831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [21013] = 22, + [20690] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -101942,16 +102842,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2268), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(1745), 1, anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2543), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1580), 1, + STATE(1282), 1, sym_expression, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, @@ -101961,16 +102864,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(2270), 2, + ACTIONS(1739), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2272), 2, + ACTIONS(1741), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2300), 2, + ACTIONS(2545), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -101991,13 +102891,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1406), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -102014,7 +102914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [21118] = 22, + [20795] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -102025,16 +102925,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2268), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(1745), 1, anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2543), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1581), 1, + STATE(1289), 1, sym_expression, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, @@ -102044,16 +102947,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(2270), 2, + ACTIONS(1739), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2272), 2, + ACTIONS(1741), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2300), 2, + ACTIONS(2545), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -102074,13 +102974,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1406), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -102097,7 +102997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [21223] = 22, + [20900] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -102108,15 +103008,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2268), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2017), 1, anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1582), 1, + STATE(1382), 1, sym_expression, ACTIONS(99), 2, anon_sym_asm, @@ -102127,16 +103027,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(2270), 2, + ACTIONS(2013), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2272), 2, + ACTIONS(2015), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2300), 2, + ACTIONS(2495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -102157,13 +103057,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1406), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -102180,156 +103080,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [21328] = 22, + [21005] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(97), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(167), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(2268), 1, - sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2483), 1, + sym_identifier, + ACTIONS(2485), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(993), 1, sym_string_literal, - STATE(1607), 1, + STATE(1476), 1, sym_expression, - ACTIONS(99), 2, + ACTIONS(1589), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, + ACTIONS(1595), 2, sym_true, sym_false, - ACTIONS(2270), 2, + ACTIONS(1597), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2205), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2272), 2, + ACTIONS(2207), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2487), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2300), 2, + ACTIONS(2489), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(93), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(103), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, ACTIONS(105), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1406), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1199), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [21433] = 22, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_offsetof, - ACTIONS(97), 1, - anon_sym__Generic, - ACTIONS(167), 1, - sym_number_literal, - ACTIONS(2268), 1, - sym_identifier, - ACTIONS(2274), 1, - anon_sym_sizeof, - ACTIONS(2286), 1, - anon_sym_LPAREN2, - STATE(944), 1, - sym_string_literal, - STATE(1612), 1, - sym_expression, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(2270), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2272), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2290), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2300), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(93), 5, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1406), 5, + STATE(1205), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -102346,73 +103163,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [21538] = 22, + [21110] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1508), 1, - sym_identifier, - ACTIONS(1520), 1, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, anon_sym_sizeof, - ACTIONS(1524), 1, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2528), 1, - anon_sym_LPAREN2, - STATE(915), 1, + ACTIONS(2211), 1, + sym_identifier, + STATE(949), 1, sym_string_literal, - STATE(1021), 1, + STATE(1513), 1, sym_expression, - ACTIONS(1512), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1514), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1528), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1536), 2, - sym_true, - sym_false, - ACTIONS(1538), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2482), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2530), 2, + ACTIONS(89), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(103), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, + ACTIONS(105), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1073), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -102429,7 +103246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [21643] = 22, + [21215] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -102440,15 +103257,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2268), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2017), 1, anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1589), 1, + STATE(1373), 1, sym_expression, ACTIONS(99), 2, anon_sym_asm, @@ -102459,16 +103276,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(2270), 2, + ACTIONS(2013), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2272), 2, + ACTIONS(2015), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2300), 2, + ACTIONS(2495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -102489,13 +103306,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1406), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -102512,73 +103329,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [21748] = 22, + [21320] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1550), 1, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, + anon_sym_sizeof, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1552), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1556), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2186), 1, - anon_sym_sizeof, - ACTIONS(2486), 1, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(2488), 1, - anon_sym_LPAREN2, - STATE(987), 1, + STATE(949), 1, sym_string_literal, - STATE(1463), 1, + STATE(1650), 1, sym_expression, - ACTIONS(1554), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1560), 2, - sym_true, - sym_false, - ACTIONS(1562), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2182), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2184), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2470), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2490), 2, + ACTIONS(89), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1548), 5, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1558), 5, + ACTIONS(103), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1222), 5, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1200), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -102595,7 +103412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [21853] = 22, + [21425] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -102606,15 +103423,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2268), 1, + ACTIONS(2297), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2303), 1, anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2315), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1570), 1, + STATE(1659), 1, sym_expression, ACTIONS(99), 2, anon_sym_asm, @@ -102625,16 +103442,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(2270), 2, + ACTIONS(2299), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2272), 2, + ACTIONS(2301), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2300), 2, + ACTIONS(2329), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -102655,13 +103472,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1406), 5, + STATE(1410), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -102678,73 +103495,156 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [21958] = 22, + [21530] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1524), 1, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, + anon_sym_sizeof, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2093), 1, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(2099), 1, - anon_sym_sizeof, - ACTIONS(2480), 1, - anon_sym_LPAREN2, - STATE(915), 1, + STATE(949), 1, sym_string_literal, - STATE(1434), 1, + STATE(1524), 1, sym_expression, - ACTIONS(1528), 2, + ACTIONS(23), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1536), 2, - sym_true, - sym_false, - ACTIONS(1538), 2, + ACTIONS(109), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2095), 2, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(93), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(103), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1316), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1209), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [21635] = 22, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1536), 1, + sym_identifier, + ACTIONS(1548), 1, + anon_sym_sizeof, + ACTIONS(1552), 1, + anon_sym_offsetof, + ACTIONS(1554), 1, + anon_sym__Generic, + ACTIONS(1558), 1, + sym_number_literal, + ACTIONS(2533), 1, + anon_sym_LPAREN2, + STATE(913), 1, + sym_string_literal, + STATE(1017), 1, + sym_expression, + ACTIONS(1540), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2097), 2, + ACTIONS(1542), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2482), 2, + ACTIONS(1556), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1564), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2484), 2, + ACTIONS(2535), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, + ACTIONS(1562), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1049), 5, + STATE(1056), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -102761,11 +103661,13 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [22063] = 22, + [21740] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, + ACTIONS(21), 1, + anon_sym_LPAREN2, ACTIONS(91), 1, anon_sym_sizeof, ACTIONS(95), 1, @@ -102774,13 +103676,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(2626), 1, - anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1282), 1, + STATE(1527), 1, sym_expression, ACTIONS(23), 2, anon_sym_BANG, @@ -102821,13 +103721,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -102844,7 +103744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [22168] = 22, + [21845] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -102859,11 +103759,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2211), 1, sym_identifier, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1284), 1, + STATE(1668), 1, sym_expression, ACTIONS(23), 2, anon_sym_BANG, @@ -102904,13 +103804,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -102927,46 +103827,46 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [22273] = 22, + [21950] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1550), 1, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(1552), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(1556), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(2186), 1, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(2486), 1, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2488), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - STATE(987), 1, + STATE(993), 1, sym_string_literal, - STATE(1462), 1, + STATE(1474), 1, sym_expression, - ACTIONS(1554), 2, + ACTIONS(1589), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1560), 2, + ACTIONS(1595), 2, sym_true, sym_false, - ACTIONS(1562), 2, + ACTIONS(1597), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2182), 2, + ACTIONS(2205), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2184), 2, + ACTIONS(2207), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2470), 2, + ACTIONS(2487), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2490), 2, + ACTIONS(2489), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(105), 5, @@ -102975,25 +103875,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1548), 5, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1558), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1222), 5, + STATE(1205), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1200), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -103010,73 +103910,156 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [22378] = 22, + [22055] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1508), 1, - sym_identifier, - ACTIONS(1520), 1, - anon_sym_sizeof, - ACTIONS(1524), 1, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2528), 1, + ACTIONS(2297), 1, + sym_identifier, + ACTIONS(2303), 1, + anon_sym_sizeof, + ACTIONS(2315), 1, anon_sym_LPAREN2, - STATE(915), 1, + STATE(949), 1, sym_string_literal, - STATE(1027), 1, + STATE(1674), 1, sym_expression, - ACTIONS(1512), 2, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(2299), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1514), 2, + ACTIONS(2301), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1528), 2, + ACTIONS(2319), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2329), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(103), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1410), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1209), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [22160] = 22, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1552), 1, + anon_sym_offsetof, + ACTIONS(1554), 1, + anon_sym__Generic, + ACTIONS(1558), 1, + sym_number_literal, + ACTIONS(2064), 1, + sym_identifier, + ACTIONS(2070), 1, + anon_sym_sizeof, + ACTIONS(2635), 1, + anon_sym_LPAREN2, + STATE(913), 1, + sym_string_literal, + STATE(1039), 1, + sym_expression, + ACTIONS(1556), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1536), 2, + ACTIONS(1564), 2, sym_true, sym_false, - ACTIONS(1538), 2, + ACTIONS(1566), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2482), 2, + ACTIONS(2066), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2068), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2530), 2, + ACTIONS(2471), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, + ACTIONS(1562), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1073), 5, + STATE(1072), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -103093,73 +104076,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [22483] = 22, + [22265] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(1552), 1, anon_sym_offsetof, - ACTIONS(97), 1, + ACTIONS(1554), 1, anon_sym__Generic, - ACTIONS(167), 1, + ACTIONS(1558), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(2064), 1, sym_identifier, - ACTIONS(1808), 1, + ACTIONS(2070), 1, anon_sym_sizeof, - ACTIONS(2532), 1, + ACTIONS(2467), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(913), 1, sym_string_literal, - STATE(1274), 1, + STATE(1038), 1, sym_expression, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(99), 2, + ACTIONS(1556), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, + ACTIONS(1564), 2, sym_true, sym_false, - ACTIONS(1802), 2, + ACTIONS(1566), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2066), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1804), 2, + ACTIONS(2068), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2534), 2, + ACTIONS(2469), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2471), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(93), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, + ACTIONS(1562), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1072), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -103176,73 +104159,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [22588] = 22, + [22370] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(1581), 1, + anon_sym_sizeof, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(97), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(167), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(2268), 1, + ACTIONS(2509), 1, sym_identifier, - ACTIONS(2274), 1, - anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2511), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(993), 1, sym_string_literal, - STATE(1579), 1, + STATE(1183), 1, sym_expression, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(2270), 2, + ACTIONS(1575), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2272), 2, + ACTIONS(1577), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(1589), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1595), 2, + sym_true, + sym_false, + ACTIONS(1597), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2487), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2300), 2, + ACTIONS(2513), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(93), 5, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1406), 5, + STATE(1237), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -103259,73 +104242,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [22693] = 22, + [22475] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, + ACTIONS(1581), 1, anon_sym_sizeof, - ACTIONS(95), 1, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(97), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(167), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2509), 1, sym_identifier, - STATE(944), 1, + ACTIONS(2511), 1, + anon_sym_LPAREN2, + STATE(993), 1, sym_string_literal, - STATE(1620), 1, + STATE(1174), 1, sym_expression, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, + ACTIONS(1575), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(99), 2, + ACTIONS(1577), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1589), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, + ACTIONS(1595), 2, sym_true, sym_false, - ACTIONS(93), 5, + ACTIONS(1597), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2487), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2513), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1237), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -103342,73 +104325,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [22798] = 22, + [22580] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(1552), 1, anon_sym_offsetof, - ACTIONS(97), 1, + ACTIONS(1554), 1, anon_sym__Generic, - ACTIONS(167), 1, + ACTIONS(1558), 1, sym_number_literal, - ACTIONS(2268), 1, + ACTIONS(2064), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2070), 1, anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2467), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(913), 1, sym_string_literal, - STATE(1361), 1, + STATE(1025), 1, sym_expression, - ACTIONS(99), 2, + ACTIONS(1556), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, + ACTIONS(1564), 2, sym_true, sym_false, - ACTIONS(2270), 2, + ACTIONS(1566), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2066), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2272), 2, + ACTIONS(2068), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2300), 2, + ACTIONS(2471), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(93), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, + ACTIONS(1562), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1406), 5, + STATE(1072), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -103425,46 +104408,46 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [22903] = 22, + [22685] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1550), 1, + ACTIONS(1581), 1, + anon_sym_sizeof, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(1552), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(1556), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(2186), 1, - anon_sym_sizeof, - ACTIONS(2486), 1, + ACTIONS(2509), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2511), 1, anon_sym_LPAREN2, - STATE(987), 1, + STATE(993), 1, sym_string_literal, - STATE(1144), 1, + STATE(1175), 1, sym_expression, - ACTIONS(1554), 2, + ACTIONS(1575), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1577), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1589), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1560), 2, + ACTIONS(1595), 2, sym_true, sym_false, - ACTIONS(1562), 2, + ACTIONS(1597), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2182), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2184), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2470), 2, + ACTIONS(2487), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2490), 2, + ACTIONS(2513), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(105), 5, @@ -103473,25 +104456,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1548), 5, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1558), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1222), 5, + STATE(1237), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1200), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -103508,27 +104491,39 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [23008] = 22, + [22790] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, + anon_sym_sizeof, ACTIONS(95), 1, anon_sym_offsetof, ACTIONS(97), 1, anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(1952), 1, - anon_sym_sizeof, - ACTIONS(2630), 1, - anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1356), 1, + STATE(1271), 1, sym_expression, + ACTIONS(23), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, @@ -103538,43 +104533,114 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1948), 2, + ACTIONS(93), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(103), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1316), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1209), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [22895] = 22, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1536), 1, + sym_identifier, + ACTIONS(1548), 1, + anon_sym_sizeof, + ACTIONS(1552), 1, + anon_sym_offsetof, + ACTIONS(1554), 1, + anon_sym__Generic, + ACTIONS(1558), 1, + sym_number_literal, + ACTIONS(2533), 1, + anon_sym_LPAREN2, + STATE(913), 1, + sym_string_literal, + STATE(1029), 1, + sym_expression, + ACTIONS(1540), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1950), 2, + ACTIONS(1542), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(1556), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1564), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2478), 2, + ACTIONS(2535), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(93), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, + ACTIONS(1562), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1056), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -103591,73 +104657,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [23113] = 22, + [23000] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(1536), 1, + sym_identifier, + ACTIONS(1548), 1, + anon_sym_sizeof, + ACTIONS(1552), 1, anon_sym_offsetof, - ACTIONS(97), 1, + ACTIONS(1554), 1, anon_sym__Generic, - ACTIONS(167), 1, + ACTIONS(1558), 1, sym_number_literal, - ACTIONS(1800), 1, - sym_identifier, - ACTIONS(1808), 1, - anon_sym_sizeof, - ACTIONS(2632), 1, + ACTIONS(2533), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(913), 1, sym_string_literal, - STATE(1282), 1, + STATE(1023), 1, sym_expression, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(1802), 2, + ACTIONS(1540), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1804), 2, + ACTIONS(1542), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2534), 2, + ACTIONS(1556), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1564), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2469), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2535), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(93), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, + ACTIONS(1562), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1056), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -103674,30 +104740,39 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [23218] = 22, + [23105] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, + anon_sym_sizeof, ACTIONS(95), 1, anon_sym_offsetof, ACTIONS(97), 1, anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(1808), 1, - anon_sym_sizeof, - ACTIONS(2532), 1, - anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1284), 1, + STATE(1502), 1, sym_expression, + ACTIONS(23), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(89), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, @@ -103707,15 +104782,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(1802), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1804), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2534), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, @@ -103734,13 +104800,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -103757,156 +104823,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [23323] = 22, + [23210] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, - ACTIONS(95), 1, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(97), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(167), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2209), 1, + anon_sym_sizeof, + ACTIONS(2483), 1, sym_identifier, - STATE(944), 1, + ACTIONS(2485), 1, + anon_sym_LPAREN2, + STATE(993), 1, sym_string_literal, - STATE(1479), 1, + STATE(1467), 1, sym_expression, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, + ACTIONS(1589), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1595), 2, + sym_true, + sym_false, + ACTIONS(1597), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2205), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(27), 2, + ACTIONS(2207), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2487), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(2489), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(93), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(103), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, ACTIONS(105), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1199), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [23428] = 22, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, - ACTIONS(95), 1, - anon_sym_offsetof, - ACTIONS(97), 1, - anon_sym__Generic, - ACTIONS(167), 1, - sym_number_literal, - ACTIONS(2188), 1, - sym_identifier, - STATE(944), 1, - sym_string_literal, - STATE(1533), 1, - sym_expression, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(93), 5, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1205), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -103923,46 +104906,46 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [23533] = 22, + [23315] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1550), 1, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(1552), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(1556), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(2186), 1, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(2486), 1, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2488), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - STATE(987), 1, + STATE(993), 1, sym_string_literal, - STATE(1457), 1, + STATE(1473), 1, sym_expression, - ACTIONS(1554), 2, + ACTIONS(1589), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1560), 2, + ACTIONS(1595), 2, sym_true, sym_false, - ACTIONS(1562), 2, + ACTIONS(1597), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2182), 2, + ACTIONS(2205), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2184), 2, + ACTIONS(2207), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2470), 2, + ACTIONS(2487), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2490), 2, + ACTIONS(2489), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(105), 5, @@ -103971,25 +104954,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1548), 5, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1558), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1222), 5, + STATE(1205), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1200), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -104006,73 +104989,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [23638] = 22, + [23420] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1550), 1, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1552), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1556), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2186), 1, - anon_sym_sizeof, - ACTIONS(2486), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(2488), 1, + ACTIONS(2017), 1, + anon_sym_sizeof, + ACTIONS(2493), 1, anon_sym_LPAREN2, - STATE(987), 1, + STATE(949), 1, sym_string_literal, - STATE(1447), 1, + STATE(1356), 1, sym_expression, - ACTIONS(1554), 2, + ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1560), 2, - sym_true, - sym_false, - ACTIONS(1562), 2, + ACTIONS(109), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2182), 2, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(2013), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2184), 2, + ACTIONS(2015), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2470), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2490), 2, + ACTIONS(2495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1548), 5, + ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1558), 5, + ACTIONS(103), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1222), 5, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1200), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -104089,7 +105072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [23743] = 22, + [23525] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -104100,15 +105083,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2268), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2017), 1, anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1587), 1, + STATE(1368), 1, sym_expression, ACTIONS(99), 2, anon_sym_asm, @@ -104119,16 +105102,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(2270), 2, + ACTIONS(2013), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2272), 2, + ACTIONS(2015), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2300), 2, + ACTIONS(2495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -104149,13 +105132,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1406), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -104172,73 +105155,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [23848] = 22, + [23630] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1508), 1, - sym_identifier, - ACTIONS(1520), 1, - anon_sym_sizeof, - ACTIONS(1524), 1, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(2528), 1, + ACTIONS(2209), 1, + anon_sym_sizeof, + ACTIONS(2483), 1, + sym_identifier, + ACTIONS(2485), 1, anon_sym_LPAREN2, - STATE(915), 1, + STATE(993), 1, sym_string_literal, - STATE(1006), 1, + STATE(1146), 1, sym_expression, - ACTIONS(1512), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1514), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1528), 2, + ACTIONS(1589), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1536), 2, + ACTIONS(1595), 2, sym_true, sym_false, - ACTIONS(1538), 2, + ACTIONS(1597), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2482), 2, + ACTIONS(2205), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2207), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2487), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2530), 2, + ACTIONS(2489), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1073), 5, + STATE(1205), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -104255,27 +105238,39 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [23953] = 22, + [23735] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, + anon_sym_sizeof, ACTIONS(95), 1, anon_sym_offsetof, ACTIONS(97), 1, anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2268), 1, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(2274), 1, - anon_sym_sizeof, - ACTIONS(2286), 1, - anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1562), 1, + STATE(1504), 1, sym_expression, + ACTIONS(23), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, @@ -104285,18 +105280,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(2270), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2272), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2290), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2300), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, @@ -104315,13 +105298,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1406), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -104338,7 +105321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [24058] = 22, + [23840] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -104353,11 +105336,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2211), 1, sym_identifier, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1659), 1, + STATE(1663), 1, sym_expression, ACTIONS(23), 2, anon_sym_BANG, @@ -104398,13 +105381,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -104421,73 +105404,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [24163] = 22, + [23945] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(97), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(167), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(1800), 1, - sym_identifier, - ACTIONS(1808), 1, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(2532), 1, + ACTIONS(2483), 1, + sym_identifier, + ACTIONS(2485), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(993), 1, sym_string_literal, - STATE(1278), 1, + STATE(1475), 1, sym_expression, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(99), 2, + ACTIONS(1589), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, + ACTIONS(1595), 2, sym_true, sym_false, - ACTIONS(1802), 2, + ACTIONS(1597), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2205), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1804), 2, + ACTIONS(2207), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2534), 2, + ACTIONS(2487), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2489), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(93), 5, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1205), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -104504,73 +105487,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [24268] = 22, + [24050] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, + ACTIONS(1581), 1, anon_sym_sizeof, - ACTIONS(95), 1, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(97), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(167), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2509), 1, sym_identifier, - STATE(944), 1, + ACTIONS(2511), 1, + anon_sym_LPAREN2, + STATE(993), 1, sym_string_literal, - STATE(1501), 1, + STATE(1197), 1, sym_expression, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, + ACTIONS(1575), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(99), 2, + ACTIONS(1577), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1589), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, + ACTIONS(1595), 2, sym_true, sym_false, - ACTIONS(93), 5, + ACTIONS(1597), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2487), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2513), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1237), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -104587,7 +105570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [24373] = 22, + [24155] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -104602,11 +105585,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2211), 1, sym_identifier, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1652), 1, + STATE(1671), 1, sym_expression, ACTIONS(23), 2, anon_sym_BANG, @@ -104647,13 +105630,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -104670,73 +105653,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [24478] = 22, + [24260] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(1581), 1, + anon_sym_sizeof, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(97), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(167), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(2268), 1, + ACTIONS(2509), 1, sym_identifier, - ACTIONS(2274), 1, - anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2637), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(993), 1, sym_string_literal, - STATE(1655), 1, + STATE(1144), 1, sym_expression, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(2270), 2, + ACTIONS(1575), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2272), 2, + ACTIONS(1577), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(1589), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1595), 2, + sym_true, + sym_false, + ACTIONS(1597), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2487), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2300), 2, + ACTIONS(2513), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(93), 5, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1406), 5, + STATE(1237), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -104753,46 +105736,46 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [24583] = 22, + [24365] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1550), 1, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(1552), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(1556), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(2186), 1, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(2486), 1, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2488), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - STATE(987), 1, + STATE(993), 1, sym_string_literal, - STATE(1456), 1, + STATE(1481), 1, sym_expression, - ACTIONS(1554), 2, + ACTIONS(1589), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1560), 2, + ACTIONS(1595), 2, sym_true, sym_false, - ACTIONS(1562), 2, + ACTIONS(1597), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2182), 2, + ACTIONS(2205), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2184), 2, + ACTIONS(2207), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2470), 2, + ACTIONS(2487), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2490), 2, + ACTIONS(2489), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(105), 5, @@ -104801,25 +105784,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1548), 5, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1558), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1222), 5, + STATE(1205), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1200), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -104836,73 +105819,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [24688] = 22, + [24470] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1546), 1, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, anon_sym_sizeof, - ACTIONS(1550), 1, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1552), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1556), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2466), 1, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(2468), 1, - anon_sym_LPAREN2, - STATE(987), 1, + STATE(949), 1, sym_string_literal, - STATE(1182), 1, + STATE(1290), 1, sym_expression, - ACTIONS(1540), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1542), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1554), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1560), 2, - sym_true, - sym_false, - ACTIONS(1562), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2470), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2472), 2, + ACTIONS(89), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1548), 5, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1558), 5, + ACTIONS(103), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1205), 5, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1200), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -104919,46 +105902,46 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [24793] = 22, + [24575] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1546), 1, - anon_sym_sizeof, - ACTIONS(1550), 1, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(1552), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(1556), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(2466), 1, + ACTIONS(2209), 1, + anon_sym_sizeof, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2468), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - STATE(987), 1, + STATE(993), 1, sym_string_literal, - STATE(1171), 1, + STATE(1482), 1, sym_expression, - ACTIONS(1540), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1542), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1554), 2, + ACTIONS(1589), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1560), 2, + ACTIONS(1595), 2, sym_true, sym_false, - ACTIONS(1562), 2, + ACTIONS(1597), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2470), 2, + ACTIONS(2205), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2207), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2487), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2472), 2, + ACTIONS(2489), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(105), 5, @@ -104967,13 +105950,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1548), 5, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1558), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -104985,7 +105968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1200), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -105002,39 +105985,27 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [24898] = 22, + [24680] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, - anon_sym_sizeof, ACTIONS(95), 1, anon_sym_offsetof, ACTIONS(97), 1, anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2297), 1, sym_identifier, - STATE(944), 1, + ACTIONS(2303), 1, + anon_sym_sizeof, + ACTIONS(2315), 1, + anon_sym_LPAREN2, + STATE(949), 1, sym_string_literal, - STATE(1647), 1, + STATE(1612), 1, sym_expression, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, @@ -105044,6 +106015,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, + ACTIONS(2299), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2301), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2319), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2329), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, @@ -105062,13 +106045,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1410), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -105085,73 +106068,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [25003] = 22, + [24785] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1550), 1, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, + anon_sym_sizeof, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1552), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1556), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2186), 1, - anon_sym_sizeof, - ACTIONS(2486), 1, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(2488), 1, - anon_sym_LPAREN2, - STATE(987), 1, + STATE(949), 1, sym_string_literal, - STATE(1129), 1, + STATE(1552), 1, sym_expression, - ACTIONS(1554), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1560), 2, - sym_true, - sym_false, - ACTIONS(1562), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2182), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2184), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2470), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2490), 2, + ACTIONS(89), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1548), 5, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1558), 5, + ACTIONS(103), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1222), 5, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1200), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -105168,73 +106151,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [25108] = 22, + [24890] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(21), 1, - anon_sym_LPAREN2, - ACTIONS(91), 1, + ACTIONS(1581), 1, anon_sym_sizeof, - ACTIONS(95), 1, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(97), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(167), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2509), 1, sym_identifier, - STATE(944), 1, + ACTIONS(2511), 1, + anon_sym_LPAREN2, + STATE(993), 1, sym_string_literal, - STATE(1502), 1, + STATE(1194), 1, sym_expression, - ACTIONS(23), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(25), 2, + ACTIONS(1575), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(27), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(99), 2, + ACTIONS(1577), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1589), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, + ACTIONS(1595), 2, sym_true, sym_false, - ACTIONS(93), 5, + ACTIONS(1597), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2487), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2513), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1237), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -105251,73 +106234,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [25213] = 22, + [24995] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(1581), 1, + anon_sym_sizeof, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(97), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(167), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(1800), 1, + ACTIONS(2509), 1, sym_identifier, - ACTIONS(1952), 1, - anon_sym_sizeof, - ACTIONS(2476), 1, + ACTIONS(2511), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(993), 1, sym_string_literal, - STATE(1361), 1, + STATE(1193), 1, sym_expression, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(1948), 2, + ACTIONS(1575), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1950), 2, + ACTIONS(1577), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(1589), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1595), 2, + sym_true, + sym_false, + ACTIONS(1597), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2487), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2478), 2, + ACTIONS(2513), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(93), 5, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1237), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -105334,46 +106317,46 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [25318] = 22, + [25100] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1546), 1, + ACTIONS(1581), 1, anon_sym_sizeof, - ACTIONS(1550), 1, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(1552), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(1556), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(2466), 1, + ACTIONS(2509), 1, sym_identifier, - ACTIONS(2468), 1, + ACTIONS(2511), 1, anon_sym_LPAREN2, - STATE(987), 1, + STATE(993), 1, sym_string_literal, - STATE(1159), 1, + STATE(1192), 1, sym_expression, - ACTIONS(1540), 2, + ACTIONS(1575), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1542), 2, + ACTIONS(1577), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1554), 2, + ACTIONS(1589), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1560), 2, + ACTIONS(1595), 2, sym_true, sym_false, - ACTIONS(1562), 2, + ACTIONS(1597), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2470), 2, + ACTIONS(2487), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2472), 2, + ACTIONS(2513), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(105), 5, @@ -105382,25 +106365,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1548), 5, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1558), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1205), 5, + STATE(1237), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1200), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -105417,26 +106400,26 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [25423] = 22, + [25205] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1546), 1, + ACTIONS(1536), 1, + sym_identifier, + ACTIONS(1548), 1, anon_sym_sizeof, - ACTIONS(1550), 1, - anon_sym_offsetof, ACTIONS(1552), 1, + anon_sym_offsetof, + ACTIONS(1554), 1, anon_sym__Generic, - ACTIONS(1556), 1, + ACTIONS(1558), 1, sym_number_literal, - ACTIONS(2466), 1, - sym_identifier, - ACTIONS(2468), 1, + ACTIONS(2533), 1, anon_sym_LPAREN2, - STATE(987), 1, + STATE(913), 1, sym_string_literal, - STATE(1152), 1, + STATE(1018), 1, sym_expression, ACTIONS(1540), 2, anon_sym_DASH, @@ -105444,46 +106427,46 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1542), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1554), 2, + ACTIONS(1556), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1560), 2, + ACTIONS(1564), 2, sym_true, sym_false, - ACTIONS(1562), 2, + ACTIONS(1566), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2470), 2, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2472), 2, + ACTIONS(2535), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1548), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1558), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1205), 5, + ACTIONS(1562), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1056), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1200), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -105500,73 +106483,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [25528] = 22, + [25310] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1524), 1, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2093), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(2099), 1, + ACTIONS(2017), 1, anon_sym_sizeof, - ACTIONS(2480), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - STATE(915), 1, + STATE(949), 1, sym_string_literal, - STATE(1418), 1, + STATE(1380), 1, sym_expression, - ACTIONS(1528), 2, + ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1536), 2, - sym_true, - sym_false, - ACTIONS(1538), 2, + ACTIONS(109), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2095), 2, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(2013), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2097), 2, + ACTIONS(2015), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2482), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2484), 2, + ACTIONS(2495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(103), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, + ACTIONS(105), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1049), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -105583,73 +106566,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [25633] = 22, + [25415] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1524), 1, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2093), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(2099), 1, + ACTIONS(2017), 1, anon_sym_sizeof, - ACTIONS(2480), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - STATE(915), 1, + STATE(949), 1, sym_string_literal, - STATE(1411), 1, + STATE(1359), 1, sym_expression, - ACTIONS(1528), 2, + ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1536), 2, - sym_true, - sym_false, - ACTIONS(1538), 2, + ACTIONS(109), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2095), 2, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(2013), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2097), 2, + ACTIONS(2015), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2482), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2484), 2, + ACTIONS(2495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(103), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, + ACTIONS(105), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1049), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -105666,73 +106649,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [25738] = 22, + [25520] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1524), 1, + ACTIONS(1581), 1, + anon_sym_sizeof, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(2093), 1, + ACTIONS(2509), 1, sym_identifier, - ACTIONS(2099), 1, - anon_sym_sizeof, - ACTIONS(2480), 1, + ACTIONS(2511), 1, anon_sym_LPAREN2, - STATE(915), 1, + STATE(993), 1, sym_string_literal, - STATE(1428), 1, + STATE(1146), 1, sym_expression, - ACTIONS(1528), 2, + ACTIONS(1575), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1577), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1589), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1536), 2, + ACTIONS(1595), 2, sym_true, sym_false, - ACTIONS(1538), 2, + ACTIONS(1597), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2095), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2097), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2482), 2, + ACTIONS(2487), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2484), 2, + ACTIONS(2513), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1049), 5, + STATE(1237), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -105749,73 +106732,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [25843] = 22, + [25625] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1524), 1, + ACTIONS(1581), 1, + anon_sym_sizeof, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(2093), 1, + ACTIONS(2509), 1, sym_identifier, - ACTIONS(2099), 1, - anon_sym_sizeof, - ACTIONS(2480), 1, + ACTIONS(2511), 1, anon_sym_LPAREN2, - STATE(915), 1, + STATE(993), 1, sym_string_literal, - STATE(1429), 1, + STATE(1191), 1, sym_expression, - ACTIONS(1528), 2, + ACTIONS(1575), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1577), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1589), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1536), 2, + ACTIONS(1595), 2, sym_true, sym_false, - ACTIONS(1538), 2, + ACTIONS(1597), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2095), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2097), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2482), 2, + ACTIONS(2487), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2484), 2, + ACTIONS(2513), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1049), 5, + STATE(1237), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -105832,73 +106815,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [25948] = 22, + [25730] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1524), 1, + ACTIONS(1581), 1, + anon_sym_sizeof, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(2093), 1, + ACTIONS(2509), 1, sym_identifier, - ACTIONS(2099), 1, - anon_sym_sizeof, - ACTIONS(2480), 1, + ACTIONS(2511), 1, anon_sym_LPAREN2, - STATE(915), 1, + STATE(993), 1, sym_string_literal, - STATE(1433), 1, + STATE(1190), 1, sym_expression, - ACTIONS(1528), 2, + ACTIONS(1575), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1577), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1589), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1536), 2, + ACTIONS(1595), 2, sym_true, sym_false, - ACTIONS(1538), 2, + ACTIONS(1597), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2095), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2097), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2482), 2, + ACTIONS(2487), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2484), 2, + ACTIONS(2513), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1049), 5, + STATE(1237), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -105915,73 +106898,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [26053] = 22, + [25835] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1524), 1, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2093), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(2099), 1, + ACTIONS(2017), 1, anon_sym_sizeof, - ACTIONS(2480), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - STATE(915), 1, + STATE(949), 1, sym_string_literal, - STATE(1438), 1, + STATE(1381), 1, sym_expression, - ACTIONS(1528), 2, + ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1536), 2, - sym_true, - sym_false, - ACTIONS(1538), 2, + ACTIONS(109), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2095), 2, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(2013), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2097), 2, + ACTIONS(2015), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2482), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2484), 2, + ACTIONS(2495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(103), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, + ACTIONS(105), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1049), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -105998,73 +106981,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [26158] = 22, + [25940] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1524), 1, + ACTIONS(1536), 1, + sym_identifier, + ACTIONS(1548), 1, + anon_sym_sizeof, + ACTIONS(1552), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(1554), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(1558), 1, sym_number_literal, - ACTIONS(2093), 1, - sym_identifier, - ACTIONS(2099), 1, - anon_sym_sizeof, - ACTIONS(2480), 1, + ACTIONS(2533), 1, anon_sym_LPAREN2, - STATE(915), 1, + STATE(913), 1, sym_string_literal, - STATE(1441), 1, + STATE(1014), 1, sym_expression, - ACTIONS(1528), 2, + ACTIONS(1540), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1542), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1556), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1536), 2, + ACTIONS(1564), 2, sym_true, sym_false, - ACTIONS(1538), 2, + ACTIONS(1566), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2095), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2097), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2482), 2, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2484), 2, + ACTIONS(2535), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, + ACTIONS(1562), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1049), 5, + STATE(1056), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -106081,73 +107064,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [26263] = 22, + [26045] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1524), 1, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2093), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(2099), 1, + ACTIONS(2017), 1, anon_sym_sizeof, - ACTIONS(2480), 1, + ACTIONS(2639), 1, anon_sym_LPAREN2, - STATE(915), 1, + STATE(949), 1, sym_string_literal, - STATE(1440), 1, + STATE(1391), 1, sym_expression, - ACTIONS(1528), 2, + ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1536), 2, - sym_true, - sym_false, - ACTIONS(1538), 2, + ACTIONS(109), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2095), 2, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(2013), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2097), 2, + ACTIONS(2015), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2482), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2484), 2, + ACTIONS(2495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(103), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, + ACTIONS(105), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1049), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -106164,73 +107147,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [26368] = 22, + [26150] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1524), 1, + ACTIONS(1536), 1, + sym_identifier, + ACTIONS(1548), 1, + anon_sym_sizeof, + ACTIONS(1552), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(1554), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(1558), 1, sym_number_literal, - ACTIONS(2093), 1, - sym_identifier, - ACTIONS(2099), 1, - anon_sym_sizeof, - ACTIONS(2480), 1, + ACTIONS(2533), 1, anon_sym_LPAREN2, - STATE(915), 1, + STATE(913), 1, sym_string_literal, - STATE(1018), 1, + STATE(1037), 1, sym_expression, - ACTIONS(1528), 2, + ACTIONS(1540), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1542), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1556), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1536), 2, + ACTIONS(1564), 2, sym_true, sym_false, - ACTIONS(1538), 2, + ACTIONS(1566), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2095), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2097), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2482), 2, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2484), 2, + ACTIONS(2535), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, + ACTIONS(1562), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1049), 5, + STATE(1056), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -106247,73 +107230,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [26473] = 22, + [26255] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1524), 1, + ACTIONS(1581), 1, + anon_sym_sizeof, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(2093), 1, + ACTIONS(2509), 1, sym_identifier, - ACTIONS(2099), 1, - anon_sym_sizeof, - ACTIONS(2480), 1, + ACTIONS(2511), 1, anon_sym_LPAREN2, - STATE(915), 1, + STATE(993), 1, sym_string_literal, - STATE(1435), 1, + STATE(1189), 1, sym_expression, - ACTIONS(1528), 2, + ACTIONS(1575), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1577), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1589), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1536), 2, + ACTIONS(1595), 2, sym_true, sym_false, - ACTIONS(1538), 2, + ACTIONS(1597), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2095), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2097), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2482), 2, + ACTIONS(2487), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2484), 2, + ACTIONS(2513), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1049), 5, + STATE(1237), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -106330,73 +107313,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [26578] = 22, + [26360] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1546), 1, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(91), 1, anon_sym_sizeof, - ACTIONS(1550), 1, + ACTIONS(95), 1, anon_sym_offsetof, - ACTIONS(1552), 1, + ACTIONS(97), 1, anon_sym__Generic, - ACTIONS(1556), 1, + ACTIONS(167), 1, sym_number_literal, - ACTIONS(2466), 1, + ACTIONS(2211), 1, sym_identifier, - ACTIONS(2634), 1, - anon_sym_LPAREN2, - STATE(987), 1, + STATE(949), 1, sym_string_literal, - STATE(1144), 1, + STATE(1660), 1, sym_expression, - ACTIONS(1540), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1542), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1554), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1560), 2, - sym_true, - sym_false, - ACTIONS(1562), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2470), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2472), 2, + ACTIONS(89), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1548), 5, + ACTIONS(99), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(109), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(169), 2, + sym_true, + sym_false, + ACTIONS(93), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1558), 5, + ACTIONS(103), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1205), 5, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1200), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -106413,73 +107396,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [26683] = 22, + [26465] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1524), 1, + ACTIONS(1581), 1, + anon_sym_sizeof, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(1526), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(1530), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(2093), 1, + ACTIONS(2509), 1, sym_identifier, - ACTIONS(2099), 1, - anon_sym_sizeof, - ACTIONS(2480), 1, + ACTIONS(2511), 1, anon_sym_LPAREN2, - STATE(915), 1, + STATE(993), 1, sym_string_literal, - STATE(1436), 1, + STATE(1188), 1, sym_expression, - ACTIONS(1528), 2, + ACTIONS(1575), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1577), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1589), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1536), 2, + ACTIONS(1595), 2, sym_true, sym_false, - ACTIONS(1538), 2, + ACTIONS(1597), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2095), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2097), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2482), 2, + ACTIONS(2487), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2484), 2, + ACTIONS(2513), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1522), 5, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1532), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1534), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1049), 5, + STATE(1237), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1048), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -106496,73 +107479,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [26788] = 22, + [26570] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1546), 1, - anon_sym_sizeof, - ACTIONS(1550), 1, - anon_sym_offsetof, ACTIONS(1552), 1, + anon_sym_offsetof, + ACTIONS(1554), 1, anon_sym__Generic, - ACTIONS(1556), 1, + ACTIONS(1558), 1, sym_number_literal, - ACTIONS(2466), 1, + ACTIONS(2064), 1, sym_identifier, - ACTIONS(2468), 1, + ACTIONS(2070), 1, + anon_sym_sizeof, + ACTIONS(2467), 1, anon_sym_LPAREN2, - STATE(987), 1, + STATE(913), 1, sym_string_literal, - STATE(1184), 1, + STATE(1440), 1, sym_expression, - ACTIONS(1540), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1542), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1554), 2, + ACTIONS(1556), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1560), 2, + ACTIONS(1564), 2, sym_true, sym_false, - ACTIONS(1562), 2, + ACTIONS(1566), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2470), 2, + ACTIONS(2066), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2068), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2472), 2, + ACTIONS(2471), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1548), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1558), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1205), 5, + ACTIONS(1562), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1072), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1200), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -106579,7 +107562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [26893] = 22, + [26675] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -106590,16 +107573,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2268), 1, + ACTIONS(1737), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(1745), 1, anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2543), 1, anon_sym_LPAREN2, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1567), 1, + STATE(1291), 1, sym_expression, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(99), 2, anon_sym_asm, anon_sym___asm__, @@ -106609,16 +107595,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(169), 2, sym_true, sym_false, - ACTIONS(2270), 2, + ACTIONS(1739), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2272), 2, + ACTIONS(1741), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2290), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2300), 2, + ACTIONS(2545), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 5, @@ -106639,13 +107622,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1406), 5, + STATE(1224), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -106662,46 +107645,46 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [26998] = 22, + [26780] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1546), 1, - anon_sym_sizeof, - ACTIONS(1550), 1, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(1552), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(1556), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(2466), 1, + ACTIONS(2209), 1, + anon_sym_sizeof, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2468), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - STATE(987), 1, + STATE(993), 1, sym_string_literal, - STATE(1183), 1, + STATE(1470), 1, sym_expression, - ACTIONS(1540), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1542), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1554), 2, + ACTIONS(1589), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1560), 2, + ACTIONS(1595), 2, sym_true, sym_false, - ACTIONS(1562), 2, + ACTIONS(1597), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2470), 2, + ACTIONS(2205), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2207), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2487), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2472), 2, + ACTIONS(2489), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(105), 5, @@ -106710,13 +107693,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1548), 5, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1558), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -106728,7 +107711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1200), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -106745,46 +107728,46 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [27103] = 22, + [26885] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1546), 1, + ACTIONS(1581), 1, anon_sym_sizeof, - ACTIONS(1550), 1, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(1552), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(1556), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(2466), 1, + ACTIONS(2509), 1, sym_identifier, - ACTIONS(2468), 1, + ACTIONS(2511), 1, anon_sym_LPAREN2, - STATE(987), 1, + STATE(993), 1, sym_string_literal, - STATE(1181), 1, + STATE(1186), 1, sym_expression, - ACTIONS(1540), 2, + ACTIONS(1575), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1542), 2, + ACTIONS(1577), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1554), 2, + ACTIONS(1589), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1560), 2, + ACTIONS(1595), 2, sym_true, sym_false, - ACTIONS(1562), 2, + ACTIONS(1597), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2470), 2, + ACTIONS(2487), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2472), 2, + ACTIONS(2513), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(105), 5, @@ -106793,25 +107776,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1548), 5, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1558), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1205), 5, + STATE(1237), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1200), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -106828,26 +107811,26 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [27208] = 22, + [26990] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1546), 1, + ACTIONS(1536), 1, + sym_identifier, + ACTIONS(1548), 1, anon_sym_sizeof, - ACTIONS(1550), 1, - anon_sym_offsetof, ACTIONS(1552), 1, + anon_sym_offsetof, + ACTIONS(1554), 1, anon_sym__Generic, - ACTIONS(1556), 1, + ACTIONS(1558), 1, sym_number_literal, - ACTIONS(2466), 1, - sym_identifier, - ACTIONS(2468), 1, + ACTIONS(2533), 1, anon_sym_LPAREN2, - STATE(987), 1, + STATE(913), 1, sym_string_literal, - STATE(1180), 1, + STATE(1041), 1, sym_expression, ACTIONS(1540), 2, anon_sym_DASH, @@ -106855,46 +107838,46 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1542), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1554), 2, + ACTIONS(1556), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1560), 2, + ACTIONS(1564), 2, sym_true, sym_false, - ACTIONS(1562), 2, + ACTIONS(1566), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2470), 2, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2472), 2, + ACTIONS(2535), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1548), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1558), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1205), 5, + ACTIONS(1562), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1056), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1200), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -106911,46 +107894,46 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [27313] = 22, + [27095] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1546), 1, - anon_sym_sizeof, - ACTIONS(1550), 1, + ACTIONS(1585), 1, anon_sym_offsetof, - ACTIONS(1552), 1, + ACTIONS(1587), 1, anon_sym__Generic, - ACTIONS(1556), 1, + ACTIONS(1591), 1, sym_number_literal, - ACTIONS(2466), 1, + ACTIONS(2209), 1, + anon_sym_sizeof, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2468), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - STATE(987), 1, + STATE(993), 1, sym_string_literal, - STATE(1179), 1, + STATE(1472), 1, sym_expression, - ACTIONS(1540), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1542), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1554), 2, + ACTIONS(1589), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1560), 2, + ACTIONS(1595), 2, sym_true, sym_false, - ACTIONS(1562), 2, + ACTIONS(1597), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2470), 2, + ACTIONS(2205), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2207), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2487), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2472), 2, + ACTIONS(2489), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(105), 5, @@ -106959,13 +107942,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1548), 5, + ACTIONS(1583), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1558), 5, + ACTIONS(1593), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -106977,7 +107960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1200), 16, + STATE(1225), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -106994,7 +107977,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [27418] = 22, + [27200] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -107009,11 +107992,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(167), 1, sym_number_literal, - ACTIONS(2188), 1, + ACTIONS(2211), 1, sym_identifier, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(1550), 1, + STATE(1648), 1, sym_expression, ACTIONS(23), 2, anon_sym_BANG, @@ -107054,13 +108037,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1292), 5, + STATE(1316), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1209), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -107077,26 +108060,26 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [27523] = 22, + [27305] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1546), 1, + ACTIONS(1536), 1, + sym_identifier, + ACTIONS(1548), 1, anon_sym_sizeof, - ACTIONS(1550), 1, - anon_sym_offsetof, ACTIONS(1552), 1, + anon_sym_offsetof, + ACTIONS(1554), 1, anon_sym__Generic, - ACTIONS(1556), 1, + ACTIONS(1558), 1, sym_number_literal, - ACTIONS(2466), 1, - sym_identifier, - ACTIONS(2468), 1, + ACTIONS(2533), 1, anon_sym_LPAREN2, - STATE(987), 1, + STATE(913), 1, sym_string_literal, - STATE(1178), 1, + STATE(1043), 1, sym_expression, ACTIONS(1540), 2, anon_sym_DASH, @@ -107104,129 +108087,46 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1542), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1554), 2, + ACTIONS(1556), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1560), 2, + ACTIONS(1564), 2, sym_true, sym_false, - ACTIONS(1562), 2, + ACTIONS(1566), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2470), 2, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2472), 2, + ACTIONS(2535), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1548), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1558), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1205), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1200), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [27628] = 22, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1546), 1, - anon_sym_sizeof, - ACTIONS(1550), 1, - anon_sym_offsetof, - ACTIONS(1552), 1, - anon_sym__Generic, - ACTIONS(1556), 1, - sym_number_literal, - ACTIONS(2466), 1, - sym_identifier, - ACTIONS(2468), 1, - anon_sym_LPAREN2, - STATE(987), 1, - sym_string_literal, - STATE(1167), 1, - sym_expression, - ACTIONS(1540), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1542), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1554), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1560), 2, - sym_true, - sym_false, - ACTIONS(1562), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2470), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2472), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(105), 5, + ACTIONS(1562), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1548), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1558), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1205), 5, + STATE(1056), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1200), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -107243,26 +108143,26 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [27733] = 22, + [27410] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1546), 1, + ACTIONS(1536), 1, + sym_identifier, + ACTIONS(1548), 1, anon_sym_sizeof, - ACTIONS(1550), 1, - anon_sym_offsetof, ACTIONS(1552), 1, + anon_sym_offsetof, + ACTIONS(1554), 1, anon_sym__Generic, - ACTIONS(1556), 1, + ACTIONS(1558), 1, sym_number_literal, - ACTIONS(2466), 1, - sym_identifier, - ACTIONS(2468), 1, + ACTIONS(2533), 1, anon_sym_LPAREN2, - STATE(987), 1, + STATE(913), 1, sym_string_literal, - STATE(1165), 1, + STATE(1045), 1, sym_expression, ACTIONS(1540), 2, anon_sym_DASH, @@ -107270,129 +108170,46 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1542), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1554), 2, + ACTIONS(1556), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1560), 2, + ACTIONS(1564), 2, sym_true, sym_false, - ACTIONS(1562), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2470), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2472), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1548), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1558), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1205), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1200), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [27838] = 22, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_offsetof, - ACTIONS(97), 1, - anon_sym__Generic, - ACTIONS(167), 1, - sym_number_literal, - ACTIONS(1800), 1, - sym_identifier, - ACTIONS(1952), 1, - anon_sym_sizeof, - ACTIONS(2476), 1, - anon_sym_LPAREN2, - STATE(944), 1, - sym_string_literal, - STATE(1359), 1, - sym_expression, - ACTIONS(99), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(109), 2, + ACTIONS(1566), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(169), 2, - sym_true, - sym_false, - ACTIONS(1948), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1950), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2290), 2, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2478), 2, + ACTIONS(2535), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(93), 5, + ACTIONS(1550), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(103), 5, + ACTIONS(1560), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(105), 5, + ACTIONS(1562), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1250), 5, + STATE(1056), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1199), 16, + STATE(1069), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -107409,314 +108226,14 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [27943] = 13, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2428), 1, - sym_identifier, - ACTIONS(2442), 1, - anon_sym_LBRACK, - STATE(1747), 1, - sym_gnu_asm_expression, - ACTIONS(2432), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(2434), 2, - anon_sym_STAR, - anon_sym_RBRACE, - ACTIONS(2436), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(2438), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2444), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1742), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(2440), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(2430), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - [28028] = 7, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2636), 1, - sym_identifier, - STATE(872), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(2643), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2641), 15, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2639), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [28101] = 22, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___declspec, - ACTIONS(1210), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2055), 1, - sym_primitive_type, - ACTIONS(2057), 1, - anon_sym_enum, - ACTIONS(2059), 1, - anon_sym_struct, - ACTIONS(2061), 1, - anon_sym_union, - ACTIONS(2276), 1, - sym_identifier, - STATE(1012), 1, - sym_type_specifier, - STATE(1036), 1, - sym_alignas_qualifier, - STATE(1090), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2129), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(37), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(57), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(39), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(2053), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1371), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(891), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(55), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(53), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [28204] = 22, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___declspec, - ACTIONS(59), 1, - sym_primitive_type, - ACTIONS(61), 1, - anon_sym_enum, - ACTIONS(63), 1, - anon_sym_struct, - ACTIONS(65), 1, - anon_sym_union, - ACTIONS(1210), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, - sym_identifier, - STATE(939), 1, - sym_type_specifier, - STATE(942), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, - sym_alignas_qualifier, - STATE(1763), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(37), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(57), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(39), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(51), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1122), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(893), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(55), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(53), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [28307] = 7, + [27515] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2646), 1, + ACTIONS(2641), 1, sym_identifier, - STATE(889), 2, + STATE(885), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, ACTIONS(105), 5, @@ -107725,7 +108242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2650), 15, + ACTIONS(2645), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -107741,7 +108258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2648), 33, + ACTIONS(2643), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -107775,32 +108292,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [28380] = 22, + [27588] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(1210), 1, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2055), 1, + ACTIONS(1218), 1, sym_primitive_type, - ACTIONS(2057), 1, + ACTIONS(1220), 1, anon_sym_enum, - ACTIONS(2059), 1, + ACTIONS(1222), 1, anon_sym_struct, - ACTIONS(2061), 1, + ACTIONS(1224), 1, anon_sym_union, - ACTIONS(2276), 1, + ACTIONS(2305), 1, sym_identifier, - STATE(1012), 1, + STATE(1034), 1, sym_type_specifier, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1090), 1, + STATE(1113), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2122), 1, + STATE(2141), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -107816,18 +108333,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2053), 4, + ACTIONS(1216), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1371), 5, + STATE(1408), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(891), 7, + STATE(896), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -107856,32 +108373,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28483] = 22, + [27691] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(1210), 1, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2055), 1, + ACTIONS(1218), 1, sym_primitive_type, - ACTIONS(2057), 1, + ACTIONS(1220), 1, anon_sym_enum, - ACTIONS(2059), 1, + ACTIONS(1222), 1, anon_sym_struct, - ACTIONS(2061), 1, + ACTIONS(1224), 1, anon_sym_union, - ACTIONS(2276), 1, + ACTIONS(2305), 1, sym_identifier, - STATE(1012), 1, + STATE(1034), 1, sym_type_specifier, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1090), 1, + STATE(1113), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2124), 1, + STATE(2140), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -107897,18 +108414,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2053), 4, + ACTIONS(1216), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1371), 5, + STATE(1408), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(891), 7, + STATE(896), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -107937,95 +108454,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28586] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2654), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(2652), 53, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - [28653] = 22, + [27794] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(1210), 1, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2055), 1, + ACTIONS(1218), 1, sym_primitive_type, - ACTIONS(2057), 1, + ACTIONS(1220), 1, anon_sym_enum, - ACTIONS(2059), 1, + ACTIONS(1222), 1, anon_sym_struct, - ACTIONS(2061), 1, + ACTIONS(1224), 1, anon_sym_union, - ACTIONS(2276), 1, + ACTIONS(2305), 1, sym_identifier, - STATE(1012), 1, + STATE(1034), 1, sym_type_specifier, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1090), 1, + STATE(1113), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2132), 1, + STATE(2143), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -108041,18 +108495,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2053), 4, + ACTIONS(1216), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1371), 5, + STATE(1408), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(891), 7, + STATE(896), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -108081,32 +108535,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28756] = 22, + [27897] = 7, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2655), 1, + anon_sym_STAR, + ACTIONS(2652), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(2657), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(2647), 9, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + sym_identifier, + ACTIONS(2650), 41, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + [27970] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(1210), 1, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2055), 1, + ACTIONS(1218), 1, sym_primitive_type, - ACTIONS(2057), 1, + ACTIONS(1220), 1, anon_sym_enum, - ACTIONS(2059), 1, + ACTIONS(1222), 1, anon_sym_struct, - ACTIONS(2061), 1, + ACTIONS(1224), 1, anon_sym_union, - ACTIONS(2276), 1, + ACTIONS(2305), 1, sym_identifier, - STATE(1012), 1, + STATE(1034), 1, sym_type_specifier, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1090), 1, + STATE(1113), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2119), 1, + STATE(2147), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -108122,18 +108642,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2053), 4, + ACTIONS(1216), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1371), 5, + STATE(1408), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(891), 7, + STATE(896), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -108162,16 +108682,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28859] = 4, + [28073] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2658), 3, - anon_sym_LPAREN2, + ACTIONS(2667), 1, anon_sym_STAR, + ACTIONS(2664), 2, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - ACTIONS(2656), 53, + ACTIONS(2669), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(2659), 9, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + sym_identifier, + ACTIONS(2662), 41, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -108184,21 +108719,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, anon_sym___declspec, anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -108222,35 +108748,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - [28926] = 22, + [28146] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(59), 1, + ACTIONS(1214), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1218), 1, sym_primitive_type, - ACTIONS(61), 1, + ACTIONS(1220), 1, anon_sym_enum, - ACTIONS(63), 1, + ACTIONS(1222), 1, anon_sym_struct, - ACTIONS(65), 1, + ACTIONS(1224), 1, anon_sym_union, - ACTIONS(1210), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, + ACTIONS(2305), 1, sym_identifier, - STATE(939), 1, + STATE(1034), 1, sym_type_specifier, - STATE(942), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1754), 1, + STATE(1113), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2145), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -108266,18 +108789,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(51), 4, + ACTIONS(1216), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1122), 5, + STATE(1408), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(896), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -108306,7 +108829,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [29029] = 22, + [28249] = 7, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2671), 1, + sym_identifier, + STATE(885), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(2678), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2676), 15, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2674), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [28322] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -108321,17 +108910,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(65), 1, anon_sym_union, - ACTIONS(1210), 1, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, + ACTIONS(2427), 1, sym_identifier, - STATE(939), 1, + STATE(945), 1, sym_type_specifier, - STATE(942), 1, + STATE(947), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1757), 1, + STATE(1779), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -108352,13 +108941,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1122), 5, + STATE(1195), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(895), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -108387,64 +108976,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [29132] = 13, + [28425] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2428), 1, - sym_identifier, - ACTIONS(2434), 1, - anon_sym_STAR, - ACTIONS(2442), 1, - anon_sym_LBRACK, - STATE(1747), 1, - sym_gnu_asm_expression, - ACTIONS(2432), 2, - anon_sym_LPAREN2, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(59), 1, + sym_primitive_type, + ACTIONS(61), 1, + anon_sym_enum, + ACTIONS(63), 1, + anon_sym_struct, + ACTIONS(65), 1, + anon_sym_union, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2436), 2, + ACTIONS(2427), 1, + sym_identifier, + STATE(945), 1, + sym_type_specifier, + STATE(947), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1048), 1, + sym_alignas_qualifier, + STATE(1777), 1, + sym__declaration_specifiers, + ACTIONS(35), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(2438), 2, + ACTIONS(37), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2444), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1742), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(2440), 4, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(39), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2430), 37, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, + ACTIONS(51), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(1195), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(895), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(55), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -108453,49 +109046,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - [29217] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2662), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(2660), 53, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, + ACTIONS(53), 10, anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -108505,49 +109057,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - [29284] = 22, + [28528] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(59), 1, + ACTIONS(1214), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1218), 1, sym_primitive_type, - ACTIONS(61), 1, + ACTIONS(1220), 1, anon_sym_enum, - ACTIONS(63), 1, + ACTIONS(1222), 1, anon_sym_struct, - ACTIONS(65), 1, + ACTIONS(1224), 1, anon_sym_union, - ACTIONS(1210), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, + ACTIONS(2305), 1, sym_identifier, - STATE(939), 1, + STATE(1034), 1, sym_type_specifier, - STATE(942), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1791), 1, + STATE(1113), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2148), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -108563,18 +109098,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(51), 4, + ACTIONS(1216), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1122), 5, + STATE(1408), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(896), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -108603,32 +109138,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [29387] = 22, + [28631] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(1210), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2055), 1, + ACTIONS(59), 1, sym_primitive_type, - ACTIONS(2057), 1, + ACTIONS(61), 1, anon_sym_enum, - ACTIONS(2059), 1, + ACTIONS(63), 1, anon_sym_struct, - ACTIONS(2061), 1, + ACTIONS(65), 1, anon_sym_union, - ACTIONS(2276), 1, + ACTIONS(1214), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2427), 1, sym_identifier, - STATE(1012), 1, + STATE(945), 1, sym_type_specifier, - STATE(1036), 1, - sym_alignas_qualifier, - STATE(1090), 1, + STATE(947), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2121), 1, + STATE(1048), 1, + sym_alignas_qualifier, + STATE(1799), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -108644,18 +109179,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2053), 4, + ACTIONS(51), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1371), 5, + STATE(1195), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(891), 7, + STATE(895), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -108684,32 +109219,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [29490] = 22, + [28734] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(1210), 1, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2055), 1, + ACTIONS(1218), 1, sym_primitive_type, - ACTIONS(2057), 1, + ACTIONS(1220), 1, anon_sym_enum, - ACTIONS(2059), 1, + ACTIONS(1222), 1, anon_sym_struct, - ACTIONS(2061), 1, + ACTIONS(1224), 1, anon_sym_union, - ACTIONS(2276), 1, + ACTIONS(2305), 1, sym_identifier, - STATE(1012), 1, + STATE(1034), 1, sym_type_specifier, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1090), 1, + STATE(1113), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2123), 1, + STATE(2146), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -108725,18 +109260,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2053), 4, + ACTIONS(1216), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1371), 5, + STATE(1408), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(891), 7, + STATE(896), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -108765,14 +109300,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [29593] = 7, + [28837] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2664), 1, + ACTIONS(2681), 1, sym_identifier, - STATE(872), 2, + STATE(877), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, ACTIONS(105), 5, @@ -108781,7 +109316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2668), 15, + ACTIONS(2685), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -108797,7 +109332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2666), 33, + ACTIONS(2683), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -108831,32 +109366,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [29666] = 22, + [28910] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(1210), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2055), 1, + ACTIONS(59), 1, sym_primitive_type, - ACTIONS(2057), 1, + ACTIONS(61), 1, anon_sym_enum, - ACTIONS(2059), 1, + ACTIONS(63), 1, anon_sym_struct, - ACTIONS(2061), 1, + ACTIONS(65), 1, anon_sym_union, - ACTIONS(2276), 1, + ACTIONS(1214), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2427), 1, sym_identifier, - STATE(1012), 1, + STATE(945), 1, sym_type_specifier, - STATE(1036), 1, - sym_alignas_qualifier, - STATE(1090), 1, + STATE(947), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2130), 1, + STATE(1048), 1, + sym_alignas_qualifier, + STATE(1805), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -108872,18 +109407,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2053), 4, + ACTIONS(51), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1371), 5, + STATE(1195), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(891), 7, + STATE(895), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -108912,31 +109447,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [29769] = 21, + [29013] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(1210), 1, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2055), 1, + ACTIONS(1218), 1, sym_primitive_type, - ACTIONS(2057), 1, + ACTIONS(1220), 1, anon_sym_enum, - ACTIONS(2059), 1, + ACTIONS(1222), 1, anon_sym_struct, - ACTIONS(2061), 1, + ACTIONS(1224), 1, anon_sym_union, - ACTIONS(2276), 1, + ACTIONS(2305), 1, sym_identifier, - STATE(1035), 1, + STATE(1034), 1, sym_type_specifier, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - STATE(1090), 1, + STATE(1113), 1, aux_sym_sized_type_specifier_repeat1, + STATE(2150), 1, + sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___must_hold, @@ -108951,18 +109488,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2053), 4, + ACTIONS(1216), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1371), 5, + STATE(1408), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(892), 7, + STATE(896), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -108991,38 +109528,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [29869] = 14, + [29116] = 14, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2689), 1, + ACTIONS(2706), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2692), 1, + ACTIONS(2709), 1, anon_sym___declspec, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, - ACTIONS(2680), 2, + ACTIONS(2697), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(2683), 2, + ACTIONS(2700), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2695), 2, + ACTIONS(2712), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2686), 4, + ACTIONS(2703), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2672), 5, + ACTIONS(2689), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(892), 7, + STATE(894), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -109030,7 +109567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2674), 9, + ACTIONS(2691), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -109040,7 +109577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2677), 10, + ACTIONS(2694), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -109051,7 +109588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(2670), 11, + ACTIONS(2687), 11, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -109063,7 +109600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29955] = 21, + [29202] = 21, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -109078,15 +109615,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(65), 1, anon_sym_union, - ACTIONS(1210), 1, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2398), 1, + ACTIONS(2427), 1, sym_identifier, - STATE(932), 1, + STATE(939), 1, sym_type_specifier, - STATE(942), 1, + STATE(947), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, ACTIONS(35), 2, anon_sym___attribute__, @@ -109107,13 +109644,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1122), 5, + STATE(1195), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(894), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(55), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(53), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [29302] = 21, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(1214), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1218), 1, + sym_primitive_type, + ACTIONS(1220), 1, + anon_sym_enum, + ACTIONS(1222), 1, + anon_sym_struct, + ACTIONS(1224), 1, + anon_sym_union, + ACTIONS(2305), 1, + sym_identifier, + STATE(1048), 1, + sym_alignas_qualifier, + STATE(1049), 1, + sym_type_specifier, + STATE(1113), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(37), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(39), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(1216), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1408), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(892), 7, + STATE(894), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -109142,23 +109758,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [30055] = 7, + [29402] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2698), 1, + ACTIONS(2715), 1, sym_identifier, - STATE(896), 2, + STATE(901), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(1534), 5, + ACTIONS(1562), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2650), 21, + ACTIONS(2685), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -109180,7 +109796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym_EQ, - ACTIONS(2648), 25, + ACTIONS(2683), 25, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -109206,13 +109822,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [30126] = 4, + [29473] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2700), 16, - aux_sym_preproc_elif_token1, + ACTIONS(2717), 1, + sym_identifier, + STATE(898), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(2720), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2676), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -109225,17 +109851,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2702), 38, - anon_sym_DOT_DOT_DOT, + ACTIONS(2674), 25, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -109244,10 +109870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -109261,29 +109884,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [30191] = 7, + [29544] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2704), 1, - sym_identifier, - STATE(898), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(1534), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2668), 21, + ACTIONS(2723), 16, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -109296,17 +109905,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, anon_sym_EQ, - ACTIONS(2666), 25, + anon_sym_DOT, + sym_identifier, + ACTIONS(2725), 38, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -109315,7 +109924,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -109329,14 +109941,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, anon_sym_DASH_GT, - [30262] = 4, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [29609] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2706), 16, + ACTIONS(2727), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -109353,7 +109969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2708), 38, + ACTIONS(2729), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -109392,23 +110008,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [30327] = 7, + [29674] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2710), 1, + ACTIONS(2731), 1, sym_identifier, STATE(898), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(2713), 5, + ACTIONS(1562), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2641), 21, + ACTIONS(2645), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -109430,7 +110046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym_EQ, - ACTIONS(2639), 25, + ACTIONS(2643), 25, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -109456,16 +110072,376 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [30398] = 4, + [29745] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2735), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2733), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [29809] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2739), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2737), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [29873] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2743), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2741), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [29937] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2655), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2650), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [30001] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2747), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2745), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [30065] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1392), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(1390), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [30129] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1364), 3, + ACTIONS(2751), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(1362), 50, + ACTIONS(2749), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -109516,16 +110492,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30462] = 4, + [30193] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2718), 3, + ACTIONS(2755), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2716), 50, + ACTIONS(2753), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -109576,16 +110552,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30526] = 4, + [30257] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2722), 3, + ACTIONS(1444), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2720), 50, + ACTIONS(1442), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -109636,16 +110612,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30590] = 4, + [30321] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2726), 3, + ACTIONS(2759), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2724), 50, + ACTIONS(2757), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -109696,16 +110672,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30654] = 4, + [30385] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2730), 3, + ACTIONS(1468), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2728), 50, + ACTIONS(1466), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -109756,16 +110732,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30718] = 4, + [30449] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2734), 3, + ACTIONS(2761), 1, + sym_identifier, + STATE(897), 1, + sym_string_literal, + ACTIONS(1562), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2765), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_EQ, + ACTIONS(2763), 25, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [30519] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2769), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2732), 50, + ACTIONS(2767), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -109816,16 +110855,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30782] = 4, + [30583] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2738), 3, + ACTIONS(2773), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2736), 50, + ACTIONS(2771), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -109876,16 +110915,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30846] = 4, + [30647] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1442), 3, + ACTIONS(1440), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(1440), 50, + ACTIONS(1438), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -109936,16 +110975,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30910] = 4, + [30711] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1470), 3, + ACTIONS(2777), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(1468), 50, + ACTIONS(2775), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -109996,16 +111035,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30974] = 4, + [30775] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1478), 3, + ACTIONS(2781), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(1476), 50, + ACTIONS(2779), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -110056,16 +111095,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31038] = 4, + [30839] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1426), 3, + ACTIONS(1500), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(1424), 50, + ACTIONS(1498), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -110116,16 +111155,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31102] = 4, + [30903] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1450), 3, + ACTIONS(2785), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(1448), 50, + ACTIONS(2783), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -110176,16 +111215,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31166] = 4, + [30967] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2742), 3, + ACTIONS(2789), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2740), 50, + ACTIONS(2787), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -110236,16 +111275,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31230] = 4, + [31031] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2746), 3, + ACTIONS(2793), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2744), 50, + ACTIONS(2791), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -110296,16 +111335,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31294] = 4, + [31095] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2750), 3, + ACTIONS(2797), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2748), 50, + ACTIONS(2795), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -110356,16 +111395,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31358] = 4, + [31159] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2754), 3, + ACTIONS(1510), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2752), 50, + ACTIONS(1508), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -110416,22 +111455,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31422] = 7, + [31223] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2756), 1, - sym_identifier, - STATE(894), 1, - sym_string_literal, - ACTIONS(1534), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2760), 21, + ACTIONS(2723), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -110453,7 +111482,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym_EQ, - ACTIONS(2758), 25, + sym_identifier, + ACTIONS(2725), 30, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -110479,157 +111509,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [31492] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2764), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(2762), 50, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [31556] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2768), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(2766), 50, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [31620] = 15, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [31286] = 15, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2774), 1, + ACTIONS(2803), 1, anon_sym_SEMI, - ACTIONS(2786), 1, + ACTIONS(2815), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2788), 1, + ACTIONS(2817), 1, anon_sym___declspec, - STATE(1202), 1, + STATE(1240), 1, sym_alignas_qualifier, - ACTIONS(2772), 2, + ACTIONS(2801), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2780), 2, + ACTIONS(2809), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(2782), 2, + ACTIONS(2811), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2790), 2, + ACTIONS(2819), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2784), 4, + ACTIONS(2813), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - STATE(938), 7, + STATE(944), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -110637,7 +111552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2776), 9, + ACTIONS(2805), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -110647,7 +111562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2770), 10, + ACTIONS(2799), 10, anon_sym___based, anon_sym___init, anon_sym___exit, @@ -110658,7 +111573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___thiscall, anon_sym___vectorcall, sym_identifier, - ACTIONS(2778), 10, + ACTIONS(2807), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -110669,24 +111584,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [31705] = 4, + [31371] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2662), 4, - anon_sym_LPAREN2, + ACTIONS(2821), 1, + anon_sym_EQ, + STATE(897), 1, + sym_string_literal, + ACTIONS(1562), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2823), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1991), 12, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2660), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1985), 23, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -110695,57 +111641,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - [31768] = 4, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [31442] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2654), 4, - anon_sym_LPAREN2, + ACTIONS(2655), 1, anon_sym_STAR, + ACTIONS(2652), 2, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2652), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(2657), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(2647), 9, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -110754,13 +111670,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, + sym_identifier, + ACTIONS(2650), 37, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, anon_sym___declspec, anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -110784,15 +111709,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - [31831] = 4, + [31511] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2706), 22, + ACTIONS(2727), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -110815,7 +111737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym_EQ, sym_identifier, - ACTIONS(2708), 30, + ACTIONS(2729), 30, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -110846,20 +111768,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [31894] = 6, + [31574] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(894), 1, + STATE(897), 1, sym_string_literal, - ACTIONS(1534), 5, + ACTIONS(1562), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1962), 13, + ACTIONS(1991), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -110873,7 +111795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1956), 33, + ACTIONS(1985), 33, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -110907,37 +111829,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [31961] = 15, + [31641] = 7, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2664), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(2667), 2, + anon_sym_STAR, + anon_sym_RBRACE, + ACTIONS(2669), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(2659), 9, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + sym_identifier, + ACTIONS(2662), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + [31710] = 15, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2786), 1, + ACTIONS(2815), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2788), 1, + ACTIONS(2817), 1, anon_sym___declspec, - ACTIONS(2792), 1, + ACTIONS(2825), 1, anon_sym_SEMI, - STATE(1202), 1, + STATE(1240), 1, sym_alignas_qualifier, - ACTIONS(2772), 2, + ACTIONS(2801), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2780), 2, + ACTIONS(2809), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(2782), 2, + ACTIONS(2811), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2790), 2, + ACTIONS(2819), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2784), 4, + ACTIONS(2813), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - STATE(938), 7, + STATE(944), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -110945,7 +111929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2776), 9, + ACTIONS(2805), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -110955,7 +111939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2770), 10, + ACTIONS(2799), 10, anon_sym___based, anon_sym___init, anon_sym___exit, @@ -110966,8 +111950,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___thiscall, anon_sym___vectorcall, sym_identifier, - ACTIONS(2778), 10, + ACTIONS(2807), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [31795] = 7, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2667), 1, + anon_sym_STAR, + ACTIONS(2664), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(2669), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(2659), 9, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + sym_identifier, + ACTIONS(2662), 37, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -110977,37 +112009,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [32046] = 15, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + [31864] = 15, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2786), 1, + ACTIONS(2815), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2788), 1, + ACTIONS(2817), 1, anon_sym___declspec, - ACTIONS(2794), 1, + ACTIONS(2827), 1, anon_sym_SEMI, - STATE(1202), 1, + STATE(1240), 1, sym_alignas_qualifier, - ACTIONS(2772), 2, + ACTIONS(2801), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2780), 2, + ACTIONS(2809), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(2782), 2, + ACTIONS(2811), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2790), 2, + ACTIONS(2819), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2784), 4, + ACTIONS(2813), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - STATE(938), 7, + STATE(944), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -111015,7 +112061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2776), 9, + ACTIONS(2805), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -111025,7 +112071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2770), 10, + ACTIONS(2799), 10, anon_sym___based, anon_sym___init, anon_sym___exit, @@ -111036,7 +112082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___thiscall, anon_sym___vectorcall, sym_identifier, - ACTIONS(2778), 10, + ACTIONS(2807), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -111047,37 +112093,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [32131] = 15, + [31949] = 15, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2786), 1, + ACTIONS(2815), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2788), 1, + ACTIONS(2817), 1, anon_sym___declspec, - ACTIONS(2796), 1, + ACTIONS(2829), 1, anon_sym_SEMI, - STATE(1202), 1, + STATE(1240), 1, sym_alignas_qualifier, - ACTIONS(2772), 2, + ACTIONS(2801), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2780), 2, + ACTIONS(2809), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(2782), 2, + ACTIONS(2811), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2790), 2, + ACTIONS(2819), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2784), 4, + ACTIONS(2813), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - STATE(938), 7, + STATE(944), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -111085,7 +112131,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2776), 9, + ACTIONS(2805), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -111095,7 +112141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2770), 10, + ACTIONS(2799), 10, anon_sym___based, anon_sym___init, anon_sym___exit, @@ -111106,7 +112152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___thiscall, anon_sym___vectorcall, sym_identifier, - ACTIONS(2778), 10, + ACTIONS(2807), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -111117,24 +112163,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [32216] = 4, + [32034] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2700), 22, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2652), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(2655), 2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_RBRACE, + ACTIONS(2657), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(2647), 9, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -111143,72 +112187,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_EQ, sym_identifier, - ACTIONS(2702), 30, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [32279] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2658), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(2656), 49, + ACTIONS(2650), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, anon_sym___declspec, anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -111232,51 +112225,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - [32342] = 4, + [32103] = 14, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2658), 4, + ACTIONS(2846), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2849), 1, + anon_sym___declspec, + STATE(1240), 1, + sym_alignas_qualifier, + ACTIONS(2689), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2656), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(2837), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(2840), 2, anon_sym___scanf, anon_sym___printf, + ACTIONS(2852), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2843), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(937), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2831), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -111285,48 +112271,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(2687), 10, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, sym_identifier, - [32405] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2654), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(2652), 49, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, + ACTIONS(2834), 10, anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -111336,174 +112293,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - [32468] = 4, + [32185] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2662), 3, + ACTIONS(2062), 21, anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2660), 49, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - [32531] = 8, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2798), 1, - anon_sym_EQ, - STATE(894), 1, - sym_string_literal, - ACTIONS(1534), 5, + anon_sym_LBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2800), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1962), 12, + ACTIONS(2060), 30, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1956), 23, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [32602] = 14, + anon_sym_if, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym___try, + anon_sym___leave, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [32247] = 14, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2786), 1, + ACTIONS(2815), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2788), 1, + ACTIONS(2817), 1, anon_sym___declspec, - STATE(1202), 1, + STATE(1240), 1, sym_alignas_qualifier, - ACTIONS(2780), 2, + ACTIONS(2809), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(2782), 2, + ACTIONS(2811), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2790), 2, + ACTIONS(2819), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2804), 2, + ACTIONS(2857), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2784), 4, + ACTIONS(2813), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - STATE(937), 7, + STATE(941), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -111511,7 +112387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2776), 9, + ACTIONS(2805), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -111521,7 +112397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2778), 10, + ACTIONS(2807), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -111532,7 +112408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(2802), 10, + ACTIONS(2855), 10, anon_sym___based, anon_sym___init, anon_sym___exit, @@ -111543,12 +112419,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___thiscall, anon_sym___vectorcall, sym_identifier, - [32684] = 4, + [32329] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2011), 21, + ACTIONS(2861), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -111570,7 +112446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2009), 30, + ACTIONS(2859), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -111601,12 +112477,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [32746] = 4, + [32391] = 14, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2815), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2817), 1, + anon_sym___declspec, + STATE(1240), 1, + sym_alignas_qualifier, + ACTIONS(2809), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(2811), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(2819), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2865), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(2813), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + STATE(937), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2805), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2807), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(2863), 10, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + [32473] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2808), 21, + ACTIONS(2058), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -111628,7 +112572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2806), 30, + ACTIONS(2056), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -111659,22 +112603,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [32808] = 9, + [32535] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2817), 1, + ACTIONS(2874), 1, anon_sym_static, - STATE(995), 1, + STATE(1010), 1, sym_alignas_qualifier, - ACTIONS(2820), 2, + ACTIONS(2877), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(935), 2, + STATE(943), 2, sym_type_qualifier, aux_sym_array_declarator_repeat1, - ACTIONS(2814), 9, + ACTIONS(2871), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -111684,7 +112628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2810), 17, + ACTIONS(2867), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -111702,7 +112646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(2812), 19, + ACTIONS(2869), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -111722,171 +112666,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [32880] = 14, + [32607] = 14, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2838), 1, + ACTIONS(2815), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2841), 1, - anon_sym___declspec, - STATE(1202), 1, - sym_alignas_qualifier, - ACTIONS(2672), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(2829), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(2832), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2844), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2835), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - STATE(936), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(2823), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2670), 10, - anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - sym_identifier, - ACTIONS(2826), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [32962] = 14, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2786), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2788), 1, - anon_sym___declspec, - STATE(1202), 1, - sym_alignas_qualifier, - ACTIONS(2780), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(2782), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2790), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2849), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(2784), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - STATE(936), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(2776), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2778), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(2847), 10, - anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - sym_identifier, - [33044] = 14, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2786), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2788), 1, + ACTIONS(2817), 1, anon_sym___declspec, - STATE(1202), 1, + STATE(1240), 1, sym_alignas_qualifier, - ACTIONS(2780), 2, + ACTIONS(2809), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(2782), 2, + ACTIONS(2811), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2790), 2, + ACTIONS(2819), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2853), 2, + ACTIONS(2882), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2784), 4, + ACTIONS(2813), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - STATE(936), 7, + STATE(937), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -111894,7 +112702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2776), 9, + ACTIONS(2805), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -111904,7 +112712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2778), 10, + ACTIONS(2807), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -111915,7 +112723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(2851), 10, + ACTIONS(2880), 10, anon_sym___based, anon_sym___init, anon_sym___exit, @@ -111926,35 +112734,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___thiscall, anon_sym___vectorcall, sym_identifier, - [33126] = 14, + [32689] = 14, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2786), 1, + ACTIONS(2815), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2788), 1, + ACTIONS(2817), 1, anon_sym___declspec, - STATE(1202), 1, + STATE(1240), 1, sym_alignas_qualifier, - ACTIONS(2772), 2, + ACTIONS(2801), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2780), 2, + ACTIONS(2809), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(2782), 2, + ACTIONS(2811), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2790), 2, + ACTIONS(2819), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2784), 4, + ACTIONS(2813), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - STATE(938), 7, + STATE(944), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -111962,7 +112770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2776), 9, + ACTIONS(2805), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -111972,7 +112780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2770), 10, + ACTIONS(2799), 10, anon_sym___based, anon_sym___init, anon_sym___exit, @@ -111983,7 +112791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___thiscall, anon_sym___vectorcall, sym_identifier, - ACTIONS(2778), 10, + ACTIONS(2807), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -111994,82 +112802,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [33208] = 4, + [32771] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2015), 21, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2013), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym___try, - anon_sym___leave, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [33270] = 6, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - STATE(941), 1, + ACTIONS(2893), 1, + sym_primitive_type, + STATE(948), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2857), 4, + ACTIONS(2887), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2859), 4, + ACTIONS(2890), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2855), 41, + ACTIONS(2884), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -112109,30 +112861,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [33335] = 8, + [32838] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2862), 1, + ACTIONS(2895), 1, sym_identifier, - ACTIONS(2871), 1, + ACTIONS(2904), 1, sym_primitive_type, - STATE(943), 1, + STATE(946), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2865), 4, + ACTIONS(2898), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2869), 4, + ACTIONS(2902), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2867), 39, + ACTIONS(2900), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -112172,26 +112923,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - [33404] = 7, + [32907] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2855), 1, - sym_primitive_type, - STATE(941), 1, + STATE(948), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2859), 4, + ACTIONS(2890), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2876), 4, + ACTIONS(2906), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2873), 40, + ACTIONS(2893), 41, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -112231,15 +112980,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [33471] = 7, + [32972] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2879), 1, + ACTIONS(2908), 1, sym_identifier, - STATE(875), 1, + STATE(891), 1, sym_string_literal, ACTIONS(105), 5, anon_sym_L_DQUOTE, @@ -112247,7 +112997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2760), 14, + ACTIONS(2765), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -112262,7 +113012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2758), 29, + ACTIONS(2763), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -112292,16 +113042,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [33538] = 4, + [33039] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2734), 3, + ACTIONS(2739), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2732), 46, + ACTIONS(2737), 46, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -112348,76 +113098,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33598] = 5, - STATE(875), 1, - sym_string_literal, - ACTIONS(5), 2, + [33099] = 4, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1962), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(1956), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2781), 3, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [33660] = 4, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2779), 46, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [33159] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2746), 4, + ACTIONS(2773), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2744), 45, + ACTIONS(2771), 46, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -112461,16 +113210,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33720] = 4, + [33219] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1470), 3, + ACTIONS(2793), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(1468), 46, + ACTIONS(2791), 46, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -112517,16 +113266,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33780] = 4, + [33279] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1500), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(1498), 45, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [33339] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2730), 3, + ACTIONS(1500), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2728), 46, + ACTIONS(1498), 46, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -112573,19 +113378,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33840] = 4, + [33399] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2750), 4, + ACTIONS(2747), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2748), 45, + ACTIONS(2745), 46, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -112629,19 +113434,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33900] = 4, + [33459] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2764), 3, + ACTIONS(2759), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2762), 46, + anon_sym_RBRACE, + ACTIONS(2757), 45, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -112685,19 +113490,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33960] = 4, + [33519] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2768), 3, + ACTIONS(2751), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2766), 46, + anon_sym_RBRACE, + ACTIONS(2749), 45, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -112741,22 +113546,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34020] = 4, + [33579] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2726), 3, + STATE(980), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2912), 4, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2724), 46, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(2914), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2910), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -112769,10 +113576,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -112792,27 +113603,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [34080] = 4, + [33643] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2742), 4, + STATE(948), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2918), 4, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2740), 45, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(2920), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2916), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -112825,10 +113634,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -112848,21 +113661,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [34140] = 4, + [33707] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1478), 3, + ACTIONS(2759), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(1476), 46, + ACTIONS(2757), 46, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -112909,77 +113718,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34200] = 6, + [33767] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(941), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2883), 4, + ACTIONS(1444), 4, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2885), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2881), 40, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym___declspec, - anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [34264] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1450), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(1448), 46, + anon_sym_RBRACE, + ACTIONS(1442), 45, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -113023,17 +113774,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34324] = 4, + [33827] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2726), 4, + ACTIONS(2793), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2724), 45, + ACTIONS(2791), 45, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -113079,17 +113830,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34384] = 4, + [33887] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2734), 4, + ACTIONS(2747), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2732), 45, + ACTIONS(2745), 45, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -113135,17 +113886,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34444] = 4, + [33947] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2718), 4, + ACTIONS(1392), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2716), 45, + ACTIONS(1390), 45, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -113191,19 +113942,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34504] = 4, + [34007] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1426), 3, + ACTIONS(1440), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(1424), 46, + anon_sym_RBRACE, + ACTIONS(1438), 45, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -113247,22 +113998,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34564] = 4, + [34067] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2722), 3, + STATE(948), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2920), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2924), 4, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2720), 46, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(2922), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -113275,10 +114028,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -113298,22 +114055,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [34624] = 4, + [34131] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1470), 4, + ACTIONS(2739), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1468), 45, + ACTIONS(2737), 45, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -113359,17 +114112,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34684] = 4, + [34191] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1442), 4, + ACTIONS(2743), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1440), 45, + ACTIONS(2741), 45, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -113415,19 +114168,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34744] = 4, + [34251] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2722), 4, + ACTIONS(1510), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2720), 45, + ACTIONS(1508), 46, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -113471,16 +114224,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34804] = 4, + [34311] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2754), 3, + ACTIONS(2789), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2752), 46, + ACTIONS(2787), 46, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -113527,17 +114280,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34864] = 4, + [34371] = 5, + STATE(891), 1, + sym_string_literal, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1991), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(1985), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [34433] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1364), 4, + ACTIONS(2769), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1362), 45, + ACTIONS(2767), 45, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -113583,22 +114393,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34924] = 4, + [34493] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2746), 3, + STATE(967), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2928), 4, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2744), 46, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(2930), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2926), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -113611,10 +114423,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -113634,27 +114450,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [34984] = 4, + [34557] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1450), 4, + STATE(948), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2920), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2934), 4, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1448), 45, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(2932), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -113667,10 +114481,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -113690,24 +114508,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [35044] = 4, + [34621] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1364), 3, + ACTIONS(2781), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(1362), 46, + anon_sym_RBRACE, + ACTIONS(2779), 45, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -113751,17 +114565,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35104] = 4, + [34681] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1426), 4, + ACTIONS(1468), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1424), 45, + ACTIONS(1466), 45, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -113807,16 +114621,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35164] = 4, + [34741] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2718), 3, + ACTIONS(2773), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2716), 46, + anon_sym_RBRACE, + ACTIONS(2771), 45, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [34801] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2777), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2775), 46, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -113863,24 +114733,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35224] = 6, + [34861] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(941), 1, + STATE(948), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2885), 4, + ACTIONS(2920), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2889), 4, + ACTIONS(2938), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2887), 40, + ACTIONS(2936), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -113921,17 +114791,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [35288] = 4, + [34925] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2768), 4, + ACTIONS(1510), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2766), 45, + ACTIONS(1508), 45, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -113977,24 +114847,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35348] = 6, + [34985] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(979), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2893), 4, + ACTIONS(2797), 4, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2895), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2891), 40, + anon_sym_RBRACE, + ACTIONS(2795), 45, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -114007,14 +114875,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -114034,20 +114898,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [35412] = 4, + [35045] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2764), 4, + ACTIONS(2797), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2762), 45, + ACTIONS(2795), 46, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -114091,16 +114959,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35472] = 4, + [35105] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1442), 3, + ACTIONS(2751), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(1440), 46, + ACTIONS(2749), 46, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -114147,24 +115015,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35532] = 6, + [35165] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(956), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2899), 4, + ACTIONS(2785), 4, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2901), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2897), 40, + anon_sym_RBRACE, + ACTIONS(2783), 45, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -114177,14 +115043,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -114204,25 +115066,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [35596] = 6, + [35225] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(941), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2885), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2905), 4, + ACTIONS(2743), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2903), 40, + ACTIONS(2741), 46, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -114235,14 +115099,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -114262,18 +115122,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [35660] = 4, + [35285] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2738), 4, + ACTIONS(2735), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2736), 45, + ACTIONS(2733), 45, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -114319,24 +115183,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35720] = 6, + [35345] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(973), 1, + STATE(975), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2909), 4, + ACTIONS(2942), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2911), 4, + ACTIONS(2944), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2907), 40, + ACTIONS(2940), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -114377,79 +115241,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [35784] = 8, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2913), 1, - anon_sym_EQ, - STATE(875), 1, - sym_string_literal, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2915), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1962), 14, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_identifier, - ACTIONS(1956), 18, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [35852] = 4, + [35409] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2754), 4, + ACTIONS(2769), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2752), 45, + ACTIONS(2767), 46, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -114493,74 +115297,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35912] = 6, + [35469] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(875), 1, - sym_string_literal, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1962), 15, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - sym_identifier, - ACTIONS(1956), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [35976] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2742), 3, + ACTIONS(1444), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2740), 46, + ACTIONS(1442), 46, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -114607,19 +115353,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36036] = 4, + [35529] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1478), 4, + ACTIONS(1468), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1476), 45, + ACTIONS(1466), 46, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -114663,12 +115409,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36096] = 6, + [35589] = 6, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + STATE(891), 1, + sym_string_literal, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1991), 15, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_identifier, + ACTIONS(1985), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [35653] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(875), 1, + STATE(891), 1, sym_string_literal, ACTIONS(105), 5, anon_sym_L_DQUOTE, @@ -114676,7 +115480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2760), 15, + ACTIONS(2765), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -114692,7 +115496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(2758), 28, + ACTIONS(2763), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -114721,16 +115525,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [36160] = 4, + [35717] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2750), 3, + ACTIONS(2785), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2748), 46, + ACTIONS(2783), 46, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -114777,24 +115581,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36220] = 6, + [35777] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(941), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2885), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2919), 4, + ACTIONS(2755), 4, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2917), 40, + anon_sym_RBRACE, + ACTIONS(2753), 45, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -114807,14 +115609,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -114834,17 +115632,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [36284] = 4, + [35837] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2738), 3, + ACTIONS(2755), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2736), 46, + ACTIONS(2753), 46, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -114891,17 +115693,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36344] = 4, + [35897] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2730), 4, + ACTIONS(2655), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2728), 45, + ACTIONS(2650), 45, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -114947,24 +115749,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36404] = 7, + [35957] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2926), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2660), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2662), 4, - anon_sym_COMMA, + ACTIONS(2655), 3, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(2921), 9, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2650), 46, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -114973,11 +115775,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - sym_identifier, - ACTIONS(2924), 30, - anon_sym___extension__, - anon_sym_extern, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -115005,282 +115804,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, - [36469] = 11, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2942), 1, - anon_sym_LBRACE, - ACTIONS(2944), 1, - anon_sym_COLON, - STATE(1101), 1, - sym_enumerator_list, - STATE(1145), 1, - sym_attribute_specifier, - ACTIONS(2933), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(2936), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2931), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2939), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(2929), 32, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, sym_identifier, - [36542] = 11, + [36017] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2956), 1, - anon_sym_LBRACE, - ACTIONS(2958), 1, - anon_sym___aligned, - STATE(1055), 1, - sym_field_declaration_list, - STATE(1084), 1, - sym_attribute_specifier, - ACTIONS(2950), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(2952), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2948), 4, + ACTIONS(1392), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2954), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(2946), 32, + ACTIONS(1390), 46, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [36615] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2962), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2960), 29, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_static, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [36674] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2966), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2964), 29, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_static, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [36733] = 11, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2956), 1, - anon_sym_LBRACE, - ACTIONS(2972), 1, - anon_sym___aligned, - STATE(1066), 1, - sym_field_declaration_list, - STATE(1108), 1, - sym_attribute_specifier, - ACTIONS(2950), 2, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(2952), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2954), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2970), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2968), 32, - anon_sym___extension__, - anon_sym_extern, anon_sym___declspec, anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -115300,87 +115856,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [36806] = 11, + [36077] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2956), 1, - anon_sym_LBRACE, - ACTIONS(2978), 1, - anon_sym___aligned, - STATE(1077), 1, - sym_field_declaration_list, - STATE(1098), 1, - sym_attribute_specifier, - ACTIONS(2950), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(2952), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2954), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(2976), 4, + ACTIONS(2735), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2974), 32, + ACTIONS(2733), 46, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [36879] = 7, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2985), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2656), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2658), 4, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(2980), 9, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -115389,11 +115887,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - sym_identifier, - ACTIONS(2983), 30, - anon_sym___extension__, - anon_sym_extern, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -115421,24 +115916,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, - [36944] = 7, + sym_identifier, + [36137] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2988), 1, + ACTIONS(2789), 4, anon_sym_LPAREN2, - STATE(989), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1967), 2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(1969), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1954), 40, + anon_sym_RBRACE, + ACTIONS(2787), 45, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -115451,14 +115945,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -115475,153 +115965,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [37009] = 19, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2993), 1, - anon_sym_LPAREN2, - ACTIONS(2999), 1, - anon_sym_AMP_AMP, - ACTIONS(3001), 1, - anon_sym_PIPE, - ACTIONS(3003), 1, - anon_sym_CARET, - ACTIONS(3005), 1, - anon_sym_AMP, - ACTIONS(3015), 1, - anon_sym_LBRACK, - ACTIONS(3017), 1, - anon_sym_EQ, - STATE(1039), 1, - sym_argument_list, - ACTIONS(2995), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3007), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3009), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3011), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3013), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3019), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3021), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2997), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2991), 22, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [37097] = 11, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2993), 1, - anon_sym_LPAREN2, - ACTIONS(3015), 1, - anon_sym_LBRACK, - STATE(1039), 1, - sym_argument_list, - ACTIONS(2995), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3019), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3021), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2997), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3017), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2991), 27, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [37169] = 4, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [36197] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2011), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2777), 4, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2009), 41, + anon_sym_RBRACE, + ACTIONS(2775), 45, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -115638,7 +116005,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -115663,19 +116029,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37227] = 4, + [36257] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3025), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1440), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3023), 41, + ACTIONS(1438), 46, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -115692,7 +116061,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -115717,21 +116085,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37285] = 7, - ACTIONS(1971), 1, - anon_sym_EQ, - STATE(875), 1, - sym_string_literal, - ACTIONS(5), 2, + [36317] = 8, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, + ACTIONS(2946), 1, + anon_sym_EQ, + STATE(891), 1, + sym_string_literal, ACTIONS(105), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1975), 10, + ACTIONS(2948), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -115742,7 +116111,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1962), 12, + ACTIONS(1991), 14, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -115755,9 +116125,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1956), 18, + sym_identifier, + ACTIONS(1985), 18, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -115765,147 +116139,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [37349] = 9, + [36385] = 11, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2993), 1, - anon_sym_LPAREN2, - ACTIONS(3015), 1, - anon_sym_LBRACK, - STATE(1039), 1, - sym_argument_list, - ACTIONS(3019), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3021), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3029), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(3027), 27, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, + ACTIONS(2960), 1, + anon_sym_LBRACE, + ACTIONS(2962), 1, + anon_sym___aligned, + STATE(1075), 1, + sym_field_declaration_list, + STATE(1112), 1, + sym_attribute_specifier, + ACTIONS(2954), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(2956), 2, anon_sym___scanf, anon_sym___printf, + ACTIONS(2952), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2958), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [37417] = 8, + ACTIONS(2950), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [36458] = 11, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2993), 1, - anon_sym_LPAREN2, - ACTIONS(3015), 1, - anon_sym_LBRACK, - STATE(1039), 1, - sym_argument_list, - ACTIONS(3021), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3033), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(3031), 29, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, + ACTIONS(2960), 1, + anon_sym_LBRACE, + ACTIONS(2968), 1, + anon_sym___aligned, + STATE(1064), 1, + sym_field_declaration_list, + STATE(1122), 1, + sym_attribute_specifier, + ACTIONS(2954), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(2956), 2, anon_sym___scanf, anon_sym___printf, + ACTIONS(2958), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(2966), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2964), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [36531] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2972), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_RBRACK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [37483] = 4, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2970), 29, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_static, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [36590] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3037), 6, + ACTIONS(2981), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2657), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(2977), 4, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3035), 41, - anon_sym___extension__, - anon_sym_extern, + anon_sym_EQ, + ACTIONS(2974), 9, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -115914,13 +116350,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, + sym_identifier, + ACTIONS(2979), 30, + anon_sym___extension__, + anon_sym_extern, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -115944,35 +116382,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, - sym_identifier, - [37541] = 10, + [36655] = 11, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3043), 1, + ACTIONS(2960), 1, anon_sym_LBRACE, - STATE(1083), 1, + ACTIONS(2988), 1, + anon_sym___aligned, + STATE(1093), 1, sym_field_declaration_list, - STATE(1132), 1, + STATE(1097), 1, sym_attribute_specifier, - ACTIONS(2780), 2, + ACTIONS(2954), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(2782), 2, + ACTIONS(2956), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2784), 4, + ACTIONS(2958), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3041), 4, + ACTIONS(2986), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3039), 32, + ACTIONS(2984), 32, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -116005,15 +116444,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [37611] = 4, + [36728] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2708), 2, - anon_sym_LBRACK_LBRACK, + ACTIONS(1573), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1571), 29, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_static, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [36787] = 11, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(2706), 45, + ACTIONS(3005), 1, + anon_sym_COLON, + STATE(1120), 1, + sym_enumerator_list, + STATE(1173), 1, + sym_attribute_specifier, + ACTIONS(2994), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(2997), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(2992), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3000), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2990), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [36860] = 7, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3007), 1, + anon_sym_LPAREN2, + STATE(960), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1996), 2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(1998), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1983), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -116025,12 +116590,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym___declspec, + anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [36925] = 7, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3017), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2669), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(3013), 4, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(3010), 9, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + sym_identifier, + ACTIONS(3015), 30, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -116058,46 +116677,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, - sym_identifier, - [37669] = 9, + [36990] = 15, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(3022), 1, anon_sym_LPAREN2, - ACTIONS(3015), 1, + ACTIONS(3038), 1, anon_sym_LBRACK, - STATE(1039), 1, + STATE(1058), 1, sym_argument_list, - ACTIONS(3019), 2, + ACTIONS(3024), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3030), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3032), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3034), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3036), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3040), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3021), 2, + ACTIONS(3042), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3047), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3026), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3028), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3045), 27, + ACTIONS(3020), 23, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [37070] = 21, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3022), 1, + anon_sym_LPAREN2, + ACTIONS(3038), 1, + anon_sym_LBRACK, + ACTIONS(3046), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3048), 1, + anon_sym_AMP_AMP, + ACTIONS(3050), 1, + anon_sym_PIPE, + ACTIONS(3052), 1, + anon_sym_CARET, + ACTIONS(3054), 1, + anon_sym_AMP, + ACTIONS(3056), 1, + anon_sym_EQ, + ACTIONS(3058), 1, + anon_sym_QMARK, + STATE(1058), 1, + sym_argument_list, + ACTIONS(3024), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3030), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3032), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3034), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3036), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3040), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3042), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3026), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3044), 20, + anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -116107,7 +116803,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -116118,61 +116813,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37737] = 14, + [37162] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___declspec, - ACTIONS(1210), 1, + ACTIONS(2062), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(1036), 1, - sym_alignas_qualifier, - ACTIONS(35), 2, + ACTIONS(2060), 41, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(37), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(57), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2770), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(39), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2772), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(1017), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(55), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(53), 10, - anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -116182,45 +116852,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [37815] = 9, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [37220] = 21, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(3022), 1, anon_sym_LPAREN2, - ACTIONS(3015), 1, + ACTIONS(3038), 1, anon_sym_LBRACK, - STATE(1039), 1, + ACTIONS(3046), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3048), 1, + anon_sym_AMP_AMP, + ACTIONS(3050), 1, + anon_sym_PIPE, + ACTIONS(3052), 1, + anon_sym_CARET, + ACTIONS(3054), 1, + anon_sym_AMP, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3062), 1, + anon_sym_EQ, + STATE(1058), 1, sym_argument_list, - ACTIONS(3019), 2, + ACTIONS(3024), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3030), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3032), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3034), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3036), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3040), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3021), 2, + ACTIONS(3042), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3051), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3026), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(3049), 27, + ACTIONS(3060), 20, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -116230,7 +116928,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -116241,24 +116938,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37883] = 9, + [37312] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(3022), 1, anon_sym_LPAREN2, - ACTIONS(3015), 1, + ACTIONS(3038), 1, anon_sym_LBRACK, - STATE(1039), 1, + STATE(1058), 1, sym_argument_list, - ACTIONS(3019), 2, + ACTIONS(3040), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3021), 2, + ACTIONS(3042), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3055), 13, + ACTIONS(3028), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -116272,7 +116969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3053), 27, + ACTIONS(3020), 27, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -116300,46 +116997,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37951] = 10, + [37380] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2942), 1, + ACTIONS(2729), 2, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - STATE(1089), 1, - sym_enumerator_list, - STATE(1163), 1, - sym_attribute_specifier, - ACTIONS(3061), 2, + ACTIONS(2727), 45, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3064), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(3059), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3067), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3057), 32, - anon_sym___extension__, - anon_sym_extern, anon_sym___declspec, - anon_sym___based, - anon_sym___init, - anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -116359,62 +117046,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [38021] = 14, + [37438] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___declspec, - ACTIONS(1210), 1, + ACTIONS(3066), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(1036), 1, - sym_alignas_qualifier, - ACTIONS(35), 2, + ACTIONS(3064), 41, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(37), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(57), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2847), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(39), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2849), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(892), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(55), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(53), 10, - anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -116424,16 +117090,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [38099] = 14, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [37496] = 14, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(1210), 1, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, ACTIONS(35), 2, anon_sym___attribute__, @@ -116444,7 +117125,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2851), 3, + ACTIONS(2863), 3, anon_sym___based, anon_sym_LBRACK, sym_identifier, @@ -116453,13 +117134,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2853), 5, + ACTIONS(2865), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(892), 7, + STATE(894), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -116488,24 +117169,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [38177] = 9, + [37574] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(3022), 1, anon_sym_LPAREN2, - ACTIONS(3015), 1, + ACTIONS(3038), 1, anon_sym_LBRACK, - STATE(1039), 1, + STATE(1058), 1, sym_argument_list, - ACTIONS(3019), 2, + ACTIONS(3040), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3021), 2, + ACTIONS(3042), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3017), 13, + ACTIONS(3070), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -116519,7 +117200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2991), 27, + ACTIONS(3068), 27, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -116547,58 +117228,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [38245] = 21, + [37642] = 14, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(3022), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, - anon_sym_AMP_AMP, - ACTIONS(3001), 1, - anon_sym_PIPE, - ACTIONS(3003), 1, - anon_sym_CARET, - ACTIONS(3005), 1, - anon_sym_AMP, - ACTIONS(3015), 1, + ACTIONS(3038), 1, anon_sym_LBRACK, - ACTIONS(3072), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3074), 1, - anon_sym_EQ, - ACTIONS(3076), 1, - anon_sym_QMARK, - STATE(1039), 1, + STATE(1058), 1, sym_argument_list, - ACTIONS(2995), 2, + ACTIONS(3024), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3007), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3009), 2, + ACTIONS(3032), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3011), 2, + ACTIONS(3034), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3013), 2, + ACTIONS(3036), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3019), 2, + ACTIONS(3040), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3021), 2, + ACTIONS(3042), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2997), 3, + ACTIONS(3026), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3070), 20, + ACTIONS(3028), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(3020), 25, anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -116608,6 +117281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -116618,15 +117292,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [38337] = 4, + [37720] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2702), 2, + ACTIONS(2972), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2700), 45, + ACTIONS(2970), 41, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -116638,16 +117316,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -116672,129 +117346,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38395] = 21, + [37778] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(3022), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, - anon_sym_AMP_AMP, - ACTIONS(3001), 1, - anon_sym_PIPE, - ACTIONS(3003), 1, - anon_sym_CARET, - ACTIONS(3005), 1, - anon_sym_AMP, - ACTIONS(3015), 1, + ACTIONS(3038), 1, anon_sym_LBRACK, - ACTIONS(3072), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3076), 1, - anon_sym_QMARK, - ACTIONS(3080), 1, - anon_sym_EQ, - STATE(1039), 1, + STATE(1058), 1, sym_argument_list, - ACTIONS(2995), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3007), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3009), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3011), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3013), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3019), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3021), 2, + ACTIONS(3042), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2997), 3, + ACTIONS(3074), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3078), 20, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [38487] = 21, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2993), 1, - anon_sym_LPAREN2, - ACTIONS(2999), 1, - anon_sym_AMP_AMP, - ACTIONS(3001), 1, anon_sym_PIPE, - ACTIONS(3003), 1, anon_sym_CARET, - ACTIONS(3005), 1, anon_sym_AMP, - ACTIONS(3015), 1, - anon_sym_LBRACK, - ACTIONS(3072), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3076), 1, - anon_sym_QMARK, - ACTIONS(3084), 1, - anon_sym_EQ, - STATE(1039), 1, - sym_argument_list, - ACTIONS(2995), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3007), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3009), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3011), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3013), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3019), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3021), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2997), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3082), 20, + anon_sym_EQ, + ACTIONS(3072), 29, anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -116804,6 +117391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -116814,19 +117402,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [38579] = 4, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [37844] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3088), 6, + ACTIONS(2058), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3086), 41, + ACTIONS(2056), 41, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -116868,79 +117458,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38637] = 10, + [37902] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3043), 1, - anon_sym_LBRACE, - STATE(1091), 1, - sym_field_declaration_list, - STATE(1150), 1, - sym_attribute_specifier, - ACTIONS(2780), 2, + ACTIONS(3022), 1, + anon_sym_LPAREN2, + ACTIONS(3038), 1, + anon_sym_LBRACK, + STATE(1058), 1, + sym_argument_list, + ACTIONS(3040), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3042), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3078), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(3076), 27, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(2782), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2784), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3092), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3090), 32, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [38707] = 4, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [37970] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3096), 6, + ACTIONS(3082), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3094), 41, + ACTIONS(3080), 41, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -116982,21 +117571,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38765] = 4, + [38028] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3100), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3022), 1, anon_sym_LPAREN2, + ACTIONS(3038), 1, + anon_sym_LBRACK, + STATE(1058), 1, + sym_argument_list, + ACTIONS(3024), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3036), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3040), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3042), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3026), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3028), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(3020), 27, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3098), 41, - anon_sym___extension__, - anon_sym_extern, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -117005,61 +117622,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [38823] = 10, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [38102] = 11, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(3022), 1, anon_sym_LPAREN2, - ACTIONS(3015), 1, + ACTIONS(3038), 1, anon_sym_LBRACK, - STATE(1039), 1, + STATE(1058), 1, sym_argument_list, - ACTIONS(3019), 2, + ACTIONS(3024), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3040), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3021), 2, + ACTIONS(3042), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2997), 3, + ACTIONS(3026), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3017), 10, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3028), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -117068,7 +117666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2991), 27, + ACTIONS(3020), 27, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -117096,54 +117694,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [38893] = 18, + [38174] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3086), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3084), 41, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [38232] = 21, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(3022), 1, anon_sym_LPAREN2, - ACTIONS(3001), 1, + ACTIONS(3038), 1, + anon_sym_LBRACK, + ACTIONS(3046), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3048), 1, + anon_sym_AMP_AMP, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3003), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3005), 1, + ACTIONS(3054), 1, anon_sym_AMP, - ACTIONS(3015), 1, - anon_sym_LBRACK, - ACTIONS(3017), 1, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3090), 1, anon_sym_EQ, - STATE(1039), 1, + STATE(1058), 1, sym_argument_list, - ACTIONS(2995), 2, + ACTIONS(3024), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3007), 2, + ACTIONS(3030), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3009), 2, + ACTIONS(3032), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3011), 2, + ACTIONS(3034), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3013), 2, + ACTIONS(3036), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3019), 2, + ACTIONS(3040), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3021), 2, + ACTIONS(3042), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2997), 3, + ACTIONS(3026), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 23, + ACTIONS(3088), 20, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -117153,7 +117809,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -117164,19 +117819,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [38979] = 4, + [38324] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2966), 6, + ACTIONS(3094), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2964), 41, + ACTIONS(3092), 41, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -117218,115 +117873,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39037] = 17, + [38382] = 14, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2993), 1, - anon_sym_LPAREN2, - ACTIONS(3003), 1, - anon_sym_CARET, - ACTIONS(3005), 1, - anon_sym_AMP, - ACTIONS(3015), 1, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(1214), 1, + anon_sym_LBRACK_LBRACK, + STATE(1048), 1, + sym_alignas_qualifier, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(37), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2799), 3, + anon_sym___based, anon_sym_LBRACK, - STATE(1039), 1, - sym_argument_list, - ACTIONS(2995), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3007), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3009), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3011), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3013), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3017), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(3019), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3021), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2997), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2991), 23, + sym_identifier, + ACTIONS(39), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2801), 5, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_SEMI, + STATE(1040), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(55), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(53), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [38460] = 10, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3003), 1, + anon_sym_LBRACE, + STATE(1117), 1, + sym_enumerator_list, + STATE(1171), 1, + sym_attribute_specifier, + ACTIONS(3100), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3103), 2, anon_sym___scanf, anon_sym___printf, + ACTIONS(3098), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3106), 4, anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3096), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [38530] = 10, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3113), 1, + anon_sym_LBRACE, + STATE(1115), 1, + sym_field_declaration_list, + STATE(1156), 1, + sym_attribute_specifier, + ACTIONS(2809), 2, + anon_sym___attribute__, anon_sym___must_hold, + ACTIONS(2811), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(2813), 4, + anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [39121] = 12, + ACTIONS(3111), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3109), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [38600] = 16, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(3022), 1, anon_sym_LPAREN2, - ACTIONS(3015), 1, + ACTIONS(3038), 1, anon_sym_LBRACK, - STATE(1039), 1, + ACTIONS(3054), 1, + anon_sym_AMP, + STATE(1058), 1, sym_argument_list, - ACTIONS(2995), 2, + ACTIONS(3024), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3013), 2, + ACTIONS(3030), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3032), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3034), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3036), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3019), 2, + ACTIONS(3040), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3021), 2, + ACTIONS(3042), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2997), 3, + ACTIONS(3026), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3017), 6, + ACTIONS(3028), 3, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, anon_sym_EQ, - ACTIONS(2991), 27, + ACTIONS(3020), 23, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -117347,52 +118123,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [39195] = 16, + [38682] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(3022), 1, anon_sym_LPAREN2, - ACTIONS(3005), 1, - anon_sym_AMP, - ACTIONS(3015), 1, + ACTIONS(3038), 1, anon_sym_LBRACK, - STATE(1039), 1, + STATE(1058), 1, sym_argument_list, - ACTIONS(2995), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3007), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3009), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3011), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3013), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3019), 2, + ACTIONS(3040), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3021), 2, + ACTIONS(3042), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2997), 3, + ACTIONS(3117), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3017), 3, anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2991), 23, + ACTIONS(3115), 27, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -117413,51 +118182,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [39277] = 15, + [38750] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(3022), 1, anon_sym_LPAREN2, - ACTIONS(3015), 1, + ACTIONS(3038), 1, anon_sym_LBRACK, - STATE(1039), 1, + STATE(1058), 1, sym_argument_list, - ACTIONS(2995), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3007), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3009), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3011), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3013), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3019), 2, + ACTIONS(3040), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3021), 2, + ACTIONS(3042), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2997), 3, + ACTIONS(3121), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3017), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2991), 23, + ACTIONS(3119), 27, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -117478,70 +118241,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [39357] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3104), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3102), 41, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [39415] = 14, + [38818] = 14, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(1210), 1, + ACTIONS(1214), 1, anon_sym_LBRACK_LBRACK, - STATE(1036), 1, + STATE(1048), 1, sym_alignas_qualifier, ACTIONS(35), 2, anon_sym___attribute__, @@ -117552,7 +118261,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2802), 3, + ACTIONS(2880), 3, anon_sym___based, anon_sym_LBRACK, sym_identifier, @@ -117561,13 +118270,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2804), 5, + ACTIONS(2882), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(1016), 7, + STATE(894), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -117596,19 +118305,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [39493] = 4, + [38896] = 17, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2962), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3022), 1, anon_sym_LPAREN2, + ACTIONS(3038), 1, + anon_sym_LBRACK, + ACTIONS(3052), 1, + anon_sym_CARET, + ACTIONS(3054), 1, + anon_sym_AMP, + STATE(1058), 1, + sym_argument_list, + ACTIONS(3024), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3028), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(3030), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3032), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3034), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3036), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3040), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3042), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3026), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3020), 23, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [38980] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2725), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2960), 41, + anon_sym_LBRACE, + ACTIONS(2723), 45, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -117620,12 +118392,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym___declspec, - anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -117650,19 +118426,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39551] = 4, + [39038] = 18, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3022), 1, + anon_sym_LPAREN2, + ACTIONS(3028), 1, + anon_sym_EQ, + ACTIONS(3038), 1, + anon_sym_LBRACK, + ACTIONS(3050), 1, + anon_sym_PIPE, + ACTIONS(3052), 1, + anon_sym_CARET, + ACTIONS(3054), 1, + anon_sym_AMP, + STATE(1058), 1, + sym_argument_list, + ACTIONS(3024), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3030), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3032), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3034), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3036), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3040), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3042), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3026), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3020), 23, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [39124] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2015), 6, + ACTIONS(3125), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2013), 41, + ACTIONS(3123), 41, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -117704,50 +118548,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39609] = 14, + [39182] = 19, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(3022), 1, anon_sym_LPAREN2, - ACTIONS(3015), 1, + ACTIONS(3028), 1, + anon_sym_EQ, + ACTIONS(3038), 1, anon_sym_LBRACK, - STATE(1039), 1, + ACTIONS(3048), 1, + anon_sym_AMP_AMP, + ACTIONS(3050), 1, + anon_sym_PIPE, + ACTIONS(3052), 1, + anon_sym_CARET, + ACTIONS(3054), 1, + anon_sym_AMP, + STATE(1058), 1, sym_argument_list, - ACTIONS(2995), 2, + ACTIONS(3024), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3009), 2, + ACTIONS(3030), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3032), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3011), 2, + ACTIONS(3034), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3013), 2, + ACTIONS(3036), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3019), 2, + ACTIONS(3040), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3021), 2, + ACTIONS(3042), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2997), 3, + ACTIONS(3026), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3017), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2991), 25, + ACTIONS(3020), 22, anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -117768,17 +118617,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [39687] = 4, + [39270] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3108), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3022), 1, + anon_sym_LPAREN2, + ACTIONS(3038), 1, + anon_sym_LBRACK, + STATE(1058), 1, + sym_argument_list, + ACTIONS(3040), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3042), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3026), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3028), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -117787,9 +118649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3106), 33, + ACTIONS(3020), 27, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -117805,7 +118666,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -117817,26 +118677,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [39744] = 6, + [39340] = 10, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3113), 1, + anon_sym_LBRACE, + STATE(1108), 1, + sym_field_declaration_list, + STATE(1150), 1, + sym_attribute_specifier, + ACTIONS(2809), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(2811), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(2813), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3129), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3127), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [39410] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3096), 1, + ACTIONS(1573), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(607), 1, - sym_string_literal, - ACTIONS(3110), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3094), 39, + ACTIONS(1571), 41, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -117848,10 +118761,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -117876,45 +118791,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39805] = 4, + [39468] = 14, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3114), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(3112), 33, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(1214), 1, + anon_sym_LBRACK_LBRACK, + STATE(1048), 1, + sym_alignas_qualifier, + ACTIONS(35), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(37), 2, anon_sym___scanf, anon_sym___printf, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2855), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(39), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(2857), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(1021), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(55), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(53), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [39546] = 7, + ACTIONS(2000), 1, + anon_sym_EQ, + STATE(891), 1, + sym_string_literal, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2004), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -117925,16 +118880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [39862] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3118), 13, + ACTIONS(1991), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -117947,9 +118893,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(3116), 33, + ACTIONS(1985), 18, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -117958,46 +118904,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [39919] = 6, + [39610] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3096), 1, + ACTIONS(3133), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(610), 1, - sym_string_literal, - ACTIONS(3110), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3094), 39, + ACTIONS(3131), 41, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -118009,10 +118936,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -118037,12 +118966,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39980] = 4, + [39668] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3122), 13, + ACTIONS(3137), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -118056,7 +118985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3120), 33, + ACTIONS(3135), 33, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -118090,12 +119019,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [40037] = 4, + [39725] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3126), 13, + ACTIONS(3141), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -118109,7 +119038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3124), 33, + ACTIONS(3139), 33, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -118143,12 +119072,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [40094] = 4, + [39782] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3130), 13, + ACTIONS(3145), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -118162,7 +119091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3128), 33, + ACTIONS(3143), 33, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -118196,12 +119125,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [40151] = 4, + [39839] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3134), 13, + ACTIONS(3149), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -118215,7 +119144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3132), 33, + ACTIONS(3147), 33, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -118249,12 +119178,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [40208] = 4, + [39896] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1962), 13, + ACTIONS(1991), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -118268,7 +119197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1956), 33, + ACTIONS(1985), 33, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -118302,180 +119231,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [40265] = 6, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2798), 1, - anon_sym_EQ, - ACTIONS(2800), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1962), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1956), 23, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [40326] = 6, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3096), 1, - anon_sym_LBRACK_LBRACK, - STATE(608), 1, - sym_string_literal, - ACTIONS(3110), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3094), 39, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [40387] = 9, + [39953] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3140), 1, - anon_sym___aligned, - STATE(1082), 1, - sym_attribute_specifier, - ACTIONS(2950), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(2952), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2954), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3138), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3136), 32, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [40454] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3144), 13, + ACTIONS(3153), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -118489,7 +119250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3142), 33, + ACTIONS(3151), 33, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -118523,12 +119284,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [40511] = 4, + [40010] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3148), 13, + ACTIONS(3157), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -118542,7 +119303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3146), 33, + ACTIONS(3155), 33, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -118576,128 +119337,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [40568] = 9, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3154), 1, - anon_sym___aligned, - STATE(1088), 1, - sym_attribute_specifier, - ACTIONS(2950), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(2952), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2954), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3152), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3150), 32, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [40635] = 9, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3160), 1, - anon_sym___aligned, - STATE(1112), 1, - sym_attribute_specifier, - ACTIONS(2950), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(2952), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2954), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3158), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3156), 32, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [40702] = 4, + [40067] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3164), 13, + ACTIONS(3161), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -118711,7 +119356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3162), 33, + ACTIONS(3159), 33, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -118745,67 +119390,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [40759] = 6, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3096), 1, - anon_sym_LBRACK_LBRACK, - STATE(606), 1, - sym_string_literal, - ACTIONS(3110), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3094), 39, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [40820] = 4, + [40124] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2806), 13, + ACTIONS(3165), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -118819,7 +119409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2808), 33, + ACTIONS(3163), 33, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -118853,12 +119443,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [40877] = 4, + [40181] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3168), 13, + ACTIONS(3169), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -118872,7 +119462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3166), 33, + ACTIONS(3167), 33, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -118906,12 +119496,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [40934] = 4, + [40238] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3172), 13, + ACTIONS(2859), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -118925,7 +119515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3170), 33, + ACTIONS(2861), 33, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -118959,12 +119549,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [40991] = 4, + [40295] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3176), 13, + ACTIONS(3173), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -118978,7 +119568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3174), 33, + ACTIONS(3171), 33, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -119012,12 +119602,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [41048] = 4, + [40352] = 9, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3179), 1, + anon_sym___aligned, + STATE(1098), 1, + sym_attribute_specifier, + ACTIONS(2954), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(2956), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(2958), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3177), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3175), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [40419] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3180), 13, + ACTIONS(3183), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -119031,7 +119679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3178), 33, + ACTIONS(3181), 33, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -119065,12 +119713,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [41105] = 4, + [40476] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3184), 13, + ACTIONS(3187), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -119084,7 +119732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3182), 33, + ACTIONS(3185), 33, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -119118,12 +119766,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [41162] = 4, + [40533] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3188), 13, + ACTIONS(3191), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -119137,7 +119785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3186), 33, + ACTIONS(3189), 33, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -119171,12 +119819,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [41219] = 4, + [40590] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3192), 13, + ACTIONS(3195), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -119190,7 +119838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3190), 33, + ACTIONS(3193), 33, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -119224,70 +119872,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [41276] = 9, + [40647] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3198), 1, - anon_sym___aligned, - STATE(1110), 1, - sym_attribute_specifier, - ACTIONS(2950), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(2952), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2954), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3196), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3194), 32, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [41343] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3202), 13, + ACTIONS(1991), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -119301,7 +119891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3200), 33, + ACTIONS(1985), 33, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -119335,12 +119925,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [41400] = 4, + [40704] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3206), 13, + ACTIONS(3199), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -119354,7 +119944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3204), 33, + ACTIONS(3197), 33, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -119388,12 +119978,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [41457] = 4, + [40761] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3210), 13, + ACTIONS(3203), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -119407,7 +119997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3208), 33, + ACTIONS(3201), 33, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -119441,12 +120031,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [41514] = 4, + [40818] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3214), 13, + ACTIONS(2821), 1, + anon_sym_EQ, + ACTIONS(2823), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1991), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -119459,8 +120062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(3212), 33, + ACTIONS(1985), 23, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -119480,26 +120082,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [41571] = 4, + [40879] = 6, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3066), 1, + anon_sym_LBRACK_LBRACK, + STATE(616), 1, + sym_string_literal, + ACTIONS(3205), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3064), 39, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [40940] = 9, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3211), 1, + anon_sym___aligned, + STATE(1100), 1, + sym_attribute_specifier, + ACTIONS(2954), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(2956), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(2958), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3209), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3207), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [41007] = 9, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3217), 1, + anon_sym___aligned, + STATE(1123), 1, + sym_attribute_specifier, + ACTIONS(2954), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(2956), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(2958), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3215), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3213), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [41074] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3218), 13, + ACTIONS(3221), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -119513,7 +120276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3216), 33, + ACTIONS(3219), 33, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -119547,12 +120310,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [41628] = 4, + [41131] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3222), 13, + ACTIONS(3225), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -119566,7 +120329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3220), 33, + ACTIONS(3223), 33, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -119600,12 +120363,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [41685] = 4, + [41188] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1962), 13, + ACTIONS(3229), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -119619,7 +120382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1956), 33, + ACTIONS(3227), 33, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -119653,12 +120416,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [41742] = 4, + [41245] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3226), 13, + ACTIONS(3233), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -119672,7 +120435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3224), 33, + ACTIONS(3231), 33, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -119706,32 +120469,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [41799] = 9, + [41302] = 6, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3066), 1, + anon_sym_LBRACK_LBRACK, + STATE(619), 1, + sym_string_literal, + ACTIONS(3205), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3064), 39, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [41363] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3232), 1, + ACTIONS(3239), 1, anon_sym___aligned, - STATE(1106), 1, + STATE(1095), 1, sym_attribute_specifier, - ACTIONS(2950), 2, + ACTIONS(2954), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(2952), 2, + ACTIONS(2956), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2954), 4, + ACTIONS(2958), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3230), 4, + ACTIONS(3237), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3228), 32, + ACTIONS(3235), 32, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -119764,12 +120582,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [41866] = 4, + [41430] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3236), 13, + ACTIONS(3243), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -119783,7 +120601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3234), 33, + ACTIONS(3241), 33, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -119817,44 +120635,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [41923] = 9, + [41487] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3242), 1, - anon_sym___aligned, - STATE(1107), 1, - sym_attribute_specifier, - ACTIONS(2950), 2, + ACTIONS(3066), 1, + anon_sym_LBRACK_LBRACK, + STATE(617), 1, + sym_string_literal, + ACTIONS(3205), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3064), 39, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(2952), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2954), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3240), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [41548] = 6, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3066), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3238), 32, + STATE(620), 1, + sym_string_literal, + ACTIONS(3205), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3064), 39, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, - anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -119874,13 +120740,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [41990] = 4, + [41609] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3246), 13, + ACTIONS(3247), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -119894,7 +120764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3244), 33, + ACTIONS(3245), 33, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -119928,12 +120798,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [42047] = 4, + [41666] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3250), 13, + ACTIONS(3251), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -119947,7 +120817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3248), 33, + ACTIONS(3249), 33, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -119981,12 +120851,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [42104] = 4, + [41723] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3254), 13, + ACTIONS(3255), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -120000,7 +120870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3252), 33, + ACTIONS(3253), 33, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -120034,12 +120904,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [42161] = 4, + [41780] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3258), 13, + ACTIONS(3259), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -120053,7 +120923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3256), 33, + ACTIONS(3257), 33, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -120087,21 +120957,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [42218] = 5, + [41837] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3264), 1, - anon_sym___aligned, - ACTIONS(3262), 4, + ACTIONS(3263), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(3261), 33, + anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [41894] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3267), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(3265), 33, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3260), 40, - anon_sym___extension__, - anon_sym_extern, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -120110,60 +121047,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym___declspec, - anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [42276] = 8, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [41951] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1166), 1, + ACTIONS(3273), 1, + anon_sym___aligned, + STATE(1114), 1, sym_attribute_specifier, - ACTIONS(2780), 2, + ACTIONS(2954), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(2782), 2, + ACTIONS(2956), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2784), 4, + ACTIONS(2958), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3268), 4, + ACTIONS(3271), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3266), 32, + ACTIONS(3269), 32, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -120196,21 +121121,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [42340] = 5, + [42018] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3274), 1, - anon_sym___aligned, - ACTIONS(3272), 4, - anon_sym_LPAREN2, + ACTIONS(3277), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(3275), 33, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3270), 40, - anon_sym___extension__, - anon_sym_extern, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -120219,6 +121158,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [42075] = 9, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3283), 1, + anon_sym___aligned, + STATE(1128), 1, + sym_attribute_specifier, + ACTIONS(2954), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(2956), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(2958), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3281), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3279), 32, + anon_sym___extension__, + anon_sym_extern, anon_sym___declspec, anon_sym___based, anon_sym___init, @@ -120249,34 +121232,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [42398] = 8, - ACTIONS(1971), 1, - anon_sym_EQ, - ACTIONS(3276), 1, - anon_sym_COLON, - STATE(875), 1, - sym_string_literal, - ACTIONS(5), 2, + [42142] = 4, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1975), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1962), 12, + ACTIONS(3287), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -120289,7 +121250,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1956), 15, + anon_sym_EQ, + ACTIONS(3285), 33, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -120298,33 +121260,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [42462] = 6, + [42199] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1086), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3278), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2857), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3293), 1, + anon_sym___aligned, + ACTIONS(3291), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2855), 34, + ACTIONS(3289), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -120337,7 +121310,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -120357,19 +121337,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [42522] = 4, + [42257] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3283), 4, + ACTIONS(3297), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3281), 41, + ACTIONS(3295), 41, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -120411,19 +121390,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, anon_sym___aligned, sym_identifier, - [42578] = 5, + [42313] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3289), 1, + ACTIONS(3303), 1, anon_sym___aligned, - ACTIONS(3287), 4, + ACTIONS(3301), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3285), 40, + ACTIONS(3299), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -120464,32 +121443,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [42636] = 8, + [42371] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1168), 1, - sym_attribute_specifier, - ACTIONS(3295), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3298), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3293), 4, + ACTIONS(3309), 1, + anon_sym___aligned, + ACTIONS(3307), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3301), 4, + ACTIONS(3305), 40, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3291), 32, - anon_sym___extension__, - anon_sym_extern, anon_sym___declspec, anon_sym___based, anon_sym___init, @@ -120520,30 +121496,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [42700] = 8, + [42429] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3304), 1, - sym_identifier, - ACTIONS(3309), 1, - sym_primitive_type, - STATE(1102), 1, + STATE(1099), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3307), 4, + ACTIONS(3311), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2865), 6, + ACTIONS(2906), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2867), 32, + ACTIONS(2893), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -120576,32 +121548,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - [42764] = 8, + sym_primitive_type, + sym_identifier, + [42489] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1124), 1, - sym_attribute_specifier, - ACTIONS(2780), 2, + ACTIONS(3318), 1, + anon_sym___aligned, + ACTIONS(3316), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3314), 40, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(2782), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2784), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3313), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3311), 32, - anon_sym___extension__, - anon_sym_extern, anon_sym___declspec, anon_sym___based, anon_sym___init, @@ -120632,19 +121603,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [42828] = 4, + [42547] = 8, + ACTIONS(2000), 1, + anon_sym_EQ, + ACTIONS(2009), 1, + anon_sym_COLON, + STATE(891), 1, + sym_string_literal, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2004), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1991), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1985), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [42611] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3104), 4, + ACTIONS(2977), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2981), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3102), 41, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(3320), 1, + anon_sym_LBRACE, + ACTIONS(2657), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(2974), 9, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -120653,16 +121683,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, + sym_identifier, + ACTIONS(2979), 30, + anon_sym___extension__, + anon_sym_extern, anon_sym___declspec, - anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -120682,19 +121711,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - anon_sym___aligned, - sym_identifier, - [42884] = 4, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + [42675] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3317), 4, + ACTIONS(3082), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3315), 41, + ACTIONS(3080), 41, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -120736,30 +121767,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, anon_sym___aligned, sym_identifier, - [42940] = 8, + [42731] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1146), 1, + STATE(1155), 1, sym_attribute_specifier, - ACTIONS(3323), 2, + ACTIONS(2809), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(3326), 2, + ACTIONS(2811), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(3321), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3329), 4, + ACTIONS(2813), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3319), 32, + ACTIONS(3324), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3322), 32, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -120792,32 +121823,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [43004] = 8, + [42795] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1130), 1, - sym_attribute_specifier, - ACTIONS(2780), 2, + ACTIONS(3328), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3326), 41, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(2782), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2784), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3334), 4, + anon_sym___declspec, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym___aligned, + sym_identifier, + [42851] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3133), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3332), 32, + ACTIONS(3131), 41, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, anon_sym___init, @@ -120847,13 +121925,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + anon_sym___aligned, sym_identifier, - [43068] = 8, - ACTIONS(1971), 1, + [42907] = 8, + ACTIONS(2000), 1, anon_sym_EQ, - ACTIONS(1982), 1, + ACTIONS(3330), 1, anon_sym_COLON, - STATE(875), 1, + STATE(891), 1, sym_string_literal, ACTIONS(5), 2, sym__linux_kernel_annotations, @@ -120864,7 +121943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1975), 10, + ACTIONS(2004), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -120875,7 +121954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1962), 12, + ACTIONS(1991), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -120888,7 +121967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1956), 15, + ACTIONS(1985), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -120897,19 +121976,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [43132] = 8, - ACTIONS(1971), 1, + [42971] = 8, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + STATE(1157), 1, + sym_attribute_specifier, + ACTIONS(2809), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(2811), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(2813), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3334), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3332), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [43035] = 8, + ACTIONS(2000), 1, anon_sym_EQ, - ACTIONS(1980), 1, + ACTIONS(3336), 1, anon_sym_COLON, - STATE(875), 1, + STATE(891), 1, sym_string_literal, ACTIONS(5), 2, sym__linux_kernel_annotations, @@ -120920,7 +122055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1975), 10, + ACTIONS(2004), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -120931,7 +122066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1962), 12, + ACTIONS(1991), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -120944,7 +122079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1956), 15, + ACTIONS(1985), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -120960,21 +122095,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [43196] = 5, + [43099] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3340), 1, - anon_sym___aligned, - ACTIONS(3338), 4, + ACTIONS(3013), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3017), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3336), 40, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(3338), 1, + anon_sym_LBRACE, + ACTIONS(2669), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(3010), 9, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -120983,16 +122119,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, + sym_identifier, + ACTIONS(3015), 30, + anon_sym___extension__, + anon_sym_extern, anon_sym___declspec, - anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -121012,13 +122147,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - [43254] = 8, - ACTIONS(1971), 1, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + [43163] = 8, + ACTIONS(2000), 1, anon_sym_EQ, - ACTIONS(1973), 1, + ACTIONS(2021), 1, anon_sym_COLON, - STATE(875), 1, + STATE(891), 1, sym_string_literal, ACTIONS(5), 2, sym__linux_kernel_annotations, @@ -121029,7 +122167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1975), 10, + ACTIONS(2004), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -121040,7 +122178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1962), 12, + ACTIONS(1991), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -121053,7 +122191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1956), 15, + ACTIONS(1985), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -121069,17 +122207,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [43318] = 4, + [43227] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3025), 4, + ACTIONS(3344), 1, + anon_sym___aligned, + ACTIONS(3342), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3023), 41, + ACTIONS(3340), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -121119,86 +122259,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - anon_sym___aligned, sym_identifier, - [43374] = 8, + [43285] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1143), 1, - sym_attribute_specifier, - ACTIONS(3346), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3349), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3344), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3352), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3342), 32, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, + ACTIONS(3346), 1, sym_identifier, - [43438] = 7, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2855), 1, + ACTIONS(3351), 1, sym_primitive_type, - STATE(1086), 1, + STATE(1116), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3278), 4, + ACTIONS(3349), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2876), 6, + ACTIONS(2898), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2873), 33, + ACTIONS(2900), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -121231,89 +122316,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - [43500] = 8, - ACTIONS(1971), 1, - anon_sym_EQ, - ACTIONS(1984), 1, - anon_sym_COLON, - STATE(875), 1, - sym_string_literal, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1975), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1962), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1956), 15, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [43564] = 8, + [43349] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1151), 1, - sym_attribute_specifier, - ACTIONS(2780), 2, + ACTIONS(3357), 1, + anon_sym___aligned, + ACTIONS(3355), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3353), 40, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(2782), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2784), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3357), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3355), 32, - anon_sym___extension__, - anon_sym_extern, anon_sym___declspec, anon_sym___based, anon_sym___init, @@ -121344,39 +122369,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [43628] = 8, + [43407] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2658), 1, - anon_sym_LPAREN2, - ACTIONS(2985), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3359), 1, - anon_sym_LBRACE, - ACTIONS(2656), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2980), 9, + STATE(1196), 1, + sym_attribute_specifier, + ACTIONS(2809), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(2811), 2, anon_sym___scanf, anon_sym___printf, + ACTIONS(2813), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - sym_identifier, - ACTIONS(2983), 30, + ACTIONS(3361), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3359), 32, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -121396,23 +122424,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - [43692] = 5, + sym_identifier, + [43471] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3365), 1, - anon_sym___aligned, - ACTIONS(3363), 4, + ACTIONS(2893), 1, + sym_primitive_type, + STATE(1099), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3311), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2887), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3361), 40, + ACTIONS(2884), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -121425,14 +122459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -121453,29 +122480,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [43750] = 5, + [43533] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, - anon_sym___aligned, - ACTIONS(3369), 4, + STATE(1137), 1, + sym_attribute_specifier, + ACTIONS(3367), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3370), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3365), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3367), 40, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, + ACTIONS(3373), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, + ACTIONS(3363), 32, + anon_sym___extension__, + anon_sym_extern, anon_sym___declspec, anon_sym___based, anon_sym___init, @@ -121506,29 +122536,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [43808] = 5, + [43597] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3377), 1, - anon_sym___aligned, - ACTIONS(3375), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3373), 40, - anon_sym___extension__, - anon_sym_extern, + STATE(1142), 1, + sym_attribute_specifier, + ACTIONS(2809), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(2811), 2, anon_sym___scanf, anon_sym___printf, + ACTIONS(2813), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, + ACTIONS(3378), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3376), 32, + anon_sym___extension__, + anon_sym_extern, anon_sym___declspec, anon_sym___based, anon_sym___init, @@ -121559,27 +122592,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [43866] = 4, + [43661] = 8, + ACTIONS(2000), 1, + anon_sym_EQ, + ACTIONS(2011), 1, + anon_sym_COLON, + STATE(891), 1, + sym_string_literal, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2004), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1991), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1985), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [43725] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3037), 4, + STATE(1177), 1, + sym_attribute_specifier, + ACTIONS(3384), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3387), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3382), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3035), 41, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, + ACTIONS(3390), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, + ACTIONS(3380), 32, + anon_sym___extension__, + anon_sym_extern, anon_sym___declspec, anon_sym___based, anon_sym___init, @@ -121609,21 +122703,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - anon_sym___aligned, sym_identifier, - [43922] = 5, + [43789] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3383), 1, - anon_sym___aligned, - ACTIONS(3381), 4, + ACTIONS(3125), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3379), 40, + ACTIONS(3123), 41, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -121663,18 +122754,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + anon_sym___aligned, sym_identifier, - [43980] = 4, + [43845] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3100), 4, + ACTIONS(3397), 1, + anon_sym___aligned, + ACTIONS(3395), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3098), 41, + ACTIONS(3393), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -121714,21 +122808,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - anon_sym___aligned, sym_identifier, - [44036] = 5, + [43903] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3389), 1, + ACTIONS(3403), 1, anon_sym___aligned, - ACTIONS(3387), 4, + ACTIONS(3401), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3385), 40, + ACTIONS(3399), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -121769,68 +122862,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [44094] = 8, - ACTIONS(1971), 1, - anon_sym_EQ, - ACTIONS(3391), 1, - anon_sym_COLON, - STATE(875), 1, - sym_string_literal, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1975), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1962), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1956), 15, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [44158] = 8, - ACTIONS(1971), 1, + [43961] = 8, + ACTIONS(2000), 1, anon_sym_EQ, - ACTIONS(1986), 1, + ACTIONS(2019), 1, anon_sym_COLON, - STATE(875), 1, + STATE(891), 1, sym_string_literal, ACTIONS(5), 2, sym__linux_kernel_annotations, @@ -121841,7 +122878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1975), 10, + ACTIONS(2004), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -121852,7 +122889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1962), 12, + ACTIONS(1991), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -121865,7 +122902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1956), 15, + ACTIONS(1985), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -121881,126 +122918,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [44222] = 8, + [44025] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2662), 1, - anon_sym_LPAREN2, - ACTIONS(2926), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3393), 1, - anon_sym_LBRACE, - ACTIONS(2660), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2921), 9, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - sym_identifier, - ACTIONS(2924), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - [44286] = 6, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - STATE(1086), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3395), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2883), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2881), 33, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [44345] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3399), 4, + ACTIONS(3086), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3397), 40, + ACTIONS(3084), 41, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -122040,11 +122968,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + anon_sym___aligned, sym_identifier, - [44400] = 7, - ACTIONS(3401), 1, + [44081] = 8, + ACTIONS(2000), 1, anon_sym_EQ, - STATE(875), 1, + ACTIONS(2002), 1, + anon_sym_COLON, + STATE(891), 1, sym_string_literal, ACTIONS(5), 2, sym__linux_kernel_annotations, @@ -122055,7 +122986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(3403), 10, + ACTIONS(2004), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -122066,7 +122997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1962), 13, + ACTIONS(1991), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -122079,9 +123010,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(1956), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(1985), 15, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -122089,33 +123019,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT, anon_sym_DASH_GT, - [44461] = 4, + [44145] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, + STATE(1184), 1, + sym_attribute_specifier, + ACTIONS(3409), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3412), 2, + anon_sym___scanf, + anon_sym___printf, ACTIONS(3407), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3405), 40, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, + ACTIONS(3415), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, + ACTIONS(3405), 32, + anon_sym___extension__, + anon_sym_extern, anon_sym___declspec, anon_sym___based, anon_sym___init, @@ -122146,17 +123082,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [44516] = 4, + [44209] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3411), 4, + ACTIONS(3422), 1, + anon_sym___aligned, + ACTIONS(3420), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3409), 40, + ACTIONS(3418), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -122197,17 +123135,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [44571] = 4, + [44267] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3415), 4, + ACTIONS(3426), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3413), 40, + ACTIONS(3424), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -122248,17 +123186,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [44626] = 4, + [44322] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2909), 4, + ACTIONS(3430), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2907), 40, + ACTIONS(3428), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -122299,68 +123237,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [44681] = 4, - ACTIONS(3), 1, + [44377] = 3, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(3419), 4, - anon_sym_LPAREN2, + ACTIONS(2859), 14, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2861), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3417), 40, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym___declspec, - anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [44736] = 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [44430] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3423), 4, + ACTIONS(3297), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3421), 40, + ACTIONS(3295), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -122401,17 +123338,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [44791] = 4, + [44485] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3283), 4, + STATE(1099), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3432), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2938), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3281), 40, + ACTIONS(2936), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -122424,14 +123370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -122452,17 +123391,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [44846] = 4, + [44544] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3427), 4, + STATE(1099), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3432), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2918), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3425), 40, + ACTIONS(2916), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -122475,14 +123423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -122503,17 +123444,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [44901] = 4, + [44603] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3104), 4, + ACTIONS(3436), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3102), 40, + ACTIONS(3434), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -122554,17 +123495,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [44956] = 4, + [44658] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3431), 4, + ACTIONS(3086), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3429), 40, + ACTIONS(3084), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -122605,73 +123546,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [45011] = 9, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3433), 1, - anon_sym_LPAREN2, - ACTIONS(3435), 1, - anon_sym_LBRACK, - STATE(1225), 1, - sym_argument_list, - ACTIONS(3437), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3439), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3017), 15, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - sym_identifier, - ACTIONS(2991), 22, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [45076] = 4, + [44713] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3443), 4, + ACTIONS(3440), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3441), 40, + ACTIONS(3438), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -122712,17 +123597,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [45131] = 4, + [44768] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3447), 4, + STATE(1099), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3432), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2934), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3445), 40, + ACTIONS(2932), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -122735,14 +123629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -122763,17 +123650,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [45186] = 4, + [44827] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3451), 4, + ACTIONS(3444), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3449), 40, + ACTIONS(3442), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -122814,30 +123701,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [45241] = 10, + [44882] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3453), 1, - anon_sym_COMMA, - ACTIONS(3456), 1, - anon_sym_RPAREN, - ACTIONS(3459), 1, - anon_sym_LPAREN2, - STATE(1156), 1, + STATE(1133), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2552), 1, - aux_sym__old_style_parameter_list_repeat1, - ACTIONS(1967), 2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(3462), 4, + ACTIONS(3446), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1954), 33, + ACTIONS(2912), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2910), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -122871,26 +123754,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [45308] = 6, + [44941] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1086), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3395), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2905), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3133), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2903), 33, + ACTIONS(3131), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -122903,7 +123777,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -122924,17 +123805,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [45367] = 4, + [44996] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3466), 4, + ACTIONS(3450), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3464), 40, + ACTIONS(3448), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -122975,24 +123856,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [45422] = 9, + [45051] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3433), 1, + STATE(1138), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3452), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2942), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3435), 1, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2940), 33, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - STATE(1225), 1, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [45110] = 9, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3454), 1, + anon_sym_LPAREN2, + ACTIONS(3456), 1, + anon_sym_LBRACK, + STATE(1250), 1, sym_argument_list, - ACTIONS(3437), 2, + ACTIONS(3458), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3439), 2, + ACTIONS(3460), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3047), 15, + ACTIONS(3121), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -123008,7 +123942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(3045), 22, + ACTIONS(3119), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -123031,17 +123965,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45487] = 4, + [45175] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3470), 4, + ACTIONS(3464), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3468), 40, + ACTIONS(3462), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -123082,17 +124016,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [45542] = 4, + [45230] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3037), 4, + ACTIONS(3454), 1, anon_sym_LPAREN2, + ACTIONS(3456), 1, + anon_sym_LBRACK, + STATE(1250), 1, + sym_argument_list, + ACTIONS(3458), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3460), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3028), 15, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_identifier, + ACTIONS(3020), 22, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [45295] = 10, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3466), 1, + anon_sym_COMMA, + ACTIONS(3469), 1, + anon_sym_RPAREN, + ACTIONS(3472), 1, + anon_sym_LPAREN2, + STATE(1134), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2634), 1, + aux_sym__old_style_parameter_list_repeat1, + ACTIONS(1996), 2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3035), 40, + ACTIONS(2217), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1983), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -123105,14 +124108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -123133,67 +124129,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [45597] = 3, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(2806), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2808), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [45650] = 4, + [45362] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3474), 4, + ACTIONS(3477), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3472), 40, + ACTIONS(3475), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -123234,17 +124180,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [45705] = 4, + [45417] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3478), 4, + ACTIONS(3481), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3476), 40, + ACTIONS(3479), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -123285,17 +124231,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [45760] = 4, + [45472] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3482), 4, + ACTIONS(3485), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3480), 40, + ACTIONS(3483), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -123336,17 +124282,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [45815] = 4, + [45527] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3486), 4, + ACTIONS(3489), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3484), 40, + ACTIONS(3487), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -123387,73 +124333,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [45870] = 9, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3433), 1, - anon_sym_LPAREN2, - ACTIONS(3435), 1, - anon_sym_LBRACK, - STATE(1225), 1, - sym_argument_list, - ACTIONS(3437), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3439), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3055), 15, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - sym_identifier, - ACTIONS(3053), 22, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [45935] = 4, + [45582] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3490), 4, + ACTIONS(3493), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3488), 40, + ACTIONS(3491), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -123494,17 +124384,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [45990] = 4, + [45637] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3494), 4, + ACTIONS(3328), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3492), 40, + ACTIONS(3326), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -123545,17 +124435,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [46045] = 4, + [45692] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3498), 4, + ACTIONS(3125), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3496), 40, + ACTIONS(3123), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -123596,27 +124486,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [46100] = 7, + [45747] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3459), 1, + ACTIONS(3497), 4, anon_sym_LPAREN2, - STATE(1156), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3462), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1967), 5, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1954), 33, + ACTIONS(3495), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -123629,7 +124509,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -123650,17 +124537,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [46161] = 4, + [45802] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3502), 4, + ACTIONS(3501), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3500), 40, + ACTIONS(3499), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -123701,17 +124588,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [46216] = 4, + [45857] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3506), 4, + ACTIONS(3505), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3504), 40, + ACTIONS(3503), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -123752,17 +124639,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [46271] = 4, + [45912] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3510), 4, + STATE(1099), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3432), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2924), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 40, + ACTIONS(2922), 33, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [45971] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3509), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3507), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -123803,24 +124743,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [46326] = 9, + [46026] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3435), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - STATE(1225), 1, + STATE(1250), 1, sym_argument_list, - ACTIONS(3437), 2, + ACTIONS(3458), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3439), 2, + ACTIONS(3460), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3051), 15, + ACTIONS(3070), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -123836,7 +124776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(3049), 22, + ACTIONS(3068), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -123859,94 +124799,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46391] = 21, + [46091] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3433), 1, - anon_sym_LPAREN2, - ACTIONS(3435), 1, - anon_sym_LBRACK, - ACTIONS(3516), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3518), 1, - anon_sym_AMP_AMP, - ACTIONS(3520), 1, - anon_sym_PIPE, - ACTIONS(3522), 1, - anon_sym_CARET, - ACTIONS(3524), 1, - anon_sym_AMP, - ACTIONS(3534), 1, - anon_sym_QMARK, - STATE(1225), 1, - sym_argument_list, - ACTIONS(3437), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3439), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3512), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3526), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3528), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3530), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3532), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3080), 3, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - sym_identifier, - ACTIONS(3514), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3078), 15, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [46480] = 6, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - STATE(1116), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3536), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2899), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3513), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2897), 33, + ACTIONS(3511), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -123959,7 +124822,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -123980,79 +124850,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [46539] = 6, + [46146] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1134), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2893), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3472), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2891), 33, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [46598] = 6, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - STATE(1086), 1, + STATE(1134), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3395), 4, + ACTIONS(2217), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2919), 6, + ACTIONS(1996), 5, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2917), 33, + ACTIONS(1983), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -124086,26 +124904,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [46657] = 6, + [46207] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1086), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3395), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2889), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3517), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2887), 33, + ACTIONS(3515), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -124118,7 +124927,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -124139,17 +124955,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [46716] = 4, + [46262] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3317), 4, + ACTIONS(3521), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3315), 40, + ACTIONS(3519), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -124187,154 +125003,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [46771] = 10, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3433), 1, - anon_sym_LPAREN2, - ACTIONS(3435), 1, - anon_sym_LBRACK, - STATE(1225), 1, - sym_argument_list, - ACTIONS(3437), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3439), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3514), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3017), 12, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - sym_identifier, - ACTIONS(2991), 22, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [46838] = 21, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3433), 1, - anon_sym_LPAREN2, - ACTIONS(3435), 1, - anon_sym_LBRACK, - ACTIONS(3516), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3518), 1, - anon_sym_AMP_AMP, - ACTIONS(3520), 1, - anon_sym_PIPE, - ACTIONS(3522), 1, - anon_sym_CARET, - ACTIONS(3524), 1, - anon_sym_AMP, - ACTIONS(3534), 1, - anon_sym_QMARK, - STATE(1225), 1, - sym_argument_list, - ACTIONS(3437), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3439), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3512), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3526), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3528), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3530), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3532), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3084), 3, - aux_sym_preproc_elif_token1, - anon_sym_EQ, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - ACTIONS(3514), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3082), 15, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [46927] = 6, + [46317] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1157), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3540), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2909), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3525), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2907), 33, + ACTIONS(3523), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -124347,7 +125029,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -124368,85 +125057,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [46986] = 21, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3433), 1, - anon_sym_LPAREN2, - ACTIONS(3435), 1, - anon_sym_LBRACK, - ACTIONS(3516), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3518), 1, - anon_sym_AMP_AMP, - ACTIONS(3520), 1, - anon_sym_PIPE, - ACTIONS(3522), 1, - anon_sym_CARET, - ACTIONS(3524), 1, - anon_sym_AMP, - ACTIONS(3534), 1, - anon_sym_QMARK, - STATE(1225), 1, - sym_argument_list, - ACTIONS(3437), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3439), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3512), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3526), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3528), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3530), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3532), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3074), 3, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - sym_identifier, - ACTIONS(3514), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3070), 15, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [47075] = 4, + [46372] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3544), 4, + ACTIONS(3529), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3542), 40, + ACTIONS(3527), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -124487,17 +125108,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [47130] = 4, + [46427] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3548), 4, + ACTIONS(3533), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3546), 40, + ACTIONS(3531), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -124538,75 +125159,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [47185] = 11, + [46482] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3537), 4, anon_sym_LPAREN2, - ACTIONS(3435), 1, - anon_sym_LBRACK, - STATE(1225), 1, - sym_argument_list, - ACTIONS(3437), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3439), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3512), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3514), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3017), 10, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3535), 40, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - ACTIONS(2991), 22, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [47254] = 4, + [46537] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3552), 4, + ACTIONS(3541), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3550), 40, + ACTIONS(3539), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -124647,76 +125261,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [47309] = 12, + [46592] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3545), 4, anon_sym_LPAREN2, - ACTIONS(3435), 1, - anon_sym_LBRACK, - STATE(1225), 1, - sym_argument_list, - ACTIONS(3437), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3439), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3512), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3532), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3514), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3017), 8, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3543), 40, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - ACTIONS(2991), 22, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [47380] = 4, + [46647] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3556), 4, + ACTIONS(3549), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3554), 40, + ACTIONS(3547), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -124757,17 +125363,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [47435] = 4, + [46702] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3100), 4, + ACTIONS(3553), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3098), 40, + ACTIONS(3551), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -124808,17 +125414,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [47490] = 4, + [46757] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3025), 4, + ACTIONS(3557), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3023), 40, + ACTIONS(3555), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -124859,24 +125465,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [47545] = 9, + [46812] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3435), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - STATE(1225), 1, + STATE(1250), 1, sym_argument_list, - ACTIONS(3437), 2, + ACTIONS(3458), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3439), 2, + ACTIONS(3460), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3078), 15, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_identifier, + ACTIONS(3076), 22, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [46877] = 8, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3454), 1, + anon_sym_LPAREN2, + ACTIONS(3456), 1, + anon_sym_LBRACK, + STATE(1250), 1, + sym_argument_list, + ACTIONS(3460), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3029), 15, + ACTIONS(3074), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -124892,7 +125551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(3027), 22, + ACTIONS(3072), 24, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -124915,17 +125574,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [47610] = 4, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [46940] = 21, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3454), 1, + anon_sym_LPAREN2, + ACTIONS(3456), 1, + anon_sym_LBRACK, + ACTIONS(3563), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3565), 1, + anon_sym_AMP_AMP, + ACTIONS(3567), 1, + anon_sym_PIPE, + ACTIONS(3569), 1, + anon_sym_CARET, + ACTIONS(3571), 1, + anon_sym_AMP, + ACTIONS(3581), 1, + anon_sym_QMARK, + STATE(1250), 1, + sym_argument_list, + ACTIONS(3458), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3460), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3559), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3573), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3575), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3577), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3579), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3056), 3, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + sym_identifier, + ACTIONS(3561), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3044), 15, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [47029] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3560), 4, + ACTIONS(3585), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3558), 40, + ACTIONS(3583), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -124966,17 +125695,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [47665] = 4, + [47084] = 21, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3454), 1, + anon_sym_LPAREN2, + ACTIONS(3456), 1, + anon_sym_LBRACK, + ACTIONS(3563), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3565), 1, + anon_sym_AMP_AMP, + ACTIONS(3567), 1, + anon_sym_PIPE, + ACTIONS(3569), 1, + anon_sym_CARET, + ACTIONS(3571), 1, + anon_sym_AMP, + ACTIONS(3581), 1, + anon_sym_QMARK, + STATE(1250), 1, + sym_argument_list, + ACTIONS(3458), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3460), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3559), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3573), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3575), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3577), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3579), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3062), 3, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + sym_identifier, + ACTIONS(3561), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3060), 15, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [47173] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3564), 4, + ACTIONS(3082), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3562), 40, + ACTIONS(3080), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -125017,17 +125814,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [47720] = 4, + [47228] = 7, + ACTIONS(3587), 1, + anon_sym_EQ, + STATE(891), 1, + sym_string_literal, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3589), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1991), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(1985), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [47289] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3568), 4, + STATE(1158), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3591), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2928), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3566), 40, + ACTIONS(2926), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -125040,14 +125900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -125068,17 +125921,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [47775] = 4, + [47348] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3572), 4, + ACTIONS(3595), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3570), 40, + ACTIONS(3593), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -125119,17 +125972,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [47830] = 4, + [47403] = 10, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3454), 1, + anon_sym_LPAREN2, + ACTIONS(3456), 1, + anon_sym_LBRACK, + STATE(1250), 1, + sym_argument_list, + ACTIONS(3458), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3460), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3561), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3028), 12, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_identifier, + ACTIONS(3020), 22, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [47470] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3576), 4, + ACTIONS(3599), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3574), 40, + ACTIONS(3597), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -125170,17 +126080,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [47885] = 4, + [47525] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3580), 4, + ACTIONS(3603), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3578), 40, + ACTIONS(3601), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -125221,56 +126131,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [47940] = 14, + [47580] = 19, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3435), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - STATE(1225), 1, + ACTIONS(3565), 1, + anon_sym_AMP_AMP, + ACTIONS(3567), 1, + anon_sym_PIPE, + ACTIONS(3569), 1, + anon_sym_CARET, + ACTIONS(3571), 1, + anon_sym_AMP, + STATE(1250), 1, sym_argument_list, - ACTIONS(3437), 2, + ACTIONS(3458), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3439), 2, + ACTIONS(3460), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3512), 2, + ACTIONS(3559), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3528), 2, + ACTIONS(3573), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3575), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3530), 2, + ACTIONS(3577), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3532), 2, + ACTIONS(3579), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3514), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3017), 6, + ACTIONS(3028), 3, aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ, sym_identifier, - ACTIONS(2991), 20, + ACTIONS(3561), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3020), 17, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -125282,58 +126197,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [48015] = 15, + [47665] = 21, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3435), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - STATE(1225), 1, + ACTIONS(3563), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3565), 1, + anon_sym_AMP_AMP, + ACTIONS(3567), 1, + anon_sym_PIPE, + ACTIONS(3569), 1, + anon_sym_CARET, + ACTIONS(3571), 1, + anon_sym_AMP, + ACTIONS(3581), 1, + anon_sym_QMARK, + STATE(1250), 1, sym_argument_list, - ACTIONS(3437), 2, + ACTIONS(3458), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3439), 2, + ACTIONS(3460), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3512), 2, + ACTIONS(3559), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3526), 2, + ACTIONS(3573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(3575), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3530), 2, + ACTIONS(3577), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3532), 2, + ACTIONS(3579), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3514), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3017), 6, + ACTIONS(3090), 3, aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ, sym_identifier, - ACTIONS(2991), 18, + ACTIONS(3561), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3088), 15, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -125344,51 +126265,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [48092] = 16, + [47754] = 18, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3435), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - ACTIONS(3524), 1, + ACTIONS(3567), 1, + anon_sym_PIPE, + ACTIONS(3569), 1, + anon_sym_CARET, + ACTIONS(3571), 1, anon_sym_AMP, - STATE(1225), 1, + STATE(1250), 1, sym_argument_list, - ACTIONS(3437), 2, + ACTIONS(3458), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3439), 2, + ACTIONS(3460), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3512), 2, + ACTIONS(3559), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3526), 2, + ACTIONS(3573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(3575), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3530), 2, + ACTIONS(3577), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3532), 2, + ACTIONS(3579), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3514), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3017), 5, + ACTIONS(3028), 3, aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_EQ, sym_identifier, - ACTIONS(2991), 18, + ACTIONS(3561), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3020), 18, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -125407,52 +126330,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [48171] = 17, + [47837] = 17, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3435), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - ACTIONS(3522), 1, + ACTIONS(3569), 1, anon_sym_CARET, - ACTIONS(3524), 1, + ACTIONS(3571), 1, anon_sym_AMP, - STATE(1225), 1, + STATE(1250), 1, sym_argument_list, - ACTIONS(3437), 2, + ACTIONS(3458), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3439), 2, + ACTIONS(3460), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3512), 2, + ACTIONS(3559), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3526), 2, + ACTIONS(3573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(3575), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3530), 2, + ACTIONS(3577), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3532), 2, + ACTIONS(3579), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3514), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3017), 4, + ACTIONS(3028), 4, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_EQ, sym_identifier, - ACTIONS(2991), 18, + ACTIONS(3020), 18, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -125471,37 +126394,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [48252] = 8, + [47918] = 16, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3435), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - STATE(1225), 1, + ACTIONS(3571), 1, + anon_sym_AMP, + STATE(1250), 1, sym_argument_list, - ACTIONS(3439), 2, + ACTIONS(3458), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3460), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3033), 15, - aux_sym_preproc_elif_token1, + ACTIONS(3559), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3573), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3575), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3577), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3579), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3028), 5, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(3031), 24, + ACTIONS(3020), 18, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -125509,10 +126446,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -125524,55 +126457,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [48315] = 18, + [47997] = 15, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3435), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - ACTIONS(3520), 1, - anon_sym_PIPE, - ACTIONS(3522), 1, - anon_sym_CARET, - ACTIONS(3524), 1, - anon_sym_AMP, - STATE(1225), 1, + STATE(1250), 1, sym_argument_list, - ACTIONS(3437), 2, + ACTIONS(3458), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3439), 2, + ACTIONS(3460), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3512), 2, + ACTIONS(3559), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3526), 2, + ACTIONS(3573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(3575), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3530), 2, + ACTIONS(3577), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3532), 2, + ACTIONS(3579), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3017), 3, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - sym_identifier, - ACTIONS(3514), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 18, + ACTIONS(3028), 6, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + sym_identifier, + ACTIONS(3020), 18, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -125591,107 +126519,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [48398] = 19, + [48074] = 14, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3435), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_AMP_AMP, - ACTIONS(3520), 1, - anon_sym_PIPE, - ACTIONS(3522), 1, - anon_sym_CARET, - ACTIONS(3524), 1, - anon_sym_AMP, - STATE(1225), 1, + STATE(1250), 1, sym_argument_list, - ACTIONS(3437), 2, + ACTIONS(3458), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3439), 2, + ACTIONS(3460), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3512), 2, + ACTIONS(3559), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3526), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(3575), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3530), 2, + ACTIONS(3577), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3532), 2, + ACTIONS(3579), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3017), 3, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - sym_identifier, - ACTIONS(3514), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 17, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [48483] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3210), 15, + ACTIONS(3028), 6, aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(3208), 28, + ACTIONS(3020), 20, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -125703,45 +126580,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [48537] = 4, + [48149] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3188), 15, - aux_sym_preproc_elif_token1, + ACTIONS(3454), 1, + anon_sym_LPAREN2, + ACTIONS(3456), 1, + anon_sym_LBRACK, + STATE(1250), 1, + sym_argument_list, + ACTIONS(3458), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3460), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3559), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3579), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3028), 8, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(3186), 28, + ACTIONS(3020), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -125753,71 +126639,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [48591] = 3, - ACTIONS(5), 2, + [48220] = 11, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3206), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3204), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3454), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(3456), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + STATE(1250), 1, + sym_argument_list, + ACTIONS(3458), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3460), 2, + anon_sym_DOT, anon_sym_DASH_GT, - [48643] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3172), 15, - aux_sym_preproc_elif_token1, + ACTIONS(3559), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3028), 10, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -125827,20 +126674,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(3170), 28, + ACTIONS(3020), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -125852,15 +126697,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [48289] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2928), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2926), 40, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [48344] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3607), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3605), 40, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [48399] = 9, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3454), 1, + anon_sym_LPAREN2, + ACTIONS(3456), 1, + anon_sym_LBRACK, + STATE(1250), 1, + sym_argument_list, + ACTIONS(3458), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3460), 2, anon_sym_DOT, anon_sym_DASH_GT, - [48697] = 3, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3176), 14, + ACTIONS(3117), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -125874,23 +126831,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3174), 29, - anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(3115), 22, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -125902,15 +126855,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [48749] = 4, + [48464] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3180), 15, + ACTIONS(3161), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -125926,7 +126876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(3178), 28, + ACTIONS(3159), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -125955,11 +126905,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [48803] = 3, + [48518] = 3, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3214), 14, + ACTIONS(3225), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -125974,7 +126924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(3212), 29, + ACTIONS(3223), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -126004,43 +126954,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [48855] = 11, + [48570] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3588), 1, - anon_sym_LBRACE, - ACTIONS(3590), 1, - anon_sym___aligned, - STATE(1313), 1, - sym_field_declaration_list, - STATE(1319), 1, - sym_attribute_specifier, - ACTIONS(3582), 2, + ACTIONS(2972), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2970), 40, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3584), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(3586), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2970), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2968), 25, - anon_sym___extension__, - anon_sym_extern, anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -126061,11 +127004,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [48923] = 3, + [48624] = 3, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3148), 14, + ACTIONS(3137), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -126080,7 +127023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(3146), 29, + ACTIONS(3135), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -126110,11 +127053,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [48975] = 3, - ACTIONS(5), 2, + [48676] = 4, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3210), 14, + ACTIONS(3191), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -126128,11 +127073,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3208), 29, - anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(3189), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126140,11 +127087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -126158,13 +127101,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT, anon_sym_DASH_GT, - [49027] = 4, + [48730] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3226), 15, + ACTIONS(3233), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -126180,7 +127124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(3224), 28, + ACTIONS(3231), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -126209,11 +127153,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [49081] = 3, - ACTIONS(5), 2, + [48784] = 4, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3168), 14, + ACTIONS(3187), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -126227,11 +127173,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3166), 29, - anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(3185), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126239,11 +127187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -126257,13 +127201,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT, anon_sym_DASH_GT, - [49133] = 4, + [48838] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3130), 15, + ACTIONS(2946), 1, + anon_sym_EQ, + ACTIONS(2948), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1991), 14, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -126277,9 +127235,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, sym_identifier, - ACTIONS(3128), 28, + ACTIONS(1985), 18, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -126294,26 +127251,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [49187] = 4, + [48896] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3094), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(3092), 40, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [48950] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3222), 15, + ACTIONS(3137), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -126329,7 +127326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(3220), 28, + ACTIONS(3135), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -126358,11 +127355,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [49241] = 3, + [49004] = 3, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(1962), 14, + ACTIONS(3243), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -126377,7 +127374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(1956), 29, + ACTIONS(3241), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -126407,13 +127404,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [49293] = 4, - ACTIONS(3), 1, + [49056] = 3, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(1962), 15, - aux_sym_preproc_elif_token1, + ACTIONS(1991), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -126427,13 +127422,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - sym_identifier, - ACTIONS(1956), 28, + anon_sym_DOT, + ACTIONS(1985), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126441,7 +127434,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -126455,14 +127452,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, anon_sym_DASH_GT, - [49347] = 4, + [49108] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3148), 15, + ACTIONS(3287), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -126478,7 +127474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(3146), 28, + ACTIONS(3285), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -126507,62 +127503,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [49401] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2962), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(2960), 40, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym___declspec, - anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [49455] = 4, + [49162] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3114), 15, + ACTIONS(3255), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -126578,7 +127524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(3112), 28, + ACTIONS(3253), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -126607,13 +127553,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [49509] = 4, - ACTIONS(3), 1, + [49216] = 3, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(3126), 15, - aux_sym_preproc_elif_token1, + ACTIONS(3255), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -126627,13 +127571,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - sym_identifier, - ACTIONS(3124), 28, + anon_sym_DOT, + ACTIONS(3253), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126641,7 +127583,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -126655,14 +127601,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, anon_sym_DASH_GT, - [49563] = 4, + [49268] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1962), 15, + ACTIONS(3267), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -126678,7 +127623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(1956), 28, + ACTIONS(3265), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -126707,12 +127652,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [49617] = 4, + [49322] = 11, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3258), 15, + ACTIONS(3615), 1, + anon_sym_LBRACE, + ACTIONS(3617), 1, + anon_sym___aligned, + STATE(1321), 1, + sym_field_declaration_list, + STATE(1349), 1, + sym_attribute_specifier, + ACTIONS(3609), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3611), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3613), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2952), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2950), 25, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [49390] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3145), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -126728,7 +127730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(3256), 28, + ACTIONS(3143), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -126757,11 +127759,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [49671] = 3, + [49444] = 3, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3192), 14, + ACTIONS(3153), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -126776,7 +127778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(3190), 29, + ACTIONS(3151), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -126806,11 +127808,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [49723] = 3, + [49496] = 3, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3250), 14, + ACTIONS(3145), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -126825,7 +127827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(3248), 29, + ACTIONS(3143), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -126855,62 +127857,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [49775] = 4, + [49548] = 11, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3214), 15, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - sym_identifier, - ACTIONS(3212), 28, + ACTIONS(3615), 1, + anon_sym_LBRACE, + ACTIONS(3619), 1, + anon_sym___aligned, + STATE(1300), 1, + sym_field_declaration_list, + STATE(1333), 1, + sym_attribute_specifier, + ACTIONS(3609), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3611), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3613), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2986), 6, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2984), 25, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [49829] = 4, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [49616] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3206), 15, + ACTIONS(3243), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -126926,7 +127935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(3204), 28, + ACTIONS(3241), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -126955,13 +127964,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [49883] = 4, - ACTIONS(3), 1, + [49670] = 3, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(3134), 15, - aux_sym_preproc_elif_token1, + ACTIONS(3259), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -126975,13 +127982,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - sym_identifier, - ACTIONS(3132), 28, + anon_sym_DOT, + ACTIONS(3257), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126989,7 +127994,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -127003,64 +128012,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, anon_sym_DASH_GT, - [49937] = 4, + [49722] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3236), 15, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2058), 3, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_LBRACK_LBRACK, + ACTIONS(2056), 40, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - ACTIONS(3234), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [49991] = 4, + [49776] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3192), 15, + ACTIONS(3259), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -127076,7 +128084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(3190), 28, + ACTIONS(3257), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -127105,11 +128113,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [50045] = 3, - ACTIONS(5), 2, + [49830] = 4, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3184), 14, + ACTIONS(3173), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -127123,11 +128133,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3182), 29, - anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(3171), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127135,11 +128147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -127153,12 +128161,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT, anon_sym_DASH_GT, - [50097] = 3, + [49884] = 3, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3236), 14, + ACTIONS(1991), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -127173,7 +128182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(3234), 29, + ACTIONS(1985), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -127203,66 +128212,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [50149] = 8, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3459), 1, - anon_sym_LPAREN2, - STATE(1156), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1967), 2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(3592), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3462), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1954), 33, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [50211] = 4, + [49936] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3246), 15, + ACTIONS(1991), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -127278,7 +128233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(3244), 28, + ACTIONS(1985), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -127307,13 +128262,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [50265] = 4, - ACTIONS(3), 1, + [49990] = 3, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(3176), 15, - aux_sym_preproc_elif_token1, + ACTIONS(3195), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -127327,13 +128280,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - sym_identifier, - ACTIONS(3174), 28, + anon_sym_DOT, + ACTIONS(3193), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127341,7 +128292,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -127355,13 +128310,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, anon_sym_DASH_GT, - [50319] = 3, + [50042] = 3, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3202), 14, + ACTIONS(3157), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -127376,7 +128330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(3200), 29, + ACTIONS(3155), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -127406,11 +128360,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [50371] = 3, - ACTIONS(5), 2, + [50094] = 4, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3164), 14, + ACTIONS(3169), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -127424,11 +128380,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3162), 29, - anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(3167), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127436,11 +128394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -127454,12 +128408,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT, anon_sym_DASH_GT, - [50423] = 3, + [50148] = 3, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3122), 14, + ACTIONS(3191), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -127474,7 +128429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(3120), 29, + ACTIONS(3189), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -127504,63 +128459,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [50475] = 6, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2913), 1, - anon_sym_EQ, - ACTIONS(2915), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1962), 14, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_identifier, - ACTIONS(1956), 18, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [50533] = 3, + [50200] = 3, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3188), 14, + ACTIONS(3199), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -127575,7 +128478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(3186), 29, + ACTIONS(3197), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -127605,12 +128508,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [50585] = 4, + [50252] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3164), 15, + ACTIONS(3247), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -127626,7 +128529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(3162), 28, + ACTIONS(3245), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -127655,13 +128558,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [50639] = 4, + [50306] = 11, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3108), 15, - aux_sym_preproc_elif_token1, + ACTIONS(3630), 1, + anon_sym_LBRACE, + ACTIONS(3632), 1, + anon_sym_COLON, + STATE(1350), 1, + sym_enumerator_list, + STATE(1398), 1, + sym_attribute_specifier, + ACTIONS(3621), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3624), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3627), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2992), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2990), 25, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [50374] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3229), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -127675,13 +128633,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - sym_identifier, - ACTIONS(3106), 28, + anon_sym_DOT, + ACTIONS(3227), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127689,7 +128645,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -127703,13 +128663,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, anon_sym_DASH_GT, - [50693] = 3, - ACTIONS(5), 2, + [50426] = 4, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3126), 14, + ACTIONS(3141), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -127723,11 +128684,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3124), 29, - anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(3139), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127735,11 +128698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -127753,42 +128712,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT, anon_sym_DASH_GT, - [50745] = 9, + [50480] = 11, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3598), 1, - anon_sym_LPAREN2, - ACTIONS(3602), 1, - anon_sym_LBRACK, - STATE(1156), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1967), 2, - anon_sym_COMMA, - anon_sym_STAR, - ACTIONS(3595), 2, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - ACTIONS(3462), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1954), 32, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(3615), 1, + anon_sym_LBRACE, + ACTIONS(3634), 1, + anon_sym___aligned, + STATE(1330), 1, + sym_field_declaration_list, + STATE(1340), 1, + sym_attribute_specifier, + ACTIONS(3609), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3611), 2, anon_sym___scanf, anon_sym___printf, + ACTIONS(3613), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, + ACTIONS(2966), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2964), 25, + anon_sym___extension__, + anon_sym_extern, anon_sym___declspec, anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -127809,12 +128771,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [50809] = 4, + [50548] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3202), 15, + ACTIONS(3221), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -127830,7 +128792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(3200), 28, + ACTIONS(3219), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -127859,12 +128821,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [50863] = 4, + [50602] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3168), 15, + ACTIONS(1991), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -127880,7 +128842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(3166), 28, + ACTIONS(1985), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -127909,12 +128871,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [50917] = 4, + [50656] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3184), 15, + ACTIONS(3195), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -127930,7 +128892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(3182), 28, + ACTIONS(3193), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -127959,16 +128921,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [50971] = 4, + [50710] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3173), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(3171), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [50762] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2015), 3, + ACTIONS(1573), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2013), 40, + ACTIONS(1571), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -128009,12 +129020,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [51025] = 4, + [50816] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3250), 15, + ACTIONS(3225), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -128030,7 +129041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(3248), 28, + ACTIONS(3223), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -128059,11 +129070,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [51079] = 3, - ACTIONS(5), 2, + [50870] = 4, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3222), 14, + ACTIONS(3277), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -128077,11 +129090,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3220), 29, - anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(3275), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128089,11 +129104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -128107,14 +129118,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT, anon_sym_DASH_GT, - [51131] = 4, - ACTIONS(3), 1, + [50924] = 3, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(3218), 15, - aux_sym_preproc_elif_token1, + ACTIONS(3277), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -128128,13 +129138,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - sym_identifier, - ACTIONS(3216), 28, + anon_sym_DOT, + ACTIONS(3275), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128142,7 +129150,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -128156,13 +129168,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, anon_sym_DASH_GT, - [51185] = 3, - ACTIONS(5), 2, + [50976] = 8, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3130), 14, + ACTIONS(3472), 1, + anon_sym_LPAREN2, + STATE(1134), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1996), 2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(3636), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2217), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1983), 33, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [51038] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3203), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -128176,11 +129243,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3128), 29, - anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(3201), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128188,11 +129257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -128206,12 +129271,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT, anon_sym_DASH_GT, - [51237] = 3, + [51092] = 3, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3144), 14, + ACTIONS(3187), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -128226,7 +129292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(3142), 29, + ACTIONS(3185), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -128256,100 +129322,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [51289] = 11, + [51144] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3614), 1, - anon_sym_LBRACE, - ACTIONS(3616), 1, - anon_sym_COLON, - STATE(1338), 1, - sym_enumerator_list, - STATE(1375), 1, - sym_attribute_specifier, - ACTIONS(3605), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3608), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3611), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(2931), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3642), 1, anon_sym_LPAREN2, + ACTIONS(3646), 1, + anon_sym_LBRACK, + STATE(1134), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1996), 2, + anon_sym_COMMA, anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3639), 2, + anon_sym_RPAREN, anon_sym_LBRACK_LBRACK, - ACTIONS(2929), 25, + ACTIONS(2217), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1983), 32, anon_sym___extension__, anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [51357] = 11, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3588), 1, - anon_sym_LBRACE, - ACTIONS(3618), 1, - anon_sym___aligned, - STATE(1314), 1, - sym_field_declaration_list, - STATE(1331), 1, - sym_attribute_specifier, - ACTIONS(3582), 2, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3584), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(3586), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2976), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2974), 25, - anon_sym___extension__, - anon_sym_extern, anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -128370,11 +129377,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [51425] = 3, + [51208] = 3, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3258), 14, + ACTIONS(3267), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -128389,7 +129396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(3256), 29, + ACTIONS(3265), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -128419,13 +129426,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [51477] = 4, - ACTIONS(3), 1, + [51260] = 3, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(3144), 15, - aux_sym_preproc_elif_token1, + ACTIONS(3161), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -128439,13 +129444,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - sym_identifier, - ACTIONS(3142), 28, + anon_sym_DOT, + ACTIONS(3159), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128453,7 +129456,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -128467,14 +129474,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, anon_sym_DASH_GT, - [51531] = 4, + [51312] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3118), 15, + ACTIONS(3157), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -128490,7 +129496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(3116), 28, + ACTIONS(3155), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -128519,61 +129525,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [51585] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3088), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(3086), 40, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym___declspec, - anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [51639] = 3, + [51366] = 3, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3226), 14, + ACTIONS(3221), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -128588,7 +129544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(3224), 29, + ACTIONS(3219), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -128618,11 +129574,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [51691] = 3, + [51418] = 3, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3118), 14, + ACTIONS(3183), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -128637,7 +129593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(3116), 29, + ACTIONS(3181), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -128667,11 +129623,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [51743] = 3, - ACTIONS(5), 2, + [51470] = 4, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3108), 14, + ACTIONS(3149), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -128685,11 +129643,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3106), 29, - anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(3147), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128697,11 +129657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -128715,12 +129671,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT, anon_sym_DASH_GT, - [51795] = 3, - ACTIONS(5), 2, + [51524] = 4, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3254), 14, + ACTIONS(3199), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -128734,11 +129693,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3252), 29, - anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(3197), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128746,11 +129707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -128764,14 +129721,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT, anon_sym_DASH_GT, - [51847] = 4, - ACTIONS(3), 1, + [51578] = 3, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(3122), 15, - aux_sym_preproc_elif_token1, + ACTIONS(3203), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -128785,13 +129741,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - sym_identifier, - ACTIONS(3120), 28, + anon_sym_DOT, + ACTIONS(3201), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128799,7 +129753,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -128813,18 +129771,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, anon_sym_DASH_GT, - [51901] = 4, + [51630] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3096), 3, + ACTIONS(2062), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(3094), 40, + ACTIONS(2060), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -128865,16 +129822,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [51955] = 4, + [51684] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2859), 15, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_identifier, + ACTIONS(2861), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [51738] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2966), 3, + ACTIONS(3066), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2964), 40, + ACTIONS(3064), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -128915,11 +129922,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [52009] = 3, + [51792] = 3, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(1962), 14, + ACTIONS(3287), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -128934,7 +129941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(1956), 29, + ACTIONS(3285), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -128964,68 +129971,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [52061] = 11, + [51844] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3588), 1, - anon_sym_LBRACE, - ACTIONS(3620), 1, - anon_sym___aligned, - STATE(1316), 1, - sym_field_declaration_list, - STATE(1334), 1, - sym_attribute_specifier, - ACTIONS(3582), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3584), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3586), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(2948), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2946), 25, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [52129] = 3, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3218), 14, + ACTIONS(3263), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -129039,11 +129991,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3216), 29, - anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(3261), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129051,11 +130005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -129069,12 +130019,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT, anon_sym_DASH_GT, - [52181] = 3, + [51898] = 3, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3180), 14, + ACTIONS(3247), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -129089,7 +130040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(3178), 29, + ACTIONS(3245), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -129119,12 +130070,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [52233] = 4, + [51950] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3254), 15, + ACTIONS(3251), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -129140,7 +130091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(3252), 28, + ACTIONS(3249), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -129169,12 +130120,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [52287] = 4, + [52004] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2806), 15, + ACTIONS(3165), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -129190,7 +130141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(2808), 28, + ACTIONS(3163), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -129219,79 +130170,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [52341] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2011), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(2009), 40, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym___declspec, - anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [52395] = 9, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - ACTIONS(3626), 1, - anon_sym_LBRACK, - STATE(1245), 1, - sym_argument_list, + [52058] = 3, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3624), 3, + ACTIONS(3149), 14, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3017), 10, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -129300,9 +130188,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2991), 22, + anon_sym_DOT, + ACTIONS(3147), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -129311,6 +130202,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -129323,11 +130216,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [52458] = 3, - ACTIONS(5), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [52110] = 4, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3134), 13, + ACTIONS(3229), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -129341,9 +130239,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3132), 29, + sym_identifier, + ACTIONS(3227), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129351,11 +130253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -129371,119 +130269,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [52509] = 18, - ACTIONS(3017), 1, - anon_sym_EQ, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3634), 1, - anon_sym_AMP_AMP, - ACTIONS(3636), 1, - anon_sym_PIPE, - ACTIONS(3638), 1, - anon_sym_CARET, - ACTIONS(3640), 1, - anon_sym_AMP, - STATE(1245), 1, - sym_argument_list, + [52164] = 3, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3632), 2, + ACTIONS(3141), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3642), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3644), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3646), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3648), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3624), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [52590] = 17, - ACTIONS(3017), 1, - anon_sym_EQ, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3636), 1, anon_sym_PIPE, - ACTIONS(3638), 1, anon_sym_CARET, - ACTIONS(3640), 1, anon_sym_AMP, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3632), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3642), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3644), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3646), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3648), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2991), 18, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(3139), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -129496,56 +130315,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [52669] = 16, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3638), 1, - anon_sym_CARET, - ACTIONS(3640), 1, - anon_sym_AMP, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3017), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, - anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3632), 2, + [52216] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3153), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3642), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3644), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3646), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3648), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2991), 18, + anon_sym_EQ, + sym_identifier, + ACTIONS(3151), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -129557,55 +130364,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [52746] = 15, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3640), 1, - anon_sym_AMP, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3632), 2, + [52270] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3183), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3642), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3644), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3646), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3648), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3017), 3, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_EQ, - ACTIONS(3624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2991), 18, + sym_identifier, + ACTIONS(3181), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -129617,53 +130414,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [52821] = 14, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - ACTIONS(3626), 1, - anon_sym_LBRACK, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3632), 2, + [52324] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3263), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3642), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3644), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3646), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3648), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3624), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3017), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2991), 18, + anon_sym_DOT, + ACTIONS(3261), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -129676,50 +130464,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [52894] = 13, - ACTIONS(3622), 1, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [52376] = 11, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3632), 2, + ACTIONS(3651), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3644), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3646), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3648), 2, + ACTIONS(3655), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3624), 3, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3653), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3017), 4, + ACTIONS(3028), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, anon_sym_EQ, - ACTIONS(2991), 20, + ACTIONS(3020), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, @@ -129734,40 +130523,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [52965] = 11, - ACTIONS(3622), 1, + [52443] = 8, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3632), 2, + ACTIONS(3117), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3648), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3624), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3017), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2991), 22, + ACTIONS(3115), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -129790,51 +130576,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [53032] = 10, - ACTIONS(3622), 1, + [52504] = 20, + ACTIONS(3056), 1, + anon_sym_EQ, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - STATE(1245), 1, + ACTIONS(3663), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3665), 1, + anon_sym_AMP_AMP, + ACTIONS(3667), 1, + anon_sym_PIPE, + ACTIONS(3669), 1, + anon_sym_CARET, + ACTIONS(3671), 1, + anon_sym_AMP, + ACTIONS(3679), 1, + anon_sym_QMARK, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3651), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3655), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3632), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3624), 3, + ACTIONS(3673), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3675), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3677), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3653), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3017), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2991), 22, + ACTIONS(3044), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -129845,64 +130641,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [53097] = 22, + [52589] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(2107), 1, + ACTIONS(2130), 1, anon_sym_LPAREN2, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_STAR, - ACTIONS(3650), 1, + ACTIONS(3681), 1, sym_identifier, - ACTIONS(3658), 1, + ACTIONS(3689), 1, anon_sym_LBRACK, - STATE(1597), 1, + STATE(1620), 1, sym_ms_unaligned_ptr_modifier, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(2110), 1, + STATE(2132), 1, sym__declarator, - STATE(2318), 1, + STATE(2370), 1, sym__abstract_declarator, - STATE(2375), 1, + STATE(2397), 1, sym_parameter_list, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3652), 2, + ACTIONS(3683), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(3656), 2, + ACTIONS(3687), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1443), 2, + STATE(1457), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1482), 2, + STATE(1500), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(3654), 3, + ACTIONS(3685), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(2380), 4, + STATE(2396), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(2209), 5, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -129912,11 +130708,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [53186] = 3, + [52678] = 8, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + ACTIONS(3657), 1, + anon_sym_LBRACK, + STATE(1227), 1, + sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3172), 13, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3121), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -129930,10 +130738,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3170), 29, + ACTIONS(3119), 22, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -129941,9 +130748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -129956,35 +130761,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [53237] = 4, + [52739] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3662), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3660), 41, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(2130), 1, + anon_sym_LPAREN2, + ACTIONS(2132), 1, + anon_sym_STAR, + ACTIONS(3681), 1, + sym_identifier, + ACTIONS(3689), 1, + anon_sym_LBRACK, + STATE(1620), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1695), 1, + sym_alignas_qualifier, + STATE(2134), 1, + sym__declarator, + STATE(2378), 1, + sym__abstract_declarator, + STATE(2397), 1, + sym_parameter_list, + STATE(3453), 1, + sym_ms_based_modifier, + ACTIONS(2034), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3687), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3691), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1273), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1456), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3685), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(2396), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(2220), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(2030), 9, anon_sym___extension__, - anon_sym_extern, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [52828] = 10, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACE, + STATE(1332), 1, + sym_enumerator_list, + STATE(1405), 1, + sym_attribute_specifier, + ACTIONS(3693), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3696), 2, anon_sym___scanf, anon_sym___printf, + ACTIONS(3699), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, + ACTIONS(3098), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3096), 25, + anon_sym___extension__, + anon_sym_extern, anon_sym___declspec, - anon_sym___init, - anon_sym___exit, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -130004,33 +130882,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [53290] = 8, - ACTIONS(3622), 1, + [52893] = 9, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3047), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3653), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3028), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -130039,7 +130914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3045), 22, + ACTIONS(3020), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -130062,65 +130937,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [53351] = 9, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3595), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3598), 1, - anon_sym_LPAREN2, - ACTIONS(3664), 1, - anon_sym_LBRACK, - STATE(1156), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1967), 2, - anon_sym_STAR, - anon_sym_SEMI, - ACTIONS(3462), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1954), 32, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [53414] = 3, + [52956] = 3, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3246), 13, + ACTIONS(3233), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -130134,7 +130955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3244), 29, + ACTIONS(3231), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -130164,45 +130985,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [53465] = 8, - ACTIONS(3622), 1, + [53007] = 18, + ACTIONS(3028), 1, + anon_sym_EQ, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - STATE(1245), 1, + ACTIONS(3665), 1, + anon_sym_AMP_AMP, + ACTIONS(3667), 1, + anon_sym_PIPE, + ACTIONS(3669), 1, + anon_sym_CARET, + ACTIONS(3671), 1, + anon_sym_AMP, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3651), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3655), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3017), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3673), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3675), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3677), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3653), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2991), 22, + ACTIONS(3020), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, @@ -130217,61 +131048,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [53526] = 20, - ACTIONS(3084), 1, + [53088] = 17, + ACTIONS(3028), 1, anon_sym_EQ, - ACTIONS(3622), 1, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3634), 1, - anon_sym_AMP_AMP, - ACTIONS(3636), 1, + ACTIONS(3667), 1, anon_sym_PIPE, - ACTIONS(3638), 1, + ACTIONS(3669), 1, anon_sym_CARET, - ACTIONS(3640), 1, + ACTIONS(3671), 1, anon_sym_AMP, - ACTIONS(3666), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3668), 1, - anon_sym_QMARK, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3651), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3655), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3632), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3642), 2, + ACTIONS(3673), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3644), 2, + ACTIONS(3675), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3646), 2, + ACTIONS(3677), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3648), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3624), 3, + ACTIONS(3653), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3082), 15, + ACTIONS(3020), 18, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -130282,45 +131110,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [53611] = 8, - ACTIONS(3622), 1, + [53167] = 16, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - STATE(1245), 1, + ACTIONS(3669), 1, + anon_sym_CARET, + ACTIONS(3671), 1, + anon_sym_AMP, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3028), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(3651), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3655), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3029), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3673), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3675), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3677), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3653), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(3027), 22, + ACTIONS(3020), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, @@ -130335,128 +131171,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [53672] = 22, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(2107), 1, - anon_sym_LPAREN2, - ACTIONS(2109), 1, - anon_sym_STAR, - ACTIONS(3650), 1, - sym_identifier, - ACTIONS(3658), 1, - anon_sym_LBRACK, - STATE(1597), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1671), 1, - sym_alignas_qualifier, - STATE(2081), 1, - sym__declarator, - STATE(2356), 1, - sym__abstract_declarator, - STATE(2375), 1, - sym_parameter_list, - STATE(3337), 1, - sym_ms_based_modifier, - ACTIONS(1999), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(3656), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3670), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1267), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1445), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3654), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(2380), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(2209), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(1995), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [53761] = 20, - ACTIONS(3074), 1, - anon_sym_EQ, - ACTIONS(3622), 1, + [53244] = 15, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3634), 1, - anon_sym_AMP_AMP, - ACTIONS(3636), 1, - anon_sym_PIPE, - ACTIONS(3638), 1, - anon_sym_CARET, - ACTIONS(3640), 1, + ACTIONS(3671), 1, anon_sym_AMP, - ACTIONS(3666), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3668), 1, - anon_sym_QMARK, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3651), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3655), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3632), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3642), 2, + ACTIONS(3673), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3644), 2, + ACTIONS(3675), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3646), 2, + ACTIONS(3677), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3648), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3624), 3, + ACTIONS(3028), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(3653), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3070), 15, + ACTIONS(3020), 18, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -130467,42 +131231,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [53846] = 7, - ACTIONS(3622), 1, + [53319] = 14, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3630), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3033), 13, + ACTIONS(3651), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3655), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3673), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3675), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3677), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3653), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3028), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3031), 24, + ACTIONS(3020), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, @@ -130517,168 +131290,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [53905] = 10, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3672), 1, - anon_sym_LBRACE, - STATE(1341), 1, - sym_field_declaration_list, - STATE(1381), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(37), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(39), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3041), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + [53392] = 13, + ACTIONS(3649), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3039), 25, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, + ACTIONS(3657), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [53970] = 10, - ACTIONS(3), 1, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(3614), 1, - anon_sym_LBRACE, - STATE(1340), 1, - sym_enumerator_list, - STATE(1362), 1, - sym_attribute_specifier, - ACTIONS(3674), 2, - anon_sym___attribute__, - anon_sym___must_hold, + ACTIONS(3651), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3655), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3675), 2, + anon_sym_GT, + anon_sym_LT, ACTIONS(3677), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3680), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3059), 6, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3653), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3028), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(3020), 20, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3057), 25, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [54035] = 20, - ACTIONS(3080), 1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [53463] = 20, + ACTIONS(3062), 1, anon_sym_EQ, - ACTIONS(3622), 1, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3634), 1, + ACTIONS(3663), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3665), 1, anon_sym_AMP_AMP, - ACTIONS(3636), 1, + ACTIONS(3667), 1, anon_sym_PIPE, - ACTIONS(3638), 1, + ACTIONS(3669), 1, anon_sym_CARET, - ACTIONS(3640), 1, + ACTIONS(3671), 1, anon_sym_AMP, - ACTIONS(3666), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3668), 1, + ACTIONS(3679), 1, anon_sym_QMARK, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3651), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3655), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3632), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3642), 2, + ACTIONS(3673), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3644), 2, + ACTIONS(3675), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3646), 2, + ACTIONS(3677), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3648), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3624), 3, + ACTIONS(3653), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3078), 15, + ACTIONS(3060), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -130694,23 +131413,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [54120] = 8, - ACTIONS(3622), 1, + [53548] = 10, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3651), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3055), 13, + ACTIONS(3653), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3028), 8, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(3020), 22, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [53613] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3169), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -130724,9 +131486,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3053), 22, + ACTIONS(3167), 29, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -130734,7 +131497,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -130747,78 +131512,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [54181] = 10, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [53664] = 3, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(3672), 1, - anon_sym_LBRACE, - STATE(1320), 1, - sym_field_declaration_list, - STATE(1377), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(37), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(39), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3092), 6, + ACTIONS(3251), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(3249), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3090), 25, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [54246] = 8, - ACTIONS(3622), 1, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [53715] = 8, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3051), 13, + ACTIONS(3078), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -130832,7 +131594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3049), 22, + ACTIONS(3076), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -130855,11 +131617,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [54307] = 3, + [53776] = 7, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + ACTIONS(3657), 1, + anon_sym_LBRACK, + STATE(1227), 1, + sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3114), 13, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3074), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -130873,10 +131644,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3112), 29, + ACTIONS(3072), 24, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -130884,9 +131654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -130901,114 +131669,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + [53835] = 20, + ACTIONS(3090), 1, + anon_sym_EQ, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3663), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3665), 1, + anon_sym_AMP_AMP, + ACTIONS(3667), 1, + anon_sym_PIPE, + ACTIONS(3669), 1, + anon_sym_CARET, + ACTIONS(3671), 1, + anon_sym_AMP, + ACTIONS(3679), 1, + anon_sym_QMARK, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3651), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3655), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - [54358] = 4, - ACTIONS(3), 1, + ACTIONS(3673), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3675), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3677), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3653), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3088), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [53920] = 8, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + ACTIONS(3657), 1, + anon_sym_LBRACK, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(1236), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1234), 39, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [54410] = 5, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3028), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(3020), 22, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [53981] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2962), 1, + ACTIONS(3639), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3683), 1, - anon_sym_typedef, - ACTIONS(2960), 39, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym___declspec, + ACTIONS(3642), 1, + anon_sym_LPAREN2, + ACTIONS(3702), 1, + anon_sym_LBRACK, + STATE(1134), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1996), 2, + anon_sym_STAR, + anon_sym_SEMI, + ACTIONS(2217), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [54464] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1236), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1234), 39, + ACTIONS(1983), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -131020,10 +131820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -131043,131 +131840,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [54516] = 4, + [54044] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1236), 2, - anon_sym_LBRACK_LBRACK, + ACTIONS(3704), 1, anon_sym_LBRACE, - ACTIONS(1234), 39, - anon_sym___extension__, - anon_sym_extern, + STATE(1355), 1, + sym_field_declaration_list, + STATE(1363), 1, + sym_attribute_specifier, + ACTIONS(35), 2, anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [54568] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1252), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1250), 39, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, + ACTIONS(37), 2, anon_sym___scanf, anon_sym___printf, + ACTIONS(39), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [54620] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1252), 2, + ACTIONS(3129), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1250), 39, + ACTIONS(3127), 25, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -131187,18 +131895,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [54672] = 5, - ACTIONS(1971), 1, - anon_sym_EQ, + [54109] = 3, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(1975), 10, + ACTIONS(3165), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(3163), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -131209,7 +131940,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1962), 12, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [54160] = 8, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + ACTIONS(3657), 1, + anon_sym_LBRACK, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3070), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -131222,10 +131973,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1956), 18, + anon_sym_EQ, + ACTIONS(3068), 22, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -131234,41 +131985,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [54726] = 9, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [54221] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3685), 1, - anon_sym___aligned, - STATE(1342), 1, + ACTIONS(3704), 1, + anon_sym_LBRACE, + STATE(1338), 1, + sym_field_declaration_list, + STATE(1376), 1, sym_attribute_specifier, - ACTIONS(3582), 2, + ACTIONS(35), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(3584), 2, + ACTIONS(37), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(3586), 4, + ACTIONS(39), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3152), 6, + ACTIONS(3111), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3150), 25, + ACTIONS(3109), 25, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -131294,15 +132052,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [54788] = 4, + [54286] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3689), 2, + ACTIONS(3708), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(3687), 39, + ACTIONS(3706), 41, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -131314,6 +132071,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym___declspec, + anon_sym___init, + anon_sym___exit, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -131342,15 +132101,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [54840] = 4, + [54339] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1296), 2, + ACTIONS(1573), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1294), 39, + ACTIONS(3710), 1, + anon_sym_typedef, + ACTIONS(1571), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -131390,30 +132150,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [54892] = 4, + [54393] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1276), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1274), 39, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(3712), 1, + anon_sym___aligned, + STATE(1351), 1, + sym_attribute_specifier, + ACTIONS(3609), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3611), 2, anon_sym___scanf, anon_sym___printf, + ACTIONS(3613), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, + ACTIONS(3281), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3279), 25, + anon_sym___extension__, + anon_sym_extern, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -131433,20 +132202,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [54944] = 4, + [54455] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1296), 2, + ACTIONS(1380), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1294), 39, + ACTIONS(1378), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -131486,15 +132251,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [54996] = 4, + [54507] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1296), 2, + ACTIONS(1376), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1294), 39, + ACTIONS(1374), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -131534,15 +132299,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [55048] = 4, + [54559] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1336), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1274), 39, + ACTIONS(1334), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -131582,34 +132347,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [55100] = 9, + [54611] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3691), 1, + ACTIONS(3714), 1, anon_sym___aligned, - STATE(1337), 1, + STATE(1335), 1, sym_attribute_specifier, - ACTIONS(3582), 2, + ACTIONS(3609), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(3584), 2, + ACTIONS(3611), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(3586), 4, + ACTIONS(3613), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3138), 6, + ACTIONS(3209), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3136), 25, + ACTIONS(3207), 25, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -131635,15 +132400,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [55162] = 4, + [54673] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1573), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1274), 39, + ACTIONS(3716), 1, + anon_sym_typedef, + ACTIONS(1571), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -131683,15 +132449,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [55214] = 4, + [54727] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1244), 2, + ACTIONS(1573), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1242), 39, + ACTIONS(3718), 1, + anon_sym_typedef, + ACTIONS(1571), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -131731,16 +132498,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [55266] = 5, + [54781] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2962), 1, + ACTIONS(1320), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3693), 1, - anon_sym_typedef, - ACTIONS(2960), 39, + anon_sym_LBRACE, + ACTIONS(1318), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -131780,15 +132546,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [55320] = 4, + [54833] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1248), 2, + ACTIONS(1320), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1246), 39, + ACTIONS(1318), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -131828,15 +132594,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [55372] = 4, + [54885] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1244), 2, + ACTIONS(1308), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1242), 39, + ACTIONS(1306), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -131876,15 +132642,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [55424] = 4, + [54937] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1244), 2, + ACTIONS(1308), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1242), 39, + ACTIONS(1306), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -131924,15 +132690,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [55476] = 4, + [54989] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1256), 2, + ACTIONS(1308), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1254), 39, + ACTIONS(1306), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -131972,15 +132738,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [55528] = 4, + [55041] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1228), 2, + ACTIONS(1252), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1226), 39, + ACTIONS(1250), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -132020,68 +132786,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [55580] = 9, + [55093] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3695), 1, - anon_sym___aligned, - STATE(1332), 1, - sym_attribute_specifier, - ACTIONS(3582), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3584), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3586), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3230), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1573), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3228), 25, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [55642] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3699), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(3697), 39, + ACTIONS(3720), 1, + anon_sym_typedef, + ACTIONS(1571), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -132121,16 +132835,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [55694] = 5, + [55147] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2962), 1, + ACTIONS(1252), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3701), 1, - anon_sym_typedef, - ACTIONS(2960), 39, + anon_sym_LBRACE, + ACTIONS(1250), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -132170,15 +132883,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [55748] = 4, + [55199] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1228), 2, + ACTIONS(3724), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1226), 39, + ACTIONS(3722), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -132218,121 +132931,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [55800] = 9, - ACTIONS(3), 1, + [55251] = 5, + ACTIONS(2000), 1, + anon_sym_EQ, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(3703), 1, - anon_sym___aligned, - STATE(1335), 1, - sym_attribute_specifier, - ACTIONS(3582), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3584), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3586), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3196), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(2004), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1991), 12, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3194), 25, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [55862] = 9, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3705), 1, - anon_sym___aligned, - STATE(1336), 1, - sym_attribute_specifier, - ACTIONS(3582), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3584), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3586), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3240), 6, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1985), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3238), 25, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [55924] = 4, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [55305] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3359), 2, + ACTIONS(1573), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2983), 39, + ACTIONS(3726), 1, + anon_sym_typedef, + ACTIONS(1571), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -132372,39 +133029,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [55976] = 9, + [55359] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3707), 1, - anon_sym___aligned, - STATE(1339), 1, - sym_attribute_specifier, - ACTIONS(3582), 2, + ACTIONS(1380), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1378), 39, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3584), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(3586), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3158), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3156), 25, - anon_sym___extension__, - anon_sym_extern, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -132424,17 +133072,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [56038] = 5, + [55411] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2962), 1, + ACTIONS(3730), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3709), 1, - anon_sym_typedef, - ACTIONS(2960), 39, + anon_sym_LBRACE, + ACTIONS(3728), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -132474,16 +133125,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [56092] = 5, + [55463] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2962), 1, + ACTIONS(1252), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3711), 1, - anon_sym_typedef, - ACTIONS(2960), 39, + anon_sym_LBRACE, + ACTIONS(1250), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -132523,21 +133173,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [56146] = 5, + [55515] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3713), 1, + ACTIONS(3732), 1, anon_sym___aligned, - ACTIONS(3375), 6, + STATE(1343), 1, + sym_attribute_specifier, + ACTIONS(3609), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3611), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3613), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3215), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3373), 33, + ACTIONS(3213), 25, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [55577] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3320), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2979), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -132549,8 +133246,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -132570,33 +133269,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [56199] = 8, + [55629] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1382), 1, + ACTIONS(3734), 1, + anon_sym___aligned, + STATE(1352), 1, sym_attribute_specifier, - ACTIONS(35), 2, + ACTIONS(3609), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(37), 2, + ACTIONS(3611), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(39), 4, + ACTIONS(3613), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3313), 6, + ACTIONS(3237), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3311), 25, + ACTIONS(3235), 25, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -132622,19 +133327,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [56258] = 4, + [55691] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3100), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1380), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3098), 34, + anon_sym_LBRACE, + ACTIONS(1378), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -132646,8 +133347,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -132667,21 +133370,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - anon_sym___aligned, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [56309] = 4, + [55743] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3037), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1248), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3035), 34, + anon_sym_LBRACE, + ACTIONS(1246), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -132693,8 +133395,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -132714,21 +133418,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - anon_sym___aligned, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [56360] = 4, + [55795] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3104), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1376), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3102), 34, + anon_sym_LBRACE, + ACTIONS(1374), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -132740,8 +133443,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -132761,21 +133466,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - anon_sym___aligned, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [56411] = 4, + [55847] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3025), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1248), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3023), 34, + anon_sym_LBRACE, + ACTIONS(1246), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -132787,8 +133491,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -132808,21 +133514,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - anon_sym___aligned, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [56462] = 4, + [55899] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3283), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1284), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3281), 34, + anon_sym_LBRACE, + ACTIONS(1282), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -132834,8 +133539,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -132855,31 +133562,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - anon_sym___aligned, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [56513] = 4, + [55951] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3317), 6, + ACTIONS(3736), 1, + anon_sym___aligned, + STATE(1346), 1, + sym_attribute_specifier, + ACTIONS(3609), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3611), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3613), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3271), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3315), 34, + ACTIONS(3269), 25, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -132902,31 +133619,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - anon_sym___aligned, sym_identifier, - [56564] = 4, + [56013] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3717), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3715), 39, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(3738), 1, + anon_sym___aligned, + STATE(1341), 1, + sym_attribute_specifier, + ACTIONS(3609), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3611), 2, anon_sym___scanf, anon_sym___printf, + ACTIONS(3613), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, + ACTIONS(3177), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3175), 25, + anon_sym___extension__, + anon_sym_extern, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -132946,19 +133672,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [56615] = 4, + [56075] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3662), 1, + ACTIONS(1376), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3660), 39, + anon_sym_LBRACE, + ACTIONS(1374), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -132998,32 +133721,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [56666] = 8, + [56127] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1393), 1, + STATE(1369), 1, sym_attribute_specifier, - ACTIONS(3719), 2, + ACTIONS(3740), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(3722), 2, + ACTIONS(3743), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(3725), 4, + ACTIONS(3746), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3321), 6, + ACTIONS(3365), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3319), 25, + ACTIONS(3363), 25, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -133049,34 +133772,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [56725] = 8, + [56186] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1388), 1, - sym_attribute_specifier, - ACTIONS(35), 2, + ACTIONS(3749), 1, + anon_sym___aligned, + ACTIONS(3301), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3299), 33, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(37), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(39), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3357), 6, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [56239] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3086), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3355), 25, + ACTIONS(3084), 34, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -133099,22 +133865,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + anon_sym___aligned, sym_identifier, - [56784] = 5, + [56290] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3728), 1, + ACTIONS(3751), 1, anon_sym___aligned, - ACTIONS(3338), 6, + ACTIONS(3316), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3336), 33, + ACTIONS(3314), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -133148,21 +133915,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [56837] = 5, + [56343] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3730), 1, - anon_sym___aligned, - ACTIONS(3363), 6, + ACTIONS(3082), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3361), 33, + ACTIONS(3080), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -133195,13 +133960,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + anon_sym___aligned, sym_identifier, - [56890] = 8, + [56394] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1378), 1, + STATE(1374), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute__, @@ -133214,14 +133980,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3334), 6, + ACTIONS(3378), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3332), 25, + ACTIONS(3376), 25, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -133247,31 +134013,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [56949] = 5, + [56453] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3732), 1, - anon_sym___aligned, - ACTIONS(3272), 6, + STATE(1357), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(37), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(39), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3361), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3270), 33, + ACTIONS(3359), 25, anon_sym___extension__, anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [56512] = 8, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + STATE(1387), 1, + sym_attribute_specifier, + ACTIONS(3753), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3756), 2, anon_sym___scanf, anon_sym___printf, + ACTIONS(3759), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, + ACTIONS(3407), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3405), 25, + anon_sym___extension__, + anon_sym_extern, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -133295,21 +134115,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [57002] = 5, + [56571] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3734), 1, + ACTIONS(3762), 1, anon_sym___aligned, - ACTIONS(3381), 6, + ACTIONS(3395), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3379), 33, + ACTIONS(3393), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -133343,21 +134163,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [57055] = 5, + [56624] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3736), 1, + ACTIONS(3764), 1, anon_sym___aligned, - ACTIONS(3369), 6, + ACTIONS(3307), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3367), 33, + ACTIONS(3305), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -133391,21 +134211,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [57108] = 5, + [56677] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3738), 1, - anon_sym___aligned, - ACTIONS(3262), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3708), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3260), 33, + ACTIONS(3706), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -133417,8 +134230,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -133438,35 +134253,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [57161] = 8, + [56728] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1385), 1, - sym_attribute_specifier, - ACTIONS(3740), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3743), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3746), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3344), 6, + ACTIONS(3766), 1, + anon_sym___aligned, + ACTIONS(3401), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3342), 25, + ACTIONS(3399), 33, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -133490,21 +134306,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [57220] = 5, + [56781] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym___aligned, - ACTIONS(3387), 6, + ACTIONS(3133), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3385), 33, + ACTIONS(3131), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -133537,35 +134351,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + anon_sym___aligned, sym_identifier, - [57273] = 8, + [56832] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1349), 1, - sym_attribute_specifier, - ACTIONS(3751), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3754), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3757), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3293), 6, + ACTIONS(3125), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3291), 25, + ACTIONS(3123), 34, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -133588,35 +134398,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + anon_sym___aligned, sym_identifier, - [57332] = 8, + [56883] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1360), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(37), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(39), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3268), 6, + ACTIONS(3768), 1, + anon_sym___aligned, + ACTIONS(3355), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3266), 25, + ACTIONS(3353), 33, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -133640,21 +134448,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [57391] = 5, + [56936] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3760), 1, - anon_sym___aligned, - ACTIONS(3287), 6, + ACTIONS(3328), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3285), 33, + ACTIONS(3326), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -133687,71 +134493,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + anon_sym___aligned, sym_identifier, - [57444] = 9, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3630), 1, - anon_sym_DASH_GT, - ACTIONS(3762), 1, - anon_sym_LPAREN2, - ACTIONS(3764), 1, - anon_sym_DOT, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, + [56987] = 8, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3029), 13, - anon_sym_DASH, - anon_sym_PLUS, + STATE(1358), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(37), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(39), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3324), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(3027), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [57504] = 4, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3322), 25, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [57046] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3419), 6, + ACTIONS(3770), 1, + anon_sym___aligned, + ACTIONS(3342), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3417), 33, + ACTIONS(3340), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -133785,29 +134594,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [57554] = 4, + [57099] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3548), 6, + STATE(1407), 1, + sym_attribute_specifier, + ACTIONS(3772), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3775), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3778), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3382), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3546), 33, + ACTIONS(3380), 25, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -133831,19 +134645,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [57604] = 4, + [57158] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3502), 6, + ACTIONS(3781), 1, + anon_sym___aligned, + ACTIONS(3420), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3500), 33, + ACTIONS(3418), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -133877,19 +134693,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [57654] = 4, + [57211] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3470), 6, + ACTIONS(3783), 1, + anon_sym___aligned, + ACTIONS(3291), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3468), 33, + ACTIONS(3289), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -133923,19 +134741,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [57704] = 4, + [57264] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3431), 6, + ACTIONS(3297), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3429), 33, + ACTIONS(3295), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -133968,20 +134786,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + anon_sym___aligned, sym_identifier, - [57754] = 4, + [57315] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, - sym_comment, - ACTIONS(3556), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + sym_comment, + ACTIONS(3787), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3554), 33, + ACTIONS(3785), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -133993,8 +134807,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -134014,30 +134830,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [57804] = 4, + [57366] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3478), 6, + STATE(1377), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(37), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(39), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3334), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3476), 33, + ACTIONS(3332), 25, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -134061,19 +134886,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [57854] = 4, + [57425] = 21, + ACTIONS(3090), 1, + anon_sym_EQ, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3661), 1, + anon_sym_DASH_GT, + ACTIONS(3789), 1, + anon_sym_LPAREN2, + ACTIONS(3795), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3797), 1, + anon_sym_AMP_AMP, + ACTIONS(3799), 1, + anon_sym_PIPE, + ACTIONS(3801), 1, + anon_sym_CARET, + ACTIONS(3803), 1, + anon_sym_AMP, + ACTIONS(3813), 1, + anon_sym_QMARK, + ACTIONS(3815), 1, + anon_sym_DOT, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3791), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3805), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3807), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3809), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3811), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3793), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3088), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [57509] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3283), 6, + ACTIONS(3607), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3281), 33, + ACTIONS(3605), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -134107,19 +134995,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [57904] = 4, + [57559] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3317), 6, + ACTIONS(3497), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3315), 33, + ACTIONS(3495), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -134153,24 +135041,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [57954] = 9, - ACTIONS(3626), 1, + [57609] = 8, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3630), 1, + ACTIONS(3661), 1, anon_sym_DASH_GT, - ACTIONS(3762), 1, + ACTIONS(3789), 1, anon_sym_LPAREN2, - ACTIONS(3764), 1, + ACTIONS(3815), 1, anon_sym_DOT, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3047), 13, + ACTIONS(3074), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -134184,7 +135069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3045), 19, + ACTIONS(3072), 21, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134204,19 +135089,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [58014] = 4, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [57667] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3474), 6, + ACTIONS(3513), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3472), 33, + ACTIONS(3511), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -134250,19 +135137,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [58064] = 4, + [57717] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3466), 6, + ACTIONS(3489), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3464), 33, + ACTIONS(3487), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -134296,247 +135183,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [58114] = 9, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3630), 1, - anon_sym_DASH_GT, - ACTIONS(3762), 1, - anon_sym_LPAREN2, - ACTIONS(3764), 1, - anon_sym_DOT, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3055), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(3053), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [58174] = 21, - ACTIONS(3080), 1, - anon_sym_EQ, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3630), 1, - anon_sym_DASH_GT, - ACTIONS(3762), 1, - anon_sym_LPAREN2, - ACTIONS(3764), 1, - anon_sym_DOT, - ACTIONS(3770), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3772), 1, - anon_sym_AMP_AMP, - ACTIONS(3774), 1, - anon_sym_PIPE, - ACTIONS(3776), 1, - anon_sym_CARET, - ACTIONS(3778), 1, - anon_sym_AMP, - ACTIONS(3788), 1, - anon_sym_QMARK, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, + [57767] = 4, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3766), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3780), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3782), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3784), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3786), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3768), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3078), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [58258] = 21, - ACTIONS(3084), 1, - anon_sym_EQ, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3630), 1, - anon_sym_DASH_GT, - ACTIONS(3762), 1, + ACTIONS(3493), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3764), 1, - anon_sym_DOT, - ACTIONS(3770), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3772), 1, - anon_sym_AMP_AMP, - ACTIONS(3774), 1, - anon_sym_PIPE, - ACTIONS(3776), 1, - anon_sym_CARET, - ACTIONS(3778), 1, - anon_sym_AMP, - ACTIONS(3788), 1, - anon_sym_QMARK, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3766), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3780), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3782), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3784), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3786), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3768), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3082), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [58342] = 9, - ACTIONS(3626), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3491), 33, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(3630), 1, - anon_sym_DASH_GT, - ACTIONS(3762), 1, - anon_sym_LPAREN2, - ACTIONS(3764), 1, - anon_sym_DOT, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3051), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(3049), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [58402] = 4, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [57817] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3552), 6, + ACTIONS(3485), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3550), 33, + ACTIONS(3483), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -134570,70 +135275,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [58452] = 9, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3630), 1, - anon_sym_DASH_GT, - ACTIONS(3762), 1, - anon_sym_LPAREN2, - ACTIONS(3764), 1, - anon_sym_DOT, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3017), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2991), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [58512] = 4, + [57867] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3544), 6, + ACTIONS(3509), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3542), 33, + ACTIONS(3507), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -134667,19 +135321,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [58562] = 4, + [57917] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3399), 6, + ACTIONS(3481), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3397), 33, + ACTIONS(3479), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -134713,331 +135367,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [58612] = 11, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3630), 1, - anon_sym_DASH_GT, - ACTIONS(3762), 1, - anon_sym_LPAREN2, - ACTIONS(3764), 1, - anon_sym_DOT, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, + [57967] = 4, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3766), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3768), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3017), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2991), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [58676] = 12, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3630), 1, - anon_sym_DASH_GT, - ACTIONS(3762), 1, + ACTIONS(3525), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3764), 1, - anon_sym_DOT, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3766), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3786), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3768), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3017), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(2991), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [58742] = 14, - ACTIONS(3626), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3523), 33, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(3630), 1, - anon_sym_DASH_GT, - ACTIONS(3762), 1, - anon_sym_LPAREN2, - ACTIONS(3764), 1, - anon_sym_DOT, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3766), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3782), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3784), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3786), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3768), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3017), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2991), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [58812] = 15, - ACTIONS(3626), 1, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [58017] = 9, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3630), 1, + ACTIONS(3661), 1, anon_sym_DASH_GT, - ACTIONS(3762), 1, + ACTIONS(3789), 1, anon_sym_LPAREN2, - ACTIONS(3764), 1, + ACTIONS(3815), 1, anon_sym_DOT, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3766), 2, + ACTIONS(3070), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3780), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3782), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3784), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3786), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3768), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3017), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2991), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [58884] = 16, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3630), 1, - anon_sym_DASH_GT, - ACTIONS(3762), 1, - anon_sym_LPAREN2, - ACTIONS(3764), 1, - anon_sym_DOT, - ACTIONS(3778), 1, - anon_sym_AMP, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3766), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3780), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3782), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3784), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3786), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3017), 3, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_EQ, - ACTIONS(3768), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2991), 15, + ACTIONS(3068), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [58958] = 17, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3630), 1, - anon_sym_DASH_GT, - ACTIONS(3762), 1, - anon_sym_LPAREN2, - ACTIONS(3764), 1, - anon_sym_DOT, - ACTIONS(3776), 1, - anon_sym_CARET, - ACTIONS(3778), 1, - anon_sym_AMP, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3017), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3766), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3780), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3782), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3784), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3786), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3768), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2991), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -135050,57 +135464,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [59034] = 19, - ACTIONS(3017), 1, + [58077] = 21, + ACTIONS(3062), 1, anon_sym_EQ, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3630), 1, + ACTIONS(3661), 1, anon_sym_DASH_GT, - ACTIONS(3762), 1, + ACTIONS(3789), 1, anon_sym_LPAREN2, - ACTIONS(3764), 1, - anon_sym_DOT, - ACTIONS(3772), 1, + ACTIONS(3795), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3797), 1, anon_sym_AMP_AMP, - ACTIONS(3774), 1, + ACTIONS(3799), 1, anon_sym_PIPE, - ACTIONS(3776), 1, + ACTIONS(3801), 1, anon_sym_CARET, - ACTIONS(3778), 1, + ACTIONS(3803), 1, anon_sym_AMP, - STATE(1245), 1, + ACTIONS(3813), 1, + anon_sym_QMARK, + ACTIONS(3815), 1, + anon_sym_DOT, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3766), 2, + ACTIONS(3791), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3780), 2, + ACTIONS(3805), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3782), 2, + ACTIONS(3807), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3784), 2, + ACTIONS(3809), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3786), 2, + ACTIONS(3811), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3768), 3, + ACTIONS(3793), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 14, + ACTIONS(3060), 12, anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -135111,19 +135527,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [59114] = 4, + [58161] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3440), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3438), 33, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [58211] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2909), 6, + ACTIONS(3444), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2907), 33, + ACTIONS(3442), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -135157,30 +135619,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [59164] = 10, - ACTIONS(3626), 1, + [58261] = 9, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3630), 1, + ACTIONS(3661), 1, anon_sym_DASH_GT, - ACTIONS(3762), 1, + ACTIONS(3789), 1, anon_sym_LPAREN2, - ACTIONS(3764), 1, + ACTIONS(3815), 1, anon_sym_DOT, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3768), 3, + ACTIONS(3078), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3017), 10, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -135189,7 +135650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2991), 19, + ACTIONS(3076), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135209,117 +135670,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [59226] = 21, - ACTIONS(3074), 1, - anon_sym_EQ, - ACTIONS(3626), 1, + [58321] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3464), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3462), 33, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(3630), 1, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [58371] = 11, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3661), 1, anon_sym_DASH_GT, - ACTIONS(3762), 1, + ACTIONS(3789), 1, anon_sym_LPAREN2, - ACTIONS(3764), 1, + ACTIONS(3815), 1, anon_sym_DOT, - ACTIONS(3770), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3772), 1, - anon_sym_AMP_AMP, - ACTIONS(3774), 1, - anon_sym_PIPE, - ACTIONS(3776), 1, - anon_sym_CARET, - ACTIONS(3778), 1, - anon_sym_AMP, - ACTIONS(3788), 1, - anon_sym_QMARK, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3766), 2, + ACTIONS(3791), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3780), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3782), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3784), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3786), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3768), 3, + ACTIONS(3793), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3070), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [59310] = 18, - ACTIONS(3017), 1, - anon_sym_EQ, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3630), 1, - anon_sym_DASH_GT, - ACTIONS(3762), 1, - anon_sym_LPAREN2, - ACTIONS(3764), 1, - anon_sym_DOT, - ACTIONS(3774), 1, + ACTIONS(3028), 8, anon_sym_PIPE, - ACTIONS(3776), 1, anon_sym_CARET, - ACTIONS(3778), 1, anon_sym_AMP, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3766), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3780), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3782), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3784), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3786), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3768), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2991), 15, + anon_sym_EQ, + ACTIONS(3020), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -135332,19 +135769,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [59388] = 4, + [58435] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3490), 6, + ACTIONS(3450), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3488), 33, + ACTIONS(3448), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -135378,19 +135815,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [59438] = 4, + [58485] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3427), 6, + ACTIONS(3477), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3425), 33, + ACTIONS(3475), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -135424,19 +135861,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [59488] = 4, + [58535] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3506), 6, + ACTIONS(3501), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3504), 33, + ACTIONS(3499), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -135470,19 +135907,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [59538] = 4, + [58585] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3443), 6, + ACTIONS(3505), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3441), 33, + ACTIONS(3503), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -135516,19 +135953,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [59588] = 4, + [58635] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3560), 6, + ACTIONS(3529), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3558), 33, + ACTIONS(3527), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -135562,19 +135999,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [59638] = 4, + [58685] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3576), 6, + ACTIONS(3436), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3574), 33, + ACTIONS(3434), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -135608,19 +136045,288 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [59688] = 4, + [58735] = 9, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3661), 1, + anon_sym_DASH_GT, + ACTIONS(3789), 1, + anon_sym_LPAREN2, + ACTIONS(3815), 1, + anon_sym_DOT, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3028), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(3020), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [58795] = 9, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3661), 1, + anon_sym_DASH_GT, + ACTIONS(3789), 1, + anon_sym_LPAREN2, + ACTIONS(3815), 1, + anon_sym_DOT, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3117), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(3115), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [58855] = 12, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3661), 1, + anon_sym_DASH_GT, + ACTIONS(3789), 1, + anon_sym_LPAREN2, + ACTIONS(3815), 1, + anon_sym_DOT, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3791), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3811), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3793), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3028), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(3020), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [58921] = 14, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3661), 1, + anon_sym_DASH_GT, + ACTIONS(3789), 1, + anon_sym_LPAREN2, + ACTIONS(3815), 1, + anon_sym_DOT, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3791), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3807), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3809), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3811), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3793), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3028), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(3020), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [58991] = 15, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3661), 1, + anon_sym_DASH_GT, + ACTIONS(3789), 1, + anon_sym_LPAREN2, + ACTIONS(3815), 1, + anon_sym_DOT, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3791), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3805), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3807), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3809), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3811), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3793), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3028), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(3020), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [59063] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3451), 6, + ACTIONS(3537), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3449), 33, + ACTIONS(3535), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -135654,19 +136360,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [59738] = 4, + [59113] = 16, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3661), 1, + anon_sym_DASH_GT, + ACTIONS(3789), 1, + anon_sym_LPAREN2, + ACTIONS(3803), 1, + anon_sym_AMP, + ACTIONS(3815), 1, + anon_sym_DOT, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3791), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3805), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3807), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3809), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3811), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3028), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(3793), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3020), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [59187] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3423), 6, + ACTIONS(3599), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3421), 33, + ACTIONS(3597), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -135700,19 +136464,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [59788] = 4, + [59237] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3447), 6, + ACTIONS(3297), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3445), 33, + ACTIONS(3295), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -135746,19 +136510,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [59838] = 4, + [59287] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3482), 6, + ACTIONS(3541), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3480), 33, + ACTIONS(3539), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -135792,19 +136556,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [59888] = 4, + [59337] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3486), 6, + ACTIONS(3517), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3484), 33, + ACTIONS(3515), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -135838,19 +136602,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [59938] = 4, + [59387] = 9, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3661), 1, + anon_sym_DASH_GT, + ACTIONS(3789), 1, + anon_sym_LPAREN2, + ACTIONS(3815), 1, + anon_sym_DOT, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3121), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(3119), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [59447] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3572), 6, + ACTIONS(3328), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3570), 33, + ACTIONS(3326), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -135884,19 +136699,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [59988] = 4, + [59497] = 17, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3661), 1, + anon_sym_DASH_GT, + ACTIONS(3789), 1, + anon_sym_LPAREN2, + ACTIONS(3801), 1, + anon_sym_CARET, + ACTIONS(3803), 1, + anon_sym_AMP, + ACTIONS(3815), 1, + anon_sym_DOT, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3028), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3791), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3805), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3807), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3809), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3811), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3793), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3020), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [59573] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3568), 6, + ACTIONS(3521), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3566), 33, + ACTIONS(3519), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -135930,19 +136804,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [60038] = 4, + [59623] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3510), 6, + ACTIONS(3430), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 33, + ACTIONS(3428), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -135976,19 +136850,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [60088] = 4, + [59673] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3498), 6, + ACTIONS(3545), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3496), 33, + ACTIONS(3543), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -136022,19 +136896,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [60138] = 4, + [59723] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3407), 6, + ACTIONS(3595), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3405), 33, + ACTIONS(3593), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -136068,19 +136942,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [60188] = 4, + [59773] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3411), 6, + ACTIONS(3557), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3409), 33, + ACTIONS(3555), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -136114,19 +136988,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [60238] = 4, + [59823] = 18, + ACTIONS(3028), 1, + anon_sym_EQ, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3661), 1, + anon_sym_DASH_GT, + ACTIONS(3789), 1, + anon_sym_LPAREN2, + ACTIONS(3799), 1, + anon_sym_PIPE, + ACTIONS(3801), 1, + anon_sym_CARET, + ACTIONS(3803), 1, + anon_sym_AMP, + ACTIONS(3815), 1, + anon_sym_DOT, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3791), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3805), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3807), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3809), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3811), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3793), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3020), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [59901] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3580), 6, + ACTIONS(3553), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3578), 33, + ACTIONS(3551), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -136160,19 +137094,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [60288] = 4, + [59951] = 19, + ACTIONS(3028), 1, + anon_sym_EQ, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3661), 1, + anon_sym_DASH_GT, + ACTIONS(3789), 1, + anon_sym_LPAREN2, + ACTIONS(3797), 1, + anon_sym_AMP_AMP, + ACTIONS(3799), 1, + anon_sym_PIPE, + ACTIONS(3801), 1, + anon_sym_CARET, + ACTIONS(3803), 1, + anon_sym_AMP, + ACTIONS(3815), 1, + anon_sym_DOT, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3791), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3805), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3807), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3809), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3811), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3793), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3020), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [60031] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3494), 6, + ACTIONS(3426), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3492), 33, + ACTIONS(3424), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -136206,19 +137201,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [60338] = 4, + [60081] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3564), 6, + ACTIONS(3603), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3562), 33, + ACTIONS(3601), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -136252,26 +137247,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [60388] = 8, - ACTIONS(3626), 1, + [60131] = 10, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3630), 1, + ACTIONS(3661), 1, anon_sym_DASH_GT, - ACTIONS(3762), 1, + ACTIONS(3789), 1, anon_sym_LPAREN2, - ACTIONS(3764), 1, + ACTIONS(3815), 1, anon_sym_DOT, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3033), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3793), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3028), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -136280,7 +137279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3031), 21, + ACTIONS(3020), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136300,21 +137299,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [60446] = 4, + [60193] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3549), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3547), 33, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [60243] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3533), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3531), 33, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [60293] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3415), 6, + ACTIONS(3585), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3413), 33, + ACTIONS(3583), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -136348,37 +137437,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [60496] = 3, - ACTIONS(5), 2, + [60343] = 4, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3134), 14, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2928), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2926), 33, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [60393] = 21, + ACTIONS(3056), 1, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3132), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3661), 1, + anon_sym_DASH_GT, + ACTIONS(3789), 1, anon_sym_LPAREN2, + ACTIONS(3795), 1, anon_sym_PIPE_PIPE, + ACTIONS(3797), 1, anon_sym_AMP_AMP, + ACTIONS(3799), 1, + anon_sym_PIPE, + ACTIONS(3801), 1, + anon_sym_CARET, + ACTIONS(3803), 1, + anon_sym_AMP, + ACTIONS(3813), 1, + anon_sym_QMARK, + ACTIONS(3815), 1, + anon_sym_DOT, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3791), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3805), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3807), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3809), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, + ACTIONS(3811), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3793), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3044), 12, + anon_sym_DOT_DOT_DOT, anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -136389,14 +137546,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [60543] = 3, + [60477] = 5, + ACTIONS(3587), 1, + anon_sym_EQ, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3246), 14, + ACTIONS(3589), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1991), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -136409,9 +137576,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(3244), 24, + ACTIONS(1985), 14, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -136423,24 +137589,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [60590] = 3, + [60528] = 3, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3172), 14, + ACTIONS(3169), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -136455,7 +137611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(3170), 24, + ACTIONS(3167), 24, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -136480,57 +137636,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [60637] = 19, + [60575] = 19, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3790), 1, + ACTIONS(3817), 1, sym_identifier, - ACTIONS(3792), 1, + ACTIONS(3819), 1, anon_sym_LPAREN2, - ACTIONS(3794), 1, + ACTIONS(3821), 1, anon_sym_STAR, - ACTIONS(3798), 1, + ACTIONS(3825), 1, sym_primitive_type, - STATE(1597), 1, + STATE(1620), 1, sym_ms_unaligned_ptr_modifier, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(2287), 1, + STATE(2058), 1, sym__type_declarator, - STATE(2971), 1, + STATE(3430), 1, sym_ms_based_modifier, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3656), 2, + ACTIONS(3687), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1482), 2, + STATE(1500), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1520), 2, + STATE(1535), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3654), 3, + ACTIONS(3685), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3796), 4, + ACTIONS(3823), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2451), 5, + STATE(2105), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -136540,57 +137696,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [60716] = 19, + [60654] = 19, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3800), 1, + ACTIONS(3827), 1, sym_identifier, - ACTIONS(3802), 1, + ACTIONS(3829), 1, anon_sym_LPAREN2, - ACTIONS(3804), 1, + ACTIONS(3831), 1, anon_sym_STAR, - ACTIONS(3808), 1, + ACTIONS(3835), 1, sym_primitive_type, - STATE(1597), 1, + STATE(1620), 1, sym_ms_unaligned_ptr_modifier, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(2026), 1, + STATE(2315), 1, sym__type_declarator, - STATE(3321), 1, + STATE(3100), 1, sym_ms_based_modifier, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3656), 2, + ACTIONS(3687), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1482), 2, + STATE(1500), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1524), 2, + STATE(1541), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3654), 3, + ACTIONS(3685), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3806), 4, + ACTIONS(3833), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2089), 5, + STATE(2450), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -136600,57 +137756,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [60795] = 19, + [60733] = 19, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3790), 1, + ACTIONS(3827), 1, sym_identifier, - ACTIONS(3792), 1, + ACTIONS(3829), 1, anon_sym_LPAREN2, - ACTIONS(3794), 1, + ACTIONS(3831), 1, anon_sym_STAR, - ACTIONS(3798), 1, + ACTIONS(3835), 1, sym_primitive_type, - STATE(1597), 1, + STATE(1620), 1, sym_ms_unaligned_ptr_modifier, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(2271), 1, + STATE(2315), 1, sym__type_declarator, - STATE(2971), 1, + STATE(3100), 1, sym_ms_based_modifier, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3656), 2, + ACTIONS(3687), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1482), 2, + STATE(1416), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1530), 2, + STATE(1541), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3654), 3, + ACTIONS(3685), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3796), 4, + ACTIONS(3833), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2451), 5, + STATE(2450), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -136660,101 +137816,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [60874] = 3, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3114), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3112), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [60921] = 19, + [60812] = 19, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3800), 1, + ACTIONS(3817), 1, sym_identifier, - ACTIONS(3802), 1, + ACTIONS(3819), 1, anon_sym_LPAREN2, - ACTIONS(3804), 1, + ACTIONS(3821), 1, anon_sym_STAR, - ACTIONS(3808), 1, + ACTIONS(3825), 1, sym_primitive_type, - STATE(1597), 1, + STATE(1620), 1, sym_ms_unaligned_ptr_modifier, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(2022), 1, + STATE(2058), 1, sym__type_declarator, - STATE(3321), 1, + STATE(3430), 1, sym_ms_based_modifier, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3656), 2, + ACTIONS(3687), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1401), 2, + STATE(1418), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1529), 2, + STATE(1535), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3654), 3, + ACTIONS(3685), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3806), 4, + ACTIONS(3823), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2089), 5, + STATE(2105), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -136764,57 +137876,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [61000] = 19, + [60891] = 19, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3790), 1, + ACTIONS(3827), 1, sym_identifier, - ACTIONS(3792), 1, + ACTIONS(3829), 1, anon_sym_LPAREN2, - ACTIONS(3794), 1, + ACTIONS(3831), 1, anon_sym_STAR, - ACTIONS(3798), 1, + ACTIONS(3835), 1, sym_primitive_type, - STATE(1597), 1, + STATE(1620), 1, sym_ms_unaligned_ptr_modifier, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(2296), 1, + STATE(2310), 1, sym__type_declarator, - STATE(2971), 1, + STATE(3100), 1, sym_ms_based_modifier, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3656), 2, + ACTIONS(3687), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1402), 2, + STATE(1500), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1515), 2, + STATE(1542), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3654), 3, + ACTIONS(3685), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3796), 4, + ACTIONS(3833), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2451), 5, + STATE(2450), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -136824,24 +137936,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [61079] = 5, - ACTIONS(3401), 1, - anon_sym_EQ, + [60970] = 3, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3403), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1962), 13, + ACTIONS(3251), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -136854,8 +137953,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(1956), 14, + ACTIONS(3249), 24, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -136867,60 +137967,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [61130] = 19, + [61017] = 19, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3800), 1, + ACTIONS(3817), 1, sym_identifier, - ACTIONS(3802), 1, + ACTIONS(3819), 1, anon_sym_LPAREN2, - ACTIONS(3804), 1, + ACTIONS(3821), 1, anon_sym_STAR, - ACTIONS(3808), 1, + ACTIONS(3825), 1, sym_primitive_type, - STATE(1597), 1, + STATE(1620), 1, sym_ms_unaligned_ptr_modifier, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(2022), 1, + STATE(2042), 1, sym__type_declarator, - STATE(3321), 1, + STATE(3430), 1, sym_ms_based_modifier, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3656), 2, + ACTIONS(3687), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1482), 2, + STATE(1500), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1529), 2, + STATE(1532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3654), 3, + ACTIONS(3685), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3806), 4, + ACTIONS(3823), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2089), 5, + STATE(2105), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -136930,57 +138040,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [61209] = 19, + [61096] = 19, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3790), 1, + ACTIONS(3817), 1, sym_identifier, - ACTIONS(3792), 1, + ACTIONS(3819), 1, anon_sym_LPAREN2, - ACTIONS(3794), 1, + ACTIONS(3821), 1, anon_sym_STAR, - ACTIONS(3798), 1, + ACTIONS(3825), 1, sym_primitive_type, - STATE(1597), 1, + STATE(1620), 1, sym_ms_unaligned_ptr_modifier, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(2271), 1, + STATE(2035), 1, sym__type_declarator, - STATE(2971), 1, + STATE(3430), 1, sym_ms_based_modifier, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3656), 2, + ACTIONS(3687), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1400), 2, + STATE(1412), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1530), 2, + STATE(1539), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3654), 3, + ACTIONS(3685), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3796), 4, + ACTIONS(3823), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2451), 5, + STATE(2105), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -136990,57 +138100,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [61288] = 19, + [61175] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3233), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(3231), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [61222] = 19, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3800), 1, + ACTIONS(3827), 1, sym_identifier, - ACTIONS(3802), 1, + ACTIONS(3829), 1, anon_sym_LPAREN2, - ACTIONS(3804), 1, + ACTIONS(3831), 1, anon_sym_STAR, - ACTIONS(3808), 1, + ACTIONS(3835), 1, sym_primitive_type, - STATE(1597), 1, + STATE(1620), 1, sym_ms_unaligned_ptr_modifier, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(2030), 1, + STATE(2296), 1, sym__type_declarator, - STATE(3321), 1, + STATE(3100), 1, sym_ms_based_modifier, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3656), 2, + ACTIONS(3687), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1407), 2, + STATE(1413), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1525), 2, + STATE(1538), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3654), 3, + ACTIONS(3685), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3806), 4, + ACTIONS(3833), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2089), 5, + STATE(2450), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -137050,15 +138204,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [61367] = 6, - ACTIONS(1971), 1, + [61301] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3165), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(3163), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [61348] = 6, + ACTIONS(2000), 1, anon_sym_EQ, - ACTIONS(3810), 1, + ACTIONS(3837), 1, anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(1975), 10, + ACTIONS(2004), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -137069,7 +138267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1962), 12, + ACTIONS(1991), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -137082,7 +138280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1956), 13, + ACTIONS(1985), 13, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137096,169 +138294,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [61419] = 13, + [61400] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2993), 1, - anon_sym_LPAREN2, - ACTIONS(3015), 1, - anon_sym_LBRACK, - ACTIONS(3816), 1, - anon_sym_SLASH, - STATE(1039), 1, - sym_argument_list, - ACTIONS(3019), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3021), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3812), 2, + ACTIONS(1374), 17, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3814), 2, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1376), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3818), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3017), 4, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2991), 18, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym_QMARK, - [61484] = 21, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [61447] = 15, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(3022), 1, anon_sym_LPAREN2, - ACTIONS(3015), 1, + ACTIONS(3038), 1, anon_sym_LBRACK, - ACTIONS(3816), 1, + ACTIONS(3843), 1, anon_sym_SLASH, - ACTIONS(3822), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3824), 1, - anon_sym_AMP_AMP, - ACTIONS(3826), 1, + STATE(1058), 1, + sym_argument_list, + ACTIONS(3028), 2, anon_sym_PIPE, - ACTIONS(3828), 1, - anon_sym_CARET, - ACTIONS(3830), 1, anon_sym_AMP, - ACTIONS(3838), 1, - anon_sym_QMARK, - STATE(1039), 1, - sym_argument_list, - ACTIONS(3019), 2, + ACTIONS(3040), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3021), 2, + ACTIONS(3042), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3812), 2, + ACTIONS(3839), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3814), 2, + ACTIONS(3841), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3818), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3832), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3834), 2, + ACTIONS(3845), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3836), 2, + ACTIONS(3847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3820), 10, + ACTIONS(3849), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3020), 16, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [61565] = 21, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2993), 1, - anon_sym_LPAREN2, - ACTIONS(3015), 1, - anon_sym_LBRACK, - ACTIONS(3816), 1, - anon_sym_SLASH, - ACTIONS(3822), 1, anon_sym_PIPE_PIPE, - ACTIONS(3824), 1, anon_sym_AMP_AMP, - ACTIONS(3826), 1, - anon_sym_PIPE, - ACTIONS(3828), 1, anon_sym_CARET, - ACTIONS(3830), 1, - anon_sym_AMP, - ACTIONS(3838), 1, - anon_sym_QMARK, - STATE(1039), 1, - sym_argument_list, - ACTIONS(3019), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3021), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3812), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3814), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3818), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3832), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3834), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3836), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3078), 10, - anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -137268,12 +138390,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [61646] = 4, + anon_sym_QMARK, + [61516] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1250), 17, + ACTIONS(1282), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -137291,7 +138414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1252), 19, + ACTIONS(1284), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -137311,12 +138434,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [61693] = 4, + [61563] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1250), 17, + ACTIONS(1374), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -137334,7 +138457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1252), 19, + ACTIONS(1376), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -137354,12 +138477,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [61740] = 4, + [61610] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1234), 17, + ACTIONS(1250), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -137377,7 +138500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1236), 19, + ACTIONS(1252), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -137397,12 +138520,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [61787] = 4, + [61657] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1234), 17, + ACTIONS(1374), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -137420,7 +138543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1236), 19, + ACTIONS(1376), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -137440,63 +138563,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [61834] = 12, + [61704] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2993), 1, - anon_sym_LPAREN2, - ACTIONS(3015), 1, - anon_sym_LBRACK, - ACTIONS(3816), 1, - anon_sym_SLASH, - STATE(1039), 1, - sym_argument_list, - ACTIONS(3019), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3021), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3812), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3814), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3017), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2991), 20, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym_QMARK, - [61897] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1242), 17, + ACTIONS(1378), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -137514,7 +138586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1244), 19, + ACTIONS(1380), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -137534,12 +138606,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [61944] = 4, + [61751] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1234), 17, + ACTIONS(1318), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -137557,7 +138629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1236), 19, + ACTIONS(1320), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -137577,12 +138649,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [61991] = 4, + [61798] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1226), 17, + ACTIONS(1378), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -137600,7 +138672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1228), 19, + ACTIONS(1380), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -137620,12 +138692,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [62038] = 4, + [61845] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1226), 17, + ACTIONS(1318), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -137643,7 +138715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1228), 19, + ACTIONS(1320), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -137663,12 +138735,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [62085] = 4, + [61892] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1242), 17, + ACTIONS(1250), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -137686,7 +138758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1244), 19, + ACTIONS(1252), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -137706,12 +138778,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [62132] = 4, + [61939] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1294), 17, + ACTIONS(1306), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -137729,7 +138801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1296), 19, + ACTIONS(1308), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -137749,12 +138821,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [62179] = 4, + [61986] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1274), 17, + ACTIONS(1306), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -137772,7 +138844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1276), 19, + ACTIONS(1308), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -137792,12 +138864,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [62226] = 4, + [62033] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1274), 17, + ACTIONS(1306), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -137815,7 +138887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1276), 19, + ACTIONS(1308), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -137835,12 +138907,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [62273] = 4, + [62080] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1294), 17, + ACTIONS(3022), 1, + anon_sym_LPAREN2, + ACTIONS(3038), 1, + anon_sym_LBRACK, + ACTIONS(3843), 1, + anon_sym_SLASH, + STATE(1058), 1, + sym_argument_list, + ACTIONS(3040), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3042), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3839), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3841), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3028), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3020), 20, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_QMARK, + [62143] = 13, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3022), 1, + anon_sym_LPAREN2, + ACTIONS(3038), 1, + anon_sym_LBRACK, + ACTIONS(3843), 1, + anon_sym_SLASH, + STATE(1058), 1, + sym_argument_list, + ACTIONS(3040), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3042), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3839), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3841), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3849), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3028), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3020), 18, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_QMARK, + [62208] = 21, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3022), 1, + anon_sym_LPAREN2, + ACTIONS(3038), 1, + anon_sym_LBRACK, + ACTIONS(3843), 1, + anon_sym_SLASH, + ACTIONS(3851), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3853), 1, + anon_sym_AMP_AMP, + ACTIONS(3855), 1, + anon_sym_PIPE, + ACTIONS(3857), 1, + anon_sym_CARET, + ACTIONS(3859), 1, + anon_sym_AMP, + ACTIONS(3863), 1, + anon_sym_QMARK, + STATE(1058), 1, + sym_argument_list, + ACTIONS(3040), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3042), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3839), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3841), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3845), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3847), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3849), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3861), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3060), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [62289] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1378), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -137858,70 +139093,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1296), 19, + ACTIONS(1380), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [62320] = 15, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [62336] = 16, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3022), 1, + anon_sym_LPAREN2, + ACTIONS(3038), 1, + anon_sym_LBRACK, + ACTIONS(3843), 1, + anon_sym_SLASH, + STATE(1058), 1, + sym_argument_list, + ACTIONS(3028), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3040), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3042), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3839), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3841), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3845), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3847), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3849), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3861), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3020), 14, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_QMARK, + [62407] = 17, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(3022), 1, anon_sym_LPAREN2, - ACTIONS(3015), 1, + ACTIONS(3028), 1, + anon_sym_PIPE, + ACTIONS(3038), 1, anon_sym_LBRACK, - ACTIONS(3816), 1, + ACTIONS(3843), 1, anon_sym_SLASH, - STATE(1039), 1, - sym_argument_list, - ACTIONS(3017), 2, - anon_sym_PIPE, + ACTIONS(3859), 1, anon_sym_AMP, - ACTIONS(3019), 2, + STATE(1058), 1, + sym_argument_list, + ACTIONS(3040), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3021), 2, + ACTIONS(3042), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3812), 2, + ACTIONS(3839), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3814), 2, + ACTIONS(3841), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3818), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3834), 2, + ACTIONS(3845), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3836), 2, + ACTIONS(3847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2991), 16, + ACTIONS(3849), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3861), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3020), 14, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_QMARK, + [62480] = 18, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3022), 1, + anon_sym_LPAREN2, + ACTIONS(3028), 1, + anon_sym_PIPE, + ACTIONS(3038), 1, + anon_sym_LBRACK, + ACTIONS(3843), 1, + anon_sym_SLASH, + ACTIONS(3857), 1, + anon_sym_CARET, + ACTIONS(3859), 1, + anon_sym_AMP, + STATE(1058), 1, + sym_argument_list, + ACTIONS(3040), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3042), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3839), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3841), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3845), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3847), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3849), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3861), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3020), 13, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -137932,51 +139281,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym_QMARK, - [62389] = 16, + [62555] = 21, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(3022), 1, anon_sym_LPAREN2, - ACTIONS(3015), 1, + ACTIONS(3038), 1, anon_sym_LBRACK, - ACTIONS(3816), 1, + ACTIONS(3843), 1, anon_sym_SLASH, - STATE(1039), 1, - sym_argument_list, - ACTIONS(3017), 2, + ACTIONS(3851), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3853), 1, + anon_sym_AMP_AMP, + ACTIONS(3855), 1, anon_sym_PIPE, + ACTIONS(3857), 1, + anon_sym_CARET, + ACTIONS(3859), 1, anon_sym_AMP, - ACTIONS(3019), 2, + ACTIONS(3863), 1, + anon_sym_QMARK, + STATE(1058), 1, + sym_argument_list, + ACTIONS(3040), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3021), 2, + ACTIONS(3042), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3812), 2, + ACTIONS(3839), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3814), 2, + ACTIONS(3841), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3818), 2, + ACTIONS(3845), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3847), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3849), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3832), 2, + ACTIONS(3861), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3834), 2, + ACTIONS(3088), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [62636] = 18, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3022), 1, + anon_sym_LPAREN2, + ACTIONS(3038), 1, + anon_sym_LBRACK, + ACTIONS(3843), 1, + anon_sym_SLASH, + ACTIONS(3855), 1, + anon_sym_PIPE, + ACTIONS(3857), 1, + anon_sym_CARET, + ACTIONS(3859), 1, + anon_sym_AMP, + STATE(1058), 1, + sym_argument_list, + ACTIONS(3040), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3042), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3839), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3841), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3845), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3836), 2, + ACTIONS(3847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2991), 14, + ACTIONS(3849), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3861), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3020), 13, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -137987,50 +139398,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym_QMARK, - [62460] = 4, + [62711] = 19, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1254), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(1256), 19, + ACTIONS(3022), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(3038), 1, + anon_sym_LBRACK, + ACTIONS(3843), 1, + anon_sym_SLASH, + ACTIONS(3853), 1, + anon_sym_AMP_AMP, + ACTIONS(3855), 1, + anon_sym_PIPE, + ACTIONS(3857), 1, + anon_sym_CARET, + ACTIONS(3859), 1, anon_sym_AMP, - anon_sym_SEMI, + STATE(1058), 1, + sym_argument_list, + ACTIONS(3040), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [62507] = 4, + ACTIONS(3042), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3839), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3841), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3845), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3847), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3849), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3861), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3020), 12, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_QMARK, + [62788] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, @@ -138073,12 +139499,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [62554] = 4, + [62835] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1274), 17, + ACTIONS(1334), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -138096,7 +139522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1276), 19, + ACTIONS(1336), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -138116,112 +139542,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [62601] = 17, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2993), 1, - anon_sym_LPAREN2, - ACTIONS(3015), 1, - anon_sym_LBRACK, - ACTIONS(3017), 1, - anon_sym_PIPE, - ACTIONS(3816), 1, - anon_sym_SLASH, - ACTIONS(3830), 1, - anon_sym_AMP, - STATE(1039), 1, - sym_argument_list, - ACTIONS(3019), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3021), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3812), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3814), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3818), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3832), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3834), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3836), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2991), 14, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym_QMARK, - [62674] = 21, + [62882] = 21, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(3022), 1, anon_sym_LPAREN2, - ACTIONS(3015), 1, + ACTIONS(3038), 1, anon_sym_LBRACK, - ACTIONS(3816), 1, + ACTIONS(3843), 1, anon_sym_SLASH, - ACTIONS(3822), 1, + ACTIONS(3851), 1, anon_sym_PIPE_PIPE, - ACTIONS(3824), 1, + ACTIONS(3853), 1, anon_sym_AMP_AMP, - ACTIONS(3826), 1, + ACTIONS(3855), 1, anon_sym_PIPE, - ACTIONS(3828), 1, + ACTIONS(3857), 1, anon_sym_CARET, - ACTIONS(3830), 1, + ACTIONS(3859), 1, anon_sym_AMP, - ACTIONS(3838), 1, + ACTIONS(3863), 1, anon_sym_QMARK, - STATE(1039), 1, + STATE(1058), 1, sym_argument_list, - ACTIONS(3019), 2, + ACTIONS(3040), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3021), 2, + ACTIONS(3042), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3812), 2, + ACTIONS(3839), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3814), 2, + ACTIONS(3841), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3818), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3832), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3834), 2, + ACTIONS(3845), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3836), 2, + ACTIONS(3847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3082), 10, + ACTIONS(3849), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3861), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3865), 10, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, @@ -138232,36 +139602,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [62755] = 11, + [62963] = 11, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(3022), 1, anon_sym_LPAREN2, - ACTIONS(3015), 1, + ACTIONS(3038), 1, anon_sym_LBRACK, - ACTIONS(3816), 1, + ACTIONS(3843), 1, anon_sym_SLASH, - STATE(1039), 1, + STATE(1058), 1, sym_argument_list, - ACTIONS(3019), 2, + ACTIONS(3040), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3021), 2, + ACTIONS(3042), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3814), 2, + ACTIONS(3841), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3017), 6, + ACTIONS(3028), 6, anon_sym_DASH, anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2991), 20, + ACTIONS(3020), 20, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138282,72 +139652,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym_QMARK, - [62816] = 21, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2993), 1, - anon_sym_LPAREN2, - ACTIONS(3015), 1, - anon_sym_LBRACK, - ACTIONS(3816), 1, - anon_sym_SLASH, - ACTIONS(3822), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3824), 1, - anon_sym_AMP_AMP, - ACTIONS(3826), 1, - anon_sym_PIPE, - ACTIONS(3828), 1, - anon_sym_CARET, - ACTIONS(3830), 1, - anon_sym_AMP, - ACTIONS(3838), 1, - anon_sym_QMARK, - STATE(1039), 1, - sym_argument_list, - ACTIONS(3019), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3021), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3812), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3814), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3818), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3832), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3834), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3836), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3070), 10, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [62897] = 4, + [63024] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1294), 17, + ACTIONS(1246), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -138365,7 +139675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1296), 19, + ACTIONS(1248), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -138385,53 +139695,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [62944] = 18, + [63071] = 21, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(3022), 1, anon_sym_LPAREN2, - ACTIONS(3015), 1, + ACTIONS(3038), 1, anon_sym_LBRACK, - ACTIONS(3017), 1, - anon_sym_PIPE, - ACTIONS(3816), 1, + ACTIONS(3843), 1, anon_sym_SLASH, - ACTIONS(3828), 1, + ACTIONS(3851), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3853), 1, + anon_sym_AMP_AMP, + ACTIONS(3855), 1, + anon_sym_PIPE, + ACTIONS(3857), 1, anon_sym_CARET, - ACTIONS(3830), 1, + ACTIONS(3859), 1, anon_sym_AMP, - STATE(1039), 1, + ACTIONS(3863), 1, + anon_sym_QMARK, + STATE(1058), 1, sym_argument_list, - ACTIONS(3019), 2, + ACTIONS(3040), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3021), 2, + ACTIONS(3042), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3812), 2, + ACTIONS(3839), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3814), 2, + ACTIONS(3841), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3818), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3832), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3834), 2, + ACTIONS(3845), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3836), 2, + ACTIONS(3847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2991), 13, + ACTIONS(3849), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3861), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3044), 10, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -138441,13 +139755,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_QMARK, - [63019] = 4, + [63152] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1242), 17, + ACTIONS(1250), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -138465,7 +139778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1244), 19, + ACTIONS(1252), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -138485,169 +139798,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63066] = 19, + [63199] = 18, + ACTIONS(2307), 1, + anon_sym_LPAREN2, + ACTIONS(2309), 1, + anon_sym_STAR, + ACTIONS(3689), 1, + anon_sym_LBRACK, + ACTIONS(3869), 1, + sym_ms_restrict_modifier, + ACTIONS(3875), 1, + anon_sym_const, + STATE(1759), 1, + sym_ms_unaligned_ptr_modifier, + STATE(2017), 1, + sym_alignas_qualifier, + STATE(2370), 1, + sym__abstract_declarator, + STATE(2397), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3871), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3873), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3877), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1690), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1712), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3683), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(2396), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(3867), 8, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [63272] = 18, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(2130), 1, anon_sym_LPAREN2, - ACTIONS(3015), 1, - anon_sym_LBRACK, - ACTIONS(3816), 1, - anon_sym_SLASH, - ACTIONS(3824), 1, - anon_sym_AMP_AMP, - ACTIONS(3826), 1, - anon_sym_PIPE, - ACTIONS(3828), 1, - anon_sym_CARET, - ACTIONS(3830), 1, - anon_sym_AMP, - STATE(1039), 1, - sym_argument_list, - ACTIONS(3019), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3021), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3812), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3814), 2, + ACTIONS(2132), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3818), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3832), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3834), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3836), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2991), 12, + ACTIONS(3681), 1, + sym_identifier, + ACTIONS(3689), 1, + anon_sym_LBRACK, + STATE(1695), 1, + sym_alignas_qualifier, + STATE(2132), 1, + sym__declarator, + STATE(2370), 1, + sym__abstract_declarator, + STATE(2397), 1, + sym_parameter_list, + STATE(3453), 1, + sym_ms_based_modifier, + ACTIONS(2034), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3683), 2, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym_QMARK, - [63143] = 18, + anon_sym_RPAREN, + STATE(1573), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(2396), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(2220), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(2030), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [63345] = 18, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(2130), 1, anon_sym_LPAREN2, - ACTIONS(3015), 1, - anon_sym_LBRACK, - ACTIONS(3816), 1, - anon_sym_SLASH, - ACTIONS(3826), 1, - anon_sym_PIPE, - ACTIONS(3828), 1, - anon_sym_CARET, - ACTIONS(3830), 1, - anon_sym_AMP, - STATE(1039), 1, - sym_argument_list, - ACTIONS(3019), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3021), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3812), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3814), 2, + ACTIONS(2132), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3818), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3832), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3834), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3836), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2991), 13, + ACTIONS(3681), 1, + sym_identifier, + ACTIONS(3689), 1, + anon_sym_LBRACK, + STATE(1695), 1, + sym_alignas_qualifier, + STATE(2130), 1, + sym__declarator, + STATE(2325), 1, + sym__abstract_declarator, + STATE(2397), 1, + sym_parameter_list, + STATE(3453), 1, + sym_ms_based_modifier, + ACTIONS(2034), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3879), 2, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym_QMARK, - [63218] = 18, - ACTIONS(2278), 1, + anon_sym_RPAREN, + STATE(1573), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(2396), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(2220), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(2030), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [63418] = 18, + ACTIONS(2307), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2309), 1, anon_sym_STAR, - ACTIONS(3658), 1, + ACTIONS(3689), 1, anon_sym_LBRACK, - ACTIONS(3842), 1, + ACTIONS(3869), 1, sym_ms_restrict_modifier, - ACTIONS(3848), 1, + ACTIONS(3875), 1, anon_sym_const, - STATE(1751), 1, + STATE(1759), 1, sym_ms_unaligned_ptr_modifier, - STATE(1990), 1, + STATE(2017), 1, sym_alignas_qualifier, - STATE(2318), 1, + STATE(2378), 1, sym__abstract_declarator, - STATE(2375), 1, + STATE(2397), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3844), 2, + ACTIONS(3871), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3846), 2, + ACTIONS(3873), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3850), 2, + ACTIONS(3877), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1674), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1690), 2, + STATE(1455), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(3652), 3, + STATE(1685), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3691), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(2380), 4, + STATE(2396), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3840), 8, + ACTIONS(3867), 8, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [63491] = 17, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3881), 1, + sym_identifier, + ACTIONS(3883), 1, + anon_sym_LPAREN2, + ACTIONS(3885), 1, + anon_sym_STAR, + STATE(1620), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1695), 1, + sym_alignas_qualifier, + STATE(2300), 1, + sym__field_declarator, + STATE(3027), 1, + sym_ms_based_modifier, + ACTIONS(2034), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3687), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1500), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1725), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3685), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(2437), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(2030), 9, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -138655,52 +140071,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [63291] = 18, + [63561] = 17, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(2107), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2109), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(3650), 1, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3681), 1, sym_identifier, - ACTIONS(3658), 1, - anon_sym_LBRACK, - STATE(1671), 1, + STATE(1620), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1695), 1, sym_alignas_qualifier, - STATE(2085), 1, + STATE(2132), 1, sym__declarator, - STATE(2339), 1, - sym__abstract_declarator, - STATE(2375), 1, - sym_parameter_list, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3852), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1549), 2, + ACTIONS(3687), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1471), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1716), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(2380), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(2209), 5, + ACTIONS(3685), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -138710,54 +140124,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [63364] = 18, - ACTIONS(2278), 1, + [63631] = 17, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3881), 1, + sym_identifier, + ACTIONS(3883), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(3885), 1, anon_sym_STAR, - ACTIONS(3658), 1, - anon_sym_LBRACK, - ACTIONS(3842), 1, - sym_ms_restrict_modifier, - ACTIONS(3848), 1, - anon_sym_const, - STATE(1751), 1, + STATE(1620), 1, sym_ms_unaligned_ptr_modifier, - STATE(1990), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(2356), 1, - sym__abstract_declarator, - STATE(2375), 1, - sym_parameter_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3844), 2, + STATE(2294), 1, + sym__field_declarator, + STATE(3027), 1, + sym_ms_based_modifier, + ACTIONS(2034), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3687), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1500), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1713), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3685), 3, + sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3846), 2, + STATE(2437), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(2030), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [63701] = 17, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3881), 1, + sym_identifier, + ACTIONS(3883), 1, + anon_sym_LPAREN2, + ACTIONS(3885), 1, + anon_sym_STAR, + STATE(1620), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1695), 1, + sym_alignas_qualifier, + STATE(2300), 1, + sym__field_declarator, + STATE(3027), 1, + sym_ms_based_modifier, + ACTIONS(2034), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3687), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3850), 2, + STATE(1461), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1725), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3685), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(2437), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(2030), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [63771] = 17, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3881), 1, + sym_identifier, + ACTIONS(3883), 1, + anon_sym_LPAREN2, + ACTIONS(3885), 1, + anon_sym_STAR, + STATE(1620), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1695), 1, + sym_alignas_qualifier, + STATE(2321), 1, + sym__field_declarator, + STATE(3027), 1, + sym_ms_based_modifier, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1442), 2, + ACTIONS(3687), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1459), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1682), 2, + STATE(1717), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3670), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(2380), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3840), 8, + ACTIONS(3685), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(2437), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(2030), 9, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -138765,52 +140283,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [63437] = 18, + [63841] = 17, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(2107), 1, + ACTIONS(3887), 1, + sym_identifier, + ACTIONS(3889), 1, anon_sym_LPAREN2, - ACTIONS(2109), 1, + ACTIONS(3891), 1, anon_sym_STAR, - ACTIONS(3650), 1, - sym_identifier, - ACTIONS(3658), 1, - anon_sym_LBRACK, - STATE(1671), 1, + STATE(1620), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1695), 1, sym_alignas_qualifier, - STATE(2110), 1, - sym__declarator, - STATE(2318), 1, - sym__abstract_declarator, - STATE(2375), 1, - sym_parameter_list, - STATE(3337), 1, + STATE(2002), 1, + sym__field_declarator, + STATE(3316), 1, sym_ms_based_modifier, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3652), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1549), 2, + ACTIONS(3687), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1500), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1709), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(2380), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(2209), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(1995), 9, + ACTIONS(3685), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(2081), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -138820,50 +140336,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [63510] = 17, + [63911] = 17, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3650), 1, + ACTIONS(3681), 1, sym_identifier, - STATE(1597), 1, + STATE(1620), 1, sym_ms_unaligned_ptr_modifier, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(2085), 1, + STATE(2132), 1, sym__declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3656), 2, + ACTIONS(3687), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1482), 2, + STATE(1500), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1692), 2, + STATE(1716), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3654), 3, + ACTIONS(3685), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(2209), 5, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -138873,106 +140389,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [63580] = 20, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3433), 1, - anon_sym_LPAREN2, - ACTIONS(3435), 1, - anon_sym_LBRACK, - ACTIONS(3858), 1, - anon_sym_SLASH, - ACTIONS(3860), 1, - anon_sym_AMP_AMP, - ACTIONS(3862), 1, - anon_sym_PIPE, - ACTIONS(3864), 1, - anon_sym_CARET, - ACTIONS(3866), 1, - anon_sym_AMP, - STATE(1225), 1, - sym_argument_list, - ACTIONS(3017), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(3437), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3439), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3854), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3856), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3868), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3870), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3872), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3874), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2991), 7, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - [63656] = 17, + [63981] = 17, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3876), 1, + ACTIONS(3887), 1, sym_identifier, - ACTIONS(3878), 1, + ACTIONS(3889), 1, anon_sym_LPAREN2, - ACTIONS(3880), 1, + ACTIONS(3891), 1, anon_sym_STAR, - STATE(1597), 1, + STATE(1620), 1, sym_ms_unaligned_ptr_modifier, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(1996), 1, + STATE(2032), 1, sym__field_declarator, - STATE(3201), 1, + STATE(3316), 1, sym_ms_based_modifier, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3656), 2, + ACTIONS(3687), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1482), 2, + STATE(1464), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1688), 2, + STATE(1708), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3654), 3, + ACTIONS(3685), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(2054), 5, + STATE(2081), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -138982,101 +140442,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [63726] = 15, + [64051] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3435), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - ACTIONS(3858), 1, + ACTIONS(3897), 1, anon_sym_SLASH, - STATE(1225), 1, + ACTIONS(3899), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3901), 1, + anon_sym_AMP_AMP, + ACTIONS(3903), 1, + anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_CARET, + ACTIONS(3907), 1, + anon_sym_AMP, + ACTIONS(3917), 1, + anon_sym_QMARK, + STATE(1250), 1, sym_argument_list, - ACTIONS(3437), 2, + ACTIONS(3090), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(3458), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3439), 2, + ACTIONS(3460), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3854), 2, + ACTIONS(3893), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3856), 2, + ACTIONS(3895), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3870), 2, + ACTIONS(3909), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3911), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3872), 2, + ACTIONS(3913), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3874), 2, + ACTIONS(3915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3017), 4, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - sym_identifier, - ACTIONS(2991), 11, + ACTIONS(3088), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - [63792] = 17, + [64131] = 17, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3882), 1, + ACTIONS(3887), 1, sym_identifier, - ACTIONS(3884), 1, + ACTIONS(3889), 1, anon_sym_LPAREN2, - ACTIONS(3886), 1, + ACTIONS(3891), 1, anon_sym_STAR, - STATE(1597), 1, + STATE(1620), 1, sym_ms_unaligned_ptr_modifier, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(2276), 1, + STATE(2032), 1, sym__field_declarator, - STATE(3061), 1, + STATE(3316), 1, sym_ms_based_modifier, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3656), 2, + ACTIONS(3687), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1482), 2, + STATE(1500), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1704), 2, + STATE(1708), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3654), 3, + ACTIONS(3685), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(2422), 5, + STATE(2081), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -139086,50 +140553,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [63862] = 17, + [64201] = 17, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3650), 1, + ACTIONS(3681), 1, sym_identifier, - STATE(1597), 1, + STATE(1620), 1, sym_ms_unaligned_ptr_modifier, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(2081), 1, + STATE(2134), 1, sym__declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3656), 2, + ACTIONS(3687), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1461), 2, + STATE(1465), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1699), 2, + STATE(1718), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3654), 3, + ACTIONS(3685), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(2209), 5, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -139139,39 +140606,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [63932] = 12, + [64271] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3435), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - ACTIONS(3858), 1, + ACTIONS(3897), 1, anon_sym_SLASH, - STATE(1225), 1, + ACTIONS(3899), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3901), 1, + anon_sym_AMP_AMP, + ACTIONS(3903), 1, + anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_CARET, + ACTIONS(3907), 1, + anon_sym_AMP, + ACTIONS(3917), 1, + anon_sym_QMARK, + STATE(1250), 1, sym_argument_list, - ACTIONS(3437), 2, + ACTIONS(3056), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(3458), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3439), 2, + ACTIONS(3460), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3854), 2, + ACTIONS(3893), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3856), 2, + ACTIONS(3895), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3909), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3911), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3913), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3044), 5, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [64351] = 17, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2090), 1, + anon_sym_LPAREN2, + ACTIONS(2092), 1, + anon_sym_STAR, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3681), 1, + sym_identifier, + STATE(1620), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1695), 1, + sym_alignas_qualifier, + STATE(2130), 1, + sym__declarator, + STATE(3453), 1, + sym_ms_based_modifier, + ACTIONS(2034), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3687), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1500), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1707), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3685), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(2220), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(2030), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [64421] = 11, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3454), 1, + anon_sym_LPAREN2, + ACTIONS(3456), 1, + anon_sym_LBRACK, + ACTIONS(3897), 1, + anon_sym_SLASH, + STATE(1250), 1, + sym_argument_list, + ACTIONS(3458), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3460), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3895), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3017), 6, + ACTIONS(3028), 8, aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, sym_identifier, - ACTIONS(2991), 15, + ACTIONS(3020), 15, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -139187,322 +140764,325 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - [63992] = 22, + [64479] = 20, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3435), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - ACTIONS(3858), 1, + ACTIONS(3897), 1, anon_sym_SLASH, - ACTIONS(3860), 1, + ACTIONS(3901), 1, anon_sym_AMP_AMP, - ACTIONS(3862), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3864), 1, + ACTIONS(3905), 1, anon_sym_CARET, - ACTIONS(3866), 1, + ACTIONS(3907), 1, anon_sym_AMP, - ACTIONS(3888), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3890), 1, - anon_sym_QMARK, - STATE(1225), 1, + STATE(1250), 1, sym_argument_list, - ACTIONS(3084), 2, + ACTIONS(3028), 2, aux_sym_preproc_elif_token1, sym_identifier, - ACTIONS(3437), 2, + ACTIONS(3458), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3439), 2, + ACTIONS(3460), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3854), 2, + ACTIONS(3893), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3856), 2, + ACTIONS(3895), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3868), 2, + ACTIONS(3909), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3870), 2, + ACTIONS(3911), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3872), 2, + ACTIONS(3913), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3874), 2, + ACTIONS(3915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3082), 5, + ACTIONS(3020), 7, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [64072] = 17, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + [64555] = 19, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3876), 1, - sym_identifier, - ACTIONS(3878), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3880), 1, - anon_sym_STAR, - STATE(1597), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1671), 1, - sym_alignas_qualifier, - STATE(1985), 1, - sym__field_declarator, - STATE(3201), 1, - sym_ms_based_modifier, - ACTIONS(1999), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(3656), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1448), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1685), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3654), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(2054), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(1995), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [64142] = 17, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3876), 1, + ACTIONS(3456), 1, + anon_sym_LBRACK, + ACTIONS(3897), 1, + anon_sym_SLASH, + ACTIONS(3903), 1, + anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_CARET, + ACTIONS(3907), 1, + anon_sym_AMP, + STATE(1250), 1, + sym_argument_list, + ACTIONS(3028), 2, + aux_sym_preproc_elif_token1, sym_identifier, - ACTIONS(3878), 1, - anon_sym_LPAREN2, - ACTIONS(3880), 1, + ACTIONS(3458), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3460), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3893), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3895), 2, anon_sym_STAR, - STATE(1597), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1671), 1, - sym_alignas_qualifier, - STATE(1996), 1, - sym__field_declarator, - STATE(3201), 1, - sym_ms_based_modifier, - ACTIONS(1999), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(3656), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1466), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1688), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3654), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(2054), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(1995), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [64212] = 22, + anon_sym_PERCENT, + ACTIONS(3909), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3911), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3913), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3020), 8, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + [64629] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3435), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - ACTIONS(3858), 1, + ACTIONS(3897), 1, anon_sym_SLASH, - ACTIONS(3860), 1, + ACTIONS(3899), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3901), 1, anon_sym_AMP_AMP, - ACTIONS(3862), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3864), 1, + ACTIONS(3905), 1, anon_sym_CARET, - ACTIONS(3866), 1, + ACTIONS(3907), 1, anon_sym_AMP, - ACTIONS(3888), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3890), 1, + ACTIONS(3917), 1, anon_sym_QMARK, - STATE(1225), 1, + STATE(1250), 1, sym_argument_list, - ACTIONS(3074), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(3437), 2, + ACTIONS(3458), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3439), 2, + ACTIONS(3460), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3854), 2, + ACTIONS(3893), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3856), 2, + ACTIONS(3895), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3868), 2, + ACTIONS(3909), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3870), 2, + ACTIONS(3911), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3872), 2, + ACTIONS(3913), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3874), 2, + ACTIONS(3915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3070), 5, + ACTIONS(3919), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(3921), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [64292] = 22, + [64709] = 18, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3435), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - ACTIONS(3858), 1, + ACTIONS(3897), 1, anon_sym_SLASH, - ACTIONS(3860), 1, - anon_sym_AMP_AMP, - ACTIONS(3862), 1, - anon_sym_PIPE, - ACTIONS(3864), 1, + ACTIONS(3905), 1, anon_sym_CARET, - ACTIONS(3866), 1, + ACTIONS(3907), 1, anon_sym_AMP, - ACTIONS(3888), 1, + STATE(1250), 1, + sym_argument_list, + ACTIONS(3458), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3460), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3893), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3895), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3909), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3911), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3913), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3028), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + sym_identifier, + ACTIONS(3020), 8, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, - ACTIONS(3890), 1, + anon_sym_AMP_AMP, anon_sym_QMARK, - STATE(1225), 1, + [64781] = 17, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3454), 1, + anon_sym_LPAREN2, + ACTIONS(3456), 1, + anon_sym_LBRACK, + ACTIONS(3897), 1, + anon_sym_SLASH, + ACTIONS(3907), 1, + anon_sym_AMP, + STATE(1250), 1, sym_argument_list, - ACTIONS(3437), 2, + ACTIONS(3458), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3439), 2, + ACTIONS(3460), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3854), 2, + ACTIONS(3893), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3856), 2, + ACTIONS(3895), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3868), 2, + ACTIONS(3909), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3870), 2, + ACTIONS(3911), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3872), 2, + ACTIONS(3913), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3874), 2, + ACTIONS(3915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3892), 2, + ACTIONS(3028), 3, aux_sym_preproc_elif_token1, + anon_sym_PIPE, sym_identifier, - ACTIONS(3894), 5, + ACTIONS(3020), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [64372] = 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_QMARK, + [64851] = 16, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3435), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - ACTIONS(3858), 1, + ACTIONS(3897), 1, anon_sym_SLASH, - STATE(1225), 1, + STATE(1250), 1, sym_argument_list, - ACTIONS(3437), 2, + ACTIONS(3458), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3439), 2, + ACTIONS(3460), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3854), 2, + ACTIONS(3893), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3856), 2, + ACTIONS(3895), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3874), 2, + ACTIONS(3909), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3911), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3913), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3017), 6, + ACTIONS(3028), 4, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, sym_identifier, - ACTIONS(2991), 13, + ACTIONS(3020), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -139511,43 +141091,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_QMARK, - [64434] = 11, + [64919] = 15, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3435), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - ACTIONS(3858), 1, + ACTIONS(3897), 1, anon_sym_SLASH, - STATE(1225), 1, + STATE(1250), 1, sym_argument_list, - ACTIONS(3437), 2, + ACTIONS(3458), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3439), 2, + ACTIONS(3460), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3856), 2, + ACTIONS(3893), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3895), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3017), 8, + ACTIONS(3911), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3913), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3028), 4, aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, sym_identifier, - ACTIONS(2991), 15, + ACTIONS(3020), 11, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -139558,169 +141142,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_QMARK, - [64492] = 22, + [64985] = 22, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3435), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - ACTIONS(3858), 1, + ACTIONS(3897), 1, anon_sym_SLASH, - ACTIONS(3860), 1, + ACTIONS(3899), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3901), 1, anon_sym_AMP_AMP, - ACTIONS(3862), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3864), 1, + ACTIONS(3905), 1, anon_sym_CARET, - ACTIONS(3866), 1, + ACTIONS(3907), 1, anon_sym_AMP, - ACTIONS(3888), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3890), 1, + ACTIONS(3917), 1, anon_sym_QMARK, - STATE(1225), 1, + STATE(1250), 1, sym_argument_list, - ACTIONS(3080), 2, + ACTIONS(3062), 2, aux_sym_preproc_elif_token1, sym_identifier, - ACTIONS(3437), 2, + ACTIONS(3458), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3439), 2, + ACTIONS(3460), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3854), 2, + ACTIONS(3893), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3856), 2, + ACTIONS(3895), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3868), 2, + ACTIONS(3909), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3870), 2, + ACTIONS(3911), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3872), 2, + ACTIONS(3913), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3874), 2, + ACTIONS(3915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3078), 5, + ACTIONS(3060), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [64572] = 17, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2047), 1, - anon_sym_LPAREN2, - ACTIONS(2049), 1, - anon_sym_STAR, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3650), 1, - sym_identifier, - STATE(1597), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1671), 1, - sym_alignas_qualifier, - STATE(2110), 1, - sym__declarator, - STATE(3337), 1, - sym_ms_based_modifier, - ACTIONS(1999), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(3656), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1482), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1702), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3654), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(2209), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(1995), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [64642] = 19, + [65065] = 13, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3435), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - ACTIONS(3858), 1, + ACTIONS(3897), 1, anon_sym_SLASH, - ACTIONS(3862), 1, - anon_sym_PIPE, - ACTIONS(3864), 1, - anon_sym_CARET, - ACTIONS(3866), 1, - anon_sym_AMP, - STATE(1225), 1, + STATE(1250), 1, sym_argument_list, - ACTIONS(3017), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(3437), 2, + ACTIONS(3458), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3439), 2, + ACTIONS(3460), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3854), 2, + ACTIONS(3893), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3856), 2, + ACTIONS(3895), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3868), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3870), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3872), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3874), 2, + ACTIONS(3915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2991), 8, + ACTIONS(3028), 6, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + sym_identifier, + ACTIONS(3020), 13, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -139728,53 +141244,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_QMARK, - [64716] = 18, + [65127] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3435), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - ACTIONS(3858), 1, + ACTIONS(3897), 1, anon_sym_SLASH, - ACTIONS(3864), 1, - anon_sym_CARET, - ACTIONS(3866), 1, - anon_sym_AMP, - STATE(1225), 1, + STATE(1250), 1, sym_argument_list, - ACTIONS(3437), 2, + ACTIONS(3458), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3439), 2, + ACTIONS(3460), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3854), 2, + ACTIONS(3893), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3856), 2, + ACTIONS(3895), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3868), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3870), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3872), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3874), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3017), 3, + ACTIONS(3028), 6, aux_sym_preproc_elif_token1, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, sym_identifier, - ACTIONS(2991), 8, + ACTIONS(3020), 15, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -139782,51 +141290,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - [64788] = 17, + [65187] = 17, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3882), 1, + ACTIONS(3887), 1, sym_identifier, - ACTIONS(3884), 1, + ACTIONS(3889), 1, anon_sym_LPAREN2, - ACTIONS(3886), 1, + ACTIONS(3891), 1, anon_sym_STAR, - STATE(1597), 1, + STATE(1620), 1, sym_ms_unaligned_ptr_modifier, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(2294), 1, + STATE(1992), 1, sym__field_declarator, - STATE(3061), 1, + STATE(3316), 1, sym_ms_based_modifier, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3656), 2, + ACTIONS(3687), 2, anon_sym__unaligned, anon_sym___unaligned, STATE(1468), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1697), 2, + STATE(1710), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3654), 3, + ACTIONS(3685), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(2422), 5, + STATE(2081), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -139836,51 +141351,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [64858] = 17, + [65257] = 11, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3882), 1, - sym_identifier, - ACTIONS(3884), 1, + ACTIONS(3929), 1, + anon_sym_LBRACE, + ACTIONS(3931), 1, + anon_sym___aligned, + STATE(1528), 1, + sym_field_declaration_list, + STATE(1795), 1, + sym_attribute_specifier, + ACTIONS(2952), 2, anon_sym_LPAREN2, - ACTIONS(3886), 1, anon_sym_STAR, - STATE(1597), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1671), 1, - sym_alignas_qualifier, - STATE(2284), 1, - sym__field_declarator, - STATE(3061), 1, - sym_ms_based_modifier, - ACTIONS(1999), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(3656), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1450), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1687), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3654), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(2422), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(1995), 9, + ACTIONS(3923), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3925), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3927), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2950), 18, anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -139889,51 +141393,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [64928] = 17, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [65314] = 11, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3876), 1, - sym_identifier, - ACTIONS(3878), 1, + ACTIONS(3929), 1, + anon_sym_LBRACE, + ACTIONS(3933), 1, + anon_sym___aligned, + STATE(1543), 1, + sym_field_declaration_list, + STATE(1802), 1, + sym_attribute_specifier, + ACTIONS(2966), 2, anon_sym_LPAREN2, - ACTIONS(3880), 1, anon_sym_STAR, - STATE(1597), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1671), 1, - sym_alignas_qualifier, - STATE(2008), 1, - sym__field_declarator, - STATE(3201), 1, - sym_ms_based_modifier, - ACTIONS(1999), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(3656), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1482), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1693), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3654), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(2054), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(1995), 9, + ACTIONS(3923), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3925), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3927), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2964), 18, anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -139942,51 +141439,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [64998] = 17, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [65371] = 11, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(3941), 1, + anon_sym_LBRACE, + ACTIONS(3943), 1, + anon_sym_COLON, + STATE(1545), 1, + sym_enumerator_list, + STATE(1820), 1, + sym_attribute_specifier, + ACTIONS(2992), 2, anon_sym_LPAREN2, - ACTIONS(2049), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(3935), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3937), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3939), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2990), 18, + anon_sym___extension__, anon_sym___based, - ACTIONS(3650), 1, - sym_identifier, - STATE(1597), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1671), 1, - sym_alignas_qualifier, - STATE(2110), 1, - sym__declarator, - STATE(3337), 1, - sym_ms_based_modifier, - ACTIONS(1999), 2, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3656), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1446), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1702), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3654), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(2209), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(1995), 9, + sym_primitive_type, + sym_identifier, + [65428] = 11, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3929), 1, + anon_sym_LBRACE, + ACTIONS(3945), 1, + anon_sym___aligned, + STATE(1529), 1, + sym_field_declaration_list, + STATE(1787), 1, + sym_attribute_specifier, + ACTIONS(2986), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3923), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3925), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3927), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2984), 18, anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -139995,50 +141531,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [65068] = 17, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [65485] = 16, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3882), 1, + ACTIONS(3947), 1, sym_identifier, - ACTIONS(3884), 1, - anon_sym_LPAREN2, - ACTIONS(3886), 1, - anon_sym_STAR, - STATE(1597), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1671), 1, + ACTIONS(3951), 1, + sym_primitive_type, + ACTIONS(3953), 1, + anon_sym_enum, + ACTIONS(3955), 1, + anon_sym_struct, + ACTIONS(3957), 1, + anon_sym_union, + STATE(1695), 1, sym_alignas_qualifier, - STATE(2284), 1, - sym__field_declarator, - STATE(3061), 1, - sym_ms_based_modifier, - ACTIONS(1999), 2, + STATE(1745), 1, + sym_type_specifier, + STATE(1791), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1994), 1, + sym__type_definition_type, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3656), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1482), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1687), 2, + STATE(1534), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3654), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(2422), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(1995), 9, + ACTIONS(3949), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1854), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -140048,145 +141585,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [65138] = 17, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3433), 1, + [65551] = 20, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3435), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3858), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3866), 1, - anon_sym_AMP, - STATE(1225), 1, - sym_argument_list, - ACTIONS(3437), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3439), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3854), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3856), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3868), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3870), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3872), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3874), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3017), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - sym_identifier, - ACTIONS(2991), 9, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, + ACTIONS(3967), 1, anon_sym_AMP_AMP, + ACTIONS(3969), 1, + anon_sym_PIPE, + ACTIONS(3971), 1, anon_sym_CARET, + ACTIONS(3973), 1, + anon_sym_AMP, + ACTIONS(3983), 1, anon_sym_QMARK, - [65208] = 16, - ACTIONS(3), 1, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(3433), 1, - anon_sym_LPAREN2, - ACTIONS(3435), 1, - anon_sym_LBRACK, - ACTIONS(3858), 1, - anon_sym_SLASH, - STATE(1225), 1, - sym_argument_list, - ACTIONS(3437), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3439), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3854), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3856), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3868), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3870), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3872), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3874), 2, + ACTIONS(3981), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3017), 4, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - sym_identifier, - ACTIONS(2991), 9, + ACTIONS(3060), 5, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, - [65276] = 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + [65625] = 16, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3902), 1, - anon_sym_LBRACE, - ACTIONS(3904), 1, - anon_sym___aligned, - STATE(1521), 1, - sym_field_declaration_list, - STATE(1788), 1, - sym_attribute_specifier, - ACTIONS(2948), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3896), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3898), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3900), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(2946), 18, - anon_sym___extension__, - anon_sym___based, + ACTIONS(3947), 1, + sym_identifier, + ACTIONS(3951), 1, + sym_primitive_type, + ACTIONS(3953), 1, + anon_sym_enum, + ACTIONS(3955), 1, + anon_sym_struct, + ACTIONS(3957), 1, + anon_sym_union, + STATE(1695), 1, + sym_alignas_qualifier, + STATE(1745), 1, + sym_type_specifier, + STATE(1791), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1995), 1, + sym__type_definition_type, + ACTIONS(2034), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1534), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3949), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + STATE(1854), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(2030), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -140195,44 +141689,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [65333] = 11, + [65691] = 16, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3902), 1, - anon_sym_LBRACE, - ACTIONS(3906), 1, - anon_sym___aligned, - STATE(1523), 1, - sym_field_declaration_list, - STATE(1785), 1, - sym_attribute_specifier, - ACTIONS(2970), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3896), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3898), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3900), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(2968), 18, - anon_sym___extension__, - anon_sym___based, + ACTIONS(2036), 1, + sym_primitive_type, + ACTIONS(2038), 1, + anon_sym_enum, + ACTIONS(2040), 1, + anon_sym_struct, + ACTIONS(2042), 1, + anon_sym_union, + ACTIONS(3985), 1, + sym_identifier, + STATE(1695), 1, + sym_alignas_qualifier, + STATE(1705), 1, + sym_type_specifier, + STATE(1733), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3335), 1, + sym_type_descriptor, + ACTIONS(2034), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1531), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2032), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + STATE(2008), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(2030), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -140241,44 +141739,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [65390] = 11, + [65757] = 16, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3902), 1, - anon_sym_LBRACE, - ACTIONS(3908), 1, - anon_sym___aligned, - STATE(1519), 1, - sym_field_declaration_list, - STATE(1781), 1, - sym_attribute_specifier, - ACTIONS(2976), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3896), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3898), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3900), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(2974), 18, - anon_sym___extension__, - anon_sym___based, + ACTIONS(2036), 1, + sym_primitive_type, + ACTIONS(2040), 1, + anon_sym_struct, + ACTIONS(2042), 1, + anon_sym_union, + ACTIONS(3985), 1, + sym_identifier, + ACTIONS(3987), 1, + anon_sym_enum, + STATE(1695), 1, + sym_alignas_qualifier, + STATE(1705), 1, + sym_type_specifier, + STATE(1733), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3255), 1, + sym_type_descriptor, + ACTIONS(2034), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1536), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2032), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + STATE(2008), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(2030), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -140287,44 +141789,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + [65823] = 16, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2036), 1, + sym_primitive_type, + ACTIONS(2038), 1, + anon_sym_enum, + ACTIONS(2040), 1, + anon_sym_struct, + ACTIONS(2042), 1, + anon_sym_union, + ACTIONS(3985), 1, + sym_identifier, + STATE(1695), 1, + sym_alignas_qualifier, + STATE(1705), 1, + sym_type_specifier, + STATE(1733), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3144), 1, + sym_type_descriptor, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [65447] = 11, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3916), 1, - anon_sym_LBRACE, - ACTIONS(3918), 1, - anon_sym_COLON, - STATE(1557), 1, - sym_enumerator_list, - STATE(1812), 1, - sym_attribute_specifier, - ACTIONS(2931), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3910), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3912), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3914), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(2929), 18, - anon_sym___extension__, - anon_sym___based, + STATE(1531), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2032), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + STATE(2008), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(2030), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -140333,51 +141839,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [65504] = 16, + [65889] = 16, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2001), 1, + ACTIONS(3947), 1, + sym_identifier, + ACTIONS(3951), 1, sym_primitive_type, - ACTIONS(2003), 1, + ACTIONS(3953), 1, anon_sym_enum, - ACTIONS(2005), 1, + ACTIONS(3955), 1, anon_sym_struct, - ACTIONS(2007), 1, + ACTIONS(3957), 1, anon_sym_union, - ACTIONS(3920), 1, - sym_identifier, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(1678), 1, + STATE(1745), 1, sym_type_specifier, - STATE(1712), 1, + STATE(1791), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3374), 1, - sym_type_descriptor, - ACTIONS(1999), 2, + STATE(2006), 1, + sym__type_definition_type, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1517), 2, + STATE(1534), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1997), 4, + ACTIONS(3949), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1984), 5, + STATE(1854), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -140387,47 +141889,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [65570] = 16, + [65955] = 16, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2001), 1, + ACTIONS(2036), 1, sym_primitive_type, - ACTIONS(2003), 1, + ACTIONS(2038), 1, anon_sym_enum, - ACTIONS(2005), 1, + ACTIONS(2040), 1, anon_sym_struct, - ACTIONS(2007), 1, + ACTIONS(2042), 1, anon_sym_union, - ACTIONS(3920), 1, + ACTIONS(3985), 1, sym_identifier, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(1678), 1, + STATE(1705), 1, sym_type_specifier, - STATE(1712), 1, + STATE(1733), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3316), 1, + STATE(3263), 1, sym_type_descriptor, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1517), 2, + STATE(1531), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1997), 4, + ACTIONS(2032), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1984), 5, + STATE(2008), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -140437,192 +141939,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [65636] = 12, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3926), 1, - anon_sym_SLASH, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3922), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3924), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3017), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2991), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [65694] = 11, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3926), 1, - anon_sym_SLASH, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, + [66021] = 10, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3922), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3924), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3017), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2991), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [65750] = 20, - ACTIONS(3622), 1, + ACTIONS(3989), 1, + anon_sym_LBRACE, + STATE(1557), 1, + sym_field_declaration_list, + STATE(1828), 1, + sym_attribute_specifier, + ACTIONS(3111), 2, anon_sym_LPAREN2, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3926), 1, - anon_sym_SLASH, - ACTIONS(3930), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE, - ACTIONS(3936), 1, - anon_sym_CARET, - ACTIONS(3938), 1, - anon_sym_AMP, - ACTIONS(3946), 1, - anon_sym_QMARK, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3922), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3924), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3942), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3944), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3078), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - [65824] = 16, + ACTIONS(3935), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3937), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3939), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3109), 18, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [66075] = 16, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3948), 1, + ACTIONS(3947), 1, sym_identifier, - ACTIONS(3952), 1, + ACTIONS(3951), 1, sym_primitive_type, - ACTIONS(3954), 1, + ACTIONS(3953), 1, anon_sym_enum, - ACTIONS(3956), 1, + ACTIONS(3955), 1, anon_sym_struct, - ACTIONS(3958), 1, + ACTIONS(3957), 1, anon_sym_union, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(1724), 1, + STATE(1745), 1, sym_type_specifier, - STATE(1790), 1, + STATE(1791), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1975), 1, + STATE(2007), 1, sym__type_definition_type, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1527), 2, + STATE(1534), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3950), 4, + ACTIONS(3949), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1853), 5, + STATE(1854), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -140632,47 +142033,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [65890] = 16, + [66141] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3948), 1, + ACTIONS(3989), 1, + anon_sym_LBRACE, + STATE(1544), 1, + sym_field_declaration_list, + STATE(1817), 1, + sym_attribute_specifier, + ACTIONS(3129), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3935), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3937), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3939), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3127), 18, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - ACTIONS(3952), 1, + [66195] = 16, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2036), 1, sym_primitive_type, - ACTIONS(3954), 1, - anon_sym_enum, - ACTIONS(3956), 1, + ACTIONS(2040), 1, anon_sym_struct, - ACTIONS(3958), 1, + ACTIONS(2042), 1, anon_sym_union, - STATE(1671), 1, + ACTIONS(3985), 1, + sym_identifier, + ACTIONS(3987), 1, + anon_sym_enum, + STATE(1695), 1, sym_alignas_qualifier, - STATE(1724), 1, + STATE(1705), 1, sym_type_specifier, - STATE(1790), 1, + STATE(1733), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1974), 1, - sym__type_definition_type, - ACTIONS(1999), 2, + STATE(3321), 1, + sym_type_descriptor, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1527), 2, + STATE(1536), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3950), 4, + ACTIONS(2032), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1853), 5, + STATE(2008), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -140682,30 +142127,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [65956] = 8, + [66261] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1597), 1, + STATE(1620), 1, sym_ms_unaligned_ptr_modifier, - ACTIONS(3967), 2, + ACTIONS(3998), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1482), 2, + STATE(1500), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(3964), 3, + ACTIONS(3995), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3962), 5, + ACTIONS(3993), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(3960), 18, + ACTIONS(3991), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -140724,144 +142169,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [66006] = 14, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3926), 1, - anon_sym_SLASH, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3017), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3922), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3924), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3942), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3944), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2991), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [66068] = 15, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3926), 1, - anon_sym_SLASH, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3017), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3922), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3924), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3942), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3944), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2991), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [66132] = 16, + [66311] = 16, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3948), 1, + ACTIONS(3947), 1, sym_identifier, - ACTIONS(3952), 1, + ACTIONS(3951), 1, sym_primitive_type, - ACTIONS(3954), 1, + ACTIONS(3953), 1, anon_sym_enum, - ACTIONS(3956), 1, + ACTIONS(3955), 1, anon_sym_struct, - ACTIONS(3958), 1, + ACTIONS(3957), 1, anon_sym_union, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(1724), 1, + STATE(1745), 1, sym_type_specifier, - STATE(1790), 1, + STATE(1791), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2002), 1, + STATE(2019), 1, sym__type_definition_type, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1527), 2, + STATE(1534), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3950), 4, + ACTIONS(3949), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1853), 5, + STATE(1854), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -140871,97 +142219,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [66198] = 16, - ACTIONS(3017), 1, - anon_sym_PIPE, - ACTIONS(3622), 1, + [66377] = 20, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3938), 1, + ACTIONS(3965), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3967), 1, + anon_sym_AMP_AMP, + ACTIONS(3969), 1, + anon_sym_PIPE, + ACTIONS(3971), 1, + anon_sym_CARET, + ACTIONS(3973), 1, anon_sym_AMP, - STATE(1245), 1, + ACTIONS(3983), 1, + anon_sym_QMARK, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2991), 9, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3044), 5, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_QMARK, - [66264] = 16, + [66451] = 16, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2001), 1, + ACTIONS(3947), 1, + sym_identifier, + ACTIONS(3951), 1, sym_primitive_type, - ACTIONS(2005), 1, + ACTIONS(3953), 1, + anon_sym_enum, + ACTIONS(3955), 1, anon_sym_struct, - ACTIONS(2007), 1, + ACTIONS(3957), 1, anon_sym_union, - ACTIONS(3920), 1, - sym_identifier, - ACTIONS(3970), 1, - anon_sym_enum, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(1678), 1, + STATE(1745), 1, sym_type_specifier, - STATE(1712), 1, + STATE(1791), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3083), 1, - sym_type_descriptor, - ACTIONS(1999), 2, + STATE(2020), 1, + sym__type_definition_type, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1516), 2, + STATE(1534), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1997), 4, + ACTIONS(3949), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1984), 5, + STATE(1854), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -140971,345 +142323,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [66330] = 17, - ACTIONS(3017), 1, - anon_sym_PIPE, - ACTIONS(3622), 1, + [66517] = 20, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3936), 1, - anon_sym_CARET, - ACTIONS(3938), 1, - anon_sym_AMP, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3922), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3924), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3942), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3944), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2991), 8, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [66398] = 17, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3926), 1, - anon_sym_SLASH, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - STATE(1245), 1, + ACTIONS(3983), 1, + anon_sym_QMARK, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2991), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [66466] = 18, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3926), 1, - anon_sym_SLASH, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE, - ACTIONS(3936), 1, - anon_sym_CARET, - ACTIONS(3938), 1, - anon_sym_AMP, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3922), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3924), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3928), 2, + ACTIONS(3981), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3940), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3942), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3944), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2991), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [66536] = 10, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3926), 1, - anon_sym_SLASH, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3924), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3017), 6, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2991), 15, + ACTIONS(3088), 5, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [66590] = 16, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2001), 1, - sym_primitive_type, - ACTIONS(2005), 1, - anon_sym_struct, - ACTIONS(2007), 1, - anon_sym_union, - ACTIONS(3920), 1, - sym_identifier, - ACTIONS(3970), 1, - anon_sym_enum, - STATE(1671), 1, - sym_alignas_qualifier, - STATE(1678), 1, - sym_type_specifier, - STATE(1712), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3386), 1, - sym_type_descriptor, - ACTIONS(1999), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1516), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1997), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1984), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(1995), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [66656] = 16, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3948), 1, - sym_identifier, - ACTIONS(3952), 1, - sym_primitive_type, - ACTIONS(3954), 1, - anon_sym_enum, - ACTIONS(3956), 1, - anon_sym_struct, - ACTIONS(3958), 1, - anon_sym_union, - STATE(1671), 1, - sym_alignas_qualifier, - STATE(1724), 1, - sym_type_specifier, - STATE(1790), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1978), 1, - sym__type_definition_type, - ACTIONS(1999), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1527), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3950), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1853), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(1995), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [66722] = 16, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + [66591] = 16, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2001), 1, + ACTIONS(2036), 1, sym_primitive_type, - ACTIONS(2005), 1, + ACTIONS(2038), 1, + anon_sym_enum, + ACTIONS(2040), 1, anon_sym_struct, - ACTIONS(2007), 1, + ACTIONS(2042), 1, anon_sym_union, - ACTIONS(3920), 1, + ACTIONS(3985), 1, sym_identifier, - ACTIONS(3970), 1, - anon_sym_enum, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(1678), 1, + STATE(1705), 1, sym_type_specifier, - STATE(1712), 1, + STATE(1733), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3295), 1, + STATE(3306), 1, sym_type_descriptor, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1516), 2, + STATE(1531), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1997), 4, + ACTIONS(2032), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1984), 5, + STATE(2008), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -141319,47 +142427,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [66788] = 16, + [66657] = 16, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3948), 1, - sym_identifier, - ACTIONS(3952), 1, + ACTIONS(2036), 1, sym_primitive_type, - ACTIONS(3954), 1, + ACTIONS(2038), 1, anon_sym_enum, - ACTIONS(3956), 1, + ACTIONS(2040), 1, anon_sym_struct, - ACTIONS(3958), 1, + ACTIONS(2042), 1, anon_sym_union, - STATE(1671), 1, + ACTIONS(3985), 1, + sym_identifier, + STATE(1695), 1, sym_alignas_qualifier, - STATE(1724), 1, + STATE(1705), 1, sym_type_specifier, - STATE(1790), 1, + STATE(1733), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1993), 1, - sym__type_definition_type, - ACTIONS(1999), 2, + STATE(3080), 1, + sym_type_descriptor, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1527), 2, + STATE(1531), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3950), 4, + ACTIONS(2032), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1853), 5, + STATE(2008), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -141369,47 +142477,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [66854] = 16, + [66723] = 16, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3948), 1, - sym_identifier, - ACTIONS(3952), 1, + ACTIONS(2036), 1, sym_primitive_type, - ACTIONS(3954), 1, + ACTIONS(2038), 1, anon_sym_enum, - ACTIONS(3956), 1, + ACTIONS(2040), 1, anon_sym_struct, - ACTIONS(3958), 1, + ACTIONS(2042), 1, anon_sym_union, - STATE(1671), 1, + ACTIONS(3985), 1, + sym_identifier, + STATE(1695), 1, sym_alignas_qualifier, - STATE(1724), 1, + STATE(1705), 1, sym_type_specifier, - STATE(1790), 1, + STATE(1733), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1977), 1, - sym__type_definition_type, - ACTIONS(1999), 2, + STATE(3081), 1, + sym_type_descriptor, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1527), 2, + STATE(1531), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3950), 4, + ACTIONS(2032), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1853), 5, + STATE(2008), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -141419,47 +142527,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [66920] = 16, + [66789] = 16, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2001), 1, + ACTIONS(2036), 1, sym_primitive_type, - ACTIONS(2003), 1, + ACTIONS(2038), 1, anon_sym_enum, - ACTIONS(2005), 1, + ACTIONS(2040), 1, anon_sym_struct, - ACTIONS(2007), 1, + ACTIONS(2042), 1, anon_sym_union, - ACTIONS(3920), 1, + ACTIONS(3985), 1, sym_identifier, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(1678), 1, + STATE(1705), 1, sym_type_specifier, - STATE(1712), 1, + STATE(1733), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3262), 1, + STATE(3363), 1, sym_type_descriptor, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1517), 2, + STATE(1531), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1997), 4, + ACTIONS(2032), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1984), 5, + STATE(2008), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -141469,47 +142577,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [66986] = 16, + [66855] = 16, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2001), 1, + ACTIONS(2036), 1, sym_primitive_type, - ACTIONS(2005), 1, + ACTIONS(2040), 1, anon_sym_struct, - ACTIONS(2007), 1, + ACTIONS(2042), 1, anon_sym_union, - ACTIONS(3920), 1, + ACTIONS(3985), 1, sym_identifier, - ACTIONS(3970), 1, + ACTIONS(3987), 1, anon_sym_enum, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(1678), 1, + STATE(1705), 1, sym_type_specifier, - STATE(1712), 1, + STATE(1733), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3350), 1, + STATE(3413), 1, sym_type_descriptor, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1516), 2, + STATE(1536), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1997), 4, + ACTIONS(2032), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1984), 5, + STATE(2008), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -141519,47 +142627,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [67052] = 16, + [66921] = 16, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2001), 1, + ACTIONS(3947), 1, + sym_identifier, + ACTIONS(3951), 1, sym_primitive_type, - ACTIONS(2003), 1, + ACTIONS(3953), 1, anon_sym_enum, - ACTIONS(2005), 1, + ACTIONS(3955), 1, anon_sym_struct, - ACTIONS(2007), 1, + ACTIONS(3957), 1, anon_sym_union, - ACTIONS(3920), 1, - sym_identifier, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(1678), 1, + STATE(1745), 1, sym_type_specifier, - STATE(1712), 1, + STATE(1791), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3260), 1, - sym_type_descriptor, - ACTIONS(1999), 2, + STATE(2034), 1, + sym__type_definition_type, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1517), 2, + STATE(1534), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1997), 4, + ACTIONS(3949), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1984), 5, + STATE(1854), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -141569,47 +142677,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [67118] = 16, + [66987] = 16, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2001), 1, + ACTIONS(3947), 1, + sym_identifier, + ACTIONS(3951), 1, sym_primitive_type, - ACTIONS(2003), 1, + ACTIONS(3953), 1, anon_sym_enum, - ACTIONS(2005), 1, + ACTIONS(3955), 1, anon_sym_struct, - ACTIONS(2007), 1, + ACTIONS(3957), 1, anon_sym_union, - ACTIONS(3920), 1, - sym_identifier, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(1678), 1, + STATE(1745), 1, sym_type_specifier, - STATE(1712), 1, + STATE(1791), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2994), 1, - sym_type_descriptor, - ACTIONS(1999), 2, + STATE(1998), 1, + sym__type_definition_type, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1517), 2, + STATE(1534), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1997), 4, + ACTIONS(3949), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1984), 5, + STATE(1854), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -141619,155 +142727,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [67184] = 20, - ACTIONS(3622), 1, + [67053] = 17, + ACTIONS(3028), 1, + anon_sym_PIPE, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, - anon_sym_QMARK, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3070), 5, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3020), 8, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, - [67258] = 20, - ACTIONS(3622), 1, + anon_sym_QMARK, + [67121] = 11, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE, - ACTIONS(3936), 1, - anon_sym_CARET, - ACTIONS(3938), 1, - anon_sym_AMP, - ACTIONS(3946), 1, - anon_sym_QMARK, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3028), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3082), 5, + ACTIONS(3020), 15, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, - [67332] = 16, + anon_sym_QMARK, + [67177] = 16, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2001), 1, + ACTIONS(2036), 1, sym_primitive_type, - ACTIONS(2003), 1, + ACTIONS(2038), 1, anon_sym_enum, - ACTIONS(2005), 1, + ACTIONS(2040), 1, anon_sym_struct, - ACTIONS(2007), 1, + ACTIONS(2042), 1, anon_sym_union, - ACTIONS(3920), 1, + ACTIONS(3985), 1, sym_identifier, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(1678), 1, + STATE(1705), 1, sym_type_specifier, - STATE(1712), 1, + STATE(1733), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3336), 1, + STATE(3147), 1, sym_type_descriptor, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1517), 2, + STATE(1531), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1997), 4, + ACTIONS(2032), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1984), 5, + STATE(2008), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -141777,38 +142873,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [67398] = 10, + [67243] = 16, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3972), 1, - anon_sym_LBRACE, - STATE(1546), 1, - sym_field_declaration_list, - STATE(1819), 1, - sym_attribute_specifier, - ACTIONS(3092), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3910), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3912), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3914), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3090), 18, - anon_sym___extension__, - anon_sym___based, + ACTIONS(3947), 1, + sym_identifier, + ACTIONS(3951), 1, + sym_primitive_type, + ACTIONS(3953), 1, + anon_sym_enum, + ACTIONS(3955), 1, + anon_sym_struct, + ACTIONS(3957), 1, + anon_sym_union, + STATE(1695), 1, + sym_alignas_qualifier, + STATE(1745), 1, + sym_type_specifier, + STATE(1791), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2011), 1, + sym__type_definition_type, + ACTIONS(2034), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1534), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3949), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + STATE(1854), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(2030), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -141817,51 +142923,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [67452] = 16, + [67309] = 16, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2001), 1, + ACTIONS(3947), 1, + sym_identifier, + ACTIONS(3951), 1, sym_primitive_type, - ACTIONS(2003), 1, + ACTIONS(3953), 1, anon_sym_enum, - ACTIONS(2005), 1, + ACTIONS(3955), 1, anon_sym_struct, - ACTIONS(2007), 1, + ACTIONS(3957), 1, anon_sym_union, - ACTIONS(3920), 1, - sym_identifier, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(1678), 1, + STATE(1745), 1, sym_type_specifier, - STATE(1712), 1, + STATE(1791), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2995), 1, - sym_type_descriptor, - ACTIONS(1999), 2, + STATE(2033), 1, + sym__type_definition_type, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1517), 2, + STATE(1534), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1997), 4, + ACTIONS(3949), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1984), 5, + STATE(1854), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -141871,47 +142973,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [67518] = 16, + [67375] = 10, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, + anon_sym_SLASH, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3961), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3028), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3020), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [67429] = 16, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2001), 1, + ACTIONS(2036), 1, sym_primitive_type, - ACTIONS(2003), 1, - anon_sym_enum, - ACTIONS(2005), 1, + ACTIONS(2040), 1, anon_sym_struct, - ACTIONS(2007), 1, + ACTIONS(2042), 1, anon_sym_union, - ACTIONS(3920), 1, + ACTIONS(3985), 1, sym_identifier, - STATE(1671), 1, + ACTIONS(3987), 1, + anon_sym_enum, + STATE(1695), 1, sym_alignas_qualifier, - STATE(1678), 1, + STATE(1705), 1, sym_type_specifier, - STATE(1712), 1, + STATE(1733), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3263), 1, + STATE(3377), 1, sym_type_descriptor, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1517), 2, + STATE(1536), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1997), 4, + ACTIONS(2032), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1984), 5, + STATE(2008), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -141921,91 +143067,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [67584] = 10, - ACTIONS(3), 1, + [67495] = 18, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, + anon_sym_SLASH, + ACTIONS(3967), 1, + anon_sym_AMP_AMP, + ACTIONS(3969), 1, + anon_sym_PIPE, + ACTIONS(3971), 1, + anon_sym_CARET, + ACTIONS(3973), 1, + anon_sym_AMP, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(3916), 1, - anon_sym_LBRACE, - STATE(1556), 1, - sym_enumerator_list, - STATE(1864), 1, - sym_attribute_specifier, - ACTIONS(3059), 2, - anon_sym_LPAREN2, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3961), 2, anon_sym_STAR, - ACTIONS(3910), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3912), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3914), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3057), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [67638] = 16, + anon_sym_PERCENT, + ACTIONS(3975), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3977), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3979), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3020), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [67565] = 16, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3948), 1, - sym_identifier, - ACTIONS(3952), 1, + ACTIONS(2036), 1, sym_primitive_type, - ACTIONS(3954), 1, + ACTIONS(2038), 1, anon_sym_enum, - ACTIONS(3956), 1, + ACTIONS(2040), 1, anon_sym_struct, - ACTIONS(3958), 1, + ACTIONS(2042), 1, anon_sym_union, - STATE(1671), 1, + ACTIONS(3985), 1, + sym_identifier, + STATE(1695), 1, sym_alignas_qualifier, - STATE(1724), 1, + STATE(1705), 1, sym_type_specifier, - STATE(1790), 1, + STATE(1733), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2003), 1, - sym__type_definition_type, - ACTIONS(1999), 2, + STATE(3477), 1, + sym_type_descriptor, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1527), 2, + STATE(1531), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3950), 4, + ACTIONS(2032), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1853), 5, + STATE(2008), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -142015,47 +143169,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [67704] = 16, + [67631] = 17, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, + anon_sym_SLASH, + ACTIONS(3969), 1, + anon_sym_PIPE, + ACTIONS(3971), 1, + anon_sym_CARET, + ACTIONS(3973), 1, + anon_sym_AMP, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3961), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3975), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3977), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3979), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3020), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [67699] = 12, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, + anon_sym_SLASH, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3961), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3028), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3020), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [67757] = 16, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3948), 1, - sym_identifier, - ACTIONS(3952), 1, + ACTIONS(2036), 1, sym_primitive_type, - ACTIONS(3954), 1, + ACTIONS(2038), 1, anon_sym_enum, - ACTIONS(3956), 1, + ACTIONS(2040), 1, anon_sym_struct, - ACTIONS(3958), 1, + ACTIONS(2042), 1, anon_sym_union, - STATE(1671), 1, + ACTIONS(3985), 1, + sym_identifier, + STATE(1695), 1, sym_alignas_qualifier, - STATE(1724), 1, + STATE(1705), 1, sym_type_specifier, - STATE(1790), 1, + STATE(1733), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1972), 1, - sym__type_definition_type, - ACTIONS(1999), 2, + STATE(3401), 1, + sym_type_descriptor, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1527), 2, + STATE(1531), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3950), 4, + ACTIONS(2032), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1853), 5, + STATE(2008), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -142065,48 +143316,269 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [67770] = 16, + [67823] = 16, + ACTIONS(3028), 1, + anon_sym_PIPE, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, + anon_sym_SLASH, + ACTIONS(3973), 1, + anon_sym_AMP, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3961), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3975), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3977), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3979), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3020), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [67889] = 14, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, + anon_sym_SLASH, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3028), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3961), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3977), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3979), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3020), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [67951] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3948), 1, - sym_identifier, - ACTIONS(3952), 1, - sym_primitive_type, - ACTIONS(3954), 1, - anon_sym_enum, - ACTIONS(3956), 1, - anon_sym_struct, - ACTIONS(3958), 1, - anon_sym_union, - STATE(1671), 1, - sym_alignas_qualifier, - STATE(1724), 1, - sym_type_specifier, - STATE(1790), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1986), 1, - sym__type_definition_type, - ACTIONS(1999), 2, + ACTIONS(3941), 1, + anon_sym_LBRACE, + STATE(1574), 1, + sym_enumerator_list, + STATE(1892), 1, + sym_attribute_specifier, + ACTIONS(3098), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3935), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3937), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3939), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3096), 18, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - STATE(1527), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3950), 4, + sym_primitive_type, + sym_identifier, + [68005] = 15, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, + anon_sym_SLASH, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3028), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3961), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3975), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3977), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3979), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3020), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [68069] = 9, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4001), 1, + anon_sym___aligned, + STATE(1781), 1, + sym_attribute_specifier, + ACTIONS(3215), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3923), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3925), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3927), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3213), 18, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1853), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(1995), 9, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [68120] = 9, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4003), 1, + anon_sym___aligned, + STATE(1780), 1, + sym_attribute_specifier, + ACTIONS(3281), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3923), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3925), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3927), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3279), 18, anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -142115,32 +143587,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [67836] = 10, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [68171] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3972), 1, - anon_sym_LBRACE, - STATE(1531), 1, - sym_field_declaration_list, - STATE(1841), 1, + ACTIONS(4005), 1, + anon_sym___aligned, + STATE(1776), 1, sym_attribute_specifier, - ACTIONS(3041), 2, + ACTIONS(3271), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3910), 2, + ACTIONS(3923), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(3912), 2, + ACTIONS(3925), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(3914), 4, + ACTIONS(3927), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3039), 18, + ACTIONS(3269), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -142159,47 +143633,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [67890] = 16, + [68222] = 15, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2001), 1, + ACTIONS(2036), 1, sym_primitive_type, - ACTIONS(2003), 1, + ACTIONS(2038), 1, anon_sym_enum, - ACTIONS(2005), 1, + ACTIONS(2040), 1, anon_sym_struct, - ACTIONS(2007), 1, + ACTIONS(2042), 1, anon_sym_union, - ACTIONS(3920), 1, + ACTIONS(3985), 1, sym_identifier, - STATE(1671), 1, - sym_alignas_qualifier, - STATE(1678), 1, + STATE(1694), 1, sym_type_specifier, - STATE(1712), 1, + STATE(1695), 1, + sym_alignas_qualifier, + STATE(1733), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3072), 1, - sym_type_descriptor, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1517), 2, + STATE(1573), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1997), 4, + ACTIONS(2032), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1984), 5, + STATE(2008), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -142209,47 +143681,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [67956] = 16, + [68285] = 15, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2001), 1, - sym_primitive_type, - ACTIONS(2003), 1, - anon_sym_enum, - ACTIONS(2005), 1, - anon_sym_struct, - ACTIONS(2007), 1, - anon_sym_union, - ACTIONS(3920), 1, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3817), 1, sym_identifier, - STATE(1671), 1, + ACTIONS(3819), 1, + anon_sym_LPAREN2, + ACTIONS(3821), 1, + anon_sym_STAR, + ACTIONS(3825), 1, + sym_primitive_type, + STATE(1695), 1, sym_alignas_qualifier, - STATE(1678), 1, - sym_type_specifier, - STATE(1712), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3066), 1, - sym_type_descriptor, - ACTIONS(1999), 2, + STATE(2044), 1, + sym__type_declarator, + STATE(3430), 1, + sym_ms_based_modifier, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1517), 2, + STATE(1573), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1997), 4, + ACTIONS(3823), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1984), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(1995), 9, + STATE(2105), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -142259,47 +143729,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [68022] = 16, + [68348] = 21, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, + anon_sym_SLASH, + ACTIONS(3965), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3967), 1, + anon_sym_AMP_AMP, + ACTIONS(3969), 1, + anon_sym_PIPE, + ACTIONS(3971), 1, + anon_sym_CARET, + ACTIONS(3973), 1, + anon_sym_AMP, + ACTIONS(3983), 1, + anon_sym_QMARK, + ACTIONS(4007), 1, + anon_sym_COMMA, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3961), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3975), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3977), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3979), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4009), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + [68423] = 15, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3948), 1, + ACTIONS(3947), 1, sym_identifier, - ACTIONS(3952), 1, + ACTIONS(3951), 1, sym_primitive_type, - ACTIONS(3954), 1, + ACTIONS(3953), 1, anon_sym_enum, - ACTIONS(3956), 1, + ACTIONS(3955), 1, anon_sym_struct, - ACTIONS(3958), 1, + ACTIONS(3957), 1, anon_sym_union, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(1724), 1, + STATE(1744), 1, sym_type_specifier, - STATE(1790), 1, + STATE(1791), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1979), 1, - sym__type_definition_type, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1527), 2, + STATE(1573), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3950), 4, + ACTIONS(3949), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1853), 5, + STATE(1854), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -142309,45 +143831,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [68088] = 15, + [68486] = 15, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3790), 1, + ACTIONS(3817), 1, sym_identifier, - ACTIONS(3792), 1, + ACTIONS(3819), 1, anon_sym_LPAREN2, - ACTIONS(3794), 1, + ACTIONS(3821), 1, anon_sym_STAR, - ACTIONS(3798), 1, + ACTIONS(3825), 1, sym_primitive_type, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(2271), 1, + STATE(2042), 1, sym__type_declarator, - STATE(2971), 1, + STATE(3430), 1, sym_ms_based_modifier, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1549), 2, + STATE(1573), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3796), 4, + ACTIONS(3823), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2451), 5, + STATE(2105), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -142357,45 +143879,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [68151] = 15, + [68549] = 15, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2001), 1, + ACTIONS(2036), 1, sym_primitive_type, - ACTIONS(2005), 1, + ACTIONS(2040), 1, anon_sym_struct, - ACTIONS(2007), 1, + ACTIONS(2042), 1, anon_sym_union, - ACTIONS(3920), 1, + ACTIONS(3985), 1, sym_identifier, - ACTIONS(3970), 1, + ACTIONS(3987), 1, anon_sym_enum, - STATE(1671), 1, - sym_alignas_qualifier, - STATE(1681), 1, + STATE(1694), 1, sym_type_specifier, - STATE(1712), 1, + STATE(1695), 1, + sym_alignas_qualifier, + STATE(1733), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1549), 2, + STATE(1573), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1997), 4, + ACTIONS(2032), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1984), 5, + STATE(2008), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -142405,45 +143927,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [68214] = 15, + [68612] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2001), 1, + ACTIONS(4011), 1, + anon_sym___aligned, + STATE(1808), 1, + sym_attribute_specifier, + ACTIONS(3237), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3923), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3925), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3927), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3235), 18, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - ACTIONS(2003), 1, - anon_sym_enum, - ACTIONS(2005), 1, - anon_sym_struct, - ACTIONS(2007), 1, - anon_sym_union, - ACTIONS(3920), 1, sym_identifier, - STATE(1671), 1, + [68663] = 15, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3827), 1, + sym_identifier, + ACTIONS(3829), 1, + anon_sym_LPAREN2, + ACTIONS(3831), 1, + anon_sym_STAR, + ACTIONS(3835), 1, + sym_primitive_type, + STATE(1695), 1, sym_alignas_qualifier, - STATE(1681), 1, - sym_type_specifier, - STATE(1712), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1999), 2, + STATE(2315), 1, + sym__type_declarator, + STATE(3100), 1, + sym_ms_based_modifier, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1549), 2, + STATE(1573), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1997), 4, + ACTIONS(3833), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1984), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(1995), 9, + STATE(2450), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -142453,36 +144017,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [68277] = 9, + [68726] = 15, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3974), 1, - anon_sym___aligned, - STATE(1777), 1, - sym_attribute_specifier, - ACTIONS(3230), 2, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3817), 1, + sym_identifier, + ACTIONS(3819), 1, anon_sym_LPAREN2, + ACTIONS(3821), 1, anon_sym_STAR, - ACTIONS(3896), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3898), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3900), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3228), 18, - anon_sym___extension__, - anon_sym___based, + ACTIONS(3825), 1, + sym_primitive_type, + STATE(1695), 1, + sym_alignas_qualifier, + STATE(2058), 1, + sym__type_declarator, + STATE(3430), 1, + sym_ms_based_modifier, + ACTIONS(2034), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1573), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3823), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + STATE(2105), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2030), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -142491,34 +144065,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [68328] = 9, + [68789] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(4013), 1, anon_sym___aligned, - STATE(1758), 1, + STATE(1786), 1, sym_attribute_specifier, - ACTIONS(3240), 2, + ACTIONS(3209), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3896), 2, + ACTIONS(3923), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(3898), 2, + ACTIONS(3925), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(3900), 4, + ACTIONS(3927), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3238), 18, + ACTIONS(3207), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -142537,45 +144107,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [68379] = 15, + [68840] = 15, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3790), 1, + ACTIONS(3827), 1, sym_identifier, - ACTIONS(3792), 1, + ACTIONS(3829), 1, anon_sym_LPAREN2, - ACTIONS(3794), 1, + ACTIONS(3831), 1, anon_sym_STAR, - ACTIONS(3798), 1, + ACTIONS(3835), 1, sym_primitive_type, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(2283), 1, + STATE(2310), 1, + sym__type_declarator, + STATE(3100), 1, + sym_ms_based_modifier, + ACTIONS(2034), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1573), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3833), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2030), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [68903] = 15, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3827), 1, + sym_identifier, + ACTIONS(3829), 1, + anon_sym_LPAREN2, + ACTIONS(3831), 1, + anon_sym_STAR, + ACTIONS(3835), 1, + sym_primitive_type, + STATE(1695), 1, + sym_alignas_qualifier, + STATE(2314), 1, sym__type_declarator, - STATE(2971), 1, + STATE(3100), 1, sym_ms_based_modifier, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1549), 2, + STATE(1573), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3796), 4, + ACTIONS(3833), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2451), 5, + STATE(2450), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -142585,30 +144203,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [68442] = 9, + [68966] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(4015), 1, anon_sym___aligned, - STATE(1786), 1, + STATE(1788), 1, sym_attribute_specifier, - ACTIONS(3158), 2, + ACTIONS(3177), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3896), 2, + ACTIONS(3923), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(3898), 2, + ACTIONS(3925), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(3900), 4, + ACTIONS(3927), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3156), 18, + ACTIONS(3175), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -142627,30 +144245,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [68493] = 9, + [69017] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3980), 1, - anon_sym___aligned, - STATE(1783), 1, + STATE(1826), 1, sym_attribute_specifier, - ACTIONS(3138), 2, + ACTIONS(3334), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3896), 2, + ACTIONS(3935), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(3898), 2, + ACTIONS(3937), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(3900), 4, + ACTIONS(3939), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3136), 18, + ACTIONS(3332), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -142669,30 +144285,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [68544] = 9, + [69065] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3982), 1, - anon_sym___aligned, - STATE(1775), 1, + STATE(1825), 1, sym_attribute_specifier, - ACTIONS(3196), 2, + ACTIONS(3382), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3896), 2, + ACTIONS(3935), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(3898), 2, + ACTIONS(3937), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(3900), 4, + ACTIONS(3939), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3194), 18, + ACTIONS(3380), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -142711,47 +144325,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [68595] = 15, + [69113] = 11, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3800), 1, - sym_identifier, - ACTIONS(3802), 1, + ACTIONS(2964), 1, + anon_sym_const, + ACTIONS(4023), 1, + anon_sym_LBRACE, + ACTIONS(4025), 1, + anon_sym___aligned, + STATE(1672), 1, + sym_field_declaration_list, + STATE(1970), 1, + sym_attribute_specifier, + ACTIONS(4017), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4019), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(4021), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2966), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(3808), 1, - sym_primitive_type, - STATE(1671), 1, - sym_alignas_qualifier, - STATE(2036), 1, - sym__type_declarator, - STATE(3321), 1, - sym_ms_based_modifier, - ACTIONS(1999), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1549), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3806), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2089), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(1995), 9, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -142759,79 +144365,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [68658] = 15, - ACTIONS(3), 1, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [69167] = 22, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, + anon_sym_SLASH, + ACTIONS(3965), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3967), 1, + anon_sym_AMP_AMP, + ACTIONS(3969), 1, + anon_sym_PIPE, + ACTIONS(3971), 1, + anon_sym_CARET, + ACTIONS(3973), 1, + anon_sym_AMP, + ACTIONS(3983), 1, + anon_sym_QMARK, + ACTIONS(4027), 1, + anon_sym_COMMA, + ACTIONS(4029), 1, + anon_sym_RPAREN, + STATE(1227), 1, + sym_argument_list, + STATE(2696), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3800), 1, - sym_identifier, - ACTIONS(3802), 1, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3961), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3975), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3977), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3979), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [69243] = 22, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3804), 1, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, + anon_sym_SLASH, + ACTIONS(3965), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3967), 1, + anon_sym_AMP_AMP, + ACTIONS(3969), 1, + anon_sym_PIPE, + ACTIONS(3971), 1, + anon_sym_CARET, + ACTIONS(3973), 1, + anon_sym_AMP, + ACTIONS(3983), 1, + anon_sym_QMARK, + ACTIONS(4031), 1, + anon_sym_COMMA, + ACTIONS(4033), 1, + anon_sym_RPAREN, + STATE(1227), 1, + sym_argument_list, + STATE(2682), 1, + aux_sym_macro_invocation_parameter_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3961), 2, anon_sym_STAR, - ACTIONS(3808), 1, - sym_primitive_type, - STATE(1671), 1, - sym_alignas_qualifier, - STATE(2022), 1, - sym__type_declarator, - STATE(3321), 1, - sym_ms_based_modifier, - ACTIONS(1999), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1549), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3806), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2089), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(1995), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [68721] = 9, + anon_sym_PERCENT, + ACTIONS(3975), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3977), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3979), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [69319] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3984), 1, - anon_sym___aligned, - STATE(1780), 1, - sym_attribute_specifier, - ACTIONS(3152), 2, + ACTIONS(3297), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3896), 2, + ACTIONS(3295), 27, + anon_sym___extension__, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3898), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(3900), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3150), 18, - anon_sym___extension__, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -142848,150 +144510,311 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym___aligned, sym_identifier, - [68772] = 15, - ACTIONS(3), 1, + [69359] = 22, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, + anon_sym_SLASH, + ACTIONS(3965), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3967), 1, + anon_sym_AMP_AMP, + ACTIONS(3969), 1, + anon_sym_PIPE, + ACTIONS(3971), 1, + anon_sym_CARET, + ACTIONS(3973), 1, + anon_sym_AMP, + ACTIONS(3983), 1, + anon_sym_QMARK, + ACTIONS(4031), 1, + anon_sym_COMMA, + ACTIONS(4035), 1, + anon_sym_RPAREN, + STATE(1227), 1, + sym_argument_list, + STATE(2671), 1, + aux_sym_macro_invocation_parameter_list_repeat1, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(3948), 1, - sym_identifier, - ACTIONS(3952), 1, - sym_primitive_type, - ACTIONS(3954), 1, - anon_sym_enum, - ACTIONS(3956), 1, - anon_sym_struct, - ACTIONS(3958), 1, - anon_sym_union, - STATE(1671), 1, - sym_alignas_qualifier, - STATE(1722), 1, - sym_type_specifier, - STATE(1790), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1999), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1549), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3950), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1853), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(1995), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [68835] = 21, - ACTIONS(3622), 1, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3961), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3975), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3977), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3979), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [69435] = 22, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, + anon_sym_SLASH, + ACTIONS(3965), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3967), 1, + anon_sym_AMP_AMP, + ACTIONS(3969), 1, + anon_sym_PIPE, + ACTIONS(3971), 1, + anon_sym_CARET, + ACTIONS(3973), 1, + anon_sym_AMP, + ACTIONS(3983), 1, + anon_sym_QMARK, + ACTIONS(4037), 1, + anon_sym_COMMA, + ACTIONS(4039), 1, + anon_sym_RPAREN, + STATE(1227), 1, + sym_argument_list, + STATE(2708), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3961), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3975), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3977), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3979), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [69511] = 22, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, + anon_sym_SLASH, + ACTIONS(3965), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3967), 1, + anon_sym_AMP_AMP, + ACTIONS(3969), 1, + anon_sym_PIPE, + ACTIONS(3971), 1, + anon_sym_CARET, + ACTIONS(3973), 1, + anon_sym_AMP, + ACTIONS(3983), 1, + anon_sym_QMARK, + ACTIONS(4027), 1, + anon_sym_COMMA, + ACTIONS(4041), 1, + anon_sym_RPAREN, + STATE(1227), 1, + sym_argument_list, + STATE(2591), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3961), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3975), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3977), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3979), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [69587] = 22, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, + anon_sym_SLASH, + ACTIONS(3965), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3967), 1, + anon_sym_AMP_AMP, + ACTIONS(3969), 1, + anon_sym_PIPE, + ACTIONS(3971), 1, + anon_sym_CARET, + ACTIONS(3973), 1, + anon_sym_AMP, + ACTIONS(3983), 1, + anon_sym_QMARK, + ACTIONS(4043), 1, + anon_sym_COMMA, + ACTIONS(4045), 1, + anon_sym_RBRACE, + STATE(1227), 1, + sym_argument_list, + STATE(2666), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3961), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3975), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3977), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3979), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [69663] = 22, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, + ACTIONS(4037), 1, anon_sym_COMMA, - STATE(1245), 1, + ACTIONS(4047), 1, + anon_sym_RPAREN, + STATE(1227), 1, sym_argument_list, + STATE(2664), 1, + aux_sym_argument_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3988), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - [68910] = 15, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [69739] = 11, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3800), 1, - sym_identifier, - ACTIONS(3802), 1, + ACTIONS(2950), 1, + anon_sym_const, + ACTIONS(4023), 1, + anon_sym_LBRACE, + ACTIONS(4049), 1, + anon_sym___aligned, + STATE(1651), 1, + sym_field_declaration_list, + STATE(1973), 1, + sym_attribute_specifier, + ACTIONS(4017), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4019), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(4021), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2952), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(3808), 1, - sym_primitive_type, - STATE(1671), 1, - sym_alignas_qualifier, - STATE(2026), 1, - sym__type_declarator, - STATE(3321), 1, - sym_ms_based_modifier, - ACTIONS(1999), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1549), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3806), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2089), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(1995), 9, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -142999,76 +144822,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [68973] = 15, - ACTIONS(3), 1, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [69793] = 22, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, + anon_sym_SLASH, + ACTIONS(3965), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3967), 1, + anon_sym_AMP_AMP, + ACTIONS(3969), 1, + anon_sym_PIPE, + ACTIONS(3971), 1, + anon_sym_CARET, + ACTIONS(3973), 1, + anon_sym_AMP, + ACTIONS(3983), 1, + anon_sym_QMARK, + ACTIONS(4037), 1, + anon_sym_COMMA, + ACTIONS(4051), 1, + anon_sym_RPAREN, + STATE(1227), 1, + sym_argument_list, + STATE(2631), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3790), 1, - sym_identifier, - ACTIONS(3792), 1, - anon_sym_LPAREN2, - ACTIONS(3794), 1, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3961), 2, anon_sym_STAR, - ACTIONS(3798), 1, - sym_primitive_type, - STATE(1671), 1, - sym_alignas_qualifier, - STATE(2287), 1, - sym__type_declarator, - STATE(2971), 1, - sym_ms_based_modifier, - ACTIONS(1999), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1549), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3796), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2451), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(1995), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [69036] = 8, + anon_sym_PERCENT, + ACTIONS(3975), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3977), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3979), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [69869] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1855), 1, + STATE(1818), 1, sym_attribute_specifier, - ACTIONS(3268), 2, + ACTIONS(3361), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3910), 2, + ACTIONS(3935), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(3912), 2, + ACTIONS(3937), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(3914), 4, + ACTIONS(3939), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3266), 18, + ACTIONS(3359), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -143087,209 +144919,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [69084] = 11, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2968), 1, - anon_sym_const, - ACTIONS(3996), 1, - anon_sym_LBRACE, - ACTIONS(3998), 1, - anon_sym___aligned, - STATE(1642), 1, - sym_field_declaration_list, - STATE(1964), 1, - sym_attribute_specifier, - ACTIONS(3990), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3992), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3994), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(2970), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_COLON, - [69138] = 22, - ACTIONS(3622), 1, + [69917] = 22, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(4000), 1, + ACTIONS(4037), 1, anon_sym_COMMA, - ACTIONS(4002), 1, + ACTIONS(4053), 1, anon_sym_RPAREN, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, - STATE(2703), 1, + STATE(2636), 1, aux_sym_argument_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [69214] = 22, - ACTIONS(3622), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [69993] = 22, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(4000), 1, + ACTIONS(4037), 1, anon_sym_COMMA, - ACTIONS(4004), 1, + ACTIONS(4055), 1, anon_sym_RPAREN, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, - STATE(2717), 1, + STATE(2690), 1, aux_sym_argument_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [69290] = 11, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2946), 1, - anon_sym_const, - ACTIONS(3996), 1, - anon_sym_LBRACE, - ACTIONS(4006), 1, - anon_sym___aligned, - STATE(1625), 1, - sym_field_declaration_list, - STATE(1960), 1, - sym_attribute_specifier, - ACTIONS(3990), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3992), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3994), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(2948), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_COLON, - [69344] = 4, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [70069] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3283), 2, + ACTIONS(3328), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3281), 27, + ACTIONS(3326), 27, anon_sym___extension__, anon_sym___attribute__, anon_sym___scanf, @@ -143317,388 +145063,544 @@ static const uint16_t ts_small_parse_table[] = { sym_primitive_type, anon_sym___aligned, sym_identifier, - [69384] = 8, - ACTIONS(3), 1, + [70109] = 22, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, + anon_sym_SLASH, + ACTIONS(3965), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3967), 1, + anon_sym_AMP_AMP, + ACTIONS(3969), 1, + anon_sym_PIPE, + ACTIONS(3971), 1, + anon_sym_CARET, + ACTIONS(3973), 1, + anon_sym_AMP, + ACTIONS(3983), 1, + anon_sym_QMARK, + ACTIONS(4027), 1, + anon_sym_COMMA, + ACTIONS(4057), 1, + anon_sym_RPAREN, + STATE(1227), 1, + sym_argument_list, + STATE(2529), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - STATE(1830), 1, - sym_attribute_specifier, - ACTIONS(3357), 2, - anon_sym_LPAREN2, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3961), 2, anon_sym_STAR, - ACTIONS(3910), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3912), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3914), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3355), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [69432] = 22, - ACTIONS(3622), 1, + anon_sym_PERCENT, + ACTIONS(3975), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3977), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3979), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [70185] = 22, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(4008), 1, + ACTIONS(4031), 1, anon_sym_COMMA, - ACTIONS(4010), 1, + ACTIONS(4059), 1, anon_sym_RPAREN, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, - STATE(2492), 1, - aux_sym_generic_expression_repeat1, + STATE(2583), 1, + aux_sym_macro_invocation_parameter_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, + ACTIONS(3975), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3977), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3979), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3981), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3940), 2, + [70261] = 22, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, + anon_sym_SLASH, + ACTIONS(3965), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3967), 1, + anon_sym_AMP_AMP, + ACTIONS(3969), 1, + anon_sym_PIPE, + ACTIONS(3971), 1, + anon_sym_CARET, + ACTIONS(3973), 1, + anon_sym_AMP, + ACTIONS(3983), 1, + anon_sym_QMARK, + ACTIONS(4031), 1, + anon_sym_COMMA, + ACTIONS(4061), 1, + anon_sym_RPAREN, + STATE(1227), 1, + sym_argument_list, + STATE(2633), 1, + aux_sym_macro_invocation_parameter_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3961), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [69508] = 22, - ACTIONS(3622), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [70337] = 22, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(4012), 1, + ACTIONS(4063), 1, anon_sym_COMMA, - ACTIONS(4014), 1, + ACTIONS(4065), 1, anon_sym_RBRACE, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, - STATE(2570), 1, + STATE(2505), 1, aux_sym_initializer_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [69584] = 22, - ACTIONS(3622), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [70413] = 22, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(4000), 1, + ACTIONS(4067), 1, anon_sym_COMMA, - ACTIONS(4016), 1, - anon_sym_RPAREN, - STATE(1245), 1, + ACTIONS(4069), 1, + anon_sym_RBRACE, + STATE(1227), 1, sym_argument_list, - STATE(2549), 1, - aux_sym_argument_list_repeat1, + STATE(2654), 1, + aux_sym_initializer_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [69660] = 22, - ACTIONS(3622), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [70489] = 11, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2984), 1, + anon_sym_const, + ACTIONS(4023), 1, + anon_sym_LBRACE, + ACTIONS(4071), 1, + anon_sym___aligned, + STATE(1656), 1, + sym_field_declaration_list, + STATE(1975), 1, + sym_attribute_specifier, + ACTIONS(4017), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4019), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(4021), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2986), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [70543] = 22, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(4008), 1, + ACTIONS(4037), 1, anon_sym_COMMA, - ACTIONS(4018), 1, + ACTIONS(4073), 1, anon_sym_RPAREN, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, - STATE(2735), 1, - aux_sym_generic_expression_repeat1, + STATE(2667), 1, + aux_sym_argument_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [69736] = 22, - ACTIONS(3622), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [70619] = 8, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + STATE(1816), 1, + sym_attribute_specifier, + ACTIONS(3378), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3935), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3937), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3939), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3376), 18, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [70667] = 22, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(4000), 1, + ACTIONS(4031), 1, anon_sym_COMMA, - ACTIONS(4020), 1, + ACTIONS(4075), 1, anon_sym_RPAREN, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, - STATE(2636), 1, - aux_sym_argument_list_repeat1, + STATE(2729), 1, + aux_sym_macro_invocation_parameter_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [69812] = 22, - ACTIONS(3622), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [70743] = 22, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(4000), 1, + ACTIONS(4037), 1, anon_sym_COMMA, - ACTIONS(4022), 1, + ACTIONS(4077), 1, anon_sym_RPAREN, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, - STATE(2531), 1, + STATE(2751), 1, aux_sym_argument_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [69888] = 4, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [70819] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3317), 2, + STATE(1829), 1, + sym_attribute_specifier, + ACTIONS(3324), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3315), 27, - anon_sym___extension__, + ACTIONS(3935), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3937), 2, anon_sym___scanf, anon_sym___printf, + ACTIONS(3939), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, + ACTIONS(3322), 18, + anon_sym___extension__, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -143715,30 +145617,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym___aligned, sym_identifier, - [69928] = 8, + [70867] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1799), 1, + STATE(1819), 1, sym_attribute_specifier, - ACTIONS(3321), 2, + ACTIONS(3407), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3910), 2, + ACTIONS(3935), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(3912), 2, + ACTIONS(3937), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(3914), 4, + ACTIONS(3939), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3319), 18, + ACTIONS(3405), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -143757,28 +145658,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [69976] = 8, + [70915] = 8, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + STATE(1695), 1, + sym_alignas_qualifier, + ACTIONS(4086), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1573), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4081), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(4083), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(4079), 10, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [70963] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1843), 1, + STATE(1902), 1, sym_attribute_specifier, - ACTIONS(3313), 2, + ACTIONS(3365), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3910), 2, + ACTIONS(3935), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(3912), 2, + ACTIONS(3937), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(3914), 4, + ACTIONS(3939), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3311), 18, + ACTIONS(3363), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -143797,476 +145738,664 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [70024] = 22, - ACTIONS(3622), 1, + [71011] = 22, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, + anon_sym_SLASH, + ACTIONS(3965), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3967), 1, + anon_sym_AMP_AMP, + ACTIONS(3969), 1, + anon_sym_PIPE, + ACTIONS(3971), 1, + anon_sym_CARET, + ACTIONS(3973), 1, + anon_sym_AMP, + ACTIONS(3983), 1, + anon_sym_QMARK, + ACTIONS(4031), 1, + anon_sym_COMMA, + ACTIONS(4089), 1, + anon_sym_RPAREN, + STATE(1227), 1, + sym_argument_list, + STATE(2570), 1, + aux_sym_macro_invocation_parameter_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3961), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3975), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3977), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3979), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [71087] = 22, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, + anon_sym_SLASH, + ACTIONS(3965), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3967), 1, + anon_sym_AMP_AMP, + ACTIONS(3969), 1, + anon_sym_PIPE, + ACTIONS(3971), 1, + anon_sym_CARET, + ACTIONS(3973), 1, + anon_sym_AMP, + ACTIONS(3983), 1, + anon_sym_QMARK, + ACTIONS(4037), 1, + anon_sym_COMMA, + ACTIONS(4091), 1, + anon_sym_RPAREN, + STATE(1227), 1, + sym_argument_list, + STATE(2587), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3961), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3975), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3977), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3979), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [71163] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(4000), 1, + ACTIONS(4007), 1, anon_sym_COMMA, - ACTIONS(4024), 1, + ACTIONS(4093), 1, anon_sym_RPAREN, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, - STATE(2518), 1, - aux_sym_argument_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [70100] = 22, - ACTIONS(3622), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [71236] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(4000), 1, + ACTIONS(4007), 1, anon_sym_COMMA, - ACTIONS(4026), 1, - anon_sym_RPAREN, - STATE(1245), 1, + ACTIONS(4095), 1, + anon_sym_SEMI, + STATE(1227), 1, sym_argument_list, - STATE(2610), 1, - aux_sym_argument_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [70176] = 8, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - STATE(1671), 1, - sym_alignas_qualifier, - ACTIONS(4035), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1549), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(4030), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [71309] = 19, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(4032), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(4028), 10, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [70224] = 22, - ACTIONS(3622), 1, + ACTIONS(3661), 1, + anon_sym_DASH_GT, + ACTIONS(3789), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3815), 1, + anon_sym_DOT, + ACTIONS(4101), 1, anon_sym_SLASH, - ACTIONS(3930), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(4103), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(4105), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(4107), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(4109), 1, anon_sym_AMP, - ACTIONS(3946), 1, - anon_sym_QMARK, - ACTIONS(4000), 1, - anon_sym_COMMA, - ACTIONS(4038), 1, - anon_sym_RPAREN, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, - STATE(2553), 1, - aux_sym_argument_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(4097), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(4099), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(4111), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(4113), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(4115), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [70300] = 8, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - STATE(1836), 1, - sym_attribute_specifier, - ACTIONS(3334), 2, + ACTIONS(4117), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3020), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + [71378] = 18, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3661), 1, + anon_sym_DASH_GT, + ACTIONS(3789), 1, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3910), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3912), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3914), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3332), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [70348] = 11, - ACTIONS(3), 1, + ACTIONS(3815), 1, + anon_sym_DOT, + ACTIONS(4101), 1, + anon_sym_SLASH, + ACTIONS(4105), 1, + anon_sym_PIPE, + ACTIONS(4107), 1, + anon_sym_CARET, + ACTIONS(4109), 1, + anon_sym_AMP, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(2974), 1, - anon_sym_const, - ACTIONS(3996), 1, - anon_sym_LBRACE, - ACTIONS(4040), 1, - anon_sym___aligned, - STATE(1650), 1, - sym_field_declaration_list, - STATE(1957), 1, - sym_attribute_specifier, - ACTIONS(3990), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3992), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3994), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(2976), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4097), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4099), 2, anon_sym_STAR, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_COLON, - [70402] = 22, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3926), 1, - anon_sym_SLASH, - ACTIONS(3930), 1, + anon_sym_PERCENT, + ACTIONS(4111), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4113), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4115), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4117), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3020), 5, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + [71445] = 18, + ACTIONS(3028), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3661), 1, + anon_sym_DASH_GT, + ACTIONS(3789), 1, + anon_sym_LPAREN2, + ACTIONS(3815), 1, + anon_sym_DOT, + ACTIONS(4101), 1, + anon_sym_SLASH, + ACTIONS(4107), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(4109), 1, anon_sym_AMP, - ACTIONS(3946), 1, - anon_sym_QMARK, - ACTIONS(4042), 1, - anon_sym_COMMA, - ACTIONS(4044), 1, - anon_sym_RBRACE, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, - STATE(2638), 1, - aux_sym_initializer_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(4097), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(4099), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(4111), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(4113), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(4115), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [70478] = 22, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3926), 1, - anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(4117), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3020), 5, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + [71512] = 17, + ACTIONS(3028), 1, anon_sym_PIPE, - ACTIONS(3936), 1, - anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3661), 1, + anon_sym_DASH_GT, + ACTIONS(3789), 1, + anon_sym_LPAREN2, + ACTIONS(3815), 1, + anon_sym_DOT, + ACTIONS(4101), 1, + anon_sym_SLASH, + ACTIONS(4109), 1, anon_sym_AMP, - ACTIONS(3946), 1, - anon_sym_QMARK, - ACTIONS(4008), 1, - anon_sym_COMMA, - ACTIONS(4046), 1, - anon_sym_RPAREN, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, - STATE(2665), 1, - aux_sym_generic_expression_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(4097), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(4099), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, + ACTIONS(4111), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4113), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4115), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4117), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3020), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [71577] = 16, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3661), 1, + anon_sym_DASH_GT, + ACTIONS(3789), 1, + anon_sym_LPAREN2, + ACTIONS(3815), 1, + anon_sym_DOT, + ACTIONS(4101), 1, + anon_sym_SLASH, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3028), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4097), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4111), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(4113), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4115), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4117), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3020), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [71640] = 15, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3661), 1, + anon_sym_DASH_GT, + ACTIONS(3789), 1, + anon_sym_LPAREN2, + ACTIONS(3815), 1, + anon_sym_DOT, + ACTIONS(4101), 1, + anon_sym_SLASH, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3028), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4097), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4113), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(4115), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [70554] = 22, - ACTIONS(3622), 1, + ACTIONS(4117), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3020), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + [71701] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(4048), 1, + ACTIONS(4007), 1, anon_sym_COMMA, - ACTIONS(4050), 1, - anon_sym_RBRACE, - STATE(1245), 1, + ACTIONS(4119), 1, + anon_sym_SEMI, + STATE(1227), 1, sym_argument_list, - STATE(2517), 1, - aux_sym_initializer_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3961), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3975), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3977), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3979), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [71774] = 13, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3661), 1, + anon_sym_DASH_GT, + ACTIONS(3789), 1, + anon_sym_LPAREN2, + ACTIONS(3815), 1, + anon_sym_DOT, + ACTIONS(4101), 1, + anon_sym_SLASH, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4097), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(4099), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, + ACTIONS(4117), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3028), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3020), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + [71831] = 12, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3661), 1, + anon_sym_DASH_GT, + ACTIONS(3789), 1, + anon_sym_LPAREN2, + ACTIONS(3815), 1, + anon_sym_DOT, + ACTIONS(4101), 1, + anon_sym_SLASH, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4097), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3028), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3020), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [70630] = 8, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + [71886] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1858), 1, - sym_attribute_specifier, - ACTIONS(3293), 2, + ACTIONS(3513), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3910), 2, + ACTIONS(3511), 26, + anon_sym___extension__, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3912), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(3914), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3291), 18, - anon_sym___extension__, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -144284,29 +146413,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [70678] = 8, + [71925] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1856), 1, - sym_attribute_specifier, - ACTIONS(3344), 2, + ACTIONS(3533), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3910), 2, + ACTIONS(3531), 26, + anon_sym___extension__, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3912), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(3914), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3342), 18, - anon_sym___extension__, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -144324,332 +146448,338 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [70726] = 21, - ACTIONS(3622), 1, + [71964] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, + ACTIONS(4007), 1, anon_sym_COMMA, - ACTIONS(4052), 1, - anon_sym_RPAREN, - STATE(1245), 1, + ACTIONS(4121), 1, + anon_sym_COLON, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [70799] = 10, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3039), 1, - anon_sym_const, - ACTIONS(4060), 1, - anon_sym_LBRACE, - STATE(1667), 1, - sym_field_declaration_list, - STATE(1969), 1, - sym_attribute_specifier, - ACTIONS(4054), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(4056), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(4058), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3041), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_COLON, - [70850] = 21, - ACTIONS(3622), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [72037] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, + ACTIONS(4007), 1, anon_sym_COMMA, - ACTIONS(4062), 1, + ACTIONS(4123), 1, anon_sym_COLON, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [70923] = 21, - ACTIONS(3622), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [72110] = 20, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, - anon_sym_COMMA, - ACTIONS(4064), 1, - anon_sym_SEMI, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [70996] = 22, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3630), 1, - anon_sym_DASH_GT, - ACTIONS(3762), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4125), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [72181] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3764), 1, - anon_sym_DOT, - ACTIONS(4066), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4072), 1, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(4074), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(4076), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(4078), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(4080), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(4082), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(4092), 1, - anon_sym_RBRACK, - ACTIONS(4094), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - STATE(1245), 1, + ACTIONS(4007), 1, + anon_sym_COMMA, + ACTIONS(4127), 1, + anon_sym_RPAREN, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4068), 2, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4070), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4084), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4086), 2, + ACTIONS(3977), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3979), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [72254] = 11, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3661), 1, + anon_sym_DASH_GT, + ACTIONS(3789), 1, + anon_sym_LPAREN2, + ACTIONS(3815), 1, + anon_sym_DOT, + ACTIONS(4101), 1, + anon_sym_SLASH, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3028), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(4088), 2, + ACTIONS(3020), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4090), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [71071] = 21, - ACTIONS(3622), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + [72307] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, + ACTIONS(4007), 1, anon_sym_COMMA, - ACTIONS(4096), 1, + ACTIONS(4129), 1, anon_sym_RPAREN, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [71144] = 4, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [72380] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3482), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3480), 26, - anon_sym___extension__, + ACTIONS(3109), 1, + anon_sym_const, + ACTIONS(4137), 1, + anon_sym_LBRACE, + STATE(1702), 1, + sym_field_declaration_list, + STATE(1990), 1, + sym_attribute_specifier, + ACTIONS(4131), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4133), 2, anon_sym___scanf, anon_sym___printf, + ACTIONS(4135), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, + ACTIONS(3111), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym___extension__, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -144659,1468 +146789,1400 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [71183] = 21, - ACTIONS(3622), 1, + anon_sym_COLON, + [72431] = 21, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3661), 1, + anon_sym_DASH_GT, + ACTIONS(3789), 1, + anon_sym_LPAREN2, + ACTIONS(3815), 1, + anon_sym_DOT, + ACTIONS(4101), 1, + anon_sym_SLASH, + ACTIONS(4103), 1, + anon_sym_AMP_AMP, + ACTIONS(4105), 1, + anon_sym_PIPE, + ACTIONS(4107), 1, + anon_sym_CARET, + ACTIONS(4109), 1, + anon_sym_AMP, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, + anon_sym_QMARK, + STATE(1227), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3088), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4097), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4111), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4113), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4115), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4117), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [72504] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, + ACTIONS(4007), 1, anon_sym_COMMA, - ACTIONS(4098), 1, + ACTIONS(4143), 1, anon_sym_SEMI, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [71256] = 21, - ACTIONS(3622), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [72577] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, + ACTIONS(4007), 1, anon_sym_COMMA, - ACTIONS(4100), 1, - anon_sym_RPAREN, - STATE(1245), 1, + ACTIONS(4145), 1, + anon_sym_COLON, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [71329] = 21, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3630), 1, - anon_sym_DASH_GT, - ACTIONS(3762), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [72650] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3764), 1, - anon_sym_DOT, - ACTIONS(4072), 1, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(4074), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(4076), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(4078), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(4080), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(4082), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(4094), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - STATE(1245), 1, + ACTIONS(4007), 1, + anon_sym_COMMA, + ACTIONS(4147), 1, + anon_sym_SEMI, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3070), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4068), 2, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4070), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4084), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4086), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4088), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4090), 2, + ACTIONS(3981), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [71402] = 21, - ACTIONS(3622), 1, + [72723] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, + ACTIONS(4007), 1, anon_sym_COMMA, - ACTIONS(4102), 1, + ACTIONS(4149), 1, anon_sym_SEMI, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [71475] = 21, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3630), 1, - anon_sym_DASH_GT, - ACTIONS(3762), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [72796] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3764), 1, - anon_sym_DOT, - ACTIONS(4072), 1, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(4074), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(4076), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(4078), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(4080), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(4082), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(4094), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - STATE(1245), 1, + ACTIONS(4007), 1, + anon_sym_COMMA, + ACTIONS(4151), 1, + anon_sym_SEMI, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3082), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4068), 2, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4070), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4084), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4086), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4088), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4090), 2, + ACTIONS(3981), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [71548] = 18, - ACTIONS(3626), 1, + [72869] = 21, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3630), 1, + ACTIONS(3661), 1, anon_sym_DASH_GT, - ACTIONS(3762), 1, + ACTIONS(3789), 1, anon_sym_LPAREN2, - ACTIONS(3764), 1, + ACTIONS(3815), 1, anon_sym_DOT, - ACTIONS(4072), 1, + ACTIONS(4101), 1, anon_sym_SLASH, - ACTIONS(4078), 1, + ACTIONS(4103), 1, + anon_sym_AMP_AMP, + ACTIONS(4105), 1, anon_sym_PIPE, - ACTIONS(4080), 1, + ACTIONS(4107), 1, anon_sym_CARET, - ACTIONS(4082), 1, + ACTIONS(4109), 1, anon_sym_AMP, - STATE(1245), 1, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, + anon_sym_QMARK, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3060), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4068), 2, + ACTIONS(4097), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4070), 2, + ACTIONS(4099), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4084), 2, + ACTIONS(4111), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4086), 2, + ACTIONS(4113), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4088), 2, + ACTIONS(4115), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4090), 2, + ACTIONS(4117), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2991), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [71615] = 21, - ACTIONS(3622), 1, + [72942] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, + ACTIONS(4007), 1, anon_sym_COMMA, - ACTIONS(4104), 1, - anon_sym_RPAREN, - STATE(1245), 1, + ACTIONS(4153), 1, + anon_sym_SEMI, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [71688] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3317), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3315), 26, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [71727] = 21, - ACTIONS(3622), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [73015] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, + ACTIONS(4007), 1, anon_sym_COMMA, - ACTIONS(4106), 1, + ACTIONS(4155), 1, anon_sym_SEMI, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [71800] = 21, - ACTIONS(3622), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [73088] = 20, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, - anon_sym_COMMA, - ACTIONS(4108), 1, - anon_sym_RPAREN, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [71873] = 21, - ACTIONS(3622), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4157), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [73159] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, + ACTIONS(4007), 1, anon_sym_COMMA, - ACTIONS(4110), 1, - anon_sym_SEMI, - STATE(1245), 1, + ACTIONS(4159), 1, + anon_sym_COLON, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [71946] = 21, - ACTIONS(3622), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [73232] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, + ACTIONS(4007), 1, anon_sym_COMMA, - ACTIONS(4112), 1, + ACTIONS(4161), 1, anon_sym_RPAREN, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [72019] = 21, - ACTIONS(3622), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [73305] = 20, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, - anon_sym_COMMA, - ACTIONS(4114), 1, - anon_sym_COLON, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [72092] = 21, - ACTIONS(3622), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4163), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [73376] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, + ACTIONS(4007), 1, anon_sym_COMMA, - ACTIONS(4116), 1, + ACTIONS(4165), 1, anon_sym_RPAREN, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [72165] = 19, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3630), 1, - anon_sym_DASH_GT, - ACTIONS(3762), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [73449] = 20, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3764), 1, - anon_sym_DOT, - ACTIONS(4072), 1, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(4076), 1, + ACTIONS(3965), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(4078), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(4080), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(4082), 1, + ACTIONS(3973), 1, anon_sym_AMP, - STATE(1245), 1, + ACTIONS(3983), 1, + anon_sym_QMARK, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4068), 2, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4070), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4084), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4086), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4088), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4090), 2, + ACTIONS(3981), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2991), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - [72234] = 12, - ACTIONS(3626), 1, + ACTIONS(4167), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [73520] = 22, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3630), 1, + ACTIONS(3661), 1, anon_sym_DASH_GT, - ACTIONS(3762), 1, + ACTIONS(3789), 1, anon_sym_LPAREN2, - ACTIONS(3764), 1, + ACTIONS(3815), 1, anon_sym_DOT, - ACTIONS(4072), 1, + ACTIONS(4101), 1, anon_sym_SLASH, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4068), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4070), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3017), 4, + ACTIONS(4103), 1, + anon_sym_AMP_AMP, + ACTIONS(4105), 1, anon_sym_PIPE, + ACTIONS(4107), 1, + anon_sym_CARET, + ACTIONS(4109), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2991), 12, - anon_sym_DOT_DOT_DOT, + ACTIONS(4139), 1, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, + ACTIONS(4141), 1, anon_sym_QMARK, - [72289] = 13, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3630), 1, - anon_sym_DASH_GT, - ACTIONS(3762), 1, - anon_sym_LPAREN2, - ACTIONS(3764), 1, - anon_sym_DOT, - ACTIONS(4072), 1, - anon_sym_SLASH, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4068), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4070), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(4090), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3017), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2991), 10, + ACTIONS(4169), 1, anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4171), 1, anon_sym_RBRACK, - anon_sym_QMARK, - [72346] = 15, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3630), 1, - anon_sym_DASH_GT, - ACTIONS(3762), 1, - anon_sym_LPAREN2, - ACTIONS(3764), 1, - anon_sym_DOT, - ACTIONS(4072), 1, - anon_sym_SLASH, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3017), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4068), 2, + ACTIONS(4097), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4070), 2, + ACTIONS(4099), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4086), 2, + ACTIONS(4111), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4113), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4088), 2, + ACTIONS(4115), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4090), 2, + ACTIONS(4117), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2991), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [72407] = 21, - ACTIONS(3622), 1, + [73595] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, + ACTIONS(4007), 1, anon_sym_COMMA, - ACTIONS(4118), 1, - anon_sym_COLON, - STATE(1245), 1, + ACTIONS(4173), 1, + anon_sym_SEMI, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [72480] = 21, - ACTIONS(3622), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [73668] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, + ACTIONS(4007), 1, anon_sym_COMMA, - ACTIONS(4120), 1, + ACTIONS(4175), 1, anon_sym_RPAREN, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [72553] = 21, - ACTIONS(3622), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [73741] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, + ACTIONS(4007), 1, anon_sym_COMMA, - ACTIONS(4122), 1, - anon_sym_COLON, - STATE(1245), 1, + ACTIONS(4177), 1, + anon_sym_SEMI, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [72626] = 20, - ACTIONS(3622), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [73814] = 20, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3921), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3944), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4124), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [72697] = 11, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3630), 1, - anon_sym_DASH_GT, - ACTIONS(3762), 1, - anon_sym_LPAREN2, - ACTIONS(3764), 1, - anon_sym_DOT, - ACTIONS(4072), 1, - anon_sym_SLASH, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4070), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3017), 6, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2991), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3981), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [72750] = 21, - ACTIONS(3622), 1, + [73885] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, + ACTIONS(4007), 1, anon_sym_COMMA, - ACTIONS(4126), 1, + ACTIONS(4179), 1, anon_sym_SEMI, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [72823] = 18, - ACTIONS(3017), 1, - anon_sym_PIPE, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3630), 1, - anon_sym_DASH_GT, - ACTIONS(3762), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [73958] = 20, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3764), 1, - anon_sym_DOT, - ACTIONS(4072), 1, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(4080), 1, + ACTIONS(3965), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3967), 1, + anon_sym_AMP_AMP, + ACTIONS(3969), 1, + anon_sym_PIPE, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(4082), 1, + ACTIONS(3973), 1, anon_sym_AMP, - STATE(1245), 1, + ACTIONS(3983), 1, + anon_sym_QMARK, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4068), 2, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4070), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4084), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4086), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4088), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4090), 2, + ACTIONS(3981), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2991), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [72890] = 21, - ACTIONS(3622), 1, + ACTIONS(4181), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [74029] = 20, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, - anon_sym_COMMA, - ACTIONS(4128), 1, - anon_sym_COLON, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [72963] = 21, - ACTIONS(3622), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4183), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [74100] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4187), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(4185), 23, + anon_sym___extension__, + anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [74139] = 20, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, - anon_sym_COMMA, - ACTIONS(4130), 1, - anon_sym_COLON, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [73036] = 21, - ACTIONS(3622), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4189), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [74210] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, + ACTIONS(4007), 1, anon_sym_COMMA, - ACTIONS(4132), 1, - anon_sym_RPAREN, - STATE(1245), 1, + ACTIONS(4191), 1, + anon_sym_COLON, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [73109] = 20, - ACTIONS(3622), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [74283] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - STATE(1245), 1, + ACTIONS(4007), 1, + anon_sym_COMMA, + ACTIONS(4193), 1, + anon_sym_COLON, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4134), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [73180] = 4, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [74356] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4138), 5, + ACTIONS(4197), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(4136), 23, + ACTIONS(4195), 23, anon_sym___extension__, anon_sym___based, sym_ms_restrict_modifier, @@ -146144,751 +148206,755 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [73219] = 21, - ACTIONS(3622), 1, + [74395] = 10, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3096), 1, + anon_sym_const, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(1701), 1, + sym_enumerator_list, + STATE(2021), 1, + sym_attribute_specifier, + ACTIONS(4131), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4133), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(4135), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3098), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [74446] = 20, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, - anon_sym_COMMA, - ACTIONS(4140), 1, - anon_sym_SEMI, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [73292] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3283), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3281), 26, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [73331] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4144), 5, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4201), 2, anon_sym_COMMA, anon_sym_RPAREN, + [74517] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(4142), 23, - anon_sym___extension__, - anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [73370] = 21, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, + ACTIONS(4007), 1, anon_sym_COMMA, - ACTIONS(4146), 1, - anon_sym_SEMI, - STATE(1245), 1, + ACTIONS(4203), 1, + anon_sym_COLON, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [73443] = 20, - ACTIONS(3622), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [74590] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - STATE(1245), 1, + ACTIONS(4007), 1, + anon_sym_COMMA, + ACTIONS(4205), 1, + anon_sym_COLON, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4148), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [73514] = 21, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3630), 1, - anon_sym_DASH_GT, - ACTIONS(3762), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [74663] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3764), 1, - anon_sym_DOT, - ACTIONS(4072), 1, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(4074), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(4076), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(4078), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(4080), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(4082), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(4094), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - STATE(1245), 1, + ACTIONS(4007), 1, + anon_sym_COMMA, + ACTIONS(4207), 1, + anon_sym_RPAREN, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3078), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4068), 2, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4070), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4084), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4086), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4088), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4090), 2, + ACTIONS(3981), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [73587] = 21, - ACTIONS(3622), 1, + [74736] = 11, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2990), 1, + anon_sym_const, + ACTIONS(4199), 1, + anon_sym_LBRACE, + ACTIONS(4209), 1, + anon_sym_COLON, + STATE(1696), 1, + sym_enumerator_list, + STATE(1987), 1, + sym_attribute_specifier, + ACTIONS(4131), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4133), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(4135), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2992), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + [74789] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, + ACTIONS(4007), 1, anon_sym_COMMA, - ACTIONS(4150), 1, + ACTIONS(4211), 1, anon_sym_SEMI, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [73660] = 20, - ACTIONS(3622), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [74862] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3297), 2, anon_sym_LPAREN2, - ACTIONS(3626), 1, + anon_sym_STAR, + ACTIONS(3295), 26, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [74901] = 21, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3661), 1, + anon_sym_DASH_GT, + ACTIONS(3789), 1, + anon_sym_LPAREN2, + ACTIONS(3815), 1, + anon_sym_DOT, + ACTIONS(4101), 1, anon_sym_SLASH, - ACTIONS(3930), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(4103), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(4105), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(4107), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(4109), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, anon_sym_QMARK, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3044), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(4097), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(4099), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(4111), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(4113), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(4115), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4152), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [73731] = 21, - ACTIONS(3622), 1, + ACTIONS(4117), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [74974] = 20, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, - anon_sym_COMMA, - ACTIONS(4154), 1, - anon_sym_SEMI, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [73804] = 20, - ACTIONS(3622), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4213), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [75045] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - STATE(1245), 1, + ACTIONS(4007), 1, + anon_sym_COMMA, + ACTIONS(4215), 1, + anon_sym_SEMI, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4156), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [73875] = 20, - ACTIONS(3622), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [75118] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - STATE(1245), 1, + ACTIONS(4007), 1, + anon_sym_COMMA, + ACTIONS(4217), 1, + anon_sym_SEMI, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4158), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [73946] = 21, - ACTIONS(3622), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [75191] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, + ACTIONS(4007), 1, anon_sym_COMMA, - ACTIONS(4160), 1, - anon_sym_SEMI, - STATE(1245), 1, + ACTIONS(4219), 1, + anon_sym_RPAREN, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3924), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3942), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3944), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [74019] = 16, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3630), 1, - anon_sym_DASH_GT, - ACTIONS(3762), 1, - anon_sym_LPAREN2, - ACTIONS(3764), 1, - anon_sym_DOT, - ACTIONS(4072), 1, - anon_sym_SLASH, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3017), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4068), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4070), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4084), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4086), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4088), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4090), 2, + ACTIONS(3981), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2991), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [74082] = 20, - ACTIONS(3622), 1, + [75264] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - STATE(1245), 1, + ACTIONS(4007), 1, + anon_sym_COMMA, + ACTIONS(4221), 1, + anon_sym_RPAREN, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4162), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [74153] = 21, - ACTIONS(3622), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [75337] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, + ACTIONS(4007), 1, anon_sym_COMMA, - ACTIONS(4164), 1, - anon_sym_COLON, - STATE(1245), 1, + ACTIONS(4223), 1, + anon_sym_RPAREN, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [74226] = 4, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [75410] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3399), 2, + ACTIONS(3328), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3397), 26, + ACTIONS(3326), 26, anon_sym___extension__, anon_sym___attribute__, anon_sym___scanf, @@ -146915,219 +148981,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [74265] = 21, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3926), 1, - anon_sym_SLASH, - ACTIONS(3930), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE, - ACTIONS(3936), 1, - anon_sym_CARET, - ACTIONS(3938), 1, - anon_sym_AMP, - ACTIONS(3946), 1, - anon_sym_QMARK, - ACTIONS(3986), 1, - anon_sym_COMMA, - ACTIONS(4166), 1, - anon_sym_SEMI, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3922), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3924), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3942), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3944), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [74338] = 17, - ACTIONS(3017), 1, - anon_sym_PIPE, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3630), 1, - anon_sym_DASH_GT, - ACTIONS(3762), 1, - anon_sym_LPAREN2, - ACTIONS(3764), 1, - anon_sym_DOT, - ACTIONS(4072), 1, - anon_sym_SLASH, - ACTIONS(4082), 1, - anon_sym_AMP, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4068), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4070), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(4084), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4086), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4088), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4090), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2991), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [74403] = 21, - ACTIONS(3622), 1, + [75449] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, + ACTIONS(4007), 1, anon_sym_COMMA, - ACTIONS(4168), 1, + ACTIONS(4225), 1, anon_sym_SEMI, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [74476] = 21, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3926), 1, - anon_sym_SLASH, - ACTIONS(3930), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE, - ACTIONS(3936), 1, - anon_sym_CARET, - ACTIONS(3938), 1, - anon_sym_AMP, - ACTIONS(3946), 1, - anon_sym_QMARK, - ACTIONS(3986), 1, - anon_sym_COMMA, - ACTIONS(4170), 1, - anon_sym_SEMI, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3922), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3924), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3928), 2, + ACTIONS(3981), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3940), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3942), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3944), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [74549] = 4, + [75522] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3498), 2, + ACTIONS(3595), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3496), 26, + ACTIONS(3593), 26, anon_sym___extension__, anon_sym___attribute__, anon_sym___scanf, @@ -147154,33 +149068,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [74588] = 11, + [75561] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2929), 1, + ACTIONS(3127), 1, anon_sym_const, - ACTIONS(4172), 1, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(4174), 1, - anon_sym_COLON, - STATE(1680), 1, - sym_enumerator_list, - STATE(1967), 1, + STATE(1704), 1, + sym_field_declaration_list, + STATE(2028), 1, sym_attribute_specifier, - ACTIONS(4054), 2, + ACTIONS(4131), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(4056), 2, + ACTIONS(4133), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(4058), 4, + ACTIONS(4135), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2931), 15, + ACTIONS(3129), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -147196,227 +149108,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - [74641] = 21, - ACTIONS(3622), 1, + anon_sym_COLON, + [75612] = 21, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, + ACTIONS(4007), 1, anon_sym_COMMA, - ACTIONS(4176), 1, - anon_sym_COLON, - STATE(1245), 1, + ACTIONS(4227), 1, + anon_sym_SEMI, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [74714] = 10, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3057), 1, - anon_sym_const, - ACTIONS(4172), 1, - anon_sym_LBRACE, - STATE(1675), 1, - sym_enumerator_list, - STATE(2000), 1, - sym_attribute_specifier, - ACTIONS(4054), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(4056), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(4058), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3059), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym___extension__, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [75685] = 20, + ACTIONS(2621), 1, + anon_sym_RBRACK, + ACTIONS(3657), 1, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_COLON, - [74765] = 21, - ACTIONS(3622), 1, + ACTIONS(3789), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(4101), 1, anon_sym_SLASH, - ACTIONS(3930), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(4103), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(4105), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(4107), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(4109), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, anon_sym_QMARK, - ACTIONS(3986), 1, - anon_sym_COMMA, - ACTIONS(4178), 1, - anon_sym_SEMI, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(4097), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(4099), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(4111), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(4113), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(4115), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [74838] = 20, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(4117), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [75755] = 20, + ACTIONS(2623), 1, + anon_sym_RBRACK, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3789), 1, + anon_sym_LPAREN2, + ACTIONS(4101), 1, anon_sym_SLASH, - ACTIONS(3930), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(4103), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(4105), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(4107), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(4109), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, anon_sym_QMARK, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3894), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3922), 2, + ACTIONS(4097), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(4099), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(4111), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(4113), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(4115), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [74909] = 10, + ACTIONS(4117), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [75825] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3090), 1, + ACTIONS(3235), 1, anon_sym_const, - ACTIONS(4060), 1, - anon_sym_LBRACE, - STATE(1664), 1, - sym_field_declaration_list, - STATE(1981), 1, + ACTIONS(4229), 1, + anon_sym___aligned, + STATE(1971), 1, sym_attribute_specifier, - ACTIONS(4054), 2, + ACTIONS(4017), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(4056), 2, + ACTIONS(4019), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(4058), 4, + ACTIONS(4021), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3092), 16, + ACTIONS(3237), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -147433,183 +149300,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [74960] = 21, - ACTIONS(3622), 1, + [75873] = 20, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, + ACTIONS(4231), 1, anon_sym_COMMA, - ACTIONS(4180), 1, - anon_sym_RPAREN, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [75033] = 21, - ACTIONS(3622), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [75943] = 20, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(3986), 1, - anon_sym_COMMA, - ACTIONS(4182), 1, - anon_sym_SEMI, - STATE(1245), 1, + ACTIONS(4233), 1, + anon_sym_RPAREN, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [75106] = 20, - ACTIONS(3622), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [76013] = 20, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(4184), 1, - anon_sym_RPAREN, - STATE(1245), 1, + ACTIONS(4235), 1, + anon_sym_COLON, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [75176] = 9, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [76083] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3156), 1, + ACTIONS(3213), 1, anon_sym_const, - ACTIONS(4186), 1, + ACTIONS(4237), 1, anon_sym___aligned, - STATE(1963), 1, + STATE(1982), 1, sym_attribute_specifier, - ACTIONS(3990), 2, + ACTIONS(4017), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(3992), 2, + ACTIONS(4019), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(3994), 4, + ACTIONS(4021), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3158), 16, + ACTIONS(3215), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -147626,168 +149489,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [75224] = 20, - ACTIONS(2610), 1, - anon_sym_RBRACK, - ACTIONS(3626), 1, + [76131] = 20, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3762), 1, + ACTIONS(3789), 1, anon_sym_LPAREN2, - ACTIONS(4072), 1, + ACTIONS(4101), 1, anon_sym_SLASH, - ACTIONS(4074), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4076), 1, + ACTIONS(4103), 1, anon_sym_AMP_AMP, - ACTIONS(4078), 1, + ACTIONS(4105), 1, anon_sym_PIPE, - ACTIONS(4080), 1, + ACTIONS(4107), 1, anon_sym_CARET, - ACTIONS(4082), 1, + ACTIONS(4109), 1, anon_sym_AMP, - ACTIONS(4094), 1, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, anon_sym_QMARK, - STATE(1245), 1, + ACTIONS(4239), 1, + anon_sym_RBRACK, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4068), 2, + ACTIONS(4097), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4070), 2, + ACTIONS(4099), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4084), 2, + ACTIONS(4111), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4086), 2, + ACTIONS(4113), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4088), 2, + ACTIONS(4115), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4090), 2, + ACTIONS(4117), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [75294] = 9, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3150), 1, - anon_sym_const, - ACTIONS(4188), 1, - anon_sym___aligned, - STATE(1950), 1, - sym_attribute_specifier, - ACTIONS(3990), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3992), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3994), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3152), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_COLON, - [75342] = 20, - ACTIONS(2548), 1, + [76201] = 20, + ACTIONS(2561), 1, anon_sym_RBRACK, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3762), 1, + ACTIONS(3789), 1, anon_sym_LPAREN2, - ACTIONS(4072), 1, + ACTIONS(4101), 1, anon_sym_SLASH, - ACTIONS(4074), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4076), 1, + ACTIONS(4103), 1, anon_sym_AMP_AMP, - ACTIONS(4078), 1, + ACTIONS(4105), 1, anon_sym_PIPE, - ACTIONS(4080), 1, + ACTIONS(4107), 1, anon_sym_CARET, - ACTIONS(4082), 1, + ACTIONS(4109), 1, anon_sym_AMP, - ACTIONS(4094), 1, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, anon_sym_QMARK, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4068), 2, + ACTIONS(4097), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4070), 2, + ACTIONS(4099), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4084), 2, + ACTIONS(4111), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4086), 2, + ACTIONS(4113), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4088), 2, + ACTIONS(4115), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4090), 2, + ACTIONS(4117), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [75412] = 9, + [76271] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3136), 1, + ACTIONS(3269), 1, anon_sym_const, - ACTIONS(4190), 1, + ACTIONS(4241), 1, anon_sym___aligned, - STATE(1952), 1, + STATE(1977), 1, sym_attribute_specifier, - ACTIONS(3990), 2, + ACTIONS(4017), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(3992), 2, + ACTIONS(4019), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(3994), 4, + ACTIONS(4021), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3138), 16, + ACTIONS(3271), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -147804,1729 +149628,1407 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [75460] = 20, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3762), 1, - anon_sym_LPAREN2, - ACTIONS(4072), 1, - anon_sym_SLASH, - ACTIONS(4074), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4076), 1, - anon_sym_AMP_AMP, - ACTIONS(4078), 1, - anon_sym_PIPE, - ACTIONS(4080), 1, - anon_sym_CARET, - ACTIONS(4082), 1, - anon_sym_AMP, - ACTIONS(4094), 1, - anon_sym_QMARK, - ACTIONS(4192), 1, - anon_sym_RBRACK, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4068), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4070), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(4084), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4086), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4088), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4090), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [75530] = 20, - ACTIONS(2618), 1, - anon_sym_RBRACK, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3762), 1, - anon_sym_LPAREN2, - ACTIONS(4072), 1, - anon_sym_SLASH, - ACTIONS(4074), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4076), 1, - anon_sym_AMP_AMP, - ACTIONS(4078), 1, - anon_sym_PIPE, - ACTIONS(4080), 1, - anon_sym_CARET, - ACTIONS(4082), 1, - anon_sym_AMP, - ACTIONS(4094), 1, - anon_sym_QMARK, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4068), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4070), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(4084), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4086), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4088), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4090), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [75600] = 20, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3926), 1, - anon_sym_SLASH, - ACTIONS(3930), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE, - ACTIONS(3936), 1, - anon_sym_CARET, - ACTIONS(3938), 1, - anon_sym_AMP, - ACTIONS(3946), 1, - anon_sym_QMARK, - ACTIONS(4194), 1, - anon_sym_COLON, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3922), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3924), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3942), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3944), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [75670] = 20, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3926), 1, - anon_sym_SLASH, - ACTIONS(3930), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE, - ACTIONS(3936), 1, - anon_sym_CARET, - ACTIONS(3938), 1, - anon_sym_AMP, - ACTIONS(3946), 1, - anon_sym_QMARK, - ACTIONS(4196), 1, - anon_sym_COMMA, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3922), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3924), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3942), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3944), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [75740] = 20, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3926), 1, - anon_sym_SLASH, - ACTIONS(3930), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE, - ACTIONS(3936), 1, - anon_sym_CARET, - ACTIONS(3938), 1, - anon_sym_AMP, - ACTIONS(3946), 1, - anon_sym_QMARK, - ACTIONS(4198), 1, - anon_sym_COLON, - STATE(1245), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3628), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3922), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3924), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3942), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3944), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [75810] = 20, - ACTIONS(3622), 1, + [76319] = 20, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(4200), 1, + ACTIONS(4243), 1, anon_sym_COLON, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [75880] = 20, - ACTIONS(2614), 1, - anon_sym_RBRACK, - ACTIONS(3626), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [76389] = 9, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + anon_sym_const, + ACTIONS(4245), 1, + anon_sym___aligned, + STATE(1972), 1, + sym_attribute_specifier, + ACTIONS(4017), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4019), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(4021), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3281), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym___extension__, anon_sym_LBRACK, - ACTIONS(3762), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [76437] = 20, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(4072), 1, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(4074), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(4076), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(4078), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(4080), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(4082), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(4094), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - STATE(1245), 1, + ACTIONS(4247), 1, + anon_sym_RPAREN, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4068), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4070), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4084), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4086), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4088), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4090), 2, + ACTIONS(3981), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [75950] = 20, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - ACTIONS(3626), 1, + [76507] = 20, + ACTIONS(2553), 1, + anon_sym_RBRACK, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3789), 1, + anon_sym_LPAREN2, + ACTIONS(4101), 1, anon_sym_SLASH, - ACTIONS(3930), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(4103), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(4105), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(4107), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(4109), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, anon_sym_QMARK, - ACTIONS(4202), 1, - anon_sym_COMMA, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(4097), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(4099), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(4111), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(4113), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(4115), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [76020] = 20, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(4117), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [76577] = 20, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3789), 1, + anon_sym_LPAREN2, + ACTIONS(4101), 1, anon_sym_SLASH, - ACTIONS(3930), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(4103), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(4105), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(4107), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(4109), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, anon_sym_QMARK, - ACTIONS(4204), 1, - anon_sym_RPAREN, - STATE(1245), 1, + ACTIONS(4249), 1, + anon_sym_RBRACK, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(4097), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(4099), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(4111), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(4113), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(4115), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [76090] = 20, - ACTIONS(3622), 1, + ACTIONS(4117), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [76647] = 20, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(4206), 1, - anon_sym_RPAREN, - STATE(1245), 1, + ACTIONS(4251), 1, + anon_sym_COLON, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [76160] = 20, - ACTIONS(3622), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [76717] = 20, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(4208), 1, + ACTIONS(4253), 1, anon_sym_RPAREN, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [76230] = 20, - ACTIONS(2596), 1, - anon_sym_RBRACK, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3762), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [76787] = 20, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(4072), 1, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(4074), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(4076), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(4078), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(4080), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(4082), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(4094), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - STATE(1245), 1, + ACTIONS(4255), 1, + anon_sym_COLON, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4068), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4070), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4084), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4086), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4088), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4090), 2, + ACTIONS(3981), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [76300] = 9, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3194), 1, - anon_sym_const, - ACTIONS(4210), 1, - anon_sym___aligned, - STATE(1951), 1, - sym_attribute_specifier, - ACTIONS(3990), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3992), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3994), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3196), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_COLON, - [76348] = 20, - ACTIONS(3622), 1, + [76857] = 20, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(4212), 1, - anon_sym_RPAREN, - STATE(1245), 1, + ACTIONS(4257), 1, + anon_sym_COLON, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [76418] = 20, - ACTIONS(2612), 1, - anon_sym_RBRACK, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3762), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [76927] = 20, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(4072), 1, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(4074), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(4076), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(4078), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(4080), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(4082), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(4094), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - STATE(1245), 1, + ACTIONS(4259), 1, + anon_sym_RPAREN, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4068), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4070), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4084), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4086), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4088), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4090), 2, + ACTIONS(3981), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [76488] = 20, - ACTIONS(2546), 1, + [76997] = 20, + ACTIONS(2559), 1, anon_sym_RBRACK, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3762), 1, + ACTIONS(3789), 1, anon_sym_LPAREN2, - ACTIONS(4072), 1, + ACTIONS(4101), 1, anon_sym_SLASH, - ACTIONS(4074), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4076), 1, + ACTIONS(4103), 1, anon_sym_AMP_AMP, - ACTIONS(4078), 1, + ACTIONS(4105), 1, anon_sym_PIPE, - ACTIONS(4080), 1, + ACTIONS(4107), 1, anon_sym_CARET, - ACTIONS(4082), 1, + ACTIONS(4109), 1, anon_sym_AMP, - ACTIONS(4094), 1, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, anon_sym_QMARK, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4068), 2, + ACTIONS(4097), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4070), 2, + ACTIONS(4099), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4084), 2, + ACTIONS(4111), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4086), 2, + ACTIONS(4113), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4088), 2, + ACTIONS(4115), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4090), 2, + ACTIONS(4117), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [76558] = 20, - ACTIONS(2550), 1, + [77067] = 20, + ACTIONS(2607), 1, anon_sym_RBRACK, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3762), 1, + ACTIONS(3789), 1, anon_sym_LPAREN2, - ACTIONS(4072), 1, + ACTIONS(4101), 1, anon_sym_SLASH, - ACTIONS(4074), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4076), 1, + ACTIONS(4103), 1, anon_sym_AMP_AMP, - ACTIONS(4078), 1, + ACTIONS(4105), 1, anon_sym_PIPE, - ACTIONS(4080), 1, + ACTIONS(4107), 1, anon_sym_CARET, - ACTIONS(4082), 1, + ACTIONS(4109), 1, anon_sym_AMP, - ACTIONS(4094), 1, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, anon_sym_QMARK, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4068), 2, + ACTIONS(4097), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4070), 2, + ACTIONS(4099), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4084), 2, + ACTIONS(4111), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4086), 2, + ACTIONS(4113), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4088), 2, + ACTIONS(4115), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4090), 2, + ACTIONS(4117), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [76628] = 20, - ACTIONS(3622), 1, + [77137] = 20, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(4214), 1, - anon_sym_COLON, - STATE(1245), 1, + ACTIONS(4261), 1, + anon_sym_RPAREN, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [76698] = 20, - ACTIONS(2606), 1, - anon_sym_RBRACK, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3762), 1, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [77207] = 20, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(4072), 1, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(4074), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(4076), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(4078), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(4080), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(4082), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(4094), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - STATE(1245), 1, + ACTIONS(4263), 1, + anon_sym_COMMA, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4068), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4070), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4084), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4086), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4088), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4090), 2, + ACTIONS(3981), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [76768] = 9, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3228), 1, - anon_sym_const, - ACTIONS(4216), 1, - anon_sym___aligned, - STATE(1947), 1, - sym_attribute_specifier, - ACTIONS(3990), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3992), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3994), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3230), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_COLON, - [76816] = 9, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3238), 1, - anon_sym_const, - ACTIONS(4218), 1, - anon_sym___aligned, - STATE(1961), 1, - sym_attribute_specifier, - ACTIONS(3990), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3992), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3994), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3240), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_COLON, - [76864] = 20, - ACTIONS(2602), 1, - anon_sym_RBRACK, - ACTIONS(3626), 1, + [77277] = 20, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3762), 1, + ACTIONS(3789), 1, anon_sym_LPAREN2, - ACTIONS(4072), 1, + ACTIONS(4101), 1, anon_sym_SLASH, - ACTIONS(4074), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4076), 1, + ACTIONS(4103), 1, anon_sym_AMP_AMP, - ACTIONS(4078), 1, + ACTIONS(4105), 1, anon_sym_PIPE, - ACTIONS(4080), 1, + ACTIONS(4107), 1, anon_sym_CARET, - ACTIONS(4082), 1, + ACTIONS(4109), 1, anon_sym_AMP, - ACTIONS(4094), 1, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, anon_sym_QMARK, - STATE(1245), 1, + ACTIONS(4265), 1, + anon_sym_RBRACK, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4068), 2, + ACTIONS(4097), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4070), 2, + ACTIONS(4099), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4084), 2, + ACTIONS(4111), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4086), 2, + ACTIONS(4113), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4088), 2, + ACTIONS(4115), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4090), 2, + ACTIONS(4117), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [76934] = 20, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - ACTIONS(3626), 1, + [77347] = 20, + ACTIONS(2557), 1, + anon_sym_RBRACK, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3789), 1, + anon_sym_LPAREN2, + ACTIONS(4101), 1, anon_sym_SLASH, - ACTIONS(3930), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(4103), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(4105), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(4107), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(4109), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, anon_sym_QMARK, - ACTIONS(4220), 1, - anon_sym_RPAREN, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(4097), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(4099), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(4111), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(4113), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(4115), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [77004] = 20, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3762), 1, + ACTIONS(4117), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [77417] = 20, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(4072), 1, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(4074), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(4076), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(4078), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(4080), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(4082), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(4094), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - ACTIONS(4222), 1, - anon_sym_RBRACK, - STATE(1245), 1, + ACTIONS(4267), 1, + anon_sym_COMMA, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4068), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4070), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4084), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4086), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4088), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4090), 2, + ACTIONS(3981), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [77074] = 20, - ACTIONS(3622), 1, + [77487] = 9, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3175), 1, + anon_sym_const, + ACTIONS(4269), 1, + anon_sym___aligned, + STATE(1976), 1, + sym_attribute_specifier, + ACTIONS(4017), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4019), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(4021), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3177), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3626), 1, + anon_sym_STAR, + anon_sym___extension__, anon_sym_LBRACK, - ACTIONS(3926), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [77535] = 20, + ACTIONS(2613), 1, + anon_sym_RBRACK, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3789), 1, + anon_sym_LPAREN2, + ACTIONS(4101), 1, anon_sym_SLASH, - ACTIONS(3930), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(4103), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(4105), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(4107), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(4109), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, anon_sym_QMARK, - ACTIONS(4224), 1, - anon_sym_COLON, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(4097), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(4099), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(4111), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(4113), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(4115), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [77144] = 20, - ACTIONS(3626), 1, + ACTIONS(4117), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [77605] = 20, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3762), 1, + ACTIONS(3789), 1, anon_sym_LPAREN2, - ACTIONS(4072), 1, + ACTIONS(4101), 1, anon_sym_SLASH, - ACTIONS(4074), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4076), 1, + ACTIONS(4103), 1, anon_sym_AMP_AMP, - ACTIONS(4078), 1, + ACTIONS(4105), 1, anon_sym_PIPE, - ACTIONS(4080), 1, + ACTIONS(4107), 1, anon_sym_CARET, - ACTIONS(4082), 1, + ACTIONS(4109), 1, anon_sym_AMP, - ACTIONS(4094), 1, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, anon_sym_QMARK, - ACTIONS(4226), 1, + ACTIONS(4271), 1, anon_sym_RBRACK, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4068), 2, + ACTIONS(4097), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4070), 2, + ACTIONS(4099), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4084), 2, + ACTIONS(4111), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4086), 2, + ACTIONS(4113), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4088), 2, + ACTIONS(4115), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4090), 2, + ACTIONS(4117), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [77214] = 20, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - ACTIONS(3626), 1, + [77675] = 20, + ACTIONS(2615), 1, + anon_sym_RBRACK, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3789), 1, + anon_sym_LPAREN2, + ACTIONS(4101), 1, anon_sym_SLASH, - ACTIONS(3930), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(4103), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(4105), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(4107), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(4109), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, anon_sym_QMARK, - ACTIONS(4228), 1, - anon_sym_RPAREN, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(4097), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(4099), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(4111), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(4113), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(4115), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [77284] = 20, - ACTIONS(2608), 1, + ACTIONS(4117), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [77745] = 20, + ACTIONS(2617), 1, anon_sym_RBRACK, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3762), 1, + ACTIONS(3789), 1, anon_sym_LPAREN2, - ACTIONS(4072), 1, + ACTIONS(4101), 1, anon_sym_SLASH, - ACTIONS(4074), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4076), 1, + ACTIONS(4103), 1, anon_sym_AMP_AMP, - ACTIONS(4078), 1, + ACTIONS(4105), 1, anon_sym_PIPE, - ACTIONS(4080), 1, + ACTIONS(4107), 1, anon_sym_CARET, - ACTIONS(4082), 1, + ACTIONS(4109), 1, anon_sym_AMP, - ACTIONS(4094), 1, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, anon_sym_QMARK, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4068), 2, + ACTIONS(4097), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4070), 2, + ACTIONS(4099), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4084), 2, + ACTIONS(4111), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4086), 2, + ACTIONS(4113), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4088), 2, + ACTIONS(4115), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4090), 2, + ACTIONS(4117), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [77354] = 20, - ACTIONS(2600), 1, + [77815] = 20, + ACTIONS(2609), 1, anon_sym_RBRACK, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3762), 1, + ACTIONS(3789), 1, anon_sym_LPAREN2, - ACTIONS(4072), 1, + ACTIONS(4101), 1, anon_sym_SLASH, - ACTIONS(4074), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4076), 1, + ACTIONS(4103), 1, anon_sym_AMP_AMP, - ACTIONS(4078), 1, + ACTIONS(4105), 1, anon_sym_PIPE, - ACTIONS(4080), 1, + ACTIONS(4107), 1, anon_sym_CARET, - ACTIONS(4082), 1, + ACTIONS(4109), 1, anon_sym_AMP, - ACTIONS(4094), 1, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, anon_sym_QMARK, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4068), 2, + ACTIONS(4097), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4070), 2, + ACTIONS(4099), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4084), 2, + ACTIONS(4111), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4086), 2, + ACTIONS(4113), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4088), 2, + ACTIONS(4115), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4090), 2, + ACTIONS(4117), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [77424] = 20, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - ACTIONS(3626), 1, + [77885] = 20, + ACTIONS(2619), 1, + anon_sym_RBRACK, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3789), 1, + anon_sym_LPAREN2, + ACTIONS(4101), 1, anon_sym_SLASH, - ACTIONS(3930), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(4103), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(4105), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(4107), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(4109), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, anon_sym_QMARK, - ACTIONS(4230), 1, - anon_sym_COMMA, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(4097), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(4099), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(4111), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(4113), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(4115), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [77494] = 20, - ACTIONS(2604), 1, + ACTIONS(4117), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [77955] = 20, + ACTIONS(2611), 1, anon_sym_RBRACK, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3762), 1, + ACTIONS(3789), 1, anon_sym_LPAREN2, - ACTIONS(4072), 1, + ACTIONS(4101), 1, anon_sym_SLASH, - ACTIONS(4074), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4076), 1, + ACTIONS(4103), 1, anon_sym_AMP_AMP, - ACTIONS(4078), 1, + ACTIONS(4105), 1, anon_sym_PIPE, - ACTIONS(4080), 1, + ACTIONS(4107), 1, anon_sym_CARET, - ACTIONS(4082), 1, + ACTIONS(4109), 1, anon_sym_AMP, - ACTIONS(4094), 1, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, anon_sym_QMARK, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4068), 2, + ACTIONS(4097), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4070), 2, + ACTIONS(4099), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4084), 2, + ACTIONS(4111), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4086), 2, + ACTIONS(4113), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4088), 2, + ACTIONS(4115), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4090), 2, + ACTIONS(4117), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [77564] = 20, - ACTIONS(2598), 1, - anon_sym_RBRACK, - ACTIONS(3626), 1, - anon_sym_LBRACK, - ACTIONS(3762), 1, + [78025] = 20, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(4072), 1, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(4074), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(4076), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(4078), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(4080), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(4082), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(4094), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - STATE(1245), 1, + ACTIONS(4273), 1, + anon_sym_RPAREN, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4068), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4070), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4084), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4086), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4088), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4090), 2, + ACTIONS(3981), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [77634] = 20, - ACTIONS(3626), 1, + [78095] = 20, + ACTIONS(2555), 1, + anon_sym_RBRACK, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3762), 1, + ACTIONS(3789), 1, anon_sym_LPAREN2, - ACTIONS(4072), 1, + ACTIONS(4101), 1, anon_sym_SLASH, - ACTIONS(4074), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4076), 1, + ACTIONS(4103), 1, anon_sym_AMP_AMP, - ACTIONS(4078), 1, + ACTIONS(4105), 1, anon_sym_PIPE, - ACTIONS(4080), 1, + ACTIONS(4107), 1, anon_sym_CARET, - ACTIONS(4082), 1, + ACTIONS(4109), 1, anon_sym_AMP, - ACTIONS(4094), 1, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, anon_sym_QMARK, - ACTIONS(4232), 1, - anon_sym_RBRACK, - STATE(1245), 1, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4068), 2, + ACTIONS(4097), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4070), 2, + ACTIONS(4099), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4084), 2, + ACTIONS(4111), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4086), 2, + ACTIONS(4113), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4088), 2, + ACTIONS(4115), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4090), 2, + ACTIONS(4117), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [77704] = 19, - ACTIONS(3622), 1, + [78165] = 20, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(3626), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3963), 1, anon_sym_SLASH, - ACTIONS(3930), 1, + ACTIONS(3965), 1, anon_sym_PIPE_PIPE, - ACTIONS(3932), 1, + ACTIONS(3967), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3969), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3971), 1, anon_sym_CARET, - ACTIONS(3938), 1, + ACTIONS(3973), 1, anon_sym_AMP, - ACTIONS(3946), 1, + ACTIONS(3983), 1, anon_sym_QMARK, - STATE(1245), 1, + ACTIONS(4275), 1, + anon_sym_RPAREN, + STATE(1227), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3628), 2, + ACTIONS(3659), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3630), 2, + ACTIONS(3661), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 2, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3924), 2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3928), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3940), 2, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3942), 2, + ACTIONS(3977), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3944), 2, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [77771] = 8, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3311), 1, - anon_sym_const, - STATE(2004), 1, - sym_attribute_specifier, - ACTIONS(4054), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(4056), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(4058), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3313), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_COLON, - [77816] = 8, + ACTIONS(3981), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [78235] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3319), 1, + ACTIONS(3207), 1, anon_sym_const, - STATE(2007), 1, + ACTIONS(4277), 1, + anon_sym___aligned, + STATE(1974), 1, sym_attribute_specifier, - ACTIONS(4054), 2, + ACTIONS(4017), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(4056), 2, + ACTIONS(4019), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(4058), 4, + ACTIONS(4021), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3321), 16, + ACTIONS(3209), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -149543,14 +151045,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [77861] = 4, + [78283] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3281), 1, + ACTIONS(3326), 1, anon_sym_const, - ACTIONS(3283), 25, + ACTIONS(3328), 25, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -149576,33 +151078,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, anon_sym_COLON, anon_sym___aligned, - [77898] = 8, - ACTIONS(3), 1, + [78320] = 13, + ACTIONS(2307), 1, + anon_sym_LPAREN2, + ACTIONS(2309), 1, + anon_sym_STAR, + ACTIONS(3689), 1, + anon_sym_LBRACK, + ACTIONS(3875), 1, + anon_sym_const, + STATE(2017), 1, + sym_alignas_qualifier, + STATE(2370), 1, + sym__abstract_declarator, + STATE(2397), 1, + sym_parameter_list, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(3266), 1, - anon_sym_const, - STATE(2011), 1, - sym_attribute_specifier, - ACTIONS(4054), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(4056), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(4058), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3268), 16, + ACTIONS(3877), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1867), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3683), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + anon_sym_COLON, + STATE(2396), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(3867), 8, anon_sym___extension__, - anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -149610,28 +151120,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_COLON, - [77943] = 4, + [78375] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2966), 5, + ACTIONS(3295), 1, + anon_sym_const, + ACTIONS(3297), 25, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(2964), 21, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -149641,107 +151151,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [77980] = 15, + anon_sym_COLON, + anon_sym___aligned, + [78412] = 15, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3790), 1, + ACTIONS(3827), 1, sym_identifier, - ACTIONS(3792), 1, + ACTIONS(3829), 1, anon_sym_LPAREN2, - ACTIONS(3794), 1, + ACTIONS(3831), 1, anon_sym_STAR, - ACTIONS(3798), 1, + ACTIONS(3835), 1, sym_primitive_type, - STATE(1932), 1, + STATE(1911), 1, sym_ms_call_modifier, - STATE(2032), 1, + STATE(2052), 1, sym_macro_modifier, - STATE(2280), 1, + STATE(2309), 1, sym__type_declarator, - STATE(2971), 1, + STATE(3100), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - ACTIONS(3796), 4, + ACTIONS(3833), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2451), 5, + STATE(2450), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(2113), 6, + ACTIONS(2136), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [78039] = 4, - ACTIONS(3810), 1, - anon_sym_SEMI, + [78471] = 19, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3963), 1, + anon_sym_SLASH, + ACTIONS(3965), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3967), 1, + anon_sym_AMP_AMP, + ACTIONS(3969), 1, + anon_sym_PIPE, + ACTIONS(3971), 1, + anon_sym_CARET, + ACTIONS(3973), 1, + anon_sym_AMP, + ACTIONS(3983), 1, + anon_sym_QMARK, + STATE(1227), 1, + sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(1962), 7, + ACTIONS(3659), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3661), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3959), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1956), 18, - anon_sym_LPAREN2, + ACTIONS(3961), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3975), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3977), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3981), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [78076] = 4, + [78538] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2962), 5, + ACTIONS(3405), 1, + anon_sym_const, + STATE(2030), 1, + sym_attribute_specifier, + ACTIONS(4131), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4133), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(4135), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3407), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [78583] = 13, + ACTIONS(2307), 1, + anon_sym_LPAREN2, + ACTIONS(2309), 1, + anon_sym_STAR, + ACTIONS(3689), 1, anon_sym_LBRACK, - ACTIONS(2960), 21, + ACTIONS(3875), 1, + anon_sym_const, + STATE(2017), 1, + sym_alignas_qualifier, + STATE(2325), 1, + sym__abstract_declarator, + STATE(2397), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3877), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1867), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3879), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(2396), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(3867), 8, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [78638] = 8, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3322), 1, anon_sym_const, + STATE(1989), 1, + sym_attribute_specifier, + ACTIONS(4131), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4133), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(4135), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3324), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym___extension__, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -149751,38 +151360,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [78113] = 11, + anon_sym_COLON, + [78683] = 11, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2929), 1, + ACTIONS(2990), 1, anon_sym_const, - ACTIONS(4172), 1, + ACTIONS(4199), 1, anon_sym_LBRACE, - ACTIONS(4234), 1, + ACTIONS(4279), 1, anon_sym_COLON, - STATE(1680), 1, + STATE(1696), 1, sym_enumerator_list, - STATE(1967), 1, + STATE(1987), 1, sym_attribute_specifier, - ACTIONS(4054), 2, + ACTIONS(4131), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(4056), 2, + ACTIONS(4133), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(4058), 4, + ACTIONS(4135), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2931), 13, + ACTIONS(2992), 13, anon_sym_LPAREN2, anon_sym_STAR, anon_sym___extension__, @@ -149796,27 +151401,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - [78164] = 8, + [78734] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3355), 1, + ACTIONS(3376), 1, anon_sym_const, - STATE(2012), 1, + STATE(2027), 1, sym_attribute_specifier, - ACTIONS(4054), 2, + ACTIONS(4131), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(4056), 2, + ACTIONS(4133), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(4058), 4, + ACTIONS(4135), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3357), 16, + ACTIONS(3378), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -149833,40 +151438,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [78209] = 13, - ACTIONS(2278), 1, + [78779] = 13, + ACTIONS(2307), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2309), 1, anon_sym_STAR, - ACTIONS(3658), 1, + ACTIONS(3689), 1, anon_sym_LBRACK, - ACTIONS(3848), 1, + ACTIONS(3875), 1, anon_sym_const, - STATE(1990), 1, + STATE(2017), 1, sym_alignas_qualifier, - STATE(2339), 1, + STATE(2382), 1, sym__abstract_declarator, - STATE(2375), 1, + STATE(2397), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3850), 2, + ACTIONS(3877), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1865), 2, + STATE(1700), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3852), 3, + ACTIONS(4282), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(2380), 4, + STATE(2396), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3840), 8, + ACTIONS(3867), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -149875,27 +151480,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [78264] = 8, + [78834] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3291), 1, + ACTIONS(1573), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(1571), 21, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_const, - STATE(1983), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [78871] = 8, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3380), 1, + anon_sym_const, + STATE(1993), 1, sym_attribute_specifier, - ACTIONS(4054), 2, + ACTIONS(4131), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(4056), 2, + ACTIONS(4133), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(4058), 4, + ACTIONS(4135), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3293), 16, + ACTIONS(3382), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -149912,40 +151550,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [78309] = 13, - ACTIONS(2278), 1, + [78916] = 13, + ACTIONS(2307), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2309), 1, anon_sym_STAR, - ACTIONS(3658), 1, + ACTIONS(3689), 1, anon_sym_LBRACK, - ACTIONS(3848), 1, + ACTIONS(3875), 1, anon_sym_const, - STATE(1990), 1, + STATE(2017), 1, sym_alignas_qualifier, - STATE(2325), 1, + STATE(2351), 1, sym__abstract_declarator, - STATE(2375), 1, + STATE(2397), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3850), 2, + ACTIONS(3877), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1865), 2, + STATE(1867), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(4237), 3, + ACTIONS(4284), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(2380), 4, + STATE(2396), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3840), 8, + ACTIONS(3867), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -149954,28 +151592,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [78364] = 4, + [78971] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3315), 1, - anon_sym_const, - ACTIONS(3317), 25, + ACTIONS(2972), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, anon_sym_LBRACK, + ACTIONS(2970), 21, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -149985,42 +151620,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - anon_sym_COLON, - anon_sym___aligned, - [78401] = 13, - ACTIONS(2278), 1, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [79008] = 15, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3827), 1, + sym_identifier, + ACTIONS(3829), 1, + anon_sym_LPAREN2, + ACTIONS(3831), 1, + anon_sym_STAR, + ACTIONS(3835), 1, + sym_primitive_type, + STATE(1939), 1, + sym_ms_call_modifier, + STATE(2041), 1, + sym_macro_modifier, + STATE(2305), 1, + sym__type_declarator, + STATE(3100), 1, + sym_ms_based_modifier, + ACTIONS(2134), 2, + anon_sym___init, + anon_sym___exit, + ACTIONS(3833), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2136), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [79067] = 13, + ACTIONS(2307), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2309), 1, anon_sym_STAR, - ACTIONS(3658), 1, + ACTIONS(3689), 1, anon_sym_LBRACK, - ACTIONS(3848), 1, + ACTIONS(3875), 1, anon_sym_const, - STATE(1990), 1, + STATE(2017), 1, sym_alignas_qualifier, - STATE(2314), 1, + STATE(2335), 1, sym__abstract_declarator, - STATE(2375), 1, + STATE(2397), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3850), 2, + ACTIONS(3877), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1679), 2, + STATE(1867), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(4239), 3, + ACTIONS(4286), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(2380), 4, + STATE(2396), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3840), 8, + ACTIONS(3867), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -150029,41 +151711,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [78456] = 13, - ACTIONS(2278), 1, + [79122] = 8, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3363), 1, + anon_sym_const, + STATE(2003), 1, + sym_attribute_specifier, + ACTIONS(4131), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4133), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(4135), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3365), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2280), 1, anon_sym_STAR, - ACTIONS(3658), 1, + anon_sym___extension__, anon_sym_LBRACK, - ACTIONS(3848), 1, - anon_sym_const, - STATE(1990), 1, - sym_alignas_qualifier, - STATE(2302), 1, - sym__abstract_declarator, - STATE(2375), 1, - sym_parameter_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3850), 2, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - STATE(1865), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(4241), 3, + anon_sym_COLON, + [79167] = 8, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3359), 1, + anon_sym_const, + STATE(2014), 1, + sym_attribute_specifier, + ACTIONS(4131), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4133), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(4135), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3361), 16, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - STATE(2380), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3840), 8, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym___extension__, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -150071,27 +151782,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [78511] = 8, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [79212] = 4, + ACTIONS(3837), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(1991), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1985), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [79249] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3342), 1, + ACTIONS(3332), 1, anon_sym_const, - STATE(2005), 1, + STATE(1991), 1, sym_attribute_specifier, - ACTIONS(4054), 2, + ACTIONS(4131), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(4056), 2, + ACTIONS(4133), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(4058), 4, + ACTIONS(4135), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3344), 16, + ACTIONS(3334), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -150108,41 +151855,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [78556] = 13, - ACTIONS(2278), 1, + [79294] = 13, + ACTIONS(2307), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2309), 1, anon_sym_STAR, - ACTIONS(3658), 1, + ACTIONS(3689), 1, anon_sym_LBRACK, - ACTIONS(3848), 1, + ACTIONS(3875), 1, anon_sym_const, - STATE(1990), 1, + STATE(2017), 1, sym_alignas_qualifier, - STATE(2355), 1, + STATE(2353), 1, sym__abstract_declarator, - STATE(2375), 1, + STATE(2397), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3850), 2, + ACTIONS(3877), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1676), 2, + STATE(1697), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(4288), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(2380), 4, + STATE(2396), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3840), 8, + ACTIONS(3867), 8, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [79349] = 18, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2090), 1, + anon_sym_LPAREN2, + ACTIONS(2092), 1, + anon_sym_STAR, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(4290), 1, + sym_identifier, + STATE(650), 1, + sym__old_style_function_declarator, + STATE(2046), 1, + sym_ms_call_modifier, + STATE(2114), 1, + sym_macro_modifier, + STATE(2217), 1, + sym__declarator, + STATE(2220), 1, + sym_function_declarator, + STATE(2327), 1, + sym__declaration_declarator, + STATE(2486), 1, + sym__function_declaration_declarator, + STATE(2518), 1, + sym_init_declarator, + STATE(3453), 1, + sym_ms_based_modifier, + ACTIONS(2134), 2, + anon_sym___init, + anon_sym___exit, + STATE(2245), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(2136), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [79413] = 13, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2090), 1, + anon_sym_LPAREN2, + ACTIONS(2092), 1, + anon_sym_STAR, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3681), 1, + sym_identifier, + STATE(1695), 1, + sym_alignas_qualifier, + STATE(2093), 1, + sym__declarator, + STATE(3453), 1, + sym_ms_based_modifier, + ACTIONS(2034), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1573), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(2220), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(2030), 9, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -150150,41 +151984,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [78611] = 13, - ACTIONS(2278), 1, + [79467] = 13, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3887), 1, + sym_identifier, + ACTIONS(3889), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(3891), 1, anon_sym_STAR, - ACTIONS(3658), 1, - anon_sym_LBRACK, - ACTIONS(3848), 1, - anon_sym_const, - STATE(1990), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(2318), 1, - sym__abstract_declarator, - STATE(2375), 1, - sym_parameter_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3850), 2, + STATE(2002), 1, + sym__field_declarator, + STATE(3316), 1, + sym_ms_based_modifier, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1865), 2, + STATE(1573), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3652), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(2380), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3840), 8, + STATE(2081), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(2030), 9, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -150192,77 +152025,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [78666] = 15, + [79521] = 13, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3790), 1, + ACTIONS(3887), 1, sym_identifier, - ACTIONS(3792), 1, + ACTIONS(3889), 1, anon_sym_LPAREN2, - ACTIONS(3794), 1, + ACTIONS(3891), 1, anon_sym_STAR, - ACTIONS(3798), 1, - sym_primitive_type, - STATE(1905), 1, - sym_ms_call_modifier, - STATE(2028), 1, - sym_macro_modifier, - STATE(2278), 1, - sym__type_declarator, - STATE(2971), 1, + STATE(1695), 1, + sym_alignas_qualifier, + STATE(2001), 1, + sym__field_declarator, + STATE(3316), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, - anon_sym___init, - anon_sym___exit, - ACTIONS(3796), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2451), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(2113), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [78725] = 8, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3332), 1, - anon_sym_const, - STATE(2013), 1, - sym_attribute_specifier, - ACTIONS(4054), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(4056), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(4058), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3334), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(2034), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1573), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(2081), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(2030), 9, anon_sym___extension__, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -150270,41 +152066,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_COLON, - [78770] = 13, + [79575] = 13, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3876), 1, + ACTIONS(3887), 1, sym_identifier, - ACTIONS(3878), 1, + ACTIONS(3889), 1, anon_sym_LPAREN2, - ACTIONS(3880), 1, + ACTIONS(3891), 1, anon_sym_STAR, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(1996), 1, + STATE(2032), 1, sym__field_declarator, - STATE(3201), 1, + STATE(3316), 1, sym_ms_based_modifier, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1549), 2, + STATE(1573), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(2054), 5, + STATE(2081), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -150314,86 +152107,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [78824] = 18, + [79629] = 18, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(651), 1, + STATE(641), 1, sym__old_style_function_declarator, - STATE(2016), 1, + STATE(2037), 1, sym_ms_call_modifier, - STATE(2105), 1, + STATE(2099), 1, sym_macro_modifier, - STATE(2201), 1, - sym__declarator, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2299), 1, + STATE(2231), 1, + sym__declarator, + STATE(2364), 1, sym__declaration_declarator, - STATE(2467), 1, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(2654), 1, + STATE(2753), 1, sym_init_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(2113), 6, + ACTIONS(2136), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [78888] = 13, - ACTIONS(3), 1, + [79693] = 8, + ACTIONS(3991), 1, + anon_sym_const, + ACTIONS(4292), 1, + sym_ms_restrict_modifier, + STATE(1759), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3882), 1, - sym_identifier, - ACTIONS(3884), 1, + ACTIONS(4295), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(4298), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1712), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3993), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3886), 1, anon_sym_STAR, - STATE(1671), 1, - sym_alignas_qualifier, - STATE(2276), 1, - sym__field_declarator, - STATE(3061), 1, - sym_ms_based_modifier, - ACTIONS(1999), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1549), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(2422), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(1995), 9, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -150401,38 +152186,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [78942] = 13, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [79737] = 13, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3876), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(3878), 1, + ACTIONS(3883), 1, anon_sym_LPAREN2, - ACTIONS(3880), 1, + ACTIONS(3885), 1, anon_sym_STAR, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(2008), 1, + STATE(2322), 1, sym__field_declarator, - STATE(3201), 1, + STATE(3027), 1, sym_ms_based_modifier, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1549), 2, + STATE(1573), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(2054), 5, + STATE(2437), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -150442,14 +152230,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [78996] = 4, + [79791] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3496), 1, + ACTIONS(3531), 1, anon_sym_const, - ACTIONS(3498), 24, + ACTIONS(3533), 24, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -150474,31 +152262,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [79032] = 8, - ACTIONS(3960), 1, - anon_sym_const, - ACTIONS(4247), 1, - sym_ms_restrict_modifier, - STATE(1751), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(5), 2, + [79827] = 4, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4250), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(4253), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1690), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3962), 16, + ACTIONS(3593), 1, + anon_sym_const, + ACTIONS(3595), 24, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, @@ -150510,84 +152294,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [79076] = 18, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2047), 1, - anon_sym_LPAREN2, - ACTIONS(2049), 1, - anon_sym_STAR, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(4245), 1, - sym_identifier, - STATE(669), 1, - sym__old_style_function_declarator, - STATE(2025), 1, - sym_ms_call_modifier, - STATE(2080), 1, - sym_macro_modifier, - STATE(2208), 1, - sym__declarator, - STATE(2209), 1, - sym_function_declarator, - STATE(2333), 1, - sym__declaration_declarator, - STATE(2467), 1, - sym__function_declaration_declarator, - STATE(2522), 1, - sym_init_declarator, - STATE(3337), 1, - sym_ms_based_modifier, - ACTIONS(2111), 2, - anon_sym___init, - anon_sym___exit, - STATE(2213), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(2113), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [79140] = 13, + [79863] = 13, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3650), 1, + ACTIONS(3681), 1, sym_identifier, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(2075), 1, + STATE(2130), 1, sym__declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1549), 2, + STATE(1573), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(2209), 5, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -150597,38 +152335,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [79194] = 13, + [79917] = 13, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3876), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(3878), 1, + ACTIONS(3883), 1, anon_sym_LPAREN2, - ACTIONS(3880), 1, + ACTIONS(3885), 1, anon_sym_STAR, - STATE(1671), 1, + STATE(1695), 1, sym_alignas_qualifier, - STATE(2009), 1, + STATE(2300), 1, sym__field_declarator, - STATE(3201), 1, + STATE(3027), 1, sym_ms_based_modifier, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1549), 2, + STATE(1573), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(2054), 5, + STATE(2437), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - ACTIONS(1995), 9, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -150638,60 +152376,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [79248] = 18, + [79971] = 13, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(3681), 1, sym_identifier, - STATE(621), 1, - sym__old_style_function_declarator, - STATE(2015), 1, - sym_ms_call_modifier, - STATE(2097), 1, - sym_macro_modifier, - STATE(2203), 1, + STATE(1695), 1, + sym_alignas_qualifier, + STATE(2132), 1, sym__declarator, - STATE(2209), 1, - sym_function_declarator, - STATE(2366), 1, - sym__declaration_declarator, - STATE(2467), 1, - sym__function_declaration_declarator, - STATE(2482), 1, - sym_init_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, - anon_sym___init, - anon_sym___exit, - STATE(2213), 4, + ACTIONS(2034), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1573), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, + sym_function_declarator, sym_array_declarator, - ACTIONS(2113), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [79312] = 4, + ACTIONS(2030), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [80025] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3281), 1, + ACTIONS(3326), 1, anon_sym_const, - ACTIONS(3283), 24, + ACTIONS(3328), 24, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -150716,14 +152449,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [79348] = 4, + [80061] = 6, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + STATE(1720), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4301), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2906), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2893), 14, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [80101] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3315), 1, + ACTIONS(3511), 1, anon_sym_const, - ACTIONS(3317), 24, + ACTIONS(3513), 24, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -150748,55 +152515,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [79384] = 13, + [80137] = 18, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2090), 1, + anon_sym_LPAREN2, + ACTIONS(2092), 1, + anon_sym_STAR, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3882), 1, + ACTIONS(4290), 1, sym_identifier, - ACTIONS(3884), 1, + STATE(677), 1, + sym__old_style_function_declarator, + STATE(2045), 1, + sym_ms_call_modifier, + STATE(2107), 1, + sym_macro_modifier, + STATE(2220), 1, + sym_function_declarator, + STATE(2229), 1, + sym__declarator, + STATE(2359), 1, + sym__declaration_declarator, + STATE(2486), 1, + sym__function_declaration_declarator, + STATE(2547), 1, + sym_init_declarator, + STATE(3453), 1, + sym_ms_based_modifier, + ACTIONS(2134), 2, + anon_sym___init, + anon_sym___exit, + STATE(2245), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(2136), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [80201] = 18, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(3886), 1, + ACTIONS(2092), 1, anon_sym_STAR, - STATE(1671), 1, - sym_alignas_qualifier, - STATE(2284), 1, - sym__field_declarator, - STATE(3061), 1, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(4290), 1, + sym_identifier, + STATE(672), 1, + sym__old_style_function_declarator, + STATE(2039), 1, + sym_ms_call_modifier, + STATE(2106), 1, + sym_macro_modifier, + STATE(2216), 1, + sym__declarator, + STATE(2220), 1, + sym_function_declarator, + STATE(2347), 1, + sym__declaration_declarator, + STATE(2486), 1, + sym__function_declaration_declarator, + STATE(2510), 1, + sym_init_declarator, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(1999), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1549), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(2422), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(1995), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [79438] = 4, + ACTIONS(2134), 2, + anon_sym___init, + anon_sym___exit, + STATE(2245), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(2136), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [80265] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3480), 1, + ACTIONS(3295), 1, anon_sym_const, - ACTIONS(3482), 24, + ACTIONS(3297), 24, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -150821,38 +152639,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [79474] = 13, + [80301] = 13, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, - anon_sym_LPAREN2, - ACTIONS(2049), 1, - anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3650), 1, + ACTIONS(3881), 1, sym_identifier, - STATE(1671), 1, + ACTIONS(3883), 1, + anon_sym_LPAREN2, + ACTIONS(3885), 1, + anon_sym_STAR, + STATE(1695), 1, sym_alignas_qualifier, - STATE(2110), 1, - sym__declarator, - STATE(3337), 1, + STATE(2294), 1, + sym__field_declarator, + STATE(3027), 1, sym_ms_based_modifier, - ACTIONS(1999), 2, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1549), 2, + STATE(1573), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(2209), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(1995), 9, + STATE(2437), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -150862,147 +152680,339 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [79528] = 18, + [80355] = 17, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2090), 1, + anon_sym_LPAREN2, + ACTIONS(2092), 1, + anon_sym_STAR, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(4290), 1, + sym_identifier, + STATE(2043), 1, + sym_ms_call_modifier, + STATE(2110), 1, + sym_macro_modifier, + STATE(2220), 1, + sym_function_declarator, + STATE(2306), 1, + sym__declarator, + STATE(2331), 1, + sym__declaration_declarator, + STATE(2486), 1, + sym__function_declaration_declarator, + STATE(2640), 1, + sym_init_declarator, + STATE(3453), 1, + sym_ms_based_modifier, + ACTIONS(2134), 2, + anon_sym___init, + anon_sym___exit, + STATE(2245), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(2136), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [80416] = 17, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2090), 1, + anon_sym_LPAREN2, + ACTIONS(2092), 1, + anon_sym_STAR, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(4290), 1, + sym_identifier, + STATE(2038), 1, + sym_ms_call_modifier, + STATE(2100), 1, + sym_macro_modifier, + STATE(2220), 1, + sym_function_declarator, + STATE(2306), 1, + sym__declarator, + STATE(2347), 1, + sym__declaration_declarator, + STATE(2486), 1, + sym__function_declaration_declarator, + STATE(2510), 1, + sym_init_declarator, + STATE(3453), 1, + sym_ms_based_modifier, + ACTIONS(2134), 2, + anon_sym___init, + anon_sym___exit, + STATE(2245), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(2136), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [80477] = 17, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2090), 1, + anon_sym_LPAREN2, + ACTIONS(2092), 1, + anon_sym_STAR, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(4290), 1, + sym_identifier, + STATE(2045), 1, + sym_ms_call_modifier, + STATE(2107), 1, + sym_macro_modifier, + STATE(2220), 1, + sym_function_declarator, + STATE(2237), 1, + sym__declarator, + STATE(2359), 1, + sym__declaration_declarator, + STATE(2486), 1, + sym__function_declaration_declarator, + STATE(2547), 1, + sym_init_declarator, + STATE(3453), 1, + sym_ms_based_modifier, + ACTIONS(2134), 2, + anon_sym___init, + anon_sym___exit, + STATE(2245), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(2136), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [80538] = 17, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2090), 1, + anon_sym_LPAREN2, + ACTIONS(2092), 1, + anon_sym_STAR, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(4290), 1, + sym_identifier, + STATE(2036), 1, + sym_ms_call_modifier, + STATE(2135), 1, + sym_macro_modifier, + STATE(2220), 1, + sym_function_declarator, + STATE(2306), 1, + sym__declarator, + STATE(2336), 1, + sym__declaration_declarator, + STATE(2486), 1, + sym__function_declaration_declarator, + STATE(2632), 1, + sym_init_declarator, + STATE(3453), 1, + sym_ms_based_modifier, + ACTIONS(2134), 2, + anon_sym___init, + anon_sym___exit, + STATE(2245), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(2136), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [80599] = 17, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(625), 1, - sym__old_style_function_declarator, - STATE(2021), 1, + STATE(2053), 1, sym_ms_call_modifier, - STATE(2112), 1, + STATE(2131), 1, sym_macro_modifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2212), 1, + STATE(2306), 1, sym__declarator, - STATE(2362), 1, + STATE(2364), 1, sym__declaration_declarator, - STATE(2467), 1, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(2640), 1, + STATE(2753), 1, sym_init_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(2113), 6, + ACTIONS(2136), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [79592] = 4, + [80660] = 17, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3397), 1, - anon_sym_const, - ACTIONS(3399), 24, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2090), 1, anon_sym_LPAREN2, + ACTIONS(2092), 1, anon_sym_STAR, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_COLON, - [79628] = 13, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(4290), 1, + sym_identifier, + STATE(2046), 1, + sym_ms_call_modifier, + STATE(2114), 1, + sym_macro_modifier, + STATE(2220), 1, + sym_function_declarator, + STATE(2257), 1, + sym__declarator, + STATE(2327), 1, + sym__declaration_declarator, + STATE(2486), 1, + sym__function_declaration_declarator, + STATE(2518), 1, + sym_init_declarator, + STATE(3453), 1, + sym_ms_based_modifier, + ACTIONS(2134), 2, + anon_sym___init, + anon_sym___exit, + STATE(2245), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(2136), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [80721] = 17, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3650), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(1671), 1, - sym_alignas_qualifier, - STATE(2085), 1, + STATE(2050), 1, + sym_ms_call_modifier, + STATE(2111), 1, + sym_macro_modifier, + STATE(2220), 1, + sym_function_declarator, + STATE(2306), 1, sym__declarator, - STATE(3337), 1, + STATE(2406), 1, + sym__declaration_declarator, + STATE(2486), 1, + sym__function_declaration_declarator, + STATE(2950), 1, + sym_init_declarator, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(1999), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1549), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(2209), 5, + ACTIONS(2134), 2, + anon_sym___init, + anon_sym___exit, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - ACTIONS(1995), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [79682] = 6, + ACTIONS(2136), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [80782] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1703), 1, + ACTIONS(4304), 1, + sym_identifier, + ACTIONS(4308), 1, + sym_primitive_type, + STATE(1736), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(4256), 4, + ACTIONS(4306), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2857), 6, + ACTIONS(2898), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2855), 14, + ACTIONS(2900), 11, anon_sym___extension__, - anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -151013,160 +153023,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [79722] = 13, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3882), 1, - sym_identifier, - ACTIONS(3884), 1, - anon_sym_LPAREN2, - ACTIONS(3886), 1, - anon_sym_STAR, - STATE(1671), 1, - sym_alignas_qualifier, - STATE(2274), 1, - sym__field_declarator, - STATE(3061), 1, - sym_ms_based_modifier, - ACTIONS(1999), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1549), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(2422), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(1995), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [79776] = 17, + [80825] = 17, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2015), 1, + STATE(2049), 1, sym_ms_call_modifier, - STATE(2097), 1, + STATE(2122), 1, sym_macro_modifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2227), 1, + STATE(2306), 1, sym__declarator, - STATE(2366), 1, + STATE(2359), 1, sym__declaration_declarator, - STATE(2467), 1, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(2482), 1, + STATE(2547), 1, sym_init_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(2113), 6, + ACTIONS(2136), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [79837] = 17, + [80886] = 17, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2037), 1, + STATE(2056), 1, sym_ms_call_modifier, - STATE(2106), 1, + STATE(2126), 1, sym_macro_modifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2281), 1, + STATE(2306), 1, sym__declarator, - STATE(2333), 1, + STATE(2344), 1, sym__declaration_declarator, - STATE(2467), 1, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(2522), 1, + STATE(2747), 1, sym_init_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(2113), 6, + ACTIONS(2136), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [79898] = 7, + [80947] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1703), 1, + STATE(1720), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2855), 2, + ACTIONS(2893), 2, sym_primitive_type, sym_identifier, - ACTIONS(4256), 4, + ACTIONS(4301), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2876), 6, + ACTIONS(2887), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2873), 11, + ACTIONS(2884), 11, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -151178,206 +153145,308 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - [79939] = 17, + [80988] = 17, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2017), 1, + STATE(2051), 1, sym_ms_call_modifier, STATE(2098), 1, sym_macro_modifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2281), 1, + STATE(2306), 1, sym__declarator, - STATE(2366), 1, + STATE(2327), 1, sym__declaration_declarator, - STATE(2467), 1, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(2482), 1, + STATE(2518), 1, sym_init_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(2113), 6, + ACTIONS(2136), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [80000] = 17, + [81049] = 17, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2016), 1, + STATE(2037), 1, sym_ms_call_modifier, - STATE(2105), 1, + STATE(2099), 1, sym_macro_modifier, - STATE(2209), 1, - sym_function_declarator, STATE(2220), 1, + sym_function_declarator, + STATE(2256), 1, sym__declarator, - STATE(2299), 1, + STATE(2364), 1, sym__declaration_declarator, - STATE(2467), 1, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(2654), 1, + STATE(2753), 1, sym_init_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(2113), 6, + ACTIONS(2136), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [80061] = 17, + [81110] = 17, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2033), 1, + STATE(2039), 1, sym_ms_call_modifier, - STATE(2107), 1, + STATE(2106), 1, sym_macro_modifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2281), 1, + STATE(2248), 1, sym__declarator, - STATE(2299), 1, + STATE(2347), 1, sym__declaration_declarator, - STATE(2467), 1, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(2654), 1, + STATE(2510), 1, sym_init_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(2113), 6, + ACTIONS(2136), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [80122] = 17, + [81171] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + STATE(1695), 1, + sym_alignas_qualifier, + ACTIONS(2034), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4312), 2, anon_sym_LPAREN2, - ACTIONS(2049), 1, anon_sym_STAR, - ACTIONS(2051), 1, + STATE(1573), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4310), 7, anon_sym___based, - ACTIONS(4245), 1, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, sym_identifier, - STATE(2034), 1, - sym_ms_call_modifier, - STATE(2093), 1, - sym_macro_modifier, - STATE(2209), 1, - sym_function_declarator, - STATE(2281), 1, - sym__declarator, - STATE(2337), 1, - sym__declaration_declarator, - STATE(2467), 1, - sym__function_declaration_declarator, - STATE(2716), 1, - sym_init_declarator, - STATE(3337), 1, - sym_ms_based_modifier, - ACTIONS(2111), 2, - anon_sym___init, - anon_sym___exit, - STATE(2213), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(2113), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [80183] = 8, + ACTIONS(2030), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [81213] = 14, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4259), 1, + ACTIONS(4314), 1, sym_identifier, - ACTIONS(4263), 1, - sym_primitive_type, - STATE(1707), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4261), 4, + ACTIONS(4326), 1, + anon_sym_LBRACK, + STATE(1751), 1, + sym_gnu_asm_expression, + STATE(1969), 1, + sym_attribute_specifier, + STATE(2069), 1, + aux_sym_type_definition_repeat1, + ACTIONS(4316), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4320), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4322), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(4328), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(1758), 2, + sym_preproc_call_expression, + aux_sym_function_declarator_repeat1, + ACTIONS(4318), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(4324), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [81267] = 8, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + STATE(1695), 1, + sym_alignas_qualifier, + ACTIONS(2034), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4332), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(1573), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4330), 7, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2865), 6, + sym_primitive_type, + sym_identifier, + ACTIONS(2030), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [81309] = 11, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4314), 1, + sym_identifier, + ACTIONS(4326), 1, + anon_sym_LBRACK, + STATE(1752), 1, + sym_gnu_asm_expression, + ACTIONS(4320), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4322), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(4328), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(1758), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(4324), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(4318), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [81357] = 8, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + STATE(1695), 1, + sym_alignas_qualifier, + ACTIONS(2034), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4336), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2867), 11, + STATE(1742), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4334), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(2030), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -151387,299 +153456,446 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + [81399] = 8, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + STATE(1695), 1, + sym_alignas_qualifier, + ACTIONS(2034), 2, anon_sym_alignas, anon_sym__Alignas, - [80226] = 17, + ACTIONS(4340), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(1740), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4338), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(2030), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [81441] = 14, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(3681), 1, sym_identifier, - STATE(2021), 1, + STATE(643), 1, + sym__old_style_function_declarator, + STATE(2090), 1, sym_ms_call_modifier, - STATE(2112), 1, + STATE(2198), 1, sym_macro_modifier, - STATE(2209), 1, - sym_function_declarator, - STATE(2216), 1, + STATE(2234), 1, sym__declarator, - STATE(2362), 1, - sym__declaration_declarator, - STATE(2467), 1, - sym__function_declaration_declarator, - STATE(2640), 1, - sym_init_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - STATE(2213), 4, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, + sym_function_declarator, sym_array_declarator, - ACTIONS(2113), 6, + ACTIONS(2136), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [80287] = 17, + [81494] = 5, + ACTIONS(2922), 1, + anon_sym_const, + STATE(1761), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4342), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2924), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [81529] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3086), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACE, + ACTIONS(3084), 19, + anon_sym___extension__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [81562] = 15, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3887), 1, + sym_identifier, + ACTIONS(3889), 1, + anon_sym_LPAREN2, + ACTIONS(3891), 1, + anon_sym_STAR, + ACTIONS(4344), 1, + anon_sym_SEMI, + STATE(1919), 1, + sym__field_declarator, + STATE(2214), 1, + sym__field_declaration_declarator, + STATE(3179), 1, + sym_attribute_specifier, + STATE(3316), 1, + sym_ms_based_modifier, + ACTIONS(4346), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4348), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(4350), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + STATE(2081), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [81617] = 5, + ACTIONS(2932), 1, + anon_sym_const, + STATE(1761), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4342), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2934), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [81652] = 13, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4314), 1, + sym_identifier, + ACTIONS(4356), 1, + anon_sym_LBRACK, + STATE(1969), 1, + sym_attribute_specifier, + STATE(2086), 1, + aux_sym_type_definition_repeat1, + ACTIONS(4320), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4322), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(4352), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4358), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(1769), 2, + sym_preproc_call_expression, + aux_sym_function_declarator_repeat1, + ACTIONS(4324), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(4354), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [81703] = 9, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4314), 1, + sym_identifier, + ACTIONS(4320), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4322), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(4356), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + STATE(1769), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(4324), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(4354), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [81746] = 14, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(3681), 1, sym_identifier, - STATE(2027), 1, + STATE(651), 1, + sym__old_style_function_declarator, + STATE(2092), 1, sym_ms_call_modifier, - STATE(2088), 1, + STATE(2177), 1, sym_macro_modifier, - STATE(2209), 1, - sym_function_declarator, - STATE(2281), 1, + STATE(2249), 1, sym__declarator, - STATE(2354), 1, - sym__declaration_declarator, - STATE(2467), 1, - sym__function_declaration_declarator, - STATE(2614), 1, - sym_init_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - STATE(2213), 4, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, + sym_function_declarator, sym_array_declarator, - ACTIONS(2113), 6, + ACTIONS(2136), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [80348] = 17, - ACTIONS(3), 1, + [81799] = 5, + ACTIONS(2936), 1, + anon_sym_const, + STATE(1761), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(4342), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2938), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2049), 1, anon_sym_STAR, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(4245), 1, - sym_identifier, - STATE(2019), 1, - sym_ms_call_modifier, - STATE(2100), 1, - sym_macro_modifier, - STATE(2209), 1, - sym_function_declarator, - STATE(2281), 1, - sym__declarator, - STATE(2362), 1, - sym__declaration_declarator, - STATE(2467), 1, - sym__function_declaration_declarator, - STATE(2640), 1, - sym_init_declarator, - STATE(3337), 1, - sym_ms_based_modifier, - ACTIONS(2111), 2, - anon_sym___init, - anon_sym___exit, - STATE(2213), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(2113), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [80409] = 17, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [81834] = 14, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(3681), 1, sym_identifier, - STATE(2014), 1, + STATE(682), 1, + sym__old_style_function_declarator, + STATE(2073), 1, sym_ms_call_modifier, - STATE(2104), 1, + STATE(2194), 1, sym_macro_modifier, - STATE(2209), 1, - sym_function_declarator, - STATE(2281), 1, + STATE(2244), 1, sym__declarator, - STATE(2390), 1, - sym__declaration_declarator, - STATE(2467), 1, - sym__function_declaration_declarator, - STATE(2870), 1, - sym_init_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - STATE(2213), 4, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, + sym_function_declarator, sym_array_declarator, - ACTIONS(2113), 6, + ACTIONS(2136), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [80470] = 17, + [81887] = 15, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, - anon_sym_LPAREN2, - ACTIONS(2049), 1, - anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(3887), 1, sym_identifier, - STATE(2031), 1, - sym_ms_call_modifier, - STATE(2084), 1, - sym_macro_modifier, - STATE(2209), 1, - sym_function_declarator, - STATE(2281), 1, - sym__declarator, - STATE(2310), 1, - sym__declaration_declarator, - STATE(2467), 1, - sym__function_declaration_declarator, - STATE(2689), 1, - sym_init_declarator, - STATE(3337), 1, - sym_ms_based_modifier, - ACTIONS(2111), 2, - anon_sym___init, - anon_sym___exit, - STATE(2213), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(2113), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [80531] = 17, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2047), 1, + ACTIONS(3889), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(3891), 1, anon_sym_STAR, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(4245), 1, - sym_identifier, - STATE(2025), 1, - sym_ms_call_modifier, - STATE(2080), 1, - sym_macro_modifier, - STATE(2209), 1, - sym_function_declarator, - STATE(2217), 1, - sym__declarator, - STATE(2333), 1, - sym__declaration_declarator, - STATE(2467), 1, - sym__function_declaration_declarator, - STATE(2522), 1, - sym_init_declarator, - STATE(3337), 1, + ACTIONS(4360), 1, + anon_sym_SEMI, + STATE(1919), 1, + sym__field_declarator, + STATE(2230), 1, + sym__field_declaration_declarator, + STATE(3029), 1, + sym_attribute_specifier, + STATE(3316), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, - anon_sym___init, - anon_sym___exit, - STATE(2213), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(2113), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [80592] = 8, - ACTIONS(3), 1, + ACTIONS(4346), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4348), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(4350), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + STATE(2081), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [81942] = 3, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - STATE(1671), 1, - sym_alignas_qualifier, - ACTIONS(1999), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(4267), 2, + ACTIONS(4195), 2, + sym_ms_restrict_modifier, + anon_sym_const, + ACTIONS(4197), 20, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1549), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(4265), 7, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(1995), 9, anon_sym___extension__, - anon_sym_const, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -151687,76 +153903,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [80634] = 14, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [81973] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2428), 1, + ACTIONS(4314), 1, sym_identifier, - ACTIONS(2442), 1, - anon_sym_LBRACK, - STATE(1749), 1, - sym_gnu_asm_expression, - STATE(1956), 1, - sym_attribute_specifier, - STATE(2044), 1, - aux_sym_type_definition_repeat1, - ACTIONS(2436), 2, + ACTIONS(4320), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(2438), 2, + ACTIONS(4322), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2444), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(4269), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1742), 2, - sym_preproc_call_expression, - aux_sym_function_declarator_repeat1, - ACTIONS(2432), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(2440), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [80688] = 11, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2428), 1, - sym_identifier, - ACTIONS(2442), 1, + ACTIONS(4356), 3, anon_sym_LBRACK, - STATE(1747), 1, - sym_gnu_asm_expression, - ACTIONS(2436), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(2438), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2444), 2, anon_sym_asm, anon_sym___asm__, - STATE(1742), 3, + STATE(1768), 3, sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(2440), 4, + ACTIONS(4324), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2432), 7, + ACTIONS(4354), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -151764,33 +153940,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [80736] = 8, - ACTIONS(3), 1, + [82016] = 3, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - STATE(1671), 1, - sym_alignas_qualifier, - ACTIONS(1999), 2, + ACTIONS(4185), 2, + sym_ms_restrict_modifier, + anon_sym_const, + ACTIONS(4187), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym___extension__, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(4273), 2, + anon_sym_COLON, + [82047] = 6, + ACTIONS(1983), 1, + anon_sym_const, + ACTIONS(4362), 1, anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1719), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(4271), 7, - anon_sym___based, + STATE(1772), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(2481), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(1995), 9, + ACTIONS(1996), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -151798,33 +153996,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [80778] = 8, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - STATE(1671), 1, - sym_alignas_qualifier, - ACTIONS(1999), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(4277), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1549), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(4275), 7, - anon_sym___based, + anon_sym_COLON, + [82084] = 5, + ACTIONS(2893), 1, + anon_sym_const, + STATE(1761), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4365), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(1995), 9, + ACTIONS(2906), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -151832,32 +154026,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [80820] = 8, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [82119] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1671), 1, - sym_alignas_qualifier, - ACTIONS(1999), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(4281), 2, + ACTIONS(3133), 3, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1723), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(4279), 7, + anon_sym_LBRACE, + ACTIONS(3131), 19, + anon_sym___extension__, + anon_sym___declspec, anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(1995), 9, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -151866,23 +154054,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [80862] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [82152] = 5, + ACTIONS(2910), 1, + anon_sym_const, + STATE(1754), 1, + aux_sym_sized_type_specifier_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4136), 2, - sym_ms_restrict_modifier, - anon_sym_const, - ACTIONS(4138), 20, + ACTIONS(4368), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2912), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym___extension__, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, @@ -151894,20 +154088,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [80893] = 5, - ACTIONS(2917), 1, + [82187] = 15, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3887), 1, + sym_identifier, + ACTIONS(3889), 1, + anon_sym_LPAREN2, + ACTIONS(3891), 1, + anon_sym_STAR, + ACTIONS(4370), 1, + anon_sym_SEMI, + STATE(1919), 1, + sym__field_declarator, + STATE(2225), 1, + sym__field_declaration_declarator, + STATE(3316), 1, + sym_ms_based_modifier, + STATE(3326), 1, + sym_attribute_specifier, + ACTIONS(4346), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4348), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(4350), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + STATE(2081), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [82242] = 14, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2090), 1, + anon_sym_LPAREN2, + ACTIONS(2092), 1, + anon_sym_STAR, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3681), 1, + sym_identifier, + STATE(684), 1, + sym__old_style_function_declarator, + STATE(2091), 1, + sym_ms_call_modifier, + STATE(2162), 1, + sym_macro_modifier, + STATE(2246), 1, + sym__declarator, + STATE(3453), 1, + sym_ms_based_modifier, + ACTIONS(2134), 2, + anon_sym___init, + anon_sym___exit, + STATE(2220), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(2136), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [82295] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3082), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACE, + ACTIONS(3080), 19, + anon_sym___extension__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [82328] = 5, + ACTIONS(2940), 1, anon_sym_const, - STATE(1732), 1, + STATE(1750), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4283), 4, + ACTIONS(4372), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2919), 16, + ACTIONS(2942), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -151924,33 +154226,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [80928] = 9, + [82363] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2428), 1, + ACTIONS(4374), 1, sym_identifier, - ACTIONS(2436), 2, + ACTIONS(4379), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(2438), 2, + ACTIONS(4382), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(4287), 3, + ACTIONS(4388), 3, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, - STATE(1730), 3, + STATE(1768), 3, sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(2440), 4, + ACTIONS(4385), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(4285), 7, + ACTIONS(4377), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -151958,56 +154260,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [80971] = 15, + [82406] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3876), 1, + ACTIONS(4314), 1, sym_identifier, - ACTIONS(3878), 1, - anon_sym_LPAREN2, - ACTIONS(3880), 1, - anon_sym_STAR, - ACTIONS(4289), 1, - anon_sym_SEMI, - STATE(1914), 1, - sym__field_declarator, - STATE(2210), 1, - sym__field_declaration_declarator, - STATE(3201), 1, - sym_ms_based_modifier, - STATE(3202), 1, - sym_attribute_specifier, - ACTIONS(4291), 2, + ACTIONS(4320), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(4293), 2, + ACTIONS(4322), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(4295), 4, + ACTIONS(4392), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + STATE(1768), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(4324), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - STATE(2054), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [81026] = 4, + ACTIONS(4390), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [82449] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3104), 3, + ACTIONS(3125), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACE, - ACTIONS(3102), 19, + ACTIONS(3123), 19, anon_sym___extension__, anon_sym___declspec, anon_sym___based, @@ -152027,54 +154323,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [81059] = 9, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4297), 1, - sym_identifier, - ACTIONS(4302), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(4305), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(4311), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - STATE(1730), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(4308), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(4300), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [81102] = 5, - ACTIONS(2887), 1, + [82482] = 5, + ACTIONS(2926), 1, anon_sym_const, - STATE(1732), 1, + STATE(1747), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4283), 4, + ACTIONS(4394), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2889), 16, + ACTIONS(2928), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -152091,20 +154353,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [81137] = 5, - ACTIONS(2855), 1, + [82517] = 5, + ACTIONS(2916), 1, anon_sym_const, - STATE(1732), 1, + STATE(1761), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4313), 4, + ACTIONS(4342), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2857), 16, + ACTIONS(2918), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -152121,21 +154383,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [81172] = 5, - ACTIONS(4318), 1, + [82552] = 5, + ACTIONS(4398), 1, anon_sym_LPAREN2, - STATE(1848), 1, + STATE(1831), 1, sym_preproc_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4320), 5, + ACTIONS(4400), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(4316), 15, + ACTIONS(4396), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -152151,141 +154413,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [81207] = 15, + [82587] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, + STATE(1790), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2928), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(4402), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2926), 14, + anon_sym___extension__, anon_sym___based, - ACTIONS(3876), 1, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - ACTIONS(3878), 1, - anon_sym_LPAREN2, - ACTIONS(3880), 1, + [82623] = 7, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1996), 1, anon_sym_STAR, - ACTIONS(4322), 1, - anon_sym_SEMI, - STATE(1914), 1, - sym__field_declarator, - STATE(2202), 1, - sym__field_declaration_declarator, - STATE(3058), 1, - sym_attribute_specifier, - STATE(3201), 1, - sym_ms_based_modifier, - ACTIONS(4291), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(4293), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(4295), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - STATE(2054), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [81262] = 14, + ACTIONS(4405), 1, + anon_sym_LPAREN2, + STATE(1784), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4408), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1983), 14, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [82661] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(4411), 1, + anon_sym___aligned, + ACTIONS(3355), 2, anon_sym_LPAREN2, - ACTIONS(2049), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(3353), 18, + anon_sym___extension__, anon_sym___based, - ACTIONS(3650), 1, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - STATE(662), 1, - sym__old_style_function_declarator, - STATE(2057), 1, - sym_ms_call_modifier, - STATE(2138), 1, - sym_macro_modifier, - STATE(2218), 1, - sym__declarator, - STATE(3337), 1, - sym_ms_based_modifier, - ACTIONS(2111), 2, - anon_sym___init, - anon_sym___exit, - STATE(2209), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(2113), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [81315] = 14, + [82695] = 13, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3650), 1, + ACTIONS(3681), 1, sym_identifier, - STATE(628), 1, - sym__old_style_function_declarator, - STATE(2058), 1, + STATE(2092), 1, sym_ms_call_modifier, - STATE(2183), 1, + STATE(2177), 1, sym_macro_modifier, - STATE(2225), 1, + STATE(2284), 1, sym__declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - STATE(2209), 5, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(2113), 6, + ACTIONS(2136), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [81368] = 4, + [82745] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3037), 3, + STATE(1720), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2887), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACE, - ACTIONS(3035), 19, - anon_sym___extension__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(4413), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(2884), 14, + anon_sym___extension__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -152298,65 +154570,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [81401] = 14, + [82781] = 13, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3650), 1, + ACTIONS(3681), 1, sym_identifier, - STATE(639), 1, - sym__old_style_function_declarator, - STATE(2061), 1, + STATE(2090), 1, sym_ms_call_modifier, - STATE(2177), 1, + STATE(2198), 1, sym_macro_modifier, - STATE(2223), 1, + STATE(2270), 1, sym__declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - STATE(2209), 5, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(2113), 6, + ACTIONS(2136), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [81454] = 5, - ACTIONS(2907), 1, - anon_sym_const, - STATE(1731), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5), 2, + [82831] = 5, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4324), 4, + ACTIONS(4417), 1, + anon_sym___aligned, + ACTIONS(3420), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3418), 18, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2909), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym___extension__, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -152366,59 +154634,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - anon_sym_COLON, - [81489] = 15, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3876), 1, + sym_primitive_type, sym_identifier, - ACTIONS(3878), 1, - anon_sym_LPAREN2, - ACTIONS(3880), 1, - anon_sym_STAR, - ACTIONS(4326), 1, - anon_sym_SEMI, - STATE(1914), 1, - sym__field_declarator, - STATE(2198), 1, - sym__field_declaration_declarator, - STATE(2998), 1, - sym_attribute_specifier, - STATE(3201), 1, - sym_ms_based_modifier, - ACTIONS(4291), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(4293), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(4295), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - STATE(2054), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [81544] = 4, + [82865] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3025), 3, + ACTIONS(4419), 1, + anon_sym___aligned, + ACTIONS(3401), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACE, - ACTIONS(3023), 19, + ACTIONS(3399), 18, anon_sym___extension__, - anon_sym___declspec, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -152436,60 +154665,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [81577] = 9, + [82899] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2428), 1, - sym_identifier, - ACTIONS(2436), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(2438), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(4330), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - STATE(1730), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(2440), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(4328), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [81620] = 5, - ACTIONS(2897), 1, - anon_sym_const, - STATE(1744), 1, + STATE(1801), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(4332), 4, + ACTIONS(2912), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(4421), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2899), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(2910), 14, anon_sym___extension__, - anon_sym_LBRACK, + anon_sym___based, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -152499,27 +154693,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - anon_sym_COLON, - [81655] = 5, - ACTIONS(2881), 1, - anon_sym_const, - STATE(1732), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5), 2, + sym_primitive_type, + sym_identifier, + [82935] = 5, + ACTIONS(4396), 1, + anon_sym_LF, + ACTIONS(4424), 1, + anon_sym_LPAREN2, + STATE(1955), 1, + sym_preproc_argument_list, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4400), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [82969] = 6, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4283), 4, + STATE(1720), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2918), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(4426), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2883), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(2916), 14, anon_sym___extension__, - anon_sym_LBRACK, + anon_sym___based, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -152529,122 +154752,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - anon_sym_COLON, - [81690] = 14, + sym_primitive_type, + sym_identifier, + [83005] = 13, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, - anon_sym_LPAREN2, - ACTIONS(2049), 1, - anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3650), 1, + ACTIONS(3881), 1, sym_identifier, - STATE(665), 1, - sym__old_style_function_declarator, - STATE(2052), 1, + ACTIONS(3883), 1, + anon_sym_LPAREN2, + ACTIONS(3885), 1, + anon_sym_STAR, + STATE(2080), 1, sym_ms_call_modifier, - STATE(2158), 1, + STATE(2200), 1, sym_macro_modifier, - STATE(2215), 1, - sym__declarator, - STATE(3337), 1, + STATE(2307), 1, + sym__field_declarator, + STATE(3027), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - STATE(2209), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(2113), 6, + STATE(2437), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(2136), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [81743] = 5, - ACTIONS(2891), 1, - anon_sym_const, - STATE(1752), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(4334), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2893), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_COLON, - [81778] = 9, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2428), 1, - sym_identifier, - ACTIONS(2436), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(2438), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(4330), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - STATE(1727), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(2440), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(4328), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [81821] = 4, + [83055] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3100), 3, + ACTIONS(4429), 1, + anon_sym___aligned, + ACTIONS(3316), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACE, - ACTIONS(3098), 19, + ACTIONS(3314), 18, anon_sym___extension__, - anon_sym___declspec, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -152662,65 +154820,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [81854] = 13, + [83089] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2428), 1, - sym_identifier, - ACTIONS(4330), 1, - anon_sym_LBRACK, - STATE(1956), 1, - sym_attribute_specifier, - STATE(2056), 1, - aux_sym_type_definition_repeat1, - ACTIONS(2436), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(2438), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(4336), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(4338), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1727), 2, - sym_preproc_call_expression, - aux_sym_function_declarator_repeat1, - ACTIONS(2440), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(4328), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [81905] = 6, - ACTIONS(1954), 1, - anon_sym_const, - ACTIONS(4340), 1, + ACTIONS(4431), 1, + anon_sym___aligned, + ACTIONS(3301), 2, anon_sym_LPAREN2, - STATE(1726), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(2540), 4, + anon_sym_STAR, + ACTIONS(3299), 18, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1967), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym___extension__, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -152730,55 +154847,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - anon_sym_COLON, - [81942] = 3, - ACTIONS(5), 2, + sym_primitive_type, + sym_identifier, + [83123] = 5, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4142), 2, - sym_ms_restrict_modifier, - anon_sym_const, - ACTIONS(4144), 20, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4433), 1, + anon_sym___aligned, + ACTIONS(3307), 2, anon_sym_LPAREN2, anon_sym_STAR, + ACTIONS(3305), 18, anon_sym___extension__, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_COLON, - [81973] = 5, - ACTIONS(2903), 1, - anon_sym_const, - STATE(1732), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(4283), 4, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2905), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym___extension__, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -152788,197 +154876,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - anon_sym_COLON, - [82008] = 11, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4343), 1, + sym_primitive_type, sym_identifier, - ACTIONS(4345), 1, - anon_sym_RPAREN, - ACTIONS(4347), 1, - anon_sym_LPAREN2, - ACTIONS(4349), 1, - anon_sym_defined, - ACTIONS(4355), 1, - sym_number_literal, - ACTIONS(4351), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(4353), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4357), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1776), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [82054] = 13, + [83157] = 15, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(2130), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2132), 1, anon_sym_STAR, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3650), 1, + ACTIONS(3681), 1, sym_identifier, - STATE(2052), 1, - sym_ms_call_modifier, - STATE(2158), 1, + ACTIONS(3689), 1, + anon_sym_LBRACK, + STATE(1967), 1, sym_macro_modifier, - STATE(2258), 1, + STATE(2301), 1, sym__declarator, - STATE(3337), 1, + STATE(2397), 1, + sym_parameter_list, + STATE(2445), 1, + sym__abstract_declarator, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - STATE(2209), 5, + STATE(2396), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(2113), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [82104] = 5, - ACTIONS(4316), 1, - anon_sym_LF, - ACTIONS(4359), 1, - anon_sym_LPAREN2, - STATE(1933), 1, - sym_preproc_argument_list, - ACTIONS(3), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(4320), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [82138] = 11, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4343), 1, - sym_identifier, - ACTIONS(4347), 1, - anon_sym_LPAREN2, - ACTIONS(4349), 1, - anon_sym_defined, - ACTIONS(4361), 1, - anon_sym_RPAREN, - ACTIONS(4363), 1, - sym_number_literal, - ACTIONS(4351), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(4353), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4357), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1784), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [82184] = 13, + [83211] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + STATE(1720), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2924), 2, anon_sym_LPAREN2, - ACTIONS(2049), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(4435), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2922), 14, + anon_sym___extension__, anon_sym___based, - ACTIONS(3650), 1, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - STATE(2058), 1, - sym_ms_call_modifier, - STATE(2183), 1, - sym_macro_modifier, - STATE(2240), 1, - sym__declarator, - STATE(3337), 1, - sym_ms_based_modifier, - ACTIONS(2111), 2, - anon_sym___init, - anon_sym___exit, - STATE(2209), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(2113), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [82234] = 5, + [83247] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4365), 1, - anon_sym___aligned, - ACTIONS(3369), 2, + ACTIONS(4438), 1, + sym_identifier, + ACTIONS(4444), 1, + sym_primitive_type, + STATE(1778), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2898), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3367), 18, - anon_sym___extension__, - anon_sym___based, + ACTIONS(4441), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(2900), 12, + anon_sym___extension__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -152989,63 +154979,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [82268] = 15, + [83287] = 13, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(2107), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2109), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(3650), 1, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3681), 1, sym_identifier, - ACTIONS(3658), 1, - anon_sym_LBRACK, - STATE(1946), 1, + STATE(2075), 1, + sym_ms_call_modifier, + STATE(2191), 1, sym_macro_modifier, - STATE(2277), 1, - sym__declarator, - STATE(2375), 1, - sym_parameter_list, - STATE(2439), 1, - sym__abstract_declarator, - STATE(3337), 1, + STATE(2292), 1, + sym__declarator, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - STATE(2380), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(2209), 5, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [82322] = 6, + ACTIONS(2136), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [83337] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1703), 1, + STATE(1800), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2889), 2, + ACTIONS(2942), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(4367), 4, + ACTIONS(4447), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2887), 14, + ACTIONS(2940), 14, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -153060,52 +155046,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [82358] = 4, + [83373] = 11, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3025), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3023), 19, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym___aligned, + ACTIONS(4450), 1, sym_identifier, - [82390] = 6, + ACTIONS(4452), 1, + anon_sym_RPAREN, + ACTIONS(4454), 1, + anon_sym_LPAREN2, + ACTIONS(4456), 1, + anon_sym_defined, + ACTIONS(4462), 1, + sym_number_literal, + ACTIONS(4458), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4460), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4464), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1798), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [83419] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1772), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2893), 2, + ACTIONS(4466), 1, + anon_sym___aligned, + ACTIONS(3342), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(4370), 4, + ACTIONS(3340), 18, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2891), 14, - anon_sym___extension__, - anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -153118,59 +155110,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [82426] = 13, + [83453] = 16, + ACTIONS(4468), 1, + anon_sym_COMMA, + ACTIONS(4470), 1, + anon_sym_RPAREN, + ACTIONS(4476), 1, + anon_sym_SLASH, + ACTIONS(4478), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4480), 1, + anon_sym_AMP_AMP, + ACTIONS(4482), 1, + anon_sym_PIPE, + ACTIONS(4484), 1, + anon_sym_CARET, + ACTIONS(4486), 1, + anon_sym_AMP, + STATE(2637), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4472), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4474), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4488), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4490), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4492), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4494), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [83509] = 16, + ACTIONS(4468), 1, + anon_sym_COMMA, + ACTIONS(4476), 1, + anon_sym_SLASH, + ACTIONS(4478), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4480), 1, + anon_sym_AMP_AMP, + ACTIONS(4482), 1, + anon_sym_PIPE, + ACTIONS(4484), 1, + anon_sym_CARET, + ACTIONS(4486), 1, + anon_sym_AMP, + ACTIONS(4496), 1, + anon_sym_RPAREN, + STATE(2522), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4472), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4474), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4488), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4490), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4492), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4494), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [83565] = 16, + ACTIONS(4468), 1, + anon_sym_COMMA, + ACTIONS(4476), 1, + anon_sym_SLASH, + ACTIONS(4478), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4480), 1, + anon_sym_AMP_AMP, + ACTIONS(4482), 1, + anon_sym_PIPE, + ACTIONS(4484), 1, + anon_sym_CARET, + ACTIONS(4486), 1, + anon_sym_AMP, + ACTIONS(4498), 1, + anon_sym_RPAREN, + STATE(2748), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4472), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4474), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4488), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4490), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4492), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4494), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [83621] = 13, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3650), 1, + ACTIONS(3681), 1, sym_identifier, - STATE(2061), 1, + STATE(2091), 1, sym_ms_call_modifier, - STATE(2177), 1, + STATE(2162), 1, sym_macro_modifier, - STATE(2268), 1, + STATE(2276), 1, sym__declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - STATE(2209), 5, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(2113), 6, + ACTIONS(2136), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [82476] = 6, + [83671] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1703), 1, + STATE(1720), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2883), 2, + ACTIONS(2934), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(4373), 4, + ACTIONS(4500), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2881), 14, + ACTIONS(2932), 14, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -153185,22 +155297,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [82512] = 6, + [83707] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1764), 1, + STATE(1720), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2899), 2, + ACTIONS(2938), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(4376), 4, + ACTIONS(4503), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2897), 14, + ACTIONS(2936), 14, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -153215,24 +155327,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [82548] = 6, + [83743] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1703), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2876), 2, + ACTIONS(4506), 1, + anon_sym___aligned, + ACTIONS(3395), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(4379), 4, + ACTIONS(3393), 18, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2873), 14, - anon_sym___extension__, - anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -153245,34 +155356,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [82584] = 11, + [83777] = 11, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4450), 1, + sym_identifier, + ACTIONS(4454), 1, + anon_sym_LPAREN2, + ACTIONS(4456), 1, + anon_sym_defined, + ACTIONS(4508), 1, + anon_sym_RPAREN, + ACTIONS(4510), 1, + sym_number_literal, + ACTIONS(4458), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4460), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4464), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1796), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [83823] = 11, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4343), 1, + ACTIONS(4450), 1, sym_identifier, - ACTIONS(4347), 1, + ACTIONS(4454), 1, anon_sym_LPAREN2, - ACTIONS(4349), 1, + ACTIONS(4456), 1, anon_sym_defined, - ACTIONS(4383), 1, + ACTIONS(4512), 1, anon_sym_RPAREN, - ACTIONS(4385), 1, + ACTIONS(4514), 1, sym_number_literal, - ACTIONS(4351), 2, + ACTIONS(4458), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4353), 2, + ACTIONS(4460), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4357), 5, + ACTIONS(4464), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1774), 7, + STATE(1809), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -153280,89 +155426,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [82630] = 13, + [83869] = 13, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3650), 1, + ACTIONS(3681), 1, sym_identifier, - STATE(2067), 1, + STATE(2073), 1, sym_ms_call_modifier, - STATE(2139), 1, + STATE(2194), 1, sym_macro_modifier, - STATE(2285), 1, + STATE(2280), 1, sym__declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - STATE(2209), 5, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(2113), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [82680] = 13, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3882), 1, - sym_identifier, - ACTIONS(3884), 1, - anon_sym_LPAREN2, - ACTIONS(3886), 1, - anon_sym_STAR, - STATE(2046), 1, - sym_ms_call_modifier, - STATE(2179), 1, - sym_macro_modifier, - STATE(2291), 1, - sym__field_declarator, - STATE(3061), 1, - sym_ms_based_modifier, - ACTIONS(2111), 2, - anon_sym___init, - anon_sym___exit, - STATE(2422), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(2113), 6, + ACTIONS(2136), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [82730] = 4, + [83919] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3100), 2, + ACTIONS(3086), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3098), 19, + ACTIONS(3084), 19, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -153382,64 +155491,21 @@ static const uint16_t ts_small_parse_table[] = { sym_primitive_type, anon_sym___aligned, sym_identifier, - [82762] = 16, - ACTIONS(4387), 1, - anon_sym_COMMA, - ACTIONS(4389), 1, - anon_sym_RPAREN, - ACTIONS(4395), 1, - anon_sym_SLASH, - ACTIONS(4397), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4399), 1, - anon_sym_AMP_AMP, - ACTIONS(4401), 1, - anon_sym_PIPE, - ACTIONS(4403), 1, - anon_sym_CARET, - ACTIONS(4405), 1, - anon_sym_AMP, - STATE(2715), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(4391), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4393), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(4407), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4409), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4411), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4413), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [82818] = 6, + [83951] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1703), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2905), 2, + ACTIONS(3082), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(4415), 4, + ACTIONS(3080), 19, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2903), 14, - anon_sym___extension__, - anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -153451,25 +155517,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym___aligned, sym_identifier, - [82854] = 6, + [83983] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1760), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2909), 2, + ACTIONS(4516), 1, + anon_sym___aligned, + ACTIONS(3291), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(4418), 4, + ACTIONS(3289), 18, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2907), 14, - anon_sym___extension__, - anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -153482,57 +155548,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [82890] = 16, - ACTIONS(4387), 1, + [84017] = 16, + ACTIONS(4468), 1, anon_sym_COMMA, - ACTIONS(4395), 1, + ACTIONS(4476), 1, anon_sym_SLASH, - ACTIONS(4397), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4399), 1, + ACTIONS(4480), 1, anon_sym_AMP_AMP, - ACTIONS(4401), 1, + ACTIONS(4482), 1, anon_sym_PIPE, - ACTIONS(4403), 1, + ACTIONS(4484), 1, anon_sym_CARET, - ACTIONS(4405), 1, + ACTIONS(4486), 1, anon_sym_AMP, - ACTIONS(4421), 1, + ACTIONS(4518), 1, anon_sym_RPAREN, - STATE(2611), 1, + STATE(2707), 1, aux_sym_preproc_argument_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4391), 2, + ACTIONS(4472), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4393), 2, + ACTIONS(4474), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4407), 2, + ACTIONS(4488), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4409), 2, + ACTIONS(4490), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4411), 2, + ACTIONS(4492), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4413), 2, + ACTIONS(4494), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [82946] = 5, + [84073] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4423), 1, - anon_sym___aligned, - ACTIONS(3381), 2, + ACTIONS(3133), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3379), 18, + ACTIONS(3131), 19, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -153550,58 +155614,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym___aligned, sym_identifier, - [82980] = 16, - ACTIONS(4387), 1, - anon_sym_COMMA, - ACTIONS(4395), 1, - anon_sym_SLASH, - ACTIONS(4397), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4399), 1, - anon_sym_AMP_AMP, - ACTIONS(4401), 1, - anon_sym_PIPE, - ACTIONS(4403), 1, - anon_sym_CARET, - ACTIONS(4405), 1, - anon_sym_AMP, - ACTIONS(4425), 1, - anon_sym_RPAREN, - STATE(2548), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(4391), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4393), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(4407), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4409), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4411), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4413), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [83036] = 5, + [84105] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4427), 1, - anon_sym___aligned, - ACTIONS(3363), 2, + ACTIONS(3125), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3361), 18, + ACTIONS(3123), 19, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -153619,26 +155642,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym___aligned, + sym_identifier, + [84137] = 11, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4450), 1, sym_identifier, - [83070] = 7, + ACTIONS(4454), 1, + anon_sym_LPAREN2, + ACTIONS(4456), 1, + anon_sym_defined, + ACTIONS(4520), 1, + anon_sym_RPAREN, + ACTIONS(4522), 1, + sym_number_literal, + ACTIONS(4458), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4460), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4464), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1797), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [84183] = 13, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(1967), 1, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3881), 1, + sym_identifier, + ACTIONS(3883), 1, + anon_sym_LPAREN2, + ACTIONS(3885), 1, anon_sym_STAR, - ACTIONS(4429), 1, + STATE(2072), 1, + sym_ms_call_modifier, + STATE(2161), 1, + sym_macro_modifier, + STATE(2298), 1, + sym__field_declarator, + STATE(3027), 1, + sym_ms_based_modifier, + ACTIONS(2134), 2, + anon_sym___init, + anon_sym___exit, + STATE(2437), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(2136), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [84233] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3525), 2, anon_sym_LPAREN2, - STATE(1787), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4432), 4, + anon_sym_STAR, + ACTIONS(3523), 18, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1954), 14, - anon_sym___extension__, - anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -153651,34 +155743,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [83108] = 11, + [84264] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4343), 1, + ACTIONS(4450), 1, sym_identifier, - ACTIONS(4347), 1, + ACTIONS(4454), 1, anon_sym_LPAREN2, - ACTIONS(4349), 1, + ACTIONS(4456), 1, anon_sym_defined, - ACTIONS(4435), 1, - anon_sym_RPAREN, - ACTIONS(4437), 1, + ACTIONS(4524), 1, sym_number_literal, - ACTIONS(4351), 2, + ACTIONS(4458), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4353), 2, + ACTIONS(4460), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4357), 5, + ACTIONS(4464), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1771), 7, + STATE(1886), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -153686,17 +155776,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [83154] = 5, + [84307] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4439), 1, - anon_sym___aligned, - ACTIONS(3287), 2, + ACTIONS(3450), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3285), 18, + ACTIONS(3448), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -153715,17 +155803,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [83188] = 5, + [84338] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4441), 1, - anon_sym___aligned, - ACTIONS(3338), 2, + ACTIONS(3485), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3483), 18, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [84369] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3607), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3605), 18, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [84400] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3599), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3597), 18, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [84431] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3557), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3336), 18, + ACTIONS(3555), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -153744,15 +155911,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [83222] = 4, + [84462] = 14, + ACTIONS(4476), 1, + anon_sym_SLASH, + ACTIONS(4478), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4480), 1, + anon_sym_AMP_AMP, + ACTIONS(4482), 1, + anon_sym_PIPE, + ACTIONS(4484), 1, + anon_sym_CARET, + ACTIONS(4486), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4472), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4474), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4488), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4490), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4492), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4494), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4526), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [84513] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4530), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4528), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [84542] = 6, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4536), 1, + anon_sym_LPAREN2, + STATE(1959), 1, + sym_preproc_argument_list, + ACTIONS(4534), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(4532), 12, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + [84577] = 10, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4450), 1, + sym_identifier, + ACTIONS(4454), 1, + anon_sym_LPAREN2, + ACTIONS(4456), 1, + anon_sym_defined, + ACTIONS(4538), 1, + sym_number_literal, + ACTIONS(4458), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4460), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4464), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1852), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [84620] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3037), 2, + ACTIONS(3585), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3035), 19, + ACTIONS(3583), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -153770,19 +156062,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym___aligned, sym_identifier, - [83254] = 5, + [84651] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym___aligned, - ACTIONS(3262), 2, + ACTIONS(3505), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3260), 18, + ACTIONS(3503), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -153801,57 +156090,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [83288] = 16, - ACTIONS(4387), 1, - anon_sym_COMMA, - ACTIONS(4395), 1, - anon_sym_SLASH, - ACTIONS(4397), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4399), 1, - anon_sym_AMP_AMP, - ACTIONS(4401), 1, - anon_sym_PIPE, - ACTIONS(4403), 1, - anon_sym_CARET, - ACTIONS(4405), 1, - anon_sym_AMP, - ACTIONS(4445), 1, - anon_sym_RPAREN, - STATE(2532), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(4391), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4393), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(4407), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4409), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4411), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4413), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [83344] = 5, + [84682] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4447), 1, - anon_sym___aligned, - ACTIONS(3375), 2, + ACTIONS(3436), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3373), 18, + ACTIONS(3434), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -153870,17 +156117,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [83378] = 5, + [84713] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4449), 1, - anon_sym___aligned, - ACTIONS(3387), 2, + ACTIONS(3501), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3385), 18, + ACTIONS(3499), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -153899,24 +156144,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [83412] = 6, + [84744] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - STATE(1703), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2919), 2, + ACTIONS(3497), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(4451), 4, + ACTIONS(3495), 18, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2917), 14, - anon_sym___extension__, - anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -153929,17 +156171,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [83448] = 5, + [84775] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4454), 1, - anon_sym___aligned, - ACTIONS(3272), 2, + ACTIONS(3477), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3270), 18, + ACTIONS(3475), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -153958,56 +156198,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [83482] = 4, + [84806] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4542), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4540), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [84835] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3104), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3102), 19, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym___aligned, + ACTIONS(4450), 1, sym_identifier, - [83514] = 8, + ACTIONS(4454), 1, + anon_sym_LPAREN2, + ACTIONS(4456), 1, + anon_sym_defined, + ACTIONS(4544), 1, + sym_number_literal, + ACTIONS(4458), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4460), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4464), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1952), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [84878] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4456), 1, - sym_identifier, - ACTIONS(4462), 1, - sym_primitive_type, - STATE(1766), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2865), 2, + ACTIONS(3481), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(4459), 4, + ACTIONS(3479), 18, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2867), 12, - anon_sym___extension__, - anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -154018,89 +156282,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - [83554] = 13, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2047), 1, - anon_sym_LPAREN2, - ACTIONS(2049), 1, - anon_sym_STAR, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3650), 1, - sym_identifier, - STATE(2057), 1, - sym_ms_call_modifier, - STATE(2138), 1, - sym_macro_modifier, - STATE(2255), 1, - sym__declarator, - STATE(3337), 1, - sym_ms_based_modifier, - ACTIONS(2111), 2, - anon_sym___init, - anon_sym___exit, - STATE(2209), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(2113), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [83604] = 13, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3882), 1, + sym_primitive_type, sym_identifier, - ACTIONS(3884), 1, - anon_sym_LPAREN2, - ACTIONS(3886), 1, - anon_sym_STAR, - STATE(2065), 1, - sym_ms_call_modifier, - STATE(2175), 1, - sym_macro_modifier, - STATE(2289), 1, - sym__field_declarator, - STATE(3061), 1, - sym_ms_based_modifier, - ACTIONS(2111), 2, - anon_sym___init, - anon_sym___exit, - STATE(2422), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(2113), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [83654] = 4, + [84909] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3478), 2, + ACTIONS(3489), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3476), 18, + ACTIONS(3487), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -154119,15 +156311,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [83685] = 4, + [84940] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3572), 2, + ACTIONS(3493), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3570), 18, + ACTIONS(3491), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -154146,32 +156338,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [83716] = 10, + [84971] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4465), 1, + ACTIONS(4546), 1, sym_identifier, - ACTIONS(4467), 1, + ACTIONS(4548), 1, anon_sym_LPAREN2, - ACTIONS(4469), 1, + ACTIONS(4550), 1, anon_sym_defined, - ACTIONS(4475), 1, + ACTIONS(4556), 1, sym_number_literal, - ACTIONS(4471), 2, + ACTIONS(4552), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4473), 2, + ACTIONS(4554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4477), 5, + ACTIONS(4558), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1908), 7, + STATE(1929), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -154179,32 +156371,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [83759] = 10, + [85014] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4343), 1, + ACTIONS(4546), 1, sym_identifier, - ACTIONS(4347), 1, + ACTIONS(4548), 1, anon_sym_LPAREN2, - ACTIONS(4349), 1, + ACTIONS(4550), 1, anon_sym_defined, - ACTIONS(4479), 1, + ACTIONS(4560), 1, sym_number_literal, - ACTIONS(4351), 2, + ACTIONS(4552), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4353), 2, + ACTIONS(4554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4357), 5, + ACTIONS(4558), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1857), 7, + STATE(1926), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -154212,32 +156404,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [83802] = 10, + [85057] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4343), 1, + ACTIONS(4546), 1, sym_identifier, - ACTIONS(4347), 1, + ACTIONS(4548), 1, anon_sym_LPAREN2, - ACTIONS(4349), 1, + ACTIONS(4550), 1, anon_sym_defined, - ACTIONS(4481), 1, + ACTIONS(4562), 1, sym_number_literal, - ACTIONS(4351), 2, + ACTIONS(4552), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4353), 2, + ACTIONS(4554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4357), 5, + ACTIONS(4558), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1867), 7, + STATE(1916), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -154245,32 +156437,59 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [83845] = 10, + [85100] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3529), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3527), 18, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [85131] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4343), 1, + ACTIONS(4546), 1, sym_identifier, - ACTIONS(4347), 1, + ACTIONS(4548), 1, anon_sym_LPAREN2, - ACTIONS(4349), 1, + ACTIONS(4550), 1, anon_sym_defined, - ACTIONS(4483), 1, + ACTIONS(4564), 1, sym_number_literal, - ACTIONS(4351), 2, + ACTIONS(4552), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4353), 2, + ACTIONS(4554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4357), 5, + ACTIONS(4558), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1868), 7, + STATE(1943), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -154278,15 +156497,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [83888] = 4, + [85174] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3494), 2, + ACTIONS(3537), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3492), 18, + ACTIONS(3535), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -154305,32 +156524,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [83919] = 10, + [85205] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4465), 1, + ACTIONS(3541), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3539), 18, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [85236] = 10, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4546), 1, sym_identifier, - ACTIONS(4467), 1, + ACTIONS(4548), 1, anon_sym_LPAREN2, - ACTIONS(4469), 1, + ACTIONS(4550), 1, anon_sym_defined, - ACTIONS(4485), 1, + ACTIONS(4566), 1, sym_number_literal, - ACTIONS(4471), 2, + ACTIONS(4552), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4473), 2, + ACTIONS(4554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4477), 5, + ACTIONS(4558), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1886), 7, + STATE(1948), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -154338,32 +156584,86 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [83962] = 10, + [85279] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3545), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3543), 18, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [85310] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3553), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3551), 18, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [85341] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4465), 1, + ACTIONS(4546), 1, sym_identifier, - ACTIONS(4467), 1, + ACTIONS(4548), 1, anon_sym_LPAREN2, - ACTIONS(4469), 1, + ACTIONS(4550), 1, anon_sym_defined, - ACTIONS(4487), 1, + ACTIONS(4568), 1, sym_number_literal, - ACTIONS(4471), 2, + ACTIONS(4552), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4473), 2, + ACTIONS(4554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4477), 5, + ACTIONS(4558), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1926), 7, + STATE(1946), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -154371,32 +156671,59 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [84005] = 10, + [85384] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3509), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3507), 18, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [85415] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4343), 1, + ACTIONS(4546), 1, sym_identifier, - ACTIONS(4347), 1, + ACTIONS(4548), 1, anon_sym_LPAREN2, - ACTIONS(4349), 1, + ACTIONS(4550), 1, anon_sym_defined, - ACTIONS(4489), 1, + ACTIONS(4570), 1, sym_number_literal, - ACTIONS(4351), 2, + ACTIONS(4552), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4353), 2, + ACTIONS(4554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4357), 5, + ACTIONS(4558), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1869), 7, + STATE(1949), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -154404,32 +156731,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [84048] = 10, + [85458] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4465), 1, + ACTIONS(4546), 1, sym_identifier, - ACTIONS(4467), 1, + ACTIONS(4548), 1, anon_sym_LPAREN2, - ACTIONS(4469), 1, + ACTIONS(4550), 1, anon_sym_defined, - ACTIONS(4491), 1, + ACTIONS(4572), 1, sym_number_literal, - ACTIONS(4471), 2, + ACTIONS(4552), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4473), 2, + ACTIONS(4554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4477), 5, + ACTIONS(4558), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1892), 7, + STATE(1957), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -154437,26 +156764,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [84091] = 10, + [85501] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4465), 1, + ACTIONS(4546), 1, sym_identifier, - ACTIONS(4467), 1, + ACTIONS(4548), 1, anon_sym_LPAREN2, - ACTIONS(4469), 1, + ACTIONS(4550), 1, anon_sym_defined, - ACTIONS(4493), 1, + ACTIONS(4574), 1, sym_number_literal, - ACTIONS(4471), 2, + ACTIONS(4552), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4473), 2, + ACTIONS(4554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4477), 5, + ACTIONS(4558), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -154470,32 +156797,84 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [84134] = 10, + [85544] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4578), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4576), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [85573] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4582), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4580), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [85602] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4343), 1, + ACTIONS(4546), 1, sym_identifier, - ACTIONS(4347), 1, + ACTIONS(4548), 1, anon_sym_LPAREN2, - ACTIONS(4349), 1, + ACTIONS(4550), 1, anon_sym_defined, - ACTIONS(4495), 1, + ACTIONS(4584), 1, sym_number_literal, - ACTIONS(4351), 2, + ACTIONS(4552), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4353), 2, + ACTIONS(4554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4357), 5, + ACTIONS(4558), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1871), 7, + STATE(1913), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -154503,32 +156882,59 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [84177] = 10, + [85645] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2928), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(2926), 18, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [85676] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4465), 1, + ACTIONS(4546), 1, sym_identifier, - ACTIONS(4467), 1, + ACTIONS(4548), 1, anon_sym_LPAREN2, - ACTIONS(4469), 1, + ACTIONS(4550), 1, anon_sym_defined, - ACTIONS(4497), 1, + ACTIONS(4586), 1, sym_number_literal, - ACTIONS(4471), 2, + ACTIONS(4552), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4473), 2, + ACTIONS(4554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4477), 5, + ACTIONS(4558), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1925), 7, + STATE(1920), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -154536,32 +156942,59 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [84220] = 10, + [85719] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3603), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3601), 18, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [85750] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4465), 1, + ACTIONS(4450), 1, sym_identifier, - ACTIONS(4467), 1, + ACTIONS(4454), 1, anon_sym_LPAREN2, - ACTIONS(4469), 1, + ACTIONS(4456), 1, anon_sym_defined, - ACTIONS(4499), 1, + ACTIONS(4588), 1, sym_number_literal, - ACTIONS(4471), 2, + ACTIONS(4458), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4473), 2, + ACTIONS(4460), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4477), 5, + ACTIONS(4464), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1891), 7, + STATE(1882), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -154569,69 +157002,65 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [84263] = 14, + [85793] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(2107), 1, - anon_sym_LPAREN2, - ACTIONS(2109), 1, - anon_sym_STAR, - ACTIONS(3650), 1, + ACTIONS(4450), 1, sym_identifier, - ACTIONS(3658), 1, - anon_sym_LBRACK, - STATE(2237), 1, - sym__declarator, - STATE(2375), 1, - sym_parameter_list, - STATE(2381), 1, - sym__abstract_declarator, - STATE(3337), 1, - sym_ms_based_modifier, - ACTIONS(4501), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(2380), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(2209), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [84314] = 10, + ACTIONS(4454), 1, + anon_sym_LPAREN2, + ACTIONS(4456), 1, + anon_sym_defined, + ACTIONS(4590), 1, + sym_number_literal, + ACTIONS(4458), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4460), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4464), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1883), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [85836] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4465), 1, + ACTIONS(4450), 1, sym_identifier, - ACTIONS(4467), 1, + ACTIONS(4454), 1, anon_sym_LPAREN2, - ACTIONS(4469), 1, + ACTIONS(4456), 1, anon_sym_defined, - ACTIONS(4503), 1, + ACTIONS(4592), 1, sym_number_literal, - ACTIONS(4471), 2, + ACTIONS(4458), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4473), 2, + ACTIONS(4460), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4477), 5, + ACTIONS(4464), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1931), 7, + STATE(1884), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -154639,32 +157068,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [84357] = 10, + [85879] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4343), 1, + ACTIONS(4450), 1, sym_identifier, - ACTIONS(4347), 1, + ACTIONS(4454), 1, anon_sym_LPAREN2, - ACTIONS(4349), 1, + ACTIONS(4456), 1, anon_sym_defined, - ACTIONS(4505), 1, + ACTIONS(4594), 1, sym_number_literal, - ACTIONS(4351), 2, + ACTIONS(4458), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4353), 2, + ACTIONS(4460), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4357), 5, + ACTIONS(4464), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1872), 7, + STATE(1885), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -154672,17 +157101,17 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [84400] = 3, + [85922] = 3, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4509), 5, + ACTIONS(3247), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(4507), 15, + ACTIONS(3245), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -154698,139 +157127,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [84429] = 4, + [85951] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3490), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3488), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, + ACTIONS(4450), 1, sym_identifier, - [84460] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3466), 2, + ACTIONS(4454), 1, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3464), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [84491] = 3, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(4513), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4511), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4456), 1, + anon_sym_defined, + ACTIONS(4596), 1, + sym_number_literal, + ACTIONS(4458), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4460), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [84520] = 4, + ACTIONS(4464), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1887), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [85994] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3474), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3472), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, + ACTIONS(4450), 1, sym_identifier, - [84551] = 10, + ACTIONS(4454), 1, + anon_sym_LPAREN2, + ACTIONS(4456), 1, + anon_sym_defined, + ACTIONS(4598), 1, + sym_number_literal, + ACTIONS(4458), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4460), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4464), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1888), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [86037] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4465), 1, + ACTIONS(4450), 1, sym_identifier, - ACTIONS(4467), 1, + ACTIONS(4454), 1, anon_sym_LPAREN2, - ACTIONS(4469), 1, + ACTIONS(4456), 1, anon_sym_defined, - ACTIONS(4515), 1, + ACTIONS(4600), 1, sym_number_literal, - ACTIONS(4471), 2, + ACTIONS(4458), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4473), 2, + ACTIONS(4460), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4477), 5, + ACTIONS(4464), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1935), 7, + STATE(1889), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -154838,32 +157226,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [84594] = 10, + [86080] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4465), 1, + ACTIONS(4450), 1, sym_identifier, - ACTIONS(4467), 1, + ACTIONS(4454), 1, anon_sym_LPAREN2, - ACTIONS(4469), 1, + ACTIONS(4456), 1, anon_sym_defined, - ACTIONS(4517), 1, + ACTIONS(4602), 1, sym_number_literal, - ACTIONS(4471), 2, + ACTIONS(4458), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4473), 2, + ACTIONS(4460), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4477), 5, + ACTIONS(4464), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1924), 7, + STATE(1890), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -154871,32 +157259,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [84637] = 10, + [86123] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4343), 1, + ACTIONS(4450), 1, sym_identifier, - ACTIONS(4347), 1, + ACTIONS(4454), 1, anon_sym_LPAREN2, - ACTIONS(4349), 1, + ACTIONS(4456), 1, anon_sym_defined, - ACTIONS(4519), 1, + ACTIONS(4604), 1, sym_number_literal, - ACTIONS(4351), 2, + ACTIONS(4458), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4353), 2, + ACTIONS(4460), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4357), 5, + ACTIONS(4464), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1913), 7, + STATE(1891), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -154904,15 +157292,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [84680] = 4, + [86166] = 7, + ACTIONS(4609), 1, + anon_sym_const, + STATE(2017), 1, + sym_alignas_qualifier, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4612), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1867), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4081), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(4606), 8, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [86203] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3506), 2, + ACTIONS(3426), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3504), 18, + ACTIONS(3424), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -154931,15 +157349,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [84711] = 4, + [86234] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3502), 2, + ACTIONS(3430), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3500), 18, + ACTIONS(3428), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -154958,15 +157376,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [84742] = 4, + [86265] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3548), 2, + ACTIONS(3521), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3546), 18, + ACTIONS(3519), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -154985,65 +157403,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [84773] = 10, + [86296] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4465), 1, - sym_identifier, - ACTIONS(4467), 1, + ACTIONS(3517), 2, anon_sym_LPAREN2, - ACTIONS(4469), 1, - anon_sym_defined, - ACTIONS(4521), 1, - sym_number_literal, - ACTIONS(4471), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(4473), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4477), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1943), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [84816] = 10, + anon_sym_STAR, + ACTIONS(3515), 18, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [86327] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4465), 1, + ACTIONS(4546), 1, sym_identifier, - ACTIONS(4467), 1, + ACTIONS(4548), 1, anon_sym_LPAREN2, - ACTIONS(4469), 1, + ACTIONS(4550), 1, anon_sym_defined, - ACTIONS(4523), 1, + ACTIONS(4615), 1, sym_number_literal, - ACTIONS(4471), 2, + ACTIONS(4552), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4473), 2, + ACTIONS(4554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4477), 5, + ACTIONS(4558), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1897), 7, + STATE(1927), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -155051,26 +157463,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [84859] = 10, + [86370] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4465), 1, + ACTIONS(4546), 1, sym_identifier, - ACTIONS(4467), 1, + ACTIONS(4548), 1, anon_sym_LPAREN2, - ACTIONS(4469), 1, + ACTIONS(4550), 1, anon_sym_defined, - ACTIONS(4525), 1, + ACTIONS(4617), 1, sym_number_literal, - ACTIONS(4471), 2, + ACTIONS(4552), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4473), 2, + ACTIONS(4554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4477), 5, + ACTIONS(4558), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -155084,32 +157496,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [84902] = 10, + [86413] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4343), 1, + ACTIONS(4546), 1, sym_identifier, - ACTIONS(4347), 1, + ACTIONS(4548), 1, anon_sym_LPAREN2, - ACTIONS(4349), 1, + ACTIONS(4550), 1, anon_sym_defined, - ACTIONS(4527), 1, + ACTIONS(4619), 1, sym_number_literal, - ACTIONS(4351), 2, + ACTIONS(4552), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4353), 2, + ACTIONS(4554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4357), 5, + ACTIONS(4558), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1834), 7, + STATE(1908), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -155117,32 +157529,58 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [84945] = 10, + [86456] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4623), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4621), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [86485] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4465), 1, + ACTIONS(4546), 1, sym_identifier, - ACTIONS(4467), 1, + ACTIONS(4548), 1, anon_sym_LPAREN2, - ACTIONS(4469), 1, + ACTIONS(4550), 1, anon_sym_defined, - ACTIONS(4529), 1, + ACTIONS(4625), 1, sym_number_literal, - ACTIONS(4471), 2, + ACTIONS(4552), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4473), 2, + ACTIONS(4554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4477), 5, + ACTIONS(4558), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1941), 7, + STATE(1950), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -155150,92 +157588,69 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [84988] = 4, + [86528] = 14, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3427), 2, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(2130), 1, anon_sym_LPAREN2, + ACTIONS(2132), 1, anon_sym_STAR, - ACTIONS(3425), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, + ACTIONS(3681), 1, sym_identifier, - [85019] = 10, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4465), 1, - sym_identifier, - ACTIONS(4467), 1, - anon_sym_LPAREN2, - ACTIONS(4469), 1, - anon_sym_defined, - ACTIONS(4531), 1, - sym_number_literal, - ACTIONS(4471), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(4473), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4477), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1937), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [85062] = 10, + ACTIONS(3689), 1, + anon_sym_LBRACK, + STATE(2275), 1, + sym__declarator, + STATE(2397), 1, + sym_parameter_list, + STATE(2419), 1, + sym__abstract_declarator, + STATE(3453), 1, + sym_ms_based_modifier, + ACTIONS(4627), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(2396), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(2220), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [86579] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4465), 1, + ACTIONS(4450), 1, sym_identifier, - ACTIONS(4467), 1, + ACTIONS(4454), 1, anon_sym_LPAREN2, - ACTIONS(4469), 1, + ACTIONS(4456), 1, anon_sym_defined, - ACTIONS(4533), 1, + ACTIONS(4629), 1, sym_number_literal, - ACTIONS(4471), 2, + ACTIONS(4458), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4473), 2, + ACTIONS(4460), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4477), 5, + ACTIONS(4464), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1944), 7, + STATE(1821), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -155243,59 +157658,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [85105] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3510), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3508), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [85136] = 10, + [86622] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4465), 1, + ACTIONS(4546), 1, sym_identifier, - ACTIONS(4467), 1, + ACTIONS(4548), 1, anon_sym_LPAREN2, - ACTIONS(4469), 1, + ACTIONS(4550), 1, anon_sym_defined, - ACTIONS(4535), 1, + ACTIONS(4631), 1, sym_number_literal, - ACTIONS(4471), 2, + ACTIONS(4552), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4473), 2, + ACTIONS(4554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4477), 5, + ACTIONS(4558), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1938), 7, + STATE(1917), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -155303,58 +157691,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [85179] = 3, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3254), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3252), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [85208] = 10, + [86665] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4343), 1, + ACTIONS(4546), 1, sym_identifier, - ACTIONS(4347), 1, + ACTIONS(4548), 1, anon_sym_LPAREN2, - ACTIONS(4349), 1, + ACTIONS(4550), 1, anon_sym_defined, - ACTIONS(4537), 1, + ACTIONS(4633), 1, sym_number_literal, - ACTIONS(4351), 2, + ACTIONS(4552), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4353), 2, + ACTIONS(4554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4357), 5, + ACTIONS(4558), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1849), 7, + STATE(1932), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -155362,17 +157724,17 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [85251] = 3, + [86708] = 3, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4541), 5, + ACTIONS(4637), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(4539), 15, + ACTIONS(4635), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -155388,119 +157750,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [85280] = 10, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4343), 1, - sym_identifier, - ACTIONS(4347), 1, - anon_sym_LPAREN2, - ACTIONS(4349), 1, - anon_sym_defined, - ACTIONS(4543), 1, - sym_number_literal, - ACTIONS(4351), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(4353), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4357), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1842), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [85323] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3443), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3441), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [85354] = 10, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4343), 1, - sym_identifier, - ACTIONS(4347), 1, - anon_sym_LPAREN2, - ACTIONS(4349), 1, - anon_sym_defined, - ACTIONS(4545), 1, - sym_number_literal, - ACTIONS(4351), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(4353), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4357), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1840), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [85397] = 6, - ACTIONS(4395), 1, + [86737] = 5, + ACTIONS(4476), 1, anon_sym_SLASH, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4391), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4393), 2, + ACTIONS(4474), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4549), 4, + ACTIONS(4641), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(4547), 11, + ACTIONS(4639), 13, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -155510,17 +157778,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [85432] = 3, + [86770] = 3, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4553), 5, + ACTIONS(4641), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(4551), 15, + ACTIONS(4639), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -155536,481 +157804,279 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [85461] = 7, - ACTIONS(4395), 1, + [86799] = 13, + ACTIONS(4476), 1, anon_sym_SLASH, + ACTIONS(4480), 1, + anon_sym_AMP_AMP, + ACTIONS(4482), 1, + anon_sym_PIPE, + ACTIONS(4484), 1, + anon_sym_CARET, + ACTIONS(4486), 1, + anon_sym_AMP, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4391), 2, + ACTIONS(4472), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4393), 2, + ACTIONS(4474), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4413), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4549), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(4488), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4490), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4547), 9, + ACTIONS(4492), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4494), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4639), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [85498] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3451), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3449), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [85529] = 9, - ACTIONS(4395), 1, + [86848] = 12, + ACTIONS(4476), 1, anon_sym_SLASH, + ACTIONS(4482), 1, + anon_sym_PIPE, + ACTIONS(4484), 1, + anon_sym_CARET, + ACTIONS(4486), 1, + anon_sym_AMP, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4391), 2, + ACTIONS(4472), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4393), 2, + ACTIONS(4474), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4409), 2, + ACTIONS(4488), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4490), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4411), 2, + ACTIONS(4492), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4413), 2, + ACTIONS(4494), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4549), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(4547), 7, + ACTIONS(4639), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + [86895] = 12, + ACTIONS(4476), 1, + anon_sym_SLASH, + ACTIONS(4484), 1, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [85570] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3423), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3421), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [85601] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3580), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3578), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [85632] = 10, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4465), 1, - sym_identifier, - ACTIONS(4467), 1, - anon_sym_LPAREN2, - ACTIONS(4469), 1, - anon_sym_defined, - ACTIONS(4555), 1, - sym_number_literal, - ACTIONS(4471), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(4473), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4477), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1921), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [85675] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3576), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3574), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [85706] = 10, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4343), 1, - sym_identifier, - ACTIONS(4347), 1, - anon_sym_LPAREN2, - ACTIONS(4349), 1, - anon_sym_defined, - ACTIONS(4557), 1, - sym_number_literal, - ACTIONS(4351), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(4353), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4357), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1850), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [85749] = 3, + ACTIONS(4486), 1, + anon_sym_AMP, + ACTIONS(4641), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4561), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(4472), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4474), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4488), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4490), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4559), 15, + ACTIONS(4492), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4494), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4639), 4, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [86942] = 11, + ACTIONS(4476), 1, + anon_sym_SLASH, + ACTIONS(4486), 1, + anon_sym_AMP, + ACTIONS(4641), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4472), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(4474), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(4488), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(4490), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4492), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(4494), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [85778] = 10, - ACTIONS(4395), 1, + ACTIONS(4639), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [86987] = 10, + ACTIONS(4476), 1, anon_sym_SLASH, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4391), 2, + ACTIONS(4472), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4393), 2, + ACTIONS(4474), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4407), 2, + ACTIONS(4488), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4409), 2, + ACTIONS(4490), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4411), 2, + ACTIONS(4492), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4413), 2, + ACTIONS(4494), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4549), 2, + ACTIONS(4641), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(4547), 5, + ACTIONS(4639), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - [85821] = 11, - ACTIONS(4395), 1, + [87030] = 9, + ACTIONS(4476), 1, anon_sym_SLASH, - ACTIONS(4405), 1, - anon_sym_AMP, - ACTIONS(4549), 1, - anon_sym_PIPE, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4391), 2, + ACTIONS(4472), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4393), 2, + ACTIONS(4474), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4407), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4409), 2, + ACTIONS(4490), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4411), 2, + ACTIONS(4492), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4413), 2, + ACTIONS(4494), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4547), 5, + ACTIONS(4641), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4639), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - [85866] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3568), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3566), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [85897] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3431), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3429), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [85928] = 4, - ACTIONS(3), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [87071] = 7, + ACTIONS(4476), 1, + anon_sym_SLASH, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(2909), 2, - anon_sym_LPAREN2, + ACTIONS(4472), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4474), 2, anon_sym_STAR, - ACTIONS(2907), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [85959] = 6, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4567), 1, - anon_sym_LPAREN2, - STATE(1940), 1, - sym_preproc_argument_list, - ACTIONS(4565), 6, + anon_sym_PERCENT, + ACTIONS(4494), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4641), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4639), 9, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(4563), 12, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - [85994] = 4, - ACTIONS(3), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [87108] = 6, + ACTIONS(4476), 1, + anon_sym_SLASH, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(3552), 2, - anon_sym_LPAREN2, + ACTIONS(4472), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4474), 2, anon_sym_STAR, - ACTIONS(3550), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [86025] = 4, + anon_sym_PERCENT, + ACTIONS(4641), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4639), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [87143] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3486), 2, + ACTIONS(3549), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3484), 18, + ACTIONS(3547), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -156029,50 +158095,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [86056] = 12, - ACTIONS(4395), 1, - anon_sym_SLASH, - ACTIONS(4403), 1, - anon_sym_CARET, - ACTIONS(4405), 1, - anon_sym_AMP, - ACTIONS(4549), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(4391), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4393), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(4407), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4409), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4411), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4413), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4547), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [86103] = 4, + [87174] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3556), 2, + ACTIONS(3464), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3554), 18, + ACTIONS(3462), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -156091,15 +158122,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [86134] = 4, + [87205] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3564), 2, + ACTIONS(3444), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3562), 18, + ACTIONS(3442), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -156118,32 +158149,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [86165] = 10, + [87236] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4465), 1, + ACTIONS(4546), 1, sym_identifier, - ACTIONS(4467), 1, + ACTIONS(4548), 1, anon_sym_LPAREN2, - ACTIONS(4469), 1, + ACTIONS(4550), 1, anon_sym_defined, - ACTIONS(4569), 1, + ACTIONS(4643), 1, sym_number_literal, - ACTIONS(4471), 2, + ACTIONS(4552), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4473), 2, + ACTIONS(4554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4477), 5, + ACTIONS(4558), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1900), 7, + STATE(1925), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -156151,59 +158182,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [86208] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3560), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3558), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [86239] = 10, + [87279] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4465), 1, + ACTIONS(4546), 1, sym_identifier, - ACTIONS(4467), 1, + ACTIONS(4548), 1, anon_sym_LPAREN2, - ACTIONS(4469), 1, + ACTIONS(4550), 1, anon_sym_defined, - ACTIONS(4571), 1, + ACTIONS(4645), 1, sym_number_literal, - ACTIONS(4471), 2, + ACTIONS(4552), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4473), 2, + ACTIONS(4554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4477), 5, + ACTIONS(4558), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1888), 7, + STATE(1924), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -156211,32 +158215,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [86282] = 10, + [87322] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4465), 1, + ACTIONS(4546), 1, sym_identifier, - ACTIONS(4467), 1, + ACTIONS(4548), 1, anon_sym_LPAREN2, - ACTIONS(4469), 1, + ACTIONS(4550), 1, anon_sym_defined, - ACTIONS(4573), 1, + ACTIONS(4647), 1, sym_number_literal, - ACTIONS(4471), 2, + ACTIONS(4552), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4473), 2, + ACTIONS(4554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4477), 5, + ACTIONS(4558), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1894), 7, + STATE(1928), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -156244,171 +158248,50 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [86325] = 4, + [87365] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3544), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3542), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, + ACTIONS(4450), 1, sym_identifier, - [86356] = 7, - ACTIONS(4578), 1, - anon_sym_const, - STATE(1990), 1, - sym_alignas_qualifier, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(4581), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1865), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(4030), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4454), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(4575), 8, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [86393] = 3, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(4586), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4584), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [86422] = 12, - ACTIONS(4395), 1, - anon_sym_SLASH, - ACTIONS(4401), 1, - anon_sym_PIPE, - ACTIONS(4403), 1, - anon_sym_CARET, - ACTIONS(4405), 1, - anon_sym_AMP, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(4391), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4393), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(4407), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4409), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4411), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4413), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4547), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [86469] = 13, - ACTIONS(4395), 1, - anon_sym_SLASH, - ACTIONS(4399), 1, - anon_sym_AMP_AMP, - ACTIONS(4401), 1, - anon_sym_PIPE, - ACTIONS(4403), 1, - anon_sym_CARET, - ACTIONS(4405), 1, - anon_sym_AMP, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(4391), 2, + ACTIONS(4456), 1, + anon_sym_defined, + ACTIONS(4649), 1, + sym_number_literal, + ACTIONS(4458), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4460), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4393), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(4407), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4409), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4411), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4413), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4547), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [86518] = 3, + ACTIONS(4464), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1909), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [87408] = 3, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4549), 5, + ACTIONS(4653), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(4547), 15, + ACTIONS(4651), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -156424,32 +158307,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [86547] = 10, + [87437] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4465), 1, + ACTIONS(4546), 1, sym_identifier, - ACTIONS(4467), 1, + ACTIONS(4548), 1, anon_sym_LPAREN2, - ACTIONS(4469), 1, + ACTIONS(4550), 1, anon_sym_defined, - ACTIONS(4588), 1, + ACTIONS(4655), 1, sym_number_literal, - ACTIONS(4471), 2, + ACTIONS(4552), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4473), 2, + ACTIONS(4554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4477), 5, + ACTIONS(4558), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1930), 7, + STATE(1922), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -156457,97 +158340,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [86590] = 5, - ACTIONS(4395), 1, - anon_sym_SLASH, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(4393), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(4549), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4547), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [86623] = 14, - ACTIONS(4395), 1, - anon_sym_SLASH, - ACTIONS(4397), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4399), 1, - anon_sym_AMP_AMP, - ACTIONS(4401), 1, - anon_sym_PIPE, - ACTIONS(4403), 1, - anon_sym_CARET, - ACTIONS(4405), 1, - anon_sym_AMP, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(4391), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4393), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(4407), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4409), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4411), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4413), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4590), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [86674] = 10, + [87480] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4465), 1, + ACTIONS(4546), 1, sym_identifier, - ACTIONS(4467), 1, + ACTIONS(4548), 1, anon_sym_LPAREN2, - ACTIONS(4469), 1, + ACTIONS(4550), 1, anon_sym_defined, - ACTIONS(4592), 1, + ACTIONS(4657), 1, sym_number_literal, - ACTIONS(4471), 2, + ACTIONS(4552), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4473), 2, + ACTIONS(4554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4477), 5, + ACTIONS(4558), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1887), 7, + STATE(1912), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -156555,94 +158373,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [86717] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3447), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3445), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [86748] = 3, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(4596), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4594), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [86777] = 3, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(4600), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4598), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [86806] = 4, + [87523] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3419), 2, + ACTIONS(3440), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3417), 18, + ACTIONS(3438), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -156661,32 +158400,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [86837] = 10, + [87554] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4343), 1, + ACTIONS(4546), 1, sym_identifier, - ACTIONS(4347), 1, + ACTIONS(4548), 1, anon_sym_LPAREN2, - ACTIONS(4349), 1, + ACTIONS(4550), 1, anon_sym_defined, - ACTIONS(4602), 1, + ACTIONS(4659), 1, sym_number_literal, - ACTIONS(4351), 2, + ACTIONS(4552), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4353), 2, + ACTIONS(4554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4357), 5, + ACTIONS(4558), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1838), 7, + STATE(1964), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -156694,32 +158433,58 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [86880] = 10, + [87597] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4663), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4661), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [87626] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4465), 1, + ACTIONS(4546), 1, sym_identifier, - ACTIONS(4467), 1, + ACTIONS(4548), 1, anon_sym_LPAREN2, - ACTIONS(4469), 1, + ACTIONS(4550), 1, anon_sym_defined, - ACTIONS(4604), 1, + ACTIONS(4665), 1, sym_number_literal, - ACTIONS(4471), 2, + ACTIONS(4552), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4473), 2, + ACTIONS(4554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4477), 5, + ACTIONS(4558), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1896), 7, + STATE(1923), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -156727,32 +158492,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [86923] = 10, + [87669] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4465), 1, + ACTIONS(4546), 1, sym_identifier, - ACTIONS(4467), 1, + ACTIONS(4548), 1, anon_sym_LPAREN2, - ACTIONS(4469), 1, + ACTIONS(4550), 1, anon_sym_defined, - ACTIONS(4606), 1, + ACTIONS(4667), 1, sym_number_literal, - ACTIONS(4471), 2, + ACTIONS(4552), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4473), 2, + ACTIONS(4554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4477), 5, + ACTIONS(4558), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1917), 7, + STATE(1921), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -156760,154 +158525,101 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [86966] = 4, + [87712] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3415), 2, + ACTIONS(3133), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3413), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3131), 12, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, sym_identifier, - [86997] = 4, - ACTIONS(3), 1, + [87742] = 4, + ACTIONS(4639), 1, + anon_sym_LF, + ACTIONS(3), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(3411), 2, - anon_sym_LPAREN2, + ACTIONS(4669), 3, anon_sym_STAR, - ACTIONS(3409), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [87028] = 10, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4343), 1, - sym_identifier, - ACTIONS(4347), 1, - anon_sym_LPAREN2, - ACTIONS(4349), 1, - anon_sym_defined, - ACTIONS(4608), 1, - sym_number_literal, - ACTIONS(4351), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(4353), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4641), 15, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4357), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1903), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [87071] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3407), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3405), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [87102] = 4, - ACTIONS(3), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [87772] = 14, + ACTIONS(4476), 1, + anon_sym_SLASH, + ACTIONS(4478), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4480), 1, + anon_sym_AMP_AMP, + ACTIONS(4482), 1, + anon_sym_PIPE, + ACTIONS(4484), 1, + anon_sym_CARET, + ACTIONS(4486), 1, + anon_sym_AMP, + ACTIONS(4671), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(3470), 2, - anon_sym_LPAREN2, + ACTIONS(4472), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4474), 2, anon_sym_STAR, - ACTIONS(3468), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [87133] = 3, - ACTIONS(4547), 1, + anon_sym_PERCENT, + ACTIONS(4488), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4490), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4492), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4494), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [87822] = 3, + ACTIONS(3245), 1, anon_sym_LF, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4549), 18, + ACTIONS(3247), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -156926,80 +158638,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [87161] = 12, - ACTIONS(4610), 1, + [87850] = 13, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3827), 1, + sym_identifier, + ACTIONS(3829), 1, + anon_sym_LPAREN2, + ACTIONS(3831), 1, + anon_sym_STAR, + ACTIONS(3835), 1, + sym_primitive_type, + STATE(2040), 1, + sym_macro_modifier, + STATE(2303), 1, + sym__type_declarator, + STATE(3100), 1, + sym_ms_based_modifier, + ACTIONS(2134), 2, + anon_sym___init, + anon_sym___exit, + ACTIONS(3833), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [87898] = 12, + ACTIONS(4673), 1, anon_sym_LF, - ACTIONS(4616), 1, + ACTIONS(4677), 1, anon_sym_PIPE_PIPE, - ACTIONS(4618), 1, + ACTIONS(4679), 1, anon_sym_AMP_AMP, - ACTIONS(4620), 1, + ACTIONS(4681), 1, anon_sym_PIPE, - ACTIONS(4622), 1, + ACTIONS(4683), 1, anon_sym_CARET, - ACTIONS(4624), 1, + ACTIONS(4685), 1, anon_sym_AMP, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4612), 2, + ACTIONS(4675), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4626), 2, + ACTIONS(4687), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4630), 2, + ACTIONS(4691), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4614), 3, + ACTIONS(4669), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4628), 4, + ACTIONS(4689), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [87207] = 12, - ACTIONS(4616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4618), 1, - anon_sym_AMP_AMP, - ACTIONS(4620), 1, - anon_sym_PIPE, - ACTIONS(4622), 1, + [87944] = 10, + ACTIONS(4639), 1, + anon_sym_LF, + ACTIONS(4683), 1, anon_sym_CARET, - ACTIONS(4624), 1, + ACTIONS(4685), 1, anon_sym_AMP, - ACTIONS(4632), 1, - anon_sym_LF, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4612), 2, + ACTIONS(4675), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4626), 2, + ACTIONS(4687), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4630), 2, + ACTIONS(4691), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4614), 3, + ACTIONS(4641), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + ACTIONS(4669), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4628), 4, + ACTIONS(4689), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [87253] = 4, + [87986] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3219), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3221), 12, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + [88016] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3116), 7, + ACTIONS(3181), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -157007,7 +158778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(3118), 12, + ACTIONS(3183), 12, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -157020,170 +158791,356 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - [87283] = 3, - ACTIONS(4511), 1, + [88046] = 12, + ACTIONS(4677), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4679), 1, + anon_sym_AMP_AMP, + ACTIONS(4681), 1, + anon_sym_PIPE, + ACTIONS(4683), 1, + anon_sym_CARET, + ACTIONS(4685), 1, + anon_sym_AMP, + ACTIONS(4693), 1, anon_sym_LF, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4513), 18, + ACTIONS(4675), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(4687), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4691), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4669), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4689), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [88092] = 12, + ACTIONS(4677), 1, anon_sym_PIPE_PIPE, + ACTIONS(4679), 1, anon_sym_AMP_AMP, + ACTIONS(4681), 1, anon_sym_PIPE, + ACTIONS(4683), 1, anon_sym_CARET, + ACTIONS(4685), 1, anon_sym_AMP, + ACTIONS(4695), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4675), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4687), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(4691), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4669), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4689), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + [88138] = 9, + ACTIONS(4639), 1, + anon_sym_LF, + ACTIONS(4685), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4675), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4687), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4691), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [87311] = 12, - ACTIONS(4616), 1, + ACTIONS(4669), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4641), 4, anon_sym_PIPE_PIPE, - ACTIONS(4618), 1, anon_sym_AMP_AMP, - ACTIONS(4620), 1, anon_sym_PIPE, - ACTIONS(4622), 1, anon_sym_CARET, - ACTIONS(4624), 1, - anon_sym_AMP, - ACTIONS(4634), 1, + ACTIONS(4689), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [88178] = 12, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4697), 1, + anon_sym_COMMA, + ACTIONS(4699), 1, + anon_sym_LPAREN2, + ACTIONS(4703), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4705), 1, + anon_sym_LBRACK, + ACTIONS(4707), 1, + anon_sym_COLON, + STATE(2066), 1, + sym_parameter_list, + STATE(2186), 1, + sym_bitfield_clause, + STATE(2192), 1, + aux_sym__field_declaration_declarator_repeat1, + STATE(2047), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4701), 9, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [88224] = 11, + ACTIONS(4639), 1, anon_sym_LF, + ACTIONS(4681), 1, + anon_sym_PIPE, + ACTIONS(4683), 1, + anon_sym_CARET, + ACTIONS(4685), 1, + anon_sym_AMP, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4612), 2, + ACTIONS(4641), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4675), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4626), 2, + ACTIONS(4687), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4630), 2, + ACTIONS(4691), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4614), 3, + ACTIONS(4669), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4628), 4, + ACTIONS(4689), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [87357] = 12, - ACTIONS(4616), 1, + [88268] = 12, + ACTIONS(4677), 1, anon_sym_PIPE_PIPE, - ACTIONS(4618), 1, + ACTIONS(4679), 1, anon_sym_AMP_AMP, - ACTIONS(4620), 1, + ACTIONS(4681), 1, anon_sym_PIPE, - ACTIONS(4622), 1, + ACTIONS(4683), 1, anon_sym_CARET, - ACTIONS(4624), 1, + ACTIONS(4685), 1, anon_sym_AMP, - ACTIONS(4636), 1, + ACTIONS(4709), 1, anon_sym_LF, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4612), 2, + ACTIONS(4675), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4626), 2, + ACTIONS(4687), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4630), 2, + ACTIONS(4691), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4614), 3, + ACTIONS(4669), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4628), 4, + ACTIONS(4689), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [87403] = 3, - ACTIONS(4507), 1, + [88314] = 12, + ACTIONS(4677), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4679), 1, + anon_sym_AMP_AMP, + ACTIONS(4681), 1, + anon_sym_PIPE, + ACTIONS(4683), 1, + anon_sym_CARET, + ACTIONS(4685), 1, + anon_sym_AMP, + ACTIONS(4711), 1, anon_sym_LF, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4509), 18, + ACTIONS(4675), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(4687), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4691), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4669), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4689), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [88360] = 12, + ACTIONS(4677), 1, anon_sym_PIPE_PIPE, + ACTIONS(4679), 1, anon_sym_AMP_AMP, + ACTIONS(4681), 1, anon_sym_PIPE, + ACTIONS(4683), 1, anon_sym_CARET, + ACTIONS(4685), 1, anon_sym_AMP, + ACTIONS(4713), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4675), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4687), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(4691), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4669), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4689), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + [88406] = 12, + ACTIONS(4677), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4679), 1, + anon_sym_AMP_AMP, + ACTIONS(4681), 1, + anon_sym_PIPE, + ACTIONS(4683), 1, + anon_sym_CARET, + ACTIONS(4685), 1, + anon_sym_AMP, + ACTIONS(4715), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4675), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4687), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4691), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [87431] = 12, - ACTIONS(4616), 1, + ACTIONS(4669), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4689), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [88452] = 12, + ACTIONS(4677), 1, anon_sym_PIPE_PIPE, - ACTIONS(4618), 1, + ACTIONS(4679), 1, anon_sym_AMP_AMP, - ACTIONS(4620), 1, + ACTIONS(4681), 1, anon_sym_PIPE, - ACTIONS(4622), 1, + ACTIONS(4683), 1, anon_sym_CARET, - ACTIONS(4624), 1, + ACTIONS(4685), 1, anon_sym_AMP, - ACTIONS(4638), 1, + ACTIONS(4717), 1, anon_sym_LF, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4612), 2, + ACTIONS(4675), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4626), 2, + ACTIONS(4687), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4630), 2, + ACTIONS(4691), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4614), 3, + ACTIONS(4669), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4628), 4, + ACTIONS(4689), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [87477] = 3, - ACTIONS(4584), 1, + [88498] = 5, + ACTIONS(4639), 1, anon_sym_LF, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4586), 18, + ACTIONS(4675), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(4669), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4641), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -157197,166 +159154,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [87505] = 12, - ACTIONS(4616), 1, + [88530] = 12, + ACTIONS(4639), 1, + anon_sym_LF, + ACTIONS(4641), 1, anon_sym_PIPE_PIPE, - ACTIONS(4618), 1, + ACTIONS(4679), 1, anon_sym_AMP_AMP, - ACTIONS(4620), 1, + ACTIONS(4681), 1, anon_sym_PIPE, - ACTIONS(4622), 1, + ACTIONS(4683), 1, anon_sym_CARET, - ACTIONS(4624), 1, + ACTIONS(4685), 1, anon_sym_AMP, - ACTIONS(4640), 1, - anon_sym_LF, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4612), 2, + ACTIONS(4675), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4626), 2, + ACTIONS(4687), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4630), 2, + ACTIONS(4691), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4614), 3, + ACTIONS(4669), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4628), 4, + ACTIONS(4689), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [87551] = 12, - ACTIONS(4616), 1, + [88576] = 12, + ACTIONS(4677), 1, anon_sym_PIPE_PIPE, - ACTIONS(4618), 1, + ACTIONS(4679), 1, anon_sym_AMP_AMP, - ACTIONS(4620), 1, + ACTIONS(4681), 1, anon_sym_PIPE, - ACTIONS(4622), 1, + ACTIONS(4683), 1, anon_sym_CARET, - ACTIONS(4624), 1, + ACTIONS(4685), 1, anon_sym_AMP, - ACTIONS(4642), 1, + ACTIONS(4719), 1, anon_sym_LF, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4612), 2, + ACTIONS(4675), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4626), 2, + ACTIONS(4687), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4630), 2, + ACTIONS(4691), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4614), 3, + ACTIONS(4669), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4628), 4, + ACTIONS(4689), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [87597] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2662), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(2660), 12, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - [87627] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4511), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(4513), 12, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - [87657] = 12, - ACTIONS(4616), 1, + [88622] = 12, + ACTIONS(4677), 1, anon_sym_PIPE_PIPE, - ACTIONS(4618), 1, + ACTIONS(4679), 1, anon_sym_AMP_AMP, - ACTIONS(4620), 1, + ACTIONS(4681), 1, anon_sym_PIPE, - ACTIONS(4622), 1, + ACTIONS(4683), 1, anon_sym_CARET, - ACTIONS(4624), 1, + ACTIONS(4685), 1, anon_sym_AMP, - ACTIONS(4644), 1, + ACTIONS(4721), 1, anon_sym_LF, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4612), 2, + ACTIONS(4675), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4626), 2, + ACTIONS(4687), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4630), 2, + ACTIONS(4691), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4614), 3, + ACTIONS(4669), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4628), 4, + ACTIONS(4689), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [87703] = 4, + [88668] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4584), 7, + ACTIONS(4725), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -157364,7 +159269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(4586), 12, + ACTIONS(4723), 12, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -157377,12 +159282,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - [87733] = 4, + [88698] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3200), 7, + ACTIONS(3125), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -157390,7 +159295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(3202), 12, + ACTIONS(3123), 12, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -157403,49 +159308,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - [87763] = 14, - ACTIONS(4395), 1, - anon_sym_SLASH, - ACTIONS(4397), 1, + [88728] = 12, + ACTIONS(4677), 1, anon_sym_PIPE_PIPE, - ACTIONS(4399), 1, + ACTIONS(4679), 1, anon_sym_AMP_AMP, - ACTIONS(4401), 1, + ACTIONS(4681), 1, anon_sym_PIPE, - ACTIONS(4403), 1, + ACTIONS(4683), 1, anon_sym_CARET, - ACTIONS(4405), 1, + ACTIONS(4685), 1, anon_sym_AMP, - ACTIONS(4646), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, + ACTIONS(4727), 1, + anon_sym_LF, + ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4391), 2, + ACTIONS(4675), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4393), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(4407), 2, + ACTIONS(4687), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4409), 2, + ACTIONS(4691), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4669), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4689), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(4411), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4413), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [87813] = 3, - ACTIONS(4594), 1, + anon_sym_LT, + [88774] = 3, + ACTIONS(4651), 1, anon_sym_LF, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4596), 18, + ACTIONS(4653), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -157464,73 +159367,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [87841] = 13, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3790), 1, - sym_identifier, - ACTIONS(3792), 1, - anon_sym_LPAREN2, - ACTIONS(3794), 1, - anon_sym_STAR, - ACTIONS(3798), 1, - sym_primitive_type, - STATE(2020), 1, - sym_macro_modifier, - STATE(2282), 1, - sym__type_declarator, - STATE(2971), 1, - sym_ms_based_modifier, - ACTIONS(2111), 2, - anon_sym___init, - anon_sym___exit, - ACTIONS(3796), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2451), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [87889] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3025), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(3023), 12, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - [87919] = 4, + [88802] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3104), 7, + ACTIONS(3082), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -157538,7 +159380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(3102), 12, + ACTIONS(3080), 12, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -157551,64 +159393,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - [87949] = 4, - ACTIONS(4547), 1, + [88832] = 3, + ACTIONS(4661), 1, anon_sym_LF, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4614), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4549), 15, + ACTIONS(4663), 18, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [87979] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3212), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(3214), 12, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - [88009] = 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [88860] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3204), 7, + ACTIONS(4621), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -157616,7 +159431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(3206), 12, + ACTIONS(4623), 12, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -157629,12 +159444,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - [88039] = 4, + [88890] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3037), 7, + ACTIONS(3086), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -157642,7 +159457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(3035), 12, + ACTIONS(3084), 12, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -157655,12 +159470,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - [88069] = 4, + [88920] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3100), 7, + ACTIONS(3265), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -157668,7 +159483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(3098), 12, + ACTIONS(3267), 12, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -157681,82 +159496,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - [88099] = 14, - ACTIONS(4395), 1, - anon_sym_SLASH, - ACTIONS(4397), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4399), 1, - anon_sym_AMP_AMP, - ACTIONS(4401), 1, - anon_sym_PIPE, - ACTIONS(4403), 1, - anon_sym_CARET, - ACTIONS(4405), 1, - anon_sym_AMP, - ACTIONS(4648), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(4391), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4393), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(4407), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4409), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4411), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4413), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [88149] = 12, + [88950] = 13, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4650), 1, - anon_sym_COMMA, - ACTIONS(4652), 1, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3827), 1, + sym_identifier, + ACTIONS(3829), 1, anon_sym_LPAREN2, - ACTIONS(4656), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4658), 1, - anon_sym_LBRACK, - ACTIONS(4660), 1, - anon_sym_COLON, - STATE(2049), 1, - sym_parameter_list, - STATE(2142), 1, - sym_bitfield_clause, - STATE(2143), 1, - aux_sym__field_declaration_declarator_repeat1, - STATE(2024), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(4654), 9, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [88195] = 4, + ACTIONS(3831), 1, + anon_sym_STAR, + ACTIONS(3835), 1, + sym_primitive_type, + STATE(2048), 1, + sym_macro_modifier, + STATE(2317), 1, + sym__type_declarator, + STATE(3100), 1, + sym_ms_based_modifier, + ACTIONS(2134), 2, + anon_sym___init, + anon_sym___exit, + ACTIONS(3833), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [88998] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2658), 7, + ACTIONS(3257), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -157764,7 +159544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(2656), 12, + ACTIONS(3259), 12, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -157777,12 +159557,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - [88225] = 4, + [89028] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3142), 7, + ACTIONS(3241), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -157790,7 +159570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(3144), 12, + ACTIONS(3243), 12, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -157803,13 +159583,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - [88255] = 3, - ACTIONS(4539), 1, + [89058] = 3, + ACTIONS(4639), 1, anon_sym_LF, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4541), 18, + ACTIONS(4641), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -157828,45 +159608,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [88283] = 11, - ACTIONS(4547), 1, + [89086] = 3, + ACTIONS(4580), 1, anon_sym_LF, - ACTIONS(4620), 1, - anon_sym_PIPE, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4624), 1, - anon_sym_AMP, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4549), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4612), 2, + ACTIONS(4582), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4626), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4630), 2, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4614), 3, + [89114] = 3, + ACTIONS(4528), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4530), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4628), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [88327] = 4, + anon_sym_LT_LT, + anon_sym_GT_GT, + [89142] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3162), 7, + ACTIONS(3135), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -157874,7 +159671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(3164), 12, + ACTIONS(3137), 12, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -157887,18 +159684,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - [88357] = 3, - ACTIONS(4551), 1, + [89172] = 6, + ACTIONS(4639), 1, anon_sym_LF, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4553), 18, + ACTIONS(4675), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(4691), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4669), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4641), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -157910,74 +159712,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [88385] = 12, - ACTIONS(4616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4618), 1, - anon_sym_AMP_AMP, - ACTIONS(4620), 1, - anon_sym_PIPE, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4624), 1, - anon_sym_AMP, - ACTIONS(4662), 1, - anon_sym_LF, - ACTIONS(3), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(4612), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4626), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4614), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4628), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [88431] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2654), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(2652), 12, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - [88461] = 4, + [89206] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3182), 7, + ACTIONS(4528), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -157985,7 +159725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(3184), 12, + ACTIONS(4530), 12, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -157998,112 +159738,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - [88491] = 12, - ACTIONS(4616), 1, + [89236] = 12, + ACTIONS(4677), 1, anon_sym_PIPE_PIPE, - ACTIONS(4618), 1, + ACTIONS(4679), 1, anon_sym_AMP_AMP, - ACTIONS(4620), 1, + ACTIONS(4681), 1, anon_sym_PIPE, - ACTIONS(4622), 1, + ACTIONS(4683), 1, anon_sym_CARET, - ACTIONS(4624), 1, + ACTIONS(4685), 1, anon_sym_AMP, - ACTIONS(4664), 1, + ACTIONS(4729), 1, anon_sym_LF, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4612), 2, + ACTIONS(4675), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4626), 2, + ACTIONS(4687), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4630), 2, + ACTIONS(4691), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4614), 3, + ACTIONS(4669), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4628), 4, + ACTIONS(4689), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [88537] = 10, - ACTIONS(4547), 1, + [89282] = 7, + ACTIONS(4639), 1, anon_sym_LF, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4624), 1, - anon_sym_AMP, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4612), 2, + ACTIONS(4675), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4626), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, + ACTIONS(4691), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4549), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(4614), 3, + ACTIONS(4669), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4628), 4, + ACTIONS(4689), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [88579] = 12, - ACTIONS(4547), 1, - anon_sym_LF, - ACTIONS(4549), 1, + ACTIONS(4641), 7, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [89318] = 12, + ACTIONS(4677), 1, anon_sym_PIPE_PIPE, - ACTIONS(4618), 1, + ACTIONS(4679), 1, anon_sym_AMP_AMP, - ACTIONS(4620), 1, + ACTIONS(4681), 1, anon_sym_PIPE, - ACTIONS(4622), 1, + ACTIONS(4683), 1, anon_sym_CARET, - ACTIONS(4624), 1, + ACTIONS(4685), 1, anon_sym_AMP, + ACTIONS(4731), 1, + anon_sym_LF, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4612), 2, + ACTIONS(4675), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4626), 2, + ACTIONS(4687), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4630), 2, + ACTIONS(4691), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4614), 3, + ACTIONS(4669), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4628), 4, + ACTIONS(4689), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [88625] = 4, + [89364] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4551), 7, + ACTIONS(3261), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -158111,7 +159848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(4553), 12, + ACTIONS(3263), 12, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -158124,13 +159861,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - [88655] = 3, - ACTIONS(3252), 1, + [89394] = 14, + ACTIONS(4476), 1, + anon_sym_SLASH, + ACTIONS(4478), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4480), 1, + anon_sym_AMP_AMP, + ACTIONS(4482), 1, + anon_sym_PIPE, + ACTIONS(4484), 1, + anon_sym_CARET, + ACTIONS(4486), 1, + anon_sym_AMP, + ACTIONS(4733), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4472), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4474), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4488), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4490), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4492), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4494), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [89444] = 3, + ACTIONS(4576), 1, anon_sym_LF, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3254), 18, + ACTIONS(4578), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -158149,12 +159922,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [88683] = 4, + [89472] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3120), 7, + ACTIONS(4651), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -158162,7 +159935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(3122), 12, + ACTIONS(4653), 12, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -158175,137 +159948,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - [88713] = 12, - ACTIONS(4616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4618), 1, - anon_sym_AMP_AMP, - ACTIONS(4620), 1, - anon_sym_PIPE, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4624), 1, - anon_sym_AMP, - ACTIONS(4666), 1, + [89502] = 3, + ACTIONS(4540), 1, anon_sym_LF, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4612), 2, + ACTIONS(4542), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4626), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4614), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4628), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [88759] = 9, - ACTIONS(4547), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [89530] = 3, + ACTIONS(4635), 1, anon_sym_LF, - ACTIONS(4624), 1, - anon_sym_AMP, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4612), 2, + ACTIONS(4637), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4626), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4614), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4549), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(4628), 4, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [88799] = 13, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3790), 1, - sym_identifier, - ACTIONS(3792), 1, - anon_sym_LPAREN2, - ACTIONS(3794), 1, - anon_sym_STAR, - ACTIONS(3798), 1, - sym_primitive_type, - STATE(2023), 1, - sym_macro_modifier, - STATE(2288), 1, - sym__type_declarator, - STATE(2971), 1, - sym_ms_based_modifier, - ACTIONS(2111), 2, - anon_sym___init, - anon_sym___exit, - ACTIONS(3796), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2451), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [88847] = 3, - ACTIONS(4559), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [89558] = 8, + ACTIONS(4639), 1, anon_sym_LF, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4561), 18, + ACTIONS(4675), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(4687), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4691), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4669), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4689), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4641), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [88875] = 4, + [89596] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3128), 7, + ACTIONS(2977), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -158313,7 +160041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(3130), 12, + ACTIONS(2657), 12, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -158326,46 +160054,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - [88905] = 12, - ACTIONS(4616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4618), 1, - anon_sym_AMP_AMP, - ACTIONS(4620), 1, - anon_sym_PIPE, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4624), 1, - anon_sym_AMP, - ACTIONS(4668), 1, - anon_sym_LF, - ACTIONS(3), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(4612), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4626), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4614), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4628), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [88951] = 4, + [89626] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3220), 7, + ACTIONS(4540), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -158373,7 +160067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(3222), 12, + ACTIONS(4542), 12, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -158386,74 +160080,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - [88981] = 5, - ACTIONS(4547), 1, - anon_sym_LF, - ACTIONS(3), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(4612), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4614), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4549), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [89013] = 12, - ACTIONS(4616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4618), 1, - anon_sym_AMP_AMP, - ACTIONS(4620), 1, - anon_sym_PIPE, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4624), 1, - anon_sym_AMP, - ACTIONS(4670), 1, - anon_sym_LF, - ACTIONS(3), 2, + [89656] = 4, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4612), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4626), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4614), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4628), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [89059] = 3, - ACTIONS(4598), 1, + ACTIONS(3171), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3173), 12, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + [89686] = 3, + ACTIONS(4621), 1, anon_sym_LF, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4600), 18, + ACTIONS(4623), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -158472,12 +160131,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [89087] = 4, + [89714] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4559), 7, + ACTIONS(3185), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -158485,7 +160144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(4561), 12, + ACTIONS(3187), 12, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -158498,139 +160157,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - [89117] = 6, - ACTIONS(4547), 1, - anon_sym_LF, - ACTIONS(3), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(4612), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4630), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4614), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4549), 11, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [89151] = 7, - ACTIONS(4547), 1, - anon_sym_LF, - ACTIONS(3), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(4612), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4630), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4614), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4628), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4549), 7, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [89187] = 8, - ACTIONS(4547), 1, - anon_sym_LF, - ACTIONS(3), 2, + [89744] = 4, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4612), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4626), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4614), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4628), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4549), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - [89225] = 12, - ACTIONS(4616), 1, + ACTIONS(3189), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3191), 12, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + [89774] = 12, + ACTIONS(4677), 1, anon_sym_PIPE_PIPE, - ACTIONS(4618), 1, + ACTIONS(4679), 1, anon_sym_AMP_AMP, - ACTIONS(4620), 1, + ACTIONS(4681), 1, anon_sym_PIPE, - ACTIONS(4622), 1, + ACTIONS(4683), 1, anon_sym_CARET, - ACTIONS(4624), 1, + ACTIONS(4685), 1, anon_sym_AMP, - ACTIONS(4672), 1, + ACTIONS(4735), 1, anon_sym_LF, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4612), 2, + ACTIONS(4675), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4626), 2, + ACTIONS(4687), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4630), 2, + ACTIONS(4691), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4614), 3, + ACTIONS(4669), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4628), 4, + ACTIONS(4689), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [89271] = 4, + [89820] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3098), 1, + ACTIONS(3013), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(2669), 12, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + [89850] = 3, + ACTIONS(3080), 1, anon_sym_const, - ACTIONS(3100), 17, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3082), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_SEMI, anon_sym___extension__, anon_sym_LBRACK, anon_sym_constexpr, @@ -158643,55 +160267,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - anon_sym___aligned, - [89300] = 13, + [89877] = 13, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(2107), 1, + ACTIONS(2130), 1, anon_sym_LPAREN2, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_STAR, - ACTIONS(3650), 1, + ACTIONS(3681), 1, sym_identifier, - ACTIONS(3658), 1, + ACTIONS(3689), 1, anon_sym_LBRACK, - STATE(2273), 1, + STATE(2319), 1, sym__declarator, - STATE(2375), 1, + STATE(2397), 1, sym_parameter_list, - STATE(2409), 1, + STATE(2493), 1, sym__abstract_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2380), 4, + STATE(2396), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(2209), 5, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [89347] = 5, - ACTIONS(3), 1, + [89924] = 3, + ACTIONS(3131), 1, + anon_sym_const, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(3361), 1, - anon_sym_const, - ACTIONS(4674), 1, - anon_sym___aligned, - ACTIONS(3363), 16, + ACTIONS(3133), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_SEMI, anon_sym___extension__, anon_sym_LBRACK, anon_sym_constexpr, @@ -158704,29 +160325,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [89378] = 10, + [89951] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4652), 1, - anon_sym_LPAREN2, - ACTIONS(4656), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4658), 1, + ACTIONS(4532), 2, anon_sym_LBRACK, - ACTIONS(4660), 1, - anon_sym_COLON, - STATE(2049), 1, - sym_parameter_list, - STATE(2196), 1, - sym_bitfield_clause, - STATE(2024), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(4676), 10, + sym_identifier, + ACTIONS(4737), 2, anon_sym_COMMA, anon_sym_SEMI, + ACTIONS(4742), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(4534), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(4739), 8, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -158735,18 +160353,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [89419] = 3, - ACTIONS(3035), 1, - anon_sym_const, - ACTIONS(5), 2, + [89986] = 5, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3037), 17, + ACTIONS(3393), 1, + anon_sym_const, + ACTIONS(4744), 1, + anon_sym___aligned, + ACTIONS(3395), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym___extension__, anon_sym_LBRACK, anon_sym_constexpr, @@ -158759,16 +160379,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [89446] = 5, + [90017] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3285), 1, + ACTIONS(3289), 1, anon_sym_const, - ACTIONS(4678), 1, + ACTIONS(4746), 1, anon_sym___aligned, - ACTIONS(3287), 16, + ACTIONS(3291), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -158785,16 +160405,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [89477] = 5, + [90048] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3379), 1, + ACTIONS(3418), 1, anon_sym_const, - ACTIONS(4680), 1, + ACTIONS(4748), 1, anon_sym___aligned, - ACTIONS(3381), 16, + ACTIONS(3420), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -158811,16 +160431,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [89508] = 5, + [90079] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3340), 1, anon_sym_const, - ACTIONS(4682), 1, + ACTIONS(4750), 1, anon_sym___aligned, - ACTIONS(3262), 16, + ACTIONS(3342), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -158837,14 +160457,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [89539] = 4, + [90110] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3102), 1, + ACTIONS(3314), 1, anon_sym_const, - ACTIONS(3104), 17, + ACTIONS(4752), 1, + anon_sym___aligned, + ACTIONS(3316), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -158861,15 +160483,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - anon_sym___aligned, - [89568] = 4, + [90141] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3035), 1, + ACTIONS(3299), 1, anon_sym_const, - ACTIONS(3037), 17, + ACTIONS(4754), 1, + anon_sym___aligned, + ACTIONS(3301), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -158886,19 +160509,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - anon_sym___aligned, - [89597] = 3, - ACTIONS(3098), 1, - anon_sym_const, - ACTIONS(5), 2, + [90172] = 5, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3100), 17, + ACTIONS(3305), 1, + anon_sym_const, + ACTIONS(4756), 1, + anon_sym___aligned, + ACTIONS(3307), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym___extension__, anon_sym_LBRACK, anon_sym_constexpr, @@ -158911,44 +160535,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [89624] = 7, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4563), 2, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(4684), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(4689), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(4565), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(4686), 8, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [89659] = 5, + [90203] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3336), 1, + ACTIONS(3353), 1, anon_sym_const, - ACTIONS(4691), 1, + ACTIONS(4758), 1, anon_sym___aligned, - ACTIONS(3338), 16, + ACTIONS(3355), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -158965,13 +160561,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [89690] = 3, - ACTIONS(3102), 1, + [90234] = 3, + ACTIONS(3123), 1, anon_sym_const, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3104), 17, + ACTIONS(3125), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -158989,18 +160585,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [89717] = 4, - ACTIONS(3), 1, + [90261] = 3, + ACTIONS(3084), 1, + anon_sym_const, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(3023), 1, - anon_sym_const, - ACTIONS(3025), 17, + ACTIONS(3086), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_SEMI, anon_sym___extension__, anon_sym_LBRACK, anon_sym_constexpr, @@ -159013,17 +160609,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - anon_sym___aligned, - [89746] = 5, + [90288] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3270), 1, + ACTIONS(3123), 1, anon_sym_const, - ACTIONS(4693), 1, - anon_sym___aligned, - ACTIONS(3272), 16, + ACTIONS(3125), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -159040,16 +160633,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [89777] = 5, + anon_sym___aligned, + [90317] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3367), 1, + ACTIONS(3131), 1, anon_sym_const, - ACTIONS(4695), 1, - anon_sym___aligned, - ACTIONS(3369), 16, + ACTIONS(3133), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -159066,50 +160658,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [89808] = 13, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(2107), 1, - anon_sym_LPAREN2, - ACTIONS(2109), 1, - anon_sym_STAR, - ACTIONS(3650), 1, - sym_identifier, - ACTIONS(3658), 1, - anon_sym_LBRACK, - STATE(2277), 1, - sym__declarator, - STATE(2375), 1, - sym_parameter_list, - STATE(2439), 1, - sym__abstract_declarator, - STATE(3337), 1, - sym_ms_based_modifier, - STATE(2380), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(2209), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [89855] = 5, + anon_sym___aligned, + [90346] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3385), 1, + ACTIONS(3399), 1, anon_sym_const, - ACTIONS(4697), 1, + ACTIONS(4760), 1, anon_sym___aligned, - ACTIONS(3387), 16, + ACTIONS(3401), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -159126,44 +160685,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [89886] = 5, + [90377] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3373), 1, - anon_sym_const, ACTIONS(4699), 1, - anon_sym___aligned, - ACTIONS(3375), 16, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym___extension__, + ACTIONS(4703), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4705), 1, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, + ACTIONS(4707), 1, anon_sym_COLON, - [89917] = 3, - ACTIONS(3023), 1, - anon_sym_const, - ACTIONS(5), 2, + STATE(2066), 1, + sym_parameter_list, + STATE(2219), 1, + sym_bitfield_clause, + STATE(2047), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4762), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [90418] = 4, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3025), 17, + ACTIONS(3084), 1, + anon_sym_const, + ACTIONS(3086), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym___extension__, anon_sym_LBRACK, anon_sym_constexpr, @@ -159176,13 +160740,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [89944] = 3, - ACTIONS(3546), 1, - anon_sym_const, - ACTIONS(5), 2, + anon_sym___aligned, + [90447] = 4, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3548), 16, + ACTIONS(3080), 1, + anon_sym_const, + ACTIONS(3082), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -159199,36 +160765,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [89970] = 3, - ACTIONS(3488), 1, - anon_sym_const, - ACTIONS(5), 2, + anon_sym___aligned, + [90476] = 13, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3490), 16, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(2130), 1, anon_sym_LPAREN2, + ACTIONS(2132), 1, anon_sym_STAR, - anon_sym___extension__, + ACTIONS(3681), 1, + sym_identifier, + ACTIONS(3689), 1, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_COLON, - [89996] = 3, - ACTIONS(3562), 1, + STATE(2301), 1, + sym__declarator, + STATE(2397), 1, + sym_parameter_list, + STATE(2445), 1, + sym__abstract_declarator, + STATE(3453), 1, + sym_ms_based_modifier, + STATE(2396), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(2220), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [90523] = 3, + ACTIONS(3555), 1, anon_sym_const, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3564), 16, + ACTIONS(3557), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -159245,13 +160823,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [90022] = 3, - ACTIONS(3449), 1, + [90549] = 3, + ACTIONS(3539), 1, anon_sym_const, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3451), 16, + ACTIONS(3541), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -159268,13 +160846,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [90048] = 3, - ACTIONS(3558), 1, + [90575] = 3, + ACTIONS(3495), 1, anon_sym_const, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3560), 16, + ACTIONS(3497), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -159291,13 +160869,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [90074] = 3, - ACTIONS(3425), 1, + [90601] = 3, + ACTIONS(3499), 1, anon_sym_const, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3427), 16, + ACTIONS(3501), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -159314,45 +160892,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [90100] = 12, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3800), 1, - sym_identifier, - ACTIONS(3802), 1, - anon_sym_LPAREN2, - ACTIONS(3804), 1, - anon_sym_STAR, - ACTIONS(3808), 1, - sym_primitive_type, - STATE(1999), 1, - sym__type_declarator, - STATE(2188), 1, - sym__type_definition_declarators, - STATE(3321), 1, - sym_ms_based_modifier, - ACTIONS(3806), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2089), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [90144] = 3, - ACTIONS(3566), 1, + [90627] = 3, + ACTIONS(3503), 1, anon_sym_const, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3568), 16, + ACTIONS(3505), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -159369,77 +160915,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [90170] = 12, + [90653] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3800), 1, - sym_identifier, - ACTIONS(3802), 1, - anon_sym_LPAREN2, - ACTIONS(3804), 1, - anon_sym_STAR, - ACTIONS(3808), 1, - sym_primitive_type, - STATE(1999), 1, - sym__type_declarator, - STATE(2187), 1, - sym__type_definition_declarators, - STATE(3321), 1, - sym_ms_based_modifier, - ACTIONS(3806), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2089), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [90214] = 12, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3800), 1, - sym_identifier, - ACTIONS(3802), 1, + ACTIONS(4699), 1, anon_sym_LPAREN2, - ACTIONS(3804), 1, - anon_sym_STAR, - ACTIONS(3808), 1, - sym_primitive_type, - STATE(1999), 1, - sym__type_declarator, - STATE(2136), 1, - sym__type_definition_declarators, - STATE(3321), 1, - sym_ms_based_modifier, - ACTIONS(3806), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2089), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [90258] = 3, - ACTIONS(3468), 1, + ACTIONS(4703), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4705), 1, + anon_sym_LBRACK, + STATE(2066), 1, + sym_parameter_list, + STATE(2047), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4764), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_COLON, + [90689] = 3, + ACTIONS(3583), 1, anon_sym_const, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3470), 16, + ACTIONS(3585), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -159456,109 +160966,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [90284] = 12, + [90715] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3800), 1, + ACTIONS(3817), 1, sym_identifier, - ACTIONS(3802), 1, + ACTIONS(3819), 1, anon_sym_LPAREN2, - ACTIONS(3804), 1, + ACTIONS(3821), 1, anon_sym_STAR, - ACTIONS(3808), 1, + ACTIONS(3825), 1, sym_primitive_type, - STATE(1999), 1, + STATE(2013), 1, sym__type_declarator, - STATE(2159), 1, + STATE(2197), 1, sym__type_definition_declarators, - STATE(3321), 1, + STATE(3430), 1, sym_ms_based_modifier, - ACTIONS(3806), 4, + ACTIONS(3823), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2089), 5, + STATE(2105), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [90328] = 12, + [90759] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3800), 1, + ACTIONS(3817), 1, sym_identifier, - ACTIONS(3802), 1, + ACTIONS(3819), 1, anon_sym_LPAREN2, - ACTIONS(3804), 1, + ACTIONS(3821), 1, anon_sym_STAR, - ACTIONS(3808), 1, + ACTIONS(3825), 1, sym_primitive_type, - STATE(1999), 1, + STATE(2013), 1, sym__type_declarator, - STATE(2173), 1, + STATE(2208), 1, sym__type_definition_declarators, - STATE(3321), 1, + STATE(3430), 1, sym_ms_based_modifier, - ACTIONS(3806), 4, + ACTIONS(3823), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2089), 5, + STATE(2105), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [90372] = 12, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3800), 1, - sym_identifier, - ACTIONS(3802), 1, - anon_sym_LPAREN2, - ACTIONS(3804), 1, - anon_sym_STAR, - ACTIONS(3808), 1, - sym_primitive_type, - STATE(1999), 1, - sym__type_declarator, - STATE(2163), 1, - sym__type_definition_declarators, - STATE(3321), 1, - sym_ms_based_modifier, - ACTIONS(3806), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2089), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [90416] = 3, - ACTIONS(3570), 1, + [90803] = 3, + ACTIONS(3434), 1, anon_sym_const, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3572), 16, + ACTIONS(3436), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -159575,13 +161053,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [90442] = 3, - ACTIONS(3504), 1, + [90829] = 3, + ACTIONS(3462), 1, anon_sym_const, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3506), 16, + ACTIONS(3464), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -159598,36 +161076,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [90468] = 3, - ACTIONS(3429), 1, - anon_sym_const, - ACTIONS(5), 2, + [90855] = 12, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3431), 16, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3817), 1, + sym_identifier, + ACTIONS(3819), 1, anon_sym_LPAREN2, + ACTIONS(3821), 1, anon_sym_STAR, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_COLON, - [90494] = 3, - ACTIONS(3554), 1, + ACTIONS(3825), 1, + sym_primitive_type, + STATE(2013), 1, + sym__type_declarator, + STATE(2211), 1, + sym__type_definition_declarators, + STATE(3430), 1, + sym_ms_based_modifier, + ACTIONS(3823), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2105), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [90899] = 3, + ACTIONS(3442), 1, anon_sym_const, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3556), 16, + ACTIONS(3444), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -159644,13 +161131,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [90520] = 3, - ACTIONS(2907), 1, + [90925] = 3, + ACTIONS(2970), 1, anon_sym_const, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(2909), 16, + ACTIONS(2972), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -159667,23 +161154,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [90546] = 8, + [90951] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4652), 1, + ACTIONS(4699), 1, anon_sym_LPAREN2, - ACTIONS(4656), 1, + ACTIONS(4703), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4658), 1, + ACTIONS(4705), 1, anon_sym_LBRACK, - STATE(2049), 1, + STATE(2066), 1, sym_parameter_list, - STATE(2024), 2, + STATE(2047), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4701), 11, + ACTIONS(4766), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, @@ -159695,45 +161182,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym_COLON, - [90582] = 12, + [90987] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3800), 1, - sym_identifier, - ACTIONS(3802), 1, + ACTIONS(4699), 1, anon_sym_LPAREN2, - ACTIONS(3804), 1, - anon_sym_STAR, - ACTIONS(3808), 1, - sym_primitive_type, - STATE(1999), 1, - sym__type_declarator, - STATE(2167), 1, - sym__type_definition_declarators, - STATE(3321), 1, - sym_ms_based_modifier, - ACTIONS(3806), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2089), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [90626] = 3, - ACTIONS(3574), 1, + ACTIONS(4703), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4705), 1, + anon_sym_LBRACK, + STATE(2066), 1, + sym_parameter_list, + STATE(2047), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4768), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_COLON, + [91023] = 3, + ACTIONS(3438), 1, anon_sym_const, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3576), 16, + ACTIONS(3440), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -159750,13 +161233,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [90652] = 3, - ACTIONS(3445), 1, + [91049] = 3, + ACTIONS(3515), 1, anon_sym_const, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3447), 16, + ACTIONS(3517), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -159773,13 +161256,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [90678] = 3, - ACTIONS(3578), 1, + [91075] = 3, + ACTIONS(3519), 1, anon_sym_const, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3580), 16, + ACTIONS(3521), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -159796,13 +161279,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [90704] = 3, - ACTIONS(2960), 1, + [91101] = 12, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3817), 1, + sym_identifier, + ACTIONS(3819), 1, + anon_sym_LPAREN2, + ACTIONS(3821), 1, + anon_sym_STAR, + ACTIONS(3825), 1, + sym_primitive_type, + STATE(2013), 1, + sym__type_declarator, + STATE(2199), 1, + sym__type_definition_declarators, + STATE(3430), 1, + sym_ms_based_modifier, + ACTIONS(3823), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2105), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [91145] = 12, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3817), 1, + sym_identifier, + ACTIONS(3819), 1, + anon_sym_LPAREN2, + ACTIONS(3821), 1, + anon_sym_STAR, + ACTIONS(3825), 1, + sym_primitive_type, + STATE(2013), 1, + sym__type_declarator, + STATE(2196), 1, + sym__type_definition_declarators, + STATE(3430), 1, + sym_ms_based_modifier, + ACTIONS(3823), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2105), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [91189] = 3, + ACTIONS(2926), 1, anon_sym_const, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(2962), 16, + ACTIONS(2928), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -159819,13 +161366,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [90730] = 3, - ACTIONS(2964), 1, + [91215] = 3, + ACTIONS(3428), 1, anon_sym_const, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(2966), 16, + ACTIONS(3430), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -159842,13 +161389,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [90756] = 3, - ACTIONS(3464), 1, + [91241] = 3, + ACTIONS(3424), 1, anon_sym_const, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3466), 16, + ACTIONS(3426), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -159865,68 +161412,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [90782] = 12, + [91267] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3800), 1, + ACTIONS(3817), 1, sym_identifier, - ACTIONS(3802), 1, + ACTIONS(3819), 1, anon_sym_LPAREN2, - ACTIONS(3804), 1, + ACTIONS(3821), 1, anon_sym_STAR, - ACTIONS(3808), 1, - sym_primitive_type, - STATE(1999), 1, - sym__type_declarator, - STATE(2155), 1, - sym__type_definition_declarators, - STATE(3321), 1, - sym_ms_based_modifier, - ACTIONS(3806), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2089), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [90826] = 3, - ACTIONS(3472), 1, - anon_sym_const, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(3474), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_COLON, - [90852] = 3, - ACTIONS(3405), 1, + ACTIONS(3825), 1, + sym_primitive_type, + STATE(2013), 1, + sym__type_declarator, + STATE(2181), 1, + sym__type_definition_declarators, + STATE(3430), 1, + sym_ms_based_modifier, + ACTIONS(3823), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2105), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [91311] = 3, + ACTIONS(3601), 1, anon_sym_const, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3407), 16, + ACTIONS(3603), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -159943,24 +161467,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [90878] = 8, + [91337] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4652), 1, + ACTIONS(4699), 1, anon_sym_LPAREN2, - ACTIONS(4656), 1, + ACTIONS(4703), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4658), 1, + ACTIONS(4770), 1, + anon_sym_COMMA, + ACTIONS(4774), 1, anon_sym_LBRACK, - STATE(2049), 1, + STATE(2097), 1, sym_parameter_list, - STATE(2024), 2, + STATE(2159), 1, + aux_sym__type_definition_declarators_repeat1, + STATE(2063), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4703), 11, - anon_sym_COMMA, + ACTIONS(4772), 9, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -159970,14 +161497,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_COLON, - [90914] = 3, - ACTIONS(3417), 1, + [91377] = 3, + ACTIONS(3605), 1, anon_sym_const, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3419), 16, + ACTIONS(3607), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -159994,13 +161520,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [90940] = 3, - ACTIONS(3476), 1, + [91403] = 3, + ACTIONS(3507), 1, anon_sym_const, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3478), 16, + ACTIONS(3509), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -160017,43 +161543,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [90966] = 10, - ACTIONS(3), 1, + [91429] = 3, + ACTIONS(3535), 1, + anon_sym_const, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(4652), 1, - anon_sym_LPAREN2, - ACTIONS(4656), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4705), 1, + ACTIONS(3537), 16, anon_sym_COMMA, - ACTIONS(4709), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym___extension__, anon_sym_LBRACK, - STATE(2076), 1, - sym_parameter_list, - STATE(2176), 1, - aux_sym__type_definition_declarators_repeat1, - STATE(2042), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(4707), 9, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [91006] = 3, - ACTIONS(3542), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [91455] = 3, + ACTIONS(1571), 1, anon_sym_const, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3544), 16, + ACTIONS(1573), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -160070,13 +161589,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [91032] = 3, - ACTIONS(3500), 1, + [91481] = 3, + ACTIONS(3487), 1, anon_sym_const, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3502), 16, + ACTIONS(3489), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -160093,77 +161612,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [91058] = 12, + [91507] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3800), 1, + ACTIONS(3817), 1, sym_identifier, - ACTIONS(3802), 1, + ACTIONS(3819), 1, anon_sym_LPAREN2, - ACTIONS(3804), 1, + ACTIONS(3821), 1, anon_sym_STAR, - ACTIONS(3808), 1, + ACTIONS(3825), 1, sym_primitive_type, - STATE(1999), 1, + STATE(2013), 1, sym__type_declarator, - STATE(2169), 1, + STATE(2193), 1, sym__type_definition_declarators, - STATE(3321), 1, + STATE(3430), 1, sym_ms_based_modifier, - ACTIONS(3806), 4, + ACTIONS(3823), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2089), 5, + STATE(2105), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [91102] = 12, + [91551] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3800), 1, + ACTIONS(3817), 1, sym_identifier, - ACTIONS(3802), 1, + ACTIONS(3819), 1, anon_sym_LPAREN2, - ACTIONS(3804), 1, + ACTIONS(3821), 1, anon_sym_STAR, - ACTIONS(3808), 1, + ACTIONS(3825), 1, sym_primitive_type, - STATE(1999), 1, + STATE(2013), 1, sym__type_declarator, - STATE(2160), 1, + STATE(2195), 1, sym__type_definition_declarators, - STATE(3321), 1, + STATE(3430), 1, sym_ms_based_modifier, - ACTIONS(3806), 4, + ACTIONS(3823), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2089), 5, + STATE(2105), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [91146] = 3, - ACTIONS(3421), 1, + [91595] = 3, + ACTIONS(3547), 1, anon_sym_const, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3423), 16, + ACTIONS(3549), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -160180,13 +161699,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [91172] = 3, - ACTIONS(3484), 1, + [91621] = 3, + ACTIONS(3551), 1, anon_sym_const, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3486), 16, + ACTIONS(3553), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -160203,13 +161722,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [91198] = 3, - ACTIONS(3413), 1, + [91647] = 3, + ACTIONS(3527), 1, anon_sym_const, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3415), 16, + ACTIONS(3529), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -160226,13 +161745,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [91224] = 3, - ACTIONS(3492), 1, + [91673] = 3, + ACTIONS(3479), 1, anon_sym_const, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3494), 16, + ACTIONS(3481), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -160249,69 +161768,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [91250] = 8, - ACTIONS(3), 1, + [91699] = 3, + ACTIONS(3475), 1, + anon_sym_const, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(4652), 1, + ACTIONS(3477), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4656), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4658), 1, + anon_sym_STAR, + anon_sym___extension__, anon_sym_LBRACK, - STATE(2049), 1, - sym_parameter_list, - STATE(2024), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(4711), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_COLON, - [91286] = 8, - ACTIONS(3), 1, + [91725] = 3, + ACTIONS(3523), 1, + anon_sym_const, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(4652), 1, + ACTIONS(3525), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4656), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4658), 1, + anon_sym_STAR, + anon_sym___extension__, anon_sym_LBRACK, - STATE(2049), 1, - sym_parameter_list, - STATE(2024), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(4713), 11, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [91751] = 3, + ACTIONS(3448), 1, + anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3450), 16, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_COLON, - [91322] = 3, - ACTIONS(3409), 1, + [91777] = 3, + ACTIONS(3483), 1, anon_sym_const, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3411), 16, + ACTIONS(3485), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -160328,13 +161860,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [91348] = 3, - ACTIONS(3550), 1, + [91803] = 3, + ACTIONS(3543), 1, anon_sym_const, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3552), 16, + ACTIONS(3545), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -160351,13 +161883,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [91374] = 3, - ACTIONS(3508), 1, + [91829] = 3, + ACTIONS(3597), 1, anon_sym_const, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3510), 16, + ACTIONS(3599), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -160374,13 +161906,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [91400] = 3, - ACTIONS(3441), 1, + [91855] = 3, + ACTIONS(3491), 1, anon_sym_const, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3443), 16, + ACTIONS(3493), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -160397,336 +161929,335 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, anon_sym_COLON, - [91426] = 14, + [91881] = 8, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4699), 1, + anon_sym_LPAREN2, + ACTIONS(4703), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4705), 1, + anon_sym_LBRACK, + STATE(2066), 1, + sym_parameter_list, + STATE(2047), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4776), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_COLON, + [91917] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3817), 1, + sym_identifier, + ACTIONS(3819), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(3821), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(3825), 1, + sym_primitive_type, + STATE(2013), 1, + sym__type_declarator, + STATE(2169), 1, + sym__type_definition_declarators, + STATE(3430), 1, + sym_ms_based_modifier, + ACTIONS(3823), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2105), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [91961] = 12, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(3817), 1, sym_identifier, - STATE(2111), 1, - sym_macro_modifier, - STATE(2209), 1, - sym_function_declarator, - STATE(2331), 1, - sym__declarator, - STATE(2397), 1, - sym__declaration_declarator, - STATE(2467), 1, - sym__function_declaration_declarator, - STATE(3337), 1, + ACTIONS(3819), 1, + anon_sym_LPAREN2, + ACTIONS(3821), 1, + anon_sym_STAR, + ACTIONS(3825), 1, + sym_primitive_type, + STATE(2013), 1, + sym__type_declarator, + STATE(2206), 1, + sym__type_definition_declarators, + STATE(3430), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, - anon_sym___init, - anon_sym___exit, - STATE(2213), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [91473] = 14, + ACTIONS(3823), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2105), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [92005] = 8, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4699), 1, + anon_sym_LPAREN2, + ACTIONS(4703), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4774), 1, + anon_sym_LBRACK, + STATE(2097), 1, + sym_parameter_list, + STATE(2063), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4778), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [92040] = 14, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2115), 1, + STATE(2133), 1, sym_macro_modifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2265), 1, - sym__declarator, - STATE(2368), 1, + STATE(2352), 1, sym__declaration_declarator, - STATE(2467), 1, + STATE(2369), 1, + sym__declarator, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [91520] = 14, + [92087] = 14, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2086), 1, + STATE(2113), 1, sym_macro_modifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2242), 1, + STATE(2288), 1, sym__declarator, - STATE(2345), 1, + STATE(2376), 1, sym__declaration_declarator, - STATE(2467), 1, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [91567] = 14, + [92134] = 14, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2079), 1, + STATE(2118), 1, sym_macro_modifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2331), 1, - sym__declarator, - STATE(2368), 1, + STATE(2333), 1, sym__declaration_declarator, - STATE(2467), 1, + STATE(2369), 1, + sym__declarator, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [91614] = 11, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3800), 1, - sym_identifier, - ACTIONS(3802), 1, - anon_sym_LPAREN2, - ACTIONS(3804), 1, - anon_sym_STAR, - ACTIONS(3808), 1, - sym_primitive_type, - STATE(2029), 1, - sym__type_declarator, - STATE(3321), 1, - sym_ms_based_modifier, - ACTIONS(3806), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2089), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [91655] = 14, + [92181] = 14, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2117), 1, + STATE(2094), 1, sym_macro_modifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2322), 1, - sym__declaration_declarator, - STATE(2331), 1, + STATE(2274), 1, sym__declarator, - STATE(2467), 1, + STATE(2333), 1, + sym__declaration_declarator, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [91702] = 11, + [92228] = 11, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3790), 1, + ACTIONS(3827), 1, sym_identifier, - ACTIONS(3792), 1, + ACTIONS(3829), 1, anon_sym_LPAREN2, - ACTIONS(3794), 1, + ACTIONS(3831), 1, anon_sym_STAR, - ACTIONS(3798), 1, + ACTIONS(3835), 1, sym_primitive_type, - STATE(2290), 1, + STATE(2312), 1, sym__type_declarator, - STATE(2971), 1, + STATE(3100), 1, sym_ms_based_modifier, - ACTIONS(3796), 4, + ACTIONS(3833), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2451), 5, + STATE(2450), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [91743] = 14, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2047), 1, - anon_sym_LPAREN2, - ACTIONS(2049), 1, - anon_sym_STAR, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(4245), 1, - sym_identifier, - STATE(2094), 1, - sym_macro_modifier, - STATE(2209), 1, - sym_function_declarator, - STATE(2249), 1, - sym__declarator, - STATE(2322), 1, - sym__declaration_declarator, - STATE(2467), 1, - sym__function_declaration_declarator, - STATE(3337), 1, - sym_ms_based_modifier, - ACTIONS(2111), 2, - anon_sym___init, - anon_sym___exit, - STATE(2213), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [91790] = 8, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4652), 1, - anon_sym_LPAREN2, - ACTIONS(4656), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4709), 1, - anon_sym_LBRACK, - STATE(2076), 1, - sym_parameter_list, - STATE(2042), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(4715), 10, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [91825] = 11, + [92269] = 11, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3790), 1, + ACTIONS(3827), 1, sym_identifier, - ACTIONS(3792), 1, + ACTIONS(3829), 1, anon_sym_LPAREN2, - ACTIONS(3794), 1, + ACTIONS(3831), 1, anon_sym_STAR, - ACTIONS(3798), 1, + ACTIONS(3835), 1, sym_primitive_type, - STATE(2292), 1, + STATE(2317), 1, sym__type_declarator, - STATE(2971), 1, + STATE(3100), 1, sym_ms_based_modifier, - ACTIONS(3796), 4, + ACTIONS(3833), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2451), 5, + STATE(2450), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [91866] = 6, + [92310] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4656), 1, + ACTIONS(4699), 1, + anon_sym_LPAREN2, + ACTIONS(4703), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4719), 1, + ACTIONS(4774), 1, anon_sym_LBRACK, - STATE(2035), 2, + STATE(2097), 1, + sym_parameter_list, + STATE(2063), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4717), 12, + ACTIONS(4780), 10, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -160736,57 +162267,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_COLON, - [91897] = 14, + [92345] = 14, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2116), 1, + STATE(2119), 1, sym_macro_modifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2267), 1, + STATE(2369), 1, sym__declarator, - STATE(2365), 1, + STATE(2384), 1, sym__declaration_declarator, - STATE(2467), 1, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [91944] = 8, + [92392] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4652), 1, + ACTIONS(4699), 1, anon_sym_LPAREN2, - ACTIONS(4656), 1, + ACTIONS(4703), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4709), 1, + ACTIONS(4774), 1, anon_sym_LBRACK, - STATE(2076), 1, + STATE(2097), 1, sym_parameter_list, - STATE(2042), 2, + STATE(2063), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4721), 10, + ACTIONS(4782), 10, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, @@ -160797,87 +162327,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [91979] = 14, + [92427] = 14, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2082), 1, + STATE(2095), 1, sym_macro_modifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2331), 1, + STATE(2264), 1, sym__declarator, - STATE(2358), 1, + STATE(2342), 1, sym__declaration_declarator, - STATE(2467), 1, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [92026] = 11, + [92474] = 14, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3790), 1, - sym_identifier, - ACTIONS(3792), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(3794), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(3798), 1, - sym_primitive_type, - STATE(2282), 1, - sym__type_declarator, - STATE(2971), 1, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(4290), 1, + sym_identifier, + STATE(2103), 1, + sym_macro_modifier, + STATE(2220), 1, + sym_function_declarator, + STATE(2277), 1, + sym__declarator, + STATE(2356), 1, + sym__declaration_declarator, + STATE(2486), 1, + sym__function_declaration_declarator, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(3796), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2451), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [92067] = 8, + ACTIONS(2134), 2, + anon_sym___init, + anon_sym___exit, + STATE(2245), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [92521] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4652), 1, - anon_sym_LPAREN2, - ACTIONS(4656), 1, + ACTIONS(4703), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4709), 1, + ACTIONS(4786), 1, anon_sym_LBRACK, - STATE(2076), 1, - sym_parameter_list, - STATE(2042), 2, + STATE(2054), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4723), 10, + ACTIONS(4784), 12, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -160887,175 +162417,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [92102] = 8, + anon_sym_COLON, + [92552] = 11, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4652), 1, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3827), 1, + sym_identifier, + ACTIONS(3829), 1, anon_sym_LPAREN2, - ACTIONS(4656), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4709), 1, - anon_sym_LBRACK, - STATE(2076), 1, - sym_parameter_list, - STATE(2042), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(4725), 10, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [92137] = 14, + ACTIONS(3831), 1, + anon_sym_STAR, + ACTIONS(3835), 1, + sym_primitive_type, + STATE(2297), 1, + sym__type_declarator, + STATE(3100), 1, + sym_ms_based_modifier, + ACTIONS(3833), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [92593] = 14, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2077), 1, + STATE(2129), 1, sym_macro_modifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2319), 1, + STATE(2342), 1, sym__declaration_declarator, - STATE(2331), 1, + STATE(2369), 1, sym__declarator, - STATE(2467), 1, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [92184] = 11, + [92640] = 14, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3790), 1, - sym_identifier, - ACTIONS(3792), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(3794), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(3798), 1, - sym_primitive_type, - STATE(2288), 1, - sym__type_declarator, - STATE(2971), 1, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(4290), 1, + sym_identifier, + STATE(2120), 1, + sym_macro_modifier, + STATE(2220), 1, + sym_function_declarator, + STATE(2369), 1, + sym__declarator, + STATE(2413), 1, + sym__declaration_declarator, + STATE(2486), 1, + sym__function_declaration_declarator, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(3796), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2451), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [92225] = 14, + ACTIONS(2134), 2, + anon_sym___init, + anon_sym___exit, + STATE(2245), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [92687] = 14, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2099), 1, + STATE(2102), 1, sym_macro_modifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2331), 1, - sym__declarator, - STATE(2345), 1, + STATE(2356), 1, sym__declaration_declarator, - STATE(2467), 1, + STATE(2369), 1, + sym__declarator, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [92272] = 14, + [92734] = 11, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3827), 1, + sym_identifier, + ACTIONS(3829), 1, + anon_sym_LPAREN2, + ACTIONS(3831), 1, + anon_sym_STAR, + ACTIONS(3835), 1, + sym_primitive_type, + STATE(2303), 1, + sym__type_declarator, + STATE(3100), 1, + sym_ms_based_modifier, + ACTIONS(3833), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [92775] = 14, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2096), 1, + STATE(2137), 1, sym_macro_modifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2303), 1, - sym__declaration_declarator, - STATE(2331), 1, + STATE(2369), 1, sym__declarator, - STATE(2467), 1, + STATE(2376), 1, + sym__declaration_declarator, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [92319] = 6, + [92822] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4729), 1, + ACTIONS(4790), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4732), 1, + ACTIONS(4793), 1, anon_sym_LBRACK, - STATE(2035), 2, + STATE(2054), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4727), 12, + ACTIONS(4788), 12, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -161068,23 +162635,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym_COLON, - [92350] = 8, + [92853] = 8, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4652), 1, + ACTIONS(4699), 1, anon_sym_LPAREN2, - ACTIONS(4656), 1, + ACTIONS(4703), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4709), 1, + ACTIONS(4774), 1, anon_sym_LBRACK, - STATE(2076), 1, + STATE(2097), 1, sym_parameter_list, - STATE(2042), 2, + STATE(2063), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4734), 10, + ACTIONS(4795), 10, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, @@ -161095,172 +162662,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [92385] = 14, + [92888] = 14, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2109), 1, + STATE(2115), 1, sym_macro_modifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2331), 1, - sym__declarator, - STATE(2365), 1, + STATE(2343), 1, sym__declaration_declarator, - STATE(2467), 1, + STATE(2369), 1, + sym__declarator, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [92432] = 12, + [92935] = 11, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3817), 1, + sym_identifier, + ACTIONS(3819), 1, + anon_sym_LPAREN2, + ACTIONS(3821), 1, + anon_sym_STAR, + ACTIONS(3825), 1, + sym_primitive_type, + STATE(2055), 1, + sym__type_declarator, + STATE(3430), 1, + sym_ms_based_modifier, + ACTIONS(3823), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2105), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [92976] = 8, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4699), 1, + anon_sym_LPAREN2, + ACTIONS(4703), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4774), 1, + anon_sym_LBRACK, + STATE(2097), 1, + sym_parameter_list, + STATE(2063), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4797), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [93011] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4736), 1, + ACTIONS(4799), 1, sym_identifier, - ACTIONS(4738), 1, + ACTIONS(4801), 1, aux_sym_preproc_if_token2, - ACTIONS(4740), 1, + ACTIONS(4803), 1, aux_sym_preproc_else_token1, - ACTIONS(4742), 1, + ACTIONS(4805), 1, aux_sym_preproc_elif_token1, - STATE(2145), 1, + STATE(2171), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2182), 1, + STATE(2175), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2286), 1, + STATE(2304), 1, sym_enumerator, - ACTIONS(4744), 2, + ACTIONS(4807), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(3189), 3, + STATE(3214), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - STATE(3190), 3, + STATE(3215), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [92474] = 12, + [93053] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4736), 1, + ACTIONS(4799), 1, sym_identifier, - ACTIONS(4740), 1, + ACTIONS(4803), 1, aux_sym_preproc_else_token1, - ACTIONS(4742), 1, + ACTIONS(4805), 1, aux_sym_preproc_elif_token1, - ACTIONS(4746), 1, + ACTIONS(4809), 1, aux_sym_preproc_if_token2, - STATE(2146), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2172), 1, + STATE(2209), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2286), 1, + STATE(2210), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2304), 1, sym_enumerator, - ACTIONS(4744), 2, + ACTIONS(4807), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(3094), 3, + STATE(3157), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - STATE(3095), 3, + STATE(3158), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [92516] = 12, + [93095] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4736), 1, + ACTIONS(4799), 1, sym_identifier, - ACTIONS(4740), 1, + ACTIONS(4803), 1, aux_sym_preproc_else_token1, - ACTIONS(4742), 1, + ACTIONS(4805), 1, aux_sym_preproc_elif_token1, - ACTIONS(4748), 1, + ACTIONS(4811), 1, aux_sym_preproc_if_token2, - STATE(2178), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2181), 1, + STATE(2156), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2286), 1, + STATE(2172), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2304), 1, sym_enumerator, - ACTIONS(4744), 2, + ACTIONS(4807), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(3050), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - STATE(3051), 3, + STATE(3206), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [92558] = 12, + STATE(3207), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [93137] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4736), 1, + ACTIONS(4799), 1, sym_identifier, - ACTIONS(4740), 1, + ACTIONS(4803), 1, aux_sym_preproc_else_token1, - ACTIONS(4742), 1, + ACTIONS(4805), 1, aux_sym_preproc_elif_token1, - ACTIONS(4750), 1, + ACTIONS(4813), 1, aux_sym_preproc_if_token2, - STATE(2186), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2189), 1, + STATE(2173), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2286), 1, + STATE(2174), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2304), 1, sym_enumerator, - ACTIONS(4744), 2, + ACTIONS(4807), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(3125), 3, + STATE(3050), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - STATE(3126), 3, + STATE(3054), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [92600] = 6, + [93179] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4656), 1, + ACTIONS(4703), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4754), 1, + ACTIONS(4817), 1, anon_sym_LBRACK, - STATE(2035), 2, + STATE(2054), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4752), 11, + ACTIONS(4815), 11, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -161272,14 +162896,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [92630] = 4, + [93209] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4758), 1, + ACTIONS(2060), 1, anon_sym_LBRACK, - ACTIONS(4756), 13, + ACTIONS(2062), 13, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -161293,94 +162917,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [92655] = 7, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4760), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(4762), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(2064), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(4336), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(4764), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [92686] = 11, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3588), 1, - anon_sym_LBRACE, - ACTIONS(4766), 1, - sym_identifier, - ACTIONS(4768), 1, - anon_sym___declspec, - STATE(1293), 1, - sym_field_declaration_list, - STATE(2391), 1, - sym_attribute_specifier, - STATE(2701), 1, - sym_ms_declspec_modifier, - ACTIONS(3910), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3912), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3914), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [92725] = 11, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3882), 1, - sym_identifier, - ACTIONS(3884), 1, - anon_sym_LPAREN2, - ACTIONS(3886), 1, - anon_sym_STAR, - STATE(2184), 1, - sym_macro_modifier, - STATE(2272), 1, - sym__field_declarator, - STATE(3061), 1, - sym_ms_based_modifier, - ACTIONS(2111), 2, - anon_sym___init, - anon_sym___exit, - STATE(2422), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [92764] = 4, + [93234] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4772), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - ACTIONS(4770), 13, + ACTIONS(3013), 13, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -161394,14 +162938,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [92789] = 4, + [93259] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2013), 1, + ACTIONS(4821), 1, anon_sym_LBRACK, - ACTIONS(2015), 13, + ACTIONS(4819), 13, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -161415,14 +162959,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [92814] = 4, + [93284] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4776), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(4774), 13, + ACTIONS(4823), 13, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -161436,42 +162980,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [92839] = 11, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3902), 1, - anon_sym_LBRACE, - ACTIONS(4768), 1, - anon_sym___declspec, - ACTIONS(4778), 1, - sym_identifier, - STATE(1526), 1, - sym_field_declaration_list, - STATE(2386), 1, - sym_attribute_specifier, - STATE(2507), 1, - sym_ms_declspec_modifier, - ACTIONS(3910), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3912), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3914), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [92878] = 4, + [93309] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4782), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4780), 13, + ACTIONS(4827), 13, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -161485,70 +163001,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [92903] = 11, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2047), 1, - anon_sym_LPAREN2, - ACTIONS(2049), 1, - anon_sym_STAR, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3650), 1, - sym_identifier, - STATE(2162), 1, - sym_macro_modifier, - STATE(2248), 1, - sym__declarator, - STATE(3337), 1, - sym_ms_based_modifier, - ACTIONS(2111), 2, - anon_sym___init, - anon_sym___exit, - STATE(2209), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [92942] = 11, + [93334] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2956), 1, - anon_sym_LBRACE, - ACTIONS(4768), 1, - anon_sym___declspec, - ACTIONS(4784), 1, - sym_identifier, - STATE(1054), 1, - sym_field_declaration_list, - STATE(2398), 1, - sym_attribute_specifier, - STATE(2480), 1, - sym_ms_declspec_modifier, - ACTIONS(3910), 2, + ACTIONS(4831), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(3912), 2, + ACTIONS(4833), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(3914), 4, + STATE(2082), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(4352), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(4835), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [92981] = 4, + [93365] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4788), 1, + ACTIONS(4839), 1, anon_sym_LBRACK, - ACTIONS(4786), 13, + ACTIONS(4837), 13, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -161562,14 +163046,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [93006] = 4, + [93390] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2656), 1, + ACTIONS(2657), 1, anon_sym_LBRACK, - ACTIONS(2658), 13, + ACTIONS(2977), 13, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -161583,171 +163067,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [93031] = 7, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4760), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(4762), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(2064), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(4764), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(4790), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [93062] = 11, + [93415] = 11, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, - anon_sym_LPAREN2, - ACTIONS(2049), 1, - anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3650), 1, + ACTIONS(3881), 1, sym_identifier, - STATE(2164), 1, + ACTIONS(3883), 1, + anon_sym_LPAREN2, + ACTIONS(3885), 1, + anon_sym_STAR, + STATE(2158), 1, sym_macro_modifier, - STATE(2261), 1, - sym__declarator, - STATE(3337), 1, + STATE(2299), 1, + sym__field_declarator, + STATE(3027), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - STATE(2209), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [93101] = 11, + STATE(2437), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [93454] = 11, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3650), 1, + ACTIONS(3681), 1, sym_identifier, - STATE(2135), 1, + STATE(2176), 1, sym_macro_modifier, - STATE(2250), 1, + STATE(2281), 1, sym__declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - STATE(2209), 5, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [93140] = 11, + [93493] = 11, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3996), 1, + ACTIONS(4023), 1, anon_sym_LBRACE, - ACTIONS(4768), 1, - anon_sym___declspec, - ACTIONS(4792), 1, + ACTIONS(4841), 1, sym_identifier, - STATE(1627), 1, + ACTIONS(4843), 1, + anon_sym___declspec, + STATE(1647), 1, sym_field_declaration_list, - STATE(2387), 1, + STATE(2404), 1, sym_attribute_specifier, - STATE(2672), 1, + STATE(2526), 1, sym_ms_declspec_modifier, - ACTIONS(3910), 2, + ACTIONS(3935), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(3912), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3914), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [93179] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2009), 1, - anon_sym_LBRACK, - ACTIONS(2011), 13, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(3937), 2, anon_sym___scanf, anon_sym___printf, + ACTIONS(3939), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [93204] = 11, + [93532] = 11, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3650), 1, + ACTIONS(3681), 1, sym_identifier, - STATE(2147), 1, + STATE(2183), 1, sym_macro_modifier, - STATE(2238), 1, + STATE(2301), 1, sym__declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - STATE(2209), 5, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [93243] = 4, + [93571] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2652), 1, + ACTIONS(4847), 1, anon_sym_LBRACK, - ACTIONS(2654), 13, + ACTIONS(4845), 13, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -161761,14 +163200,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [93268] = 4, + [93596] = 11, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2960), 1, + anon_sym_LBRACE, + ACTIONS(4843), 1, + anon_sym___declspec, + ACTIONS(4849), 1, + sym_identifier, + STATE(1081), 1, + sym_field_declaration_list, + STATE(2425), 1, + sym_attribute_specifier, + STATE(2675), 1, + sym_ms_declspec_modifier, + ACTIONS(3935), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3937), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3939), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [93635] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4796), 1, + ACTIONS(4853), 1, anon_sym_LBRACK, - ACTIONS(4794), 13, + ACTIONS(4851), 13, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -161782,66 +163249,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [93293] = 7, + [93660] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4800), 2, + ACTIONS(2056), 1, + anon_sym_LBRACK, + ACTIONS(2058), 13, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(4803), 2, anon_sym___scanf, anon_sym___printf, - STATE(2064), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(4798), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(4806), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [93324] = 11, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [93685] = 11, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3882), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(3884), 1, + ACTIONS(3883), 1, anon_sym_LPAREN2, - ACTIONS(3886), 1, + ACTIONS(3885), 1, anon_sym_STAR, - STATE(2161), 1, + STATE(2188), 1, sym_macro_modifier, - STATE(2293), 1, + STATE(2313), 1, sym__field_declarator, - STATE(3061), 1, + STATE(3027), 1, sym_ms_based_modifier, - ACTIONS(2111), 2, + ACTIONS(2134), 2, anon_sym___init, anon_sym___exit, - STATE(2422), 5, + STATE(2437), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [93363] = 4, + [93724] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4811), 1, + ACTIONS(4857), 1, anon_sym_LBRACK, - ACTIONS(4809), 13, + ACTIONS(4855), 13, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -161855,42 +163319,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [93388] = 11, + [93749] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, - anon_sym_LPAREN2, - ACTIONS(2049), 1, - anon_sym_STAR, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3650), 1, - sym_identifier, - STATE(2166), 1, - sym_macro_modifier, - STATE(2277), 1, - sym__declarator, - STATE(3337), 1, - sym_ms_based_modifier, - ACTIONS(2111), 2, - anon_sym___init, - anon_sym___exit, - STATE(2209), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [93427] = 4, + ACTIONS(4861), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4864), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(2082), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(4859), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(4867), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [93780] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4815), 1, + ACTIONS(4872), 1, anon_sym_LBRACK, - ACTIONS(4813), 13, + ACTIONS(4870), 13, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -161904,14 +163364,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [93452] = 4, + [93805] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4819), 1, + ACTIONS(4876), 1, anon_sym_LBRACK, - ACTIONS(4817), 13, + ACTIONS(4874), 13, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -161925,14 +163385,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [93477] = 4, + [93830] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2660), 1, + ACTIONS(4723), 1, anon_sym_LBRACK, - ACTIONS(2662), 13, + ACTIONS(4725), 13, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -161946,35 +163406,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [93502] = 4, + [93855] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4823), 1, - anon_sym_LBRACK, - ACTIONS(4821), 13, + ACTIONS(4831), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4833), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(2082), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(4835), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(4878), 4, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [93886] = 11, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3929), 1, + anon_sym_LBRACE, + ACTIONS(4843), 1, + anon_sym___declspec, + ACTIONS(4880), 1, + sym_identifier, + STATE(1537), 1, + sym_field_declaration_list, + STATE(2407), 1, + sym_attribute_specifier, + STATE(2532), 1, + sym_ms_declspec_modifier, + ACTIONS(3935), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3937), 2, anon_sym___scanf, anon_sym___printf, + ACTIONS(3939), 4, anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [93925] = 11, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3615), 1, + anon_sym_LBRACE, + ACTIONS(4843), 1, + anon_sym___declspec, + ACTIONS(4882), 1, + sym_identifier, + STATE(1323), 1, + sym_field_declaration_list, + STATE(2409), 1, + sym_attribute_specifier, + STATE(2732), 1, + sym_ms_declspec_modifier, + ACTIONS(3935), 2, + anon_sym___attribute__, anon_sym___must_hold, + ACTIONS(3937), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3939), 4, + anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [93527] = 4, + [93964] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4827), 1, + ACTIONS(4886), 1, anon_sym_LBRACK, - ACTIONS(4825), 12, + ACTIONS(4884), 13, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -161987,74 +163506,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym_LBRACK_LBRACK, - [93551] = 10, + anon_sym_COLON, + [93989] = 11, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4829), 1, + ACTIONS(2090), 1, + anon_sym_LPAREN2, + ACTIONS(2092), 1, + anon_sym_STAR, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3681), 1, sym_identifier, - ACTIONS(4831), 1, - aux_sym_preproc_if_token1, - ACTIONS(4835), 1, - sym_preproc_directive, - ACTIONS(4837), 1, - anon_sym_RBRACE, - ACTIONS(4833), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(2771), 2, - sym_preproc_call, - sym_enumerator, - STATE(3305), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(2180), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [93587] = 10, + STATE(2157), 1, + sym_macro_modifier, + STATE(2260), 1, + sym__declarator, + STATE(3453), 1, + sym_ms_based_modifier, + ACTIONS(2134), 2, + anon_sym___init, + anon_sym___exit, + STATE(2220), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [94028] = 11, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4829), 1, + ACTIONS(2090), 1, + anon_sym_LPAREN2, + ACTIONS(2092), 1, + anon_sym_STAR, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3681), 1, sym_identifier, - ACTIONS(4831), 1, - aux_sym_preproc_if_token1, - ACTIONS(4835), 1, - sym_preproc_directive, - ACTIONS(4839), 1, - anon_sym_RBRACE, - ACTIONS(4833), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(2951), 2, - sym_preproc_call, - sym_enumerator, - STATE(2988), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(2091), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [93623] = 7, - ACTIONS(4843), 1, + STATE(2170), 1, + sym_macro_modifier, + STATE(2258), 1, + sym__declarator, + STATE(3453), 1, + sym_ms_based_modifier, + ACTIONS(2134), 2, + anon_sym___init, + anon_sym___exit, + STATE(2220), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [94067] = 11, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2090), 1, + anon_sym_LPAREN2, + ACTIONS(2092), 1, + anon_sym_STAR, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3681), 1, + sym_identifier, + STATE(2187), 1, + sym_macro_modifier, + STATE(2271), 1, + sym__declarator, + STATE(3453), 1, + sym_ms_based_modifier, + ACTIONS(2134), 2, + anon_sym___init, + anon_sym___exit, + STATE(2220), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [94106] = 7, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(1721), 1, + STATE(1743), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4841), 7, + ACTIONS(4888), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -162062,294 +163614,308 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [93653] = 4, + [94136] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4851), 1, - anon_sym_LBRACK, - ACTIONS(4849), 12, - anon_sym_COMMA, + ACTIONS(2090), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym_LBRACK_LBRACK, - [93677] = 12, + ACTIONS(2092), 1, + anon_sym_STAR, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(4290), 1, + sym_identifier, + STATE(2220), 1, + sym_function_declarator, + STATE(2278), 1, + sym__declarator, + STATE(2386), 1, + sym__declaration_declarator, + STATE(2486), 1, + sym__function_declaration_declarator, + STATE(3453), 1, + sym_ms_based_modifier, + STATE(2245), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [94176] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2300), 1, - sym__declaration_declarator, - STATE(2331), 1, + STATE(2286), 1, sym__declarator, - STATE(2467), 1, + STATE(2358), 1, + sym__declaration_declarator, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [93717] = 10, + [94216] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4829), 1, + ACTIONS(4896), 1, sym_identifier, - ACTIONS(4831), 1, + ACTIONS(4898), 1, aux_sym_preproc_if_token1, - ACTIONS(4835), 1, + ACTIONS(4902), 1, sym_preproc_directive, - ACTIONS(4853), 1, + ACTIONS(4904), 1, anon_sym_RBRACE, - ACTIONS(4833), 2, + ACTIONS(4900), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(2746), 2, + STATE(2959), 2, sym_preproc_call, sym_enumerator, - STATE(3000), 2, + STATE(3087), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(2180), 3, + STATE(2128), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [93753] = 12, + [94252] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4908), 1, + anon_sym_LBRACK, + ACTIONS(4906), 12, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK_LBRACK, + [94276] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2305), 1, + STATE(2346), 1, sym__declaration_declarator, - STATE(2331), 1, + STATE(2369), 1, sym__declarator, - STATE(2467), 1, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [93793] = 12, + [94316] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2264), 1, + STATE(2283), 1, sym__declarator, - STATE(2367), 1, + STATE(2368), 1, sym__declaration_declarator, - STATE(2467), 1, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [93833] = 7, - ACTIONS(4843), 1, - anon_sym_LPAREN2, - ACTIONS(4845), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, - anon_sym_LBRACK, - STATE(1721), 1, - sym_parameter_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - STATE(2120), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(4855), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [93863] = 12, + [94356] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2331), 1, - sym__declarator, - STATE(2359), 1, + STATE(2332), 1, sym__declaration_declarator, - STATE(2467), 1, + STATE(2369), 1, + sym__declarator, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [93903] = 4, + [94396] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4859), 1, - anon_sym_LBRACK, - ACTIONS(4857), 12, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym_LBRACK_LBRACK, - [93927] = 12, + ACTIONS(4896), 1, + sym_identifier, + ACTIONS(4898), 1, + aux_sym_preproc_if_token1, + ACTIONS(4902), 1, + sym_preproc_directive, + ACTIONS(4910), 1, + anon_sym_RBRACE, + ACTIONS(4900), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(2801), 2, + sym_preproc_call, + sym_enumerator, + STATE(3230), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(2180), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [94432] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2315), 1, + STATE(2329), 1, sym__declaration_declarator, - STATE(2331), 1, + STATE(2369), 1, sym__declarator, - STATE(2467), 1, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [93967] = 7, - ACTIONS(4843), 1, - anon_sym_LPAREN2, - ACTIONS(4845), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, - anon_sym_LBRACK, - STATE(1721), 1, - sym_parameter_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - STATE(2120), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(4861), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [93997] = 12, + [94472] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2239), 1, + STATE(2291), 1, sym__declarator, - STATE(2351), 1, + STATE(2329), 1, sym__declaration_declarator, - STATE(2467), 1, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [94037] = 4, + [94512] = 10, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4896), 1, + sym_identifier, + ACTIONS(4898), 1, + aux_sym_preproc_if_token1, + ACTIONS(4902), 1, + sym_preproc_directive, + ACTIONS(4912), 1, + anon_sym_RBRACE, + ACTIONS(4900), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(2925), 2, + sym_preproc_call, + sym_enumerator, + STATE(3135), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(2125), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [94548] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4865), 1, + ACTIONS(4916), 1, anon_sym_LBRACK, - ACTIONS(4863), 12, + ACTIONS(4914), 12, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -162362,62 +163928,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym_LBRACK_LBRACK, - [94061] = 12, + [94572] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2331), 1, + STATE(2259), 1, sym__declarator, - STATE(2357), 1, + STATE(2332), 1, sym__declaration_declarator, - STATE(2467), 1, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [94101] = 4, + [94612] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4869), 1, - anon_sym_LBRACK, - ACTIONS(4867), 12, - anon_sym_COMMA, + ACTIONS(2090), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym_LBRACK_LBRACK, - [94125] = 4, + ACTIONS(2092), 1, + anon_sym_STAR, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(4290), 1, + sym_identifier, + STATE(2220), 1, + sym_function_declarator, + STATE(2263), 1, + sym__declarator, + STATE(2379), 1, + sym__declaration_declarator, + STATE(2486), 1, + sym__function_declaration_declarator, + STATE(3453), 1, + sym_ms_based_modifier, + STATE(2245), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [94652] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4873), 1, + ACTIONS(4920), 1, anon_sym_LBRACK, - ACTIONS(4871), 12, + ACTIONS(4918), 12, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -162430,122 +164004,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym_LBRACK_LBRACK, - [94149] = 10, + [94676] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4829), 1, + ACTIONS(4896), 1, sym_identifier, - ACTIONS(4831), 1, + ACTIONS(4898), 1, aux_sym_preproc_if_token1, - ACTIONS(4835), 1, + ACTIONS(4902), 1, sym_preproc_directive, - ACTIONS(4875), 1, + ACTIONS(4922), 1, anon_sym_RBRACE, - ACTIONS(4833), 2, + ACTIONS(4900), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(2930), 2, + STATE(2807), 2, sym_preproc_call, sym_enumerator, - STATE(3054), 2, + STATE(3344), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, STATE(2180), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [94185] = 10, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4829), 1, - sym_identifier, - ACTIONS(4831), 1, - aux_sym_preproc_if_token1, - ACTIONS(4835), 1, - sym_preproc_directive, - ACTIONS(4877), 1, - anon_sym_RBRACE, - ACTIONS(4833), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(2917), 2, - sym_preproc_call, - sym_enumerator, - STATE(3077), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(2078), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [94221] = 12, + [94712] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2309), 1, - sym__declaration_declarator, - STATE(2331), 1, + STATE(2369), 1, sym__declarator, - STATE(2467), 1, + STATE(2383), 1, + sym__declaration_declarator, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [94261] = 12, + [94752] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2266), 1, + STATE(2369), 1, sym__declarator, - STATE(2363), 1, + STATE(2413), 1, sym__declaration_declarator, - STATE(2467), 1, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [94301] = 4, + [94792] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4881), 1, + ACTIONS(4926), 1, anon_sym_LBRACK, - ACTIONS(4879), 12, + ACTIONS(4924), 12, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -162558,180 +164106,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym_LBRACK_LBRACK, - [94325] = 12, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2047), 1, - anon_sym_LPAREN2, - ACTIONS(2049), 1, - anon_sym_STAR, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(4245), 1, - sym_identifier, - STATE(2209), 1, - sym_function_declarator, - STATE(2301), 1, - sym__declaration_declarator, - STATE(2331), 1, - sym__declarator, - STATE(2467), 1, - sym__function_declaration_declarator, - STATE(3337), 1, - sym_ms_based_modifier, - STATE(2213), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [94365] = 12, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2047), 1, - anon_sym_LPAREN2, - ACTIONS(2049), 1, - anon_sym_STAR, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(4245), 1, - sym_identifier, - STATE(2209), 1, - sym_function_declarator, - STATE(2260), 1, - sym__declarator, - STATE(2360), 1, - sym__declaration_declarator, - STATE(2467), 1, - sym__function_declaration_declarator, - STATE(3337), 1, - sym_ms_based_modifier, - STATE(2213), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [94405] = 12, + [94816] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2331), 1, + STATE(2287), 1, sym__declarator, - STATE(2360), 1, + STATE(2372), 1, sym__declaration_declarator, - STATE(2467), 1, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [94445] = 12, + [94856] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2331), 1, + STATE(2269), 1, sym__declarator, - STATE(2351), 1, + STATE(2346), 1, sym__declaration_declarator, - STATE(2467), 1, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [94485] = 12, + [94896] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2321), 1, + STATE(2362), 1, sym__declaration_declarator, - STATE(2331), 1, + STATE(2369), 1, sym__declarator, - STATE(2467), 1, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [94525] = 10, + [94936] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4829), 1, + ACTIONS(4896), 1, sym_identifier, - ACTIONS(4831), 1, + ACTIONS(4898), 1, aux_sym_preproc_if_token1, - ACTIONS(4835), 1, + ACTIONS(4902), 1, sym_preproc_directive, - ACTIONS(4883), 1, + ACTIONS(4928), 1, anon_sym_RBRACE, - ACTIONS(4833), 2, + ACTIONS(4900), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(2786), 2, + STATE(2779), 2, sym_preproc_call, sym_enumerator, - STATE(3286), 2, + STATE(3473), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(2108), 3, + STATE(2101), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [94561] = 4, + [94972] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(4932), 1, anon_sym_LBRACK, - ACTIONS(4885), 12, + ACTIONS(4930), 12, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -162744,208 +164236,322 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym_LBRACK_LBRACK, - [94585] = 4, + [94996] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4891), 1, - anon_sym_LBRACK, - ACTIONS(4889), 12, - anon_sym_COMMA, + ACTIONS(2090), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym_LBRACK_LBRACK, - [94609] = 12, + ACTIONS(2092), 1, + anon_sym_STAR, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(4290), 1, + sym_identifier, + STATE(2220), 1, + sym_function_declarator, + STATE(2369), 1, + sym__declarator, + STATE(2386), 1, + sym__declaration_declarator, + STATE(2486), 1, + sym__function_declaration_declarator, + STATE(3453), 1, + sym_ms_based_modifier, + STATE(2245), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [95036] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2331), 1, + STATE(2369), 1, sym__declarator, - STATE(2397), 1, + STATE(2389), 1, sym__declaration_declarator, - STATE(2467), 1, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [94649] = 12, + [95076] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2253), 1, + STATE(2369), 1, sym__declarator, - STATE(2340), 1, + STATE(2405), 1, sym__declaration_declarator, - STATE(2467), 1, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [94689] = 12, + [95116] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4936), 1, + anon_sym_LBRACK, + ACTIONS(4934), 12, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK_LBRACK, + [95140] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2331), 1, + STATE(2369), 1, sym__declarator, - STATE(2367), 1, + STATE(2379), 1, sym__declaration_declarator, - STATE(2467), 1, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [94729] = 12, + [95180] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4938), 12, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK_LBRACK, + [95204] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4944), 1, + anon_sym_LBRACK, + ACTIONS(4942), 12, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK_LBRACK, + [95228] = 10, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4896), 1, + sym_identifier, + ACTIONS(4898), 1, + aux_sym_preproc_if_token1, + ACTIONS(4902), 1, + sym_preproc_directive, + ACTIONS(4946), 1, + anon_sym_RBRACE, + ACTIONS(4900), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(2905), 2, + sym_preproc_call, + sym_enumerator, + STATE(3178), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(2180), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [95264] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2331), 1, - sym__declarator, - STATE(2340), 1, + STATE(2330), 1, sym__declaration_declarator, - STATE(2467), 1, + STATE(2369), 1, + sym__declarator, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [94769] = 10, + [95304] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4829), 1, + ACTIONS(4950), 1, + anon_sym_LBRACK, + ACTIONS(4948), 12, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK_LBRACK, + [95328] = 10, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4896), 1, sym_identifier, - ACTIONS(4831), 1, + ACTIONS(4898), 1, aux_sym_preproc_if_token1, - ACTIONS(4835), 1, + ACTIONS(4902), 1, sym_preproc_directive, - ACTIONS(4893), 1, + ACTIONS(4952), 1, anon_sym_RBRACE, - ACTIONS(4833), 2, + ACTIONS(4900), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(2842), 2, + STATE(2977), 2, sym_preproc_call, sym_enumerator, - STATE(3176), 2, + STATE(3030), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, STATE(2180), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [94805] = 12, + [95364] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2316), 1, + STATE(2358), 1, sym__declaration_declarator, - STATE(2331), 1, + STATE(2369), 1, sym__declarator, - STATE(2467), 1, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [94845] = 7, - ACTIONS(4843), 1, + [95404] = 7, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(1721), 1, + STATE(1743), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4895), 7, + ACTIONS(4954), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -162953,70 +164559,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [94875] = 12, + [95434] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2331), 1, - sym__declarator, - STATE(2403), 1, + STATE(2368), 1, sym__declaration_declarator, - STATE(2467), 1, + STATE(2369), 1, + sym__declarator, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [94915] = 12, + [95474] = 7, + ACTIONS(4890), 1, + anon_sym_LPAREN2, + ACTIONS(4892), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4894), 1, + anon_sym_LBRACK, + STATE(1743), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + STATE(2154), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4956), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [95504] = 12, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2209), 1, + STATE(2220), 1, sym_function_declarator, - STATE(2252), 1, + STATE(2366), 1, + sym__declaration_declarator, + STATE(2369), 1, sym__declarator, - STATE(2321), 1, + STATE(2486), 1, + sym__function_declaration_declarator, + STATE(3453), 1, + sym_ms_based_modifier, + STATE(2245), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [95544] = 7, + ACTIONS(4890), 1, + anon_sym_LPAREN2, + ACTIONS(4892), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4894), 1, + anon_sym_LBRACK, + STATE(1743), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + STATE(2154), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4958), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [95574] = 12, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2090), 1, + anon_sym_LPAREN2, + ACTIONS(2092), 1, + anon_sym_STAR, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(4290), 1, + sym_identifier, + STATE(2220), 1, + sym_function_declarator, + STATE(2348), 1, sym__declaration_declarator, - STATE(2467), 1, + STATE(2369), 1, + sym__declarator, + STATE(2486), 1, sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2213), 4, + STATE(2245), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [94955] = 4, + [95614] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4899), 1, + ACTIONS(4962), 1, anon_sym_LBRACK, - ACTIONS(4897), 12, + ACTIONS(4960), 12, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -163029,126 +164709,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym_LBRACK_LBRACK, - [94979] = 10, + [95638] = 12, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2090), 1, + anon_sym_LPAREN2, + ACTIONS(2092), 1, + anon_sym_STAR, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(4290), 1, + sym_identifier, + STATE(2220), 1, + sym_function_declarator, + STATE(2369), 1, + sym__declarator, + STATE(2372), 1, + sym__declaration_declarator, + STATE(2486), 1, + sym__function_declaration_declarator, + STATE(3453), 1, + sym_ms_based_modifier, + STATE(2245), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [95678] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4829), 1, + ACTIONS(4896), 1, sym_identifier, - ACTIONS(4831), 1, + ACTIONS(4898), 1, aux_sym_preproc_if_token1, - ACTIONS(4835), 1, + ACTIONS(4902), 1, sym_preproc_directive, - ACTIONS(4901), 1, + ACTIONS(4964), 1, anon_sym_RBRACE, - ACTIONS(4833), 2, + ACTIONS(4900), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(2750), 2, + STATE(2796), 2, sym_preproc_call, sym_enumerator, - STATE(3452), 2, + STATE(3383), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(2073), 3, + STATE(2109), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [95015] = 12, + [95714] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4968), 1, + anon_sym_LBRACK, + ACTIONS(4966), 12, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK_LBRACK, + [95738] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(3681), 1, sym_identifier, - STATE(2209), 1, - sym_function_declarator, - STATE(2263), 1, + STATE(663), 1, + sym__old_style_function_declarator, + STATE(2308), 1, sym__declarator, - STATE(2305), 1, - sym__declaration_declarator, - STATE(2467), 1, - sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2213), 4, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, + sym_function_declarator, sym_array_declarator, - [95055] = 12, + [95773] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(3681), 1, sym_identifier, - STATE(2209), 1, - sym_function_declarator, - STATE(2269), 1, + STATE(661), 1, + sym__old_style_function_declarator, + STATE(2308), 1, sym__declarator, - STATE(2316), 1, - sym__declaration_declarator, - STATE(2467), 1, - sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2213), 4, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, + sym_function_declarator, sym_array_declarator, - [95095] = 12, + [95808] = 5, + ACTIONS(4793), 1, + anon_sym_LBRACK, + ACTIONS(4970), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + STATE(2142), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4788), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [95833] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(4245), 1, + ACTIONS(3681), 1, sym_identifier, - STATE(2209), 1, - sym_function_declarator, - STATE(2331), 1, + STATE(637), 1, + sym__old_style_function_declarator, + STATE(2308), 1, sym__declarator, - STATE(2363), 1, - sym__declaration_declarator, - STATE(2467), 1, - sym__function_declaration_declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2213), 4, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, + sym_function_declarator, sym_array_declarator, - [95135] = 4, + [95868] = 3, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4905), 1, - anon_sym_LBRACK, - ACTIONS(4903), 12, + ACTIONS(3125), 12, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -163158,189 +164894,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_LBRACK_LBRACK, - [95159] = 10, + anon_sym_asm, + anon_sym___asm__, + [95889] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3650), 1, + ACTIONS(3681), 1, sym_identifier, - STATE(638), 1, + STATE(679), 1, sym__old_style_function_declarator, - STATE(2279), 1, + STATE(2308), 1, sym__declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2209), 5, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [95194] = 5, - ACTIONS(4845), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4909), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - STATE(2126), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(4907), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [95219] = 10, + [95924] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3650), 1, + ACTIONS(3681), 1, sym_identifier, - STATE(644), 1, + STATE(686), 1, sym__old_style_function_declarator, - STATE(2279), 1, + STATE(2308), 1, sym__declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2209), 5, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [95254] = 10, + [95959] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3650), 1, + ACTIONS(3681), 1, sym_identifier, - STATE(691), 1, + STATE(683), 1, sym__old_style_function_declarator, - STATE(2279), 1, + STATE(2308), 1, sym__declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2209), 5, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [95289] = 10, + [95994] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3650), 1, + ACTIONS(3681), 1, sym_identifier, - STATE(650), 1, + STATE(691), 1, sym__old_style_function_declarator, - STATE(2279), 1, + STATE(2308), 1, sym__declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2209), 5, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [95324] = 10, + [96029] = 3, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3133), 12, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_asm, + anon_sym___asm__, + [96050] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3650), 1, + ACTIONS(3681), 1, sym_identifier, - STATE(677), 1, + STATE(634), 1, sym__old_style_function_declarator, - STATE(2279), 1, + STATE(2308), 1, sym__declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2209), 5, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [95359] = 10, + [96085] = 3, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3082), 12, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_asm, + anon_sym___asm__, + [96106] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2278), 1, + ACTIONS(3708), 3, anon_sym_LPAREN2, - ACTIONS(2280), 1, anon_sym_STAR, - ACTIONS(3658), 1, anon_sym_LBRACK, - STATE(2234), 1, + ACTIONS(3706), 9, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + [96129] = 10, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2307), 1, + anon_sym_LPAREN2, + ACTIONS(2309), 1, + anon_sym_STAR, + ACTIONS(3689), 1, + anon_sym_LBRACK, + STATE(2235), 1, sym_macro_modifier, - STATE(2375), 1, + STATE(2397), 1, sym_parameter_list, - STATE(2439), 1, + STATE(2445), 1, sym__abstract_declarator, - ACTIONS(2282), 2, + ACTIONS(2311), 2, anon_sym___init, anon_sym___exit, - STATE(2380), 4, + STATE(2396), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [95394] = 5, - ACTIONS(4732), 1, - anon_sym_LBRACK, - ACTIONS(4911), 1, + [96164] = 5, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(4975), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2126), 2, + STATE(2142), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4727), 8, + ACTIONS(4973), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -163349,31 +165121,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [95419] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3662), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(3660), 9, - anon_sym___based, - anon_sym___init, - anon_sym___exit, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - [95442] = 3, + [96189] = 3, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3025), 12, + ACTIONS(3086), 12, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, @@ -163386,106 +165139,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___cold, anon_sym_asm, anon_sym___asm__, - [95463] = 10, + [96210] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, - anon_sym_LPAREN2, - ACTIONS(2049), 1, - anon_sym_STAR, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3650), 1, + ACTIONS(4896), 1, sym_identifier, - STATE(654), 1, - sym__old_style_function_declarator, - STATE(2279), 1, - sym__declarator, - STATE(3337), 1, - sym_ms_based_modifier, - STATE(2209), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [95498] = 10, + ACTIONS(4977), 1, + aux_sym_preproc_if_token2, + ACTIONS(4979), 1, + aux_sym_preproc_else_token1, + ACTIONS(4981), 1, + aux_sym_preproc_elif_token1, + STATE(2272), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(3010), 1, + sym_enumerator, + ACTIONS(4983), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(3246), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [96244] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3650), 1, + ACTIONS(3681), 1, sym_identifier, - STATE(688), 1, - sym__old_style_function_declarator, - STATE(2279), 1, + STATE(2267), 1, sym__declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2209), 5, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [95533] = 3, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3104), 12, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - anon_sym_asm, - anon_sym___asm__, - [95554] = 10, + [96276] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, - anon_sym_LPAREN2, - ACTIONS(2049), 1, - anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3650), 1, + ACTIONS(3881), 1, sym_identifier, - STATE(626), 1, - sym__old_style_function_declarator, - STATE(2279), 1, - sym__declarator, - STATE(3337), 1, + ACTIONS(3883), 1, + anon_sym_LPAREN2, + ACTIONS(3885), 1, + anon_sym_STAR, + STATE(2295), 1, + sym__field_declarator, + STATE(3027), 1, sym_ms_based_modifier, - STATE(2209), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [95589] = 3, + STATE(2437), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [96308] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3037), 12, + ACTIONS(4770), 1, anon_sym_COMMA, + STATE(2179), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4985), 9, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -163495,15 +165228,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_asm, - anon_sym___asm__, - [95610] = 3, + [96332] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3100), 12, + ACTIONS(4697), 1, anon_sym_COMMA, + STATE(2165), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4987), 9, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -163513,129 +165247,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_asm, - anon_sym___asm__, - [95631] = 9, + [96356] = 9, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3881), 1, + sym_identifier, + ACTIONS(3883), 1, + anon_sym_LPAREN2, + ACTIONS(3885), 1, + anon_sym_STAR, + STATE(2299), 1, + sym__field_declarator, + STATE(3027), 1, + sym_ms_based_modifier, + STATE(2437), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [96388] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3650), 1, + ACTIONS(3681), 1, sym_identifier, - STATE(2241), 1, + STATE(2261), 1, sym__declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2209), 5, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [95663] = 7, + [96420] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4914), 1, + ACTIONS(4989), 1, anon_sym_SEMI, - ACTIONS(4760), 2, + ACTIONS(4831), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(4762), 2, + ACTIONS(4833), 2, anon_sym___scanf, anon_sym___printf, - STATE(2165), 2, + STATE(2082), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(4764), 4, + ACTIONS(4835), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [95691] = 7, + [96448] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4916), 1, + ACTIONS(4991), 1, anon_sym_SEMI, - ACTIONS(4760), 2, + ACTIONS(4831), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(4762), 2, + ACTIONS(4833), 2, anon_sym___scanf, anon_sym___printf, - STATE(2064), 2, + STATE(2082), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(4764), 4, + ACTIONS(4835), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [95719] = 9, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2047), 1, - anon_sym_LPAREN2, - ACTIONS(2049), 1, - anon_sym_STAR, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3650), 1, - sym_identifier, - STATE(2262), 1, - sym__declarator, - STATE(3337), 1, - sym_ms_based_modifier, - STATE(2209), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [95751] = 9, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2047), 1, - anon_sym_LPAREN2, - ACTIONS(2049), 1, - anon_sym_STAR, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3650), 1, - sym_identifier, - STATE(2277), 1, - sym__declarator, - STATE(3337), 1, - sym_ms_based_modifier, - STATE(2209), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [95783] = 5, + [96476] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4650), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - STATE(2141), 1, + STATE(2165), 1, aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4918), 9, + ACTIONS(4996), 9, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -163645,1155 +165354,1087 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [95807] = 5, + [96500] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4920), 1, - anon_sym_COMMA, - STATE(2141), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4923), 9, + ACTIONS(4896), 1, + sym_identifier, + ACTIONS(4979), 1, + aux_sym_preproc_else_token1, + ACTIONS(4981), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4998), 1, + aux_sym_preproc_if_token2, + STATE(2175), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(3010), 1, + sym_enumerator, + ACTIONS(4983), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(3214), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [96534] = 7, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5000), 1, anon_sym_SEMI, + ACTIONS(4831), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4833), 2, anon_sym___scanf, anon_sym___printf, + STATE(2082), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(4835), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [95831] = 5, + [96562] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4650), 1, - anon_sym_COMMA, - STATE(2140), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4925), 9, + ACTIONS(5002), 1, anon_sym_SEMI, + ACTIONS(4831), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4833), 2, anon_sym___scanf, anon_sym___printf, + STATE(2082), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(4835), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [95855] = 5, + [96590] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4650), 1, - anon_sym_COMMA, - STATE(2141), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4927), 9, + ACTIONS(5004), 1, anon_sym_SEMI, + ACTIONS(4831), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4833), 2, anon_sym___scanf, anon_sym___printf, + STATE(2163), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(4835), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [95879] = 9, + [96618] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3876), 1, - sym_identifier, - ACTIONS(3878), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(3880), 1, + ACTIONS(2092), 1, anon_sym_STAR, - STATE(1948), 1, - sym__field_declarator, - STATE(3201), 1, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3681), 1, + sym_identifier, + STATE(2290), 1, + sym__declarator, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2054), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [95911] = 9, + STATE(2220), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [96650] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4736), 1, + ACTIONS(4799), 1, sym_identifier, - ACTIONS(4929), 1, + ACTIONS(5006), 1, aux_sym_preproc_if_token2, - ACTIONS(4931), 1, + ACTIONS(5008), 1, aux_sym_preproc_else_token1, - ACTIONS(4933), 1, + ACTIONS(5010), 1, aux_sym_preproc_elif_token1, - ACTIONS(4935), 2, + ACTIONS(5012), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(2270), 2, + STATE(2282), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(3287), 3, + STATE(3018), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [95943] = 10, + [96682] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4829), 1, + ACTIONS(4799), 1, + sym_identifier, + ACTIONS(5008), 1, + aux_sym_preproc_else_token1, + ACTIONS(5010), 1, + aux_sym_preproc_elif_token1, + ACTIONS(5014), 1, + aux_sym_preproc_if_token2, + ACTIONS(5012), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(2282), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(3251), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [96714] = 9, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4799), 1, sym_identifier, - ACTIONS(4937), 1, + ACTIONS(5008), 1, + aux_sym_preproc_else_token1, + ACTIONS(5010), 1, + aux_sym_preproc_elif_token1, + ACTIONS(5016), 1, aux_sym_preproc_if_token2, - ACTIONS(4939), 1, + ACTIONS(5012), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(2282), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(3156), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [96746] = 10, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4896), 1, + sym_identifier, + ACTIONS(4979), 1, aux_sym_preproc_else_token1, - ACTIONS(4941), 1, + ACTIONS(4981), 1, aux_sym_preproc_elif_token1, - STATE(2246), 1, + ACTIONS(5018), 1, + aux_sym_preproc_if_token2, + STATE(2272), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(3046), 1, + STATE(3010), 1, + sym_enumerator, + ACTIONS(4983), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(3153), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [96780] = 10, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4896), 1, + sym_identifier, + ACTIONS(4979), 1, + aux_sym_preproc_else_token1, + ACTIONS(4981), 1, + aux_sym_preproc_elif_token1, + ACTIONS(5020), 1, + aux_sym_preproc_if_token2, + STATE(2272), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(3010), 1, sym_enumerator, - ACTIONS(4943), 2, + ACTIONS(4983), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(3191), 3, + STATE(3009), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [95977] = 9, + [96814] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3650), 1, + ACTIONS(3681), 1, sym_identifier, - STATE(2259), 1, + STATE(2266), 1, sym__declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2209), 5, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [96009] = 7, + [96846] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4945), 1, - anon_sym_SEMI, - ACTIONS(4760), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(4762), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(2064), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(4764), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [96037] = 9, + ACTIONS(2090), 1, + anon_sym_LPAREN2, + ACTIONS(2092), 1, + anon_sym_STAR, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3681), 1, + sym_identifier, + STATE(2289), 1, + sym__declarator, + STATE(3453), 1, + sym_ms_based_modifier, + STATE(2220), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [96878] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4736), 1, + ACTIONS(4811), 1, + aux_sym_preproc_if_token2, + ACTIONS(4896), 1, sym_identifier, - ACTIONS(4931), 1, + ACTIONS(4979), 1, aux_sym_preproc_else_token1, - ACTIONS(4933), 1, + ACTIONS(4981), 1, aux_sym_preproc_elif_token1, - ACTIONS(4947), 1, - aux_sym_preproc_if_token2, - ACTIONS(4935), 2, + STATE(2156), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(3010), 1, + sym_enumerator, + ACTIONS(4983), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(2172), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(3095), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [96069] = 7, + STATE(3206), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [96912] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4949), 1, + ACTIONS(5022), 1, + anon_sym_COMMA, + STATE(2179), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(5025), 9, anon_sym_SEMI, - ACTIONS(4760), 2, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(4762), 2, anon_sym___scanf, anon_sym___printf, - STATE(2064), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(4764), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [96097] = 7, + [96936] = 9, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5027), 1, + sym_identifier, + ACTIONS(5030), 1, + aux_sym_preproc_if_token1, + ACTIONS(5036), 1, + sym_preproc_directive, + ACTIONS(5039), 1, + anon_sym_RBRACE, + ACTIONS(5033), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(3244), 2, + sym_preproc_call, + sym_enumerator, + STATE(2180), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [96968] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4951), 1, + ACTIONS(5041), 1, anon_sym_SEMI, - ACTIONS(4760), 2, + ACTIONS(4831), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(4762), 2, + ACTIONS(4833), 2, anon_sym___scanf, anon_sym___printf, - STATE(2064), 2, + STATE(2168), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(4764), 4, + ACTIONS(4835), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [96125] = 10, + [96996] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4746), 1, - aux_sym_preproc_if_token2, - ACTIONS(4829), 1, + ACTIONS(5043), 1, sym_identifier, - ACTIONS(4939), 1, - aux_sym_preproc_else_token1, - ACTIONS(4941), 1, - aux_sym_preproc_elif_token1, - STATE(2146), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(3046), 1, - sym_enumerator, - ACTIONS(4943), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(3094), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [96159] = 5, + STATE(949), 1, + sym_string_literal, + ACTIONS(5045), 2, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(2461), 2, + sym__string, + sym_concatenated_string, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [97024] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4953), 1, - anon_sym_COMMA, - STATE(2153), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4956), 9, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [96183] = 9, + ACTIONS(2090), 1, + anon_sym_LPAREN2, + ACTIONS(2092), 1, + anon_sym_STAR, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3681), 1, + sym_identifier, + STATE(2319), 1, + sym__declarator, + STATE(3453), 1, + sym_ms_based_modifier, + STATE(2220), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [97056] = 9, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3887), 1, + sym_identifier, + ACTIONS(3889), 1, + anon_sym_LPAREN2, + ACTIONS(3891), 1, + anon_sym_STAR, + STATE(1983), 1, + sym__field_declarator, + STATE(3316), 1, + sym_ms_based_modifier, + STATE(2081), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [97088] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4736), 1, + ACTIONS(4799), 1, sym_identifier, - ACTIONS(4931), 1, + ACTIONS(5008), 1, aux_sym_preproc_else_token1, - ACTIONS(4933), 1, + ACTIONS(5010), 1, aux_sym_preproc_elif_token1, - ACTIONS(4958), 1, + ACTIONS(5047), 1, aux_sym_preproc_if_token2, - ACTIONS(4935), 2, + ACTIONS(5012), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(2145), 2, + STATE(2172), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(3190), 3, + STATE(3207), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [96215] = 7, + [97120] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4960), 1, + ACTIONS(4697), 1, + anon_sym_COMMA, + STATE(2160), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(5049), 9, anon_sym_SEMI, - ACTIONS(4760), 2, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(4762), 2, anon_sym___scanf, anon_sym___printf, - STATE(2151), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(4764), 4, anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [96243] = 10, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4738), 1, - aux_sym_preproc_if_token2, - ACTIONS(4829), 1, - sym_identifier, - ACTIONS(4939), 1, - aux_sym_preproc_else_token1, - ACTIONS(4941), 1, - aux_sym_preproc_elif_token1, - STATE(2182), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(3046), 1, - sym_enumerator, - ACTIONS(4943), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(3189), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [96277] = 7, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4962), 1, - anon_sym_SEMI, - ACTIONS(4760), 2, - anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(4762), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(2064), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(4764), 4, - anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [96305] = 9, + [97144] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3650), 1, + ACTIONS(3681), 1, sym_identifier, - STATE(2247), 1, + STATE(2273), 1, sym__declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2209), 5, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [96337] = 7, + [97176] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4964), 1, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3881), 1, + sym_identifier, + ACTIONS(3883), 1, + anon_sym_LPAREN2, + ACTIONS(3885), 1, + anon_sym_STAR, + STATE(2318), 1, + sym__field_declarator, + STATE(3027), 1, + sym_ms_based_modifier, + STATE(2437), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [97208] = 7, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5051), 1, anon_sym_SEMI, - ACTIONS(4760), 2, + ACTIONS(4831), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(4762), 2, + ACTIONS(4833), 2, anon_sym___scanf, anon_sym___printf, - STATE(2191), 2, + STATE(2082), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(4764), 4, + ACTIONS(4835), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [96365] = 7, + [97236] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4966), 1, + ACTIONS(5053), 1, anon_sym_SEMI, - ACTIONS(4760), 2, + ACTIONS(4831), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(4762), 2, + ACTIONS(4833), 2, anon_sym___scanf, anon_sym___printf, - STATE(2150), 2, + STATE(2082), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(4764), 4, + ACTIONS(4835), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [96393] = 9, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3882), 1, - sym_identifier, - ACTIONS(3884), 1, - anon_sym_LPAREN2, - ACTIONS(3886), 1, - anon_sym_STAR, - STATE(2275), 1, - sym__field_declarator, - STATE(3061), 1, - sym_ms_based_modifier, - STATE(2422), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [96425] = 9, + [97264] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3650), 1, + ACTIONS(3681), 1, sym_identifier, - STATE(2254), 1, + STATE(2301), 1, sym__declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2209), 5, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [96457] = 7, + [97296] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4968), 1, + ACTIONS(4697), 1, + anon_sym_COMMA, + STATE(2165), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(5055), 9, anon_sym_SEMI, - ACTIONS(4760), 2, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(4762), 2, anon_sym___scanf, anon_sym___printf, - STATE(2168), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(4764), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [96485] = 9, + [97320] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, - anon_sym_LPAREN2, - ACTIONS(2049), 1, - anon_sym_STAR, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3650), 1, - sym_identifier, - STATE(2251), 1, - sym__declarator, - STATE(3337), 1, - sym_ms_based_modifier, - STATE(2209), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [96517] = 7, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4970), 1, + ACTIONS(5057), 1, anon_sym_SEMI, - ACTIONS(4760), 2, + ACTIONS(4831), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(4762), 2, + ACTIONS(4833), 2, anon_sym___scanf, anon_sym___printf, - STATE(2064), 2, + STATE(2164), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(4764), 4, + ACTIONS(4835), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [96545] = 9, + [97348] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2049), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2094), 1, anon_sym___based, - ACTIONS(3650), 1, + ACTIONS(3681), 1, sym_identifier, - STATE(2273), 1, + STATE(2285), 1, sym__declarator, - STATE(3337), 1, + STATE(3453), 1, sym_ms_based_modifier, - STATE(2209), 5, + STATE(2220), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [96577] = 7, + [97380] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4972), 1, + ACTIONS(5059), 1, anon_sym_SEMI, - ACTIONS(4760), 2, + ACTIONS(4831), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(4762), 2, + ACTIONS(4833), 2, anon_sym___scanf, anon_sym___printf, STATE(2190), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(4764), 4, + ACTIONS(4835), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [96605] = 7, + [97408] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4974), 1, + ACTIONS(5061), 1, anon_sym_SEMI, - ACTIONS(4760), 2, + ACTIONS(4831), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(4762), 2, + ACTIONS(4833), 2, anon_sym___scanf, anon_sym___printf, - STATE(2064), 2, + STATE(2167), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(4764), 4, + ACTIONS(4835), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [96633] = 7, + [97436] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4976), 1, + ACTIONS(5063), 1, anon_sym_SEMI, - ACTIONS(4760), 2, + ACTIONS(4831), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(4762), 2, + ACTIONS(4833), 2, anon_sym___scanf, anon_sym___printf, - STATE(2137), 2, + STATE(2205), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(4764), 4, + ACTIONS(4835), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [96661] = 7, + [97464] = 9, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2090), 1, + anon_sym_LPAREN2, + ACTIONS(2092), 1, + anon_sym_STAR, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3681), 1, + sym_identifier, + STATE(2279), 1, + sym__declarator, + STATE(3453), 1, + sym_ms_based_modifier, + STATE(2220), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [97496] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4978), 1, + ACTIONS(5065), 1, anon_sym_SEMI, - ACTIONS(4760), 2, + ACTIONS(4831), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(4762), 2, + ACTIONS(4833), 2, anon_sym___scanf, anon_sym___printf, - STATE(2064), 2, + STATE(2202), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(4764), 4, + ACTIONS(4835), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [96689] = 10, + [97524] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4829), 1, + ACTIONS(2094), 1, + anon_sym___based, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(4939), 1, - aux_sym_preproc_else_token1, - ACTIONS(4941), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4980), 1, - aux_sym_preproc_if_token2, - STATE(2181), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(3046), 1, - sym_enumerator, - ACTIONS(4943), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(3051), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [96723] = 9, + ACTIONS(3883), 1, + anon_sym_LPAREN2, + ACTIONS(3885), 1, + anon_sym_STAR, + STATE(2313), 1, + sym__field_declarator, + STATE(3027), 1, + sym_ms_based_modifier, + STATE(2437), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [97556] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4736), 1, + ACTIONS(4896), 1, sym_identifier, - ACTIONS(4931), 1, + ACTIONS(4979), 1, aux_sym_preproc_else_token1, - ACTIONS(4933), 1, + ACTIONS(4981), 1, aux_sym_preproc_elif_token1, - ACTIONS(4982), 1, + ACTIONS(5067), 1, aux_sym_preproc_if_token2, - ACTIONS(4935), 2, + STATE(2174), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(3010), 1, + sym_enumerator, + ACTIONS(4983), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(2270), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(3194), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [96755] = 7, + STATE(3054), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [97590] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4984), 1, + ACTIONS(5069), 1, anon_sym_SEMI, - ACTIONS(4760), 2, + ACTIONS(4831), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(4762), 2, + ACTIONS(4833), 2, anon_sym___scanf, anon_sym___printf, - STATE(2148), 2, + STATE(2082), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(4764), 4, + ACTIONS(4835), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [96783] = 7, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4986), 1, - sym_identifier, - STATE(944), 1, - sym_string_literal, - ACTIONS(4988), 2, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(2445), 2, - sym__string, - sym_concatenated_string, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [96811] = 9, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3882), 1, - sym_identifier, - ACTIONS(3884), 1, - anon_sym_LPAREN2, - ACTIONS(3886), 1, - anon_sym_STAR, - STATE(2293), 1, - sym__field_declarator, - STATE(3061), 1, - sym_ms_based_modifier, - STATE(2422), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [96843] = 5, + [97618] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4705), 1, - anon_sym_COMMA, - STATE(2153), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4990), 9, + ACTIONS(5071), 1, anon_sym_SEMI, + ACTIONS(4831), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4833), 2, anon_sym___scanf, anon_sym___printf, + STATE(2082), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(4835), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [96867] = 9, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2047), 1, - anon_sym_LPAREN2, - ACTIONS(2049), 1, - anon_sym_STAR, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3650), 1, - sym_identifier, - STATE(2256), 1, - sym__declarator, - STATE(3337), 1, - sym_ms_based_modifier, - STATE(2209), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [96899] = 9, + [97646] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4736), 1, + ACTIONS(4799), 1, sym_identifier, - ACTIONS(4931), 1, + ACTIONS(5008), 1, aux_sym_preproc_else_token1, - ACTIONS(4933), 1, + ACTIONS(5010), 1, aux_sym_preproc_elif_token1, - ACTIONS(4992), 1, + ACTIONS(5073), 1, aux_sym_preproc_if_token2, - ACTIONS(4935), 2, + ACTIONS(5012), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(2270), 2, + STATE(2209), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(3091), 3, + STATE(3158), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [96931] = 9, + [97678] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3882), 1, - sym_identifier, - ACTIONS(3884), 1, - anon_sym_LPAREN2, - ACTIONS(3886), 1, - anon_sym_STAR, - STATE(2272), 1, - sym__field_declarator, - STATE(3061), 1, - sym_ms_based_modifier, - STATE(2422), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [96963] = 9, + ACTIONS(5075), 1, + anon_sym_SEMI, + ACTIONS(4831), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4833), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(2082), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(4835), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [97706] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4994), 1, - sym_identifier, - ACTIONS(4997), 1, - aux_sym_preproc_if_token1, - ACTIONS(5003), 1, - sym_preproc_directive, - ACTIONS(5006), 1, - anon_sym_RBRACE, - ACTIONS(5000), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(3123), 2, - sym_preproc_call, - sym_enumerator, - STATE(2180), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [96995] = 10, + ACTIONS(5077), 1, + anon_sym_SEMI, + ACTIONS(4831), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4833), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(2189), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(4835), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [97734] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4829), 1, - sym_identifier, - ACTIONS(4939), 1, - aux_sym_preproc_else_token1, - ACTIONS(4941), 1, - aux_sym_preproc_elif_token1, - ACTIONS(5008), 1, + ACTIONS(4809), 1, aux_sym_preproc_if_token2, - STATE(2246), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(3046), 1, - sym_enumerator, - ACTIONS(4943), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(3084), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [97029] = 10, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4829), 1, + ACTIONS(4896), 1, sym_identifier, - ACTIONS(4939), 1, + ACTIONS(4979), 1, aux_sym_preproc_else_token1, - ACTIONS(4941), 1, + ACTIONS(4981), 1, aux_sym_preproc_elif_token1, - ACTIONS(5010), 1, - aux_sym_preproc_if_token2, - STATE(2246), 1, + STATE(2210), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(3046), 1, + STATE(3010), 1, sym_enumerator, - ACTIONS(4943), 2, + ACTIONS(4983), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(3283), 3, + STATE(3157), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [97063] = 9, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2047), 1, - anon_sym_LPAREN2, - ACTIONS(2049), 1, - anon_sym_STAR, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3650), 1, - sym_identifier, - STATE(2245), 1, - sym__declarator, - STATE(3337), 1, - sym_ms_based_modifier, - STATE(2209), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [97095] = 9, + [97768] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym___based, - ACTIONS(3882), 1, - sym_identifier, - ACTIONS(3884), 1, - anon_sym_LPAREN2, - ACTIONS(3886), 1, - anon_sym_STAR, - STATE(2295), 1, - sym__field_declarator, - STATE(3061), 1, - sym_ms_based_modifier, - STATE(2422), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [97127] = 10, + ACTIONS(5079), 1, + anon_sym_SEMI, + ACTIONS(4831), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4833), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(2203), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(4835), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [97796] = 9, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4829), 1, + ACTIONS(4799), 1, sym_identifier, - ACTIONS(4939), 1, + ACTIONS(5008), 1, aux_sym_preproc_else_token1, - ACTIONS(4941), 1, + ACTIONS(5010), 1, aux_sym_preproc_elif_token1, - ACTIONS(5012), 1, + ACTIONS(5081), 1, aux_sym_preproc_if_token2, - STATE(2186), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(3046), 1, - sym_enumerator, - ACTIONS(4943), 2, + ACTIONS(5012), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(3126), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [97161] = 10, + STATE(2282), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(3225), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [97828] = 10, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4829), 1, + ACTIONS(4896), 1, sym_identifier, - ACTIONS(4939), 1, + ACTIONS(4979), 1, aux_sym_preproc_else_token1, - ACTIONS(4941), 1, + ACTIONS(4981), 1, aux_sym_preproc_elif_token1, - ACTIONS(5014), 1, + ACTIONS(5083), 1, aux_sym_preproc_if_token2, - STATE(2246), 1, + STATE(2272), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(3046), 1, + STATE(3010), 1, sym_enumerator, - ACTIONS(4943), 2, + ACTIONS(4983), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(3047), 3, + STATE(3219), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [97195] = 7, + [97862] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(5016), 1, + ACTIONS(5085), 1, anon_sym_SEMI, - ACTIONS(4760), 2, + ACTIONS(4831), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(4762), 2, + ACTIONS(4833), 2, anon_sym___scanf, anon_sym___printf, - STATE(2157), 2, + STATE(2212), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(4764), 4, + ACTIONS(4835), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [97223] = 7, + [97890] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(5018), 1, + ACTIONS(5087), 1, anon_sym_SEMI, - ACTIONS(4760), 2, + ACTIONS(4831), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(4762), 2, + ACTIONS(4833), 2, anon_sym___scanf, anon_sym___printf, - STATE(2170), 2, + STATE(2082), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(4764), 4, + ACTIONS(4835), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [97251] = 9, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4736), 1, - sym_identifier, - ACTIONS(4931), 1, - aux_sym_preproc_else_token1, - ACTIONS(4933), 1, - aux_sym_preproc_elif_token1, - ACTIONS(5020), 1, - aux_sym_preproc_if_token2, - ACTIONS(4935), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(2270), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(3043), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [97283] = 7, - ACTIONS(3), 1, + [97918] = 3, + ACTIONS(5091), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(5022), 1, + ACTIONS(5089), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - ACTIONS(4760), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(4762), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(2064), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(4764), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [97311] = 7, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [97937] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(5024), 1, + ACTIONS(5093), 1, anon_sym_SEMI, - ACTIONS(4760), 2, + STATE(3204), 1, + sym_attribute_specifier, + ACTIONS(4131), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(4762), 2, + ACTIONS(4133), 2, anon_sym___scanf, anon_sym___printf, - STATE(2064), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(4764), 4, + ACTIONS(4135), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [97339] = 6, - ACTIONS(5028), 1, - anon_sym_LBRACK, - STATE(2421), 1, - sym_gnu_asm_input_operand, - STATE(2976), 1, - sym_string_literal, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(5026), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5030), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [97364] = 3, - ACTIONS(5034), 1, + [97964] = 3, + ACTIONS(5097), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5032), 9, + ACTIONS(5095), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -164803,30 +166444,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [97383] = 4, - ACTIONS(3), 1, + [97983] = 10, + ACTIONS(393), 1, + anon_sym_LBRACE, + ACTIONS(4892), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4894), 1, + anon_sym_LBRACK, + ACTIONS(5099), 1, + anon_sym_LPAREN2, + ACTIONS(5101), 1, + anon_sym_EQ, + STATE(323), 1, + sym_compound_statement, + STATE(1319), 1, + sym__old_style_parameter_list, + STATE(1741), 1, + sym_parameter_list, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(3717), 3, - anon_sym_LPAREN2, - anon_sym_STAR, + STATE(2154), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [98016] = 10, + ACTIONS(625), 1, + anon_sym_LBRACE, + ACTIONS(4892), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4894), 1, anon_sym_LBRACK, - ACTIONS(3715), 7, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - [97404] = 3, - ACTIONS(5038), 1, + ACTIONS(5099), 1, + anon_sym_LPAREN2, + ACTIONS(5101), 1, + anon_sym_EQ, + STATE(344), 1, + sym_compound_statement, + STATE(1319), 1, + sym__old_style_parameter_list, + STATE(1741), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + STATE(2154), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [98049] = 3, + ACTIONS(5105), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5036), 9, + ACTIONS(5103), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -164836,12 +166506,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [97423] = 3, + [98068] = 3, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(5040), 10, + ACTIONS(5107), 10, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, @@ -164852,13 +166522,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [97442] = 3, - ACTIONS(2013), 1, + [98087] = 3, + ACTIONS(3702), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(2015), 9, + ACTIONS(5109), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -164868,33 +166538,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [97461] = 7, - ACTIONS(3), 1, + [98106] = 6, + ACTIONS(5113), 1, + anon_sym_LBRACK, + STATE(2428), 1, + sym_gnu_asm_output_operand, + STATE(3311), 1, + sym_string_literal, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(5042), 1, - anon_sym_SEMI, - STATE(2970), 1, - sym_attribute_specifier, - ACTIONS(4054), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(4056), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(4058), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [97488] = 3, - ACTIONS(5046), 1, + ACTIONS(5111), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5115), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [98131] = 3, + ACTIONS(5119), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5044), 9, + ACTIONS(5117), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -164904,13 +166573,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [97507] = 3, - ACTIONS(5050), 1, + [98150] = 3, + ACTIONS(2060), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5048), 9, + ACTIONS(2062), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -164920,95 +166589,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [97526] = 10, - ACTIONS(463), 1, - anon_sym_LBRACE, - ACTIONS(4845), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + [98169] = 6, + ACTIONS(5123), 1, anon_sym_LBRACK, - ACTIONS(5052), 1, - anon_sym_LPAREN2, - ACTIONS(5054), 1, - anon_sym_EQ, - STATE(341), 1, - sym_compound_statement, - STATE(1310), 1, - sym__old_style_parameter_list, - STATE(1720), 1, - sym_parameter_list, + STATE(2487), 1, + sym_gnu_asm_input_operand, + STATE(3096), 1, + sym_string_literal, ACTIONS(5), 2, sym__linux_kernel_annotations, - sym_comment, - STATE(2120), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [97559] = 7, + sym_comment, + ACTIONS(5121), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5115), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [98194] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(5056), 1, + ACTIONS(5125), 1, anon_sym_SEMI, - STATE(3154), 1, + STATE(3463), 1, sym_attribute_specifier, - ACTIONS(4054), 2, + ACTIONS(4131), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(4056), 2, + ACTIONS(4133), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(4058), 4, + ACTIONS(4135), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [97586] = 10, - ACTIONS(49), 1, - anon_sym_LBRACE, - ACTIONS(4845), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, - anon_sym_LBRACK, - ACTIONS(5052), 1, - anon_sym_LPAREN2, - ACTIONS(5054), 1, - anon_sym_EQ, - STATE(394), 1, - sym_compound_statement, - STATE(1310), 1, - sym__old_style_parameter_list, - STATE(1720), 1, - sym_parameter_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - STATE(2120), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [97619] = 3, - ACTIONS(5060), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(5058), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [97638] = 3, - ACTIONS(5064), 1, + [98221] = 3, + ACTIONS(5129), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5062), 9, + ACTIONS(5127), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -165018,13 +166644,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [97657] = 3, - ACTIONS(2009), 1, + [98240] = 3, + ACTIONS(2056), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(2011), 9, + ACTIONS(2058), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -165034,13 +166660,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [97676] = 3, - ACTIONS(5068), 1, + [98259] = 3, + ACTIONS(5133), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5066), 9, + ACTIONS(5131), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -165050,292 +166676,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [97695] = 10, + [98278] = 10, ACTIONS(139), 1, anon_sym_LBRACE, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - ACTIONS(5052), 1, + ACTIONS(5099), 1, anon_sym_LPAREN2, - ACTIONS(5054), 1, + ACTIONS(5101), 1, anon_sym_EQ, - STATE(155), 1, + STATE(157), 1, sym_compound_statement, - STATE(1310), 1, + STATE(1319), 1, sym__old_style_parameter_list, - STATE(1720), 1, + STATE(1741), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [97728] = 3, - ACTIONS(3664), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(5070), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [97747] = 7, + [98311] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(5072), 1, + ACTIONS(5135), 1, anon_sym_SEMI, - STATE(3120), 1, + STATE(3016), 1, sym_attribute_specifier, - ACTIONS(4054), 2, + ACTIONS(4131), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(4056), 2, + ACTIONS(4133), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(4058), 4, + ACTIONS(4135), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [97774] = 6, - ACTIONS(5076), 1, - anon_sym_LBRACK, - STATE(2415), 1, - sym_gnu_asm_output_operand, - STATE(3080), 1, - sym_string_literal, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(5074), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5030), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [97799] = 10, - ACTIONS(393), 1, + [98338] = 10, + ACTIONS(49), 1, anon_sym_LBRACE, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - ACTIONS(5052), 1, + ACTIONS(5099), 1, anon_sym_LPAREN2, - ACTIONS(5054), 1, + ACTIONS(5101), 1, anon_sym_EQ, - STATE(308), 1, + STATE(401), 1, sym_compound_statement, - STATE(1310), 1, + STATE(1319), 1, sym__old_style_parameter_list, - STATE(1720), 1, + STATE(1741), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [97832] = 4, - ACTIONS(3664), 1, + [98371] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3787), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(3785), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + [98392] = 3, + ACTIONS(5139), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5070), 4, + ACTIONS(5137), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(5078), 4, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_asm, anon_sym___asm__, - [97852] = 6, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4986), 1, - sym_identifier, - STATE(944), 1, - sym_string_literal, - STATE(2554), 2, - sym__string, - sym_concatenated_string, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [97876] = 9, - ACTIONS(139), 1, + [98411] = 9, + ACTIONS(625), 1, anon_sym_LBRACE, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - ACTIONS(5052), 1, + ACTIONS(5099), 1, anon_sym_LPAREN2, - STATE(132), 1, + STATE(367), 1, sym_compound_statement, - STATE(1310), 1, + STATE(1319), 1, sym__old_style_parameter_list, - STATE(1721), 1, + STATE(1743), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [97906] = 9, - ACTIONS(393), 1, - anon_sym_LBRACE, - ACTIONS(4843), 1, + [98441] = 7, + ACTIONS(2307), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(2309), 1, + anon_sym_STAR, + ACTIONS(3689), 1, anon_sym_LBRACK, - ACTIONS(5054), 1, - anon_sym_EQ, - STATE(308), 1, - sym_compound_statement, - STATE(1720), 1, + STATE(2397), 1, sym_parameter_list, + STATE(2493), 1, + sym__abstract_declarator, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [97936] = 9, + STATE(2396), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + [98467] = 6, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5043), 1, + sym_identifier, + STATE(949), 1, + sym_string_literal, + STATE(2761), 2, + sym__string, + sym_concatenated_string, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [98491] = 9, ACTIONS(139), 1, anon_sym_LBRACE, - ACTIONS(4843), 1, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - ACTIONS(5054), 1, + ACTIONS(5101), 1, anon_sym_EQ, - STATE(155), 1, + STATE(157), 1, sym_compound_statement, - STATE(1720), 1, + STATE(1741), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [97966] = 9, - ACTIONS(393), 1, - anon_sym_LBRACE, - ACTIONS(4845), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, - anon_sym_LBRACK, - ACTIONS(5052), 1, - anon_sym_LPAREN2, - STATE(319), 1, - sym_compound_statement, - STATE(1310), 1, - sym__old_style_parameter_list, - STATE(1721), 1, - sym_parameter_list, - ACTIONS(5), 2, + [98521] = 6, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - STATE(2120), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [97996] = 6, + ACTIONS(5043), 1, + sym_identifier, + STATE(949), 1, + sym_string_literal, + STATE(2653), 2, + sym__string, + sym_concatenated_string, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [98545] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(5080), 1, + ACTIONS(5043), 1, sym_identifier, - ACTIONS(5084), 1, - sym_system_lib_string, - STATE(3404), 2, - sym_preproc_call_expression, + STATE(949), 1, sym_string_literal, - ACTIONS(5082), 5, + STATE(2730), 2, + sym__string, + sym_concatenated_string, + ACTIONS(105), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [98020] = 9, - ACTIONS(463), 1, - anon_sym_LBRACE, - ACTIONS(4843), 1, - anon_sym_LPAREN2, - ACTIONS(4845), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, - anon_sym_LBRACK, - ACTIONS(5054), 1, - anon_sym_EQ, - STATE(341), 1, - sym_compound_statement, - STATE(1720), 1, - sym_parameter_list, - ACTIONS(5), 2, + [98569] = 6, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - STATE(2120), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [98050] = 6, + ACTIONS(5043), 1, + sym_identifier, + STATE(949), 1, + sym_string_literal, + STATE(2763), 2, + sym__string, + sym_concatenated_string, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [98593] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(5086), 1, + ACTIONS(5141), 1, sym_identifier, - ACTIONS(5088), 1, + ACTIONS(5145), 1, sym_system_lib_string, - STATE(3289), 2, + STATE(3266), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(5082), 5, + ACTIONS(5143), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [98074] = 6, + [98617] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4986), 1, + ACTIONS(5043), 1, sym_identifier, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(2726), 2, + STATE(2622), 2, sym__string, sym_concatenated_string, ACTIONS(105), 5, @@ -165344,76 +166944,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [98098] = 9, + [98641] = 6, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5147), 1, + sym_identifier, + ACTIONS(5149), 1, + sym_system_lib_string, + STATE(3323), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(5143), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [98665] = 9, ACTIONS(49), 1, anon_sym_LBRACE, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - ACTIONS(5052), 1, + ACTIONS(5099), 1, anon_sym_LPAREN2, - STATE(399), 1, + STATE(395), 1, sym_compound_statement, - STATE(1310), 1, + STATE(1319), 1, sym__old_style_parameter_list, - STATE(1721), 1, + STATE(1743), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [98128] = 6, - ACTIONS(3), 1, + [98695] = 4, + ACTIONS(3702), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(4986), 1, - sym_identifier, - STATE(944), 1, - sym_string_literal, - STATE(2596), 2, - sym__string, - sym_concatenated_string, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [98152] = 9, - ACTIONS(463), 1, + ACTIONS(5109), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(5151), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [98715] = 9, + ACTIONS(139), 1, anon_sym_LBRACE, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - ACTIONS(5052), 1, + ACTIONS(5099), 1, anon_sym_LPAREN2, - STATE(321), 1, + STATE(130), 1, sym_compound_statement, - STATE(1310), 1, + STATE(1319), 1, sym__old_style_parameter_list, - STATE(1721), 1, + STATE(1743), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [98182] = 6, + [98745] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4986), 1, + ACTIONS(5043), 1, sym_identifier, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(2514), 2, + STATE(2579), 2, sym__string, sym_concatenated_string, ACTIONS(105), 5, @@ -165422,91 +167038,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [98206] = 9, - ACTIONS(49), 1, + [98769] = 9, + ACTIONS(393), 1, anon_sym_LBRACE, - ACTIONS(4843), 1, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - ACTIONS(5054), 1, + ACTIONS(5101), 1, anon_sym_EQ, - STATE(394), 1, + STATE(323), 1, sym_compound_statement, - STATE(1720), 1, + STATE(1741), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [98236] = 6, - ACTIONS(3), 1, + [98799] = 9, + ACTIONS(393), 1, + anon_sym_LBRACE, + ACTIONS(4892), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4894), 1, + anon_sym_LBRACK, + ACTIONS(5099), 1, + anon_sym_LPAREN2, + STATE(308), 1, + sym_compound_statement, + STATE(1319), 1, + sym__old_style_parameter_list, + STATE(1743), 1, + sym_parameter_list, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(4986), 1, - sym_identifier, - STATE(944), 1, - sym_string_literal, - STATE(2562), 2, - sym__string, - sym_concatenated_string, - ACTIONS(105), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [98260] = 6, + STATE(2154), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [98829] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(5090), 1, + ACTIONS(5153), 1, sym_identifier, - ACTIONS(5092), 1, + ACTIONS(5155), 1, sym_system_lib_string, - STATE(3178), 2, + STATE(3141), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(5082), 5, + ACTIONS(5143), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [98284] = 6, + [98853] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4986), 1, + ACTIONS(5157), 1, sym_identifier, - STATE(944), 1, + ACTIONS(5159), 1, + sym_system_lib_string, + STATE(3089), 2, + sym_preproc_call_expression, sym_string_literal, - STATE(2595), 2, - sym__string, - sym_concatenated_string, - ACTIONS(105), 5, + ACTIONS(5143), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [98308] = 6, + [98877] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4986), 1, + ACTIONS(5043), 1, sym_identifier, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(2743), 2, + STATE(2496), 2, sym__string, sym_concatenated_string, ACTIONS(105), 5, @@ -165515,72 +167134,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [98332] = 7, - ACTIONS(2278), 1, - anon_sym_LPAREN2, - ACTIONS(2280), 1, - anon_sym_STAR, - ACTIONS(3658), 1, - anon_sym_LBRACK, - STATE(2375), 1, - sym_parameter_list, - STATE(2439), 1, - sym__abstract_declarator, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - STATE(2380), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - [98358] = 6, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5094), 1, - sym_identifier, - ACTIONS(5096), 1, - sym_system_lib_string, - STATE(3159), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(5082), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [98382] = 7, - ACTIONS(2278), 1, + [98901] = 7, + ACTIONS(2307), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2309), 1, anon_sym_STAR, - ACTIONS(3658), 1, + ACTIONS(3689), 1, anon_sym_LBRACK, - STATE(2375), 1, + STATE(2397), 1, sym_parameter_list, - STATE(2409), 1, + STATE(2445), 1, sym__abstract_declarator, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2380), 4, + STATE(2396), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [98408] = 6, + [98927] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4986), 1, + ACTIONS(5043), 1, sym_identifier, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(2732), 2, + STATE(2577), 2, sym__string, sym_concatenated_string, ACTIONS(105), 5, @@ -165589,16 +167171,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [98432] = 6, + [98951] = 6, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4986), 1, + ACTIONS(5043), 1, sym_identifier, - STATE(944), 1, + STATE(949), 1, sym_string_literal, - STATE(2493), 2, + STATE(2614), 2, sym__string, sym_concatenated_string, ACTIONS(105), 5, @@ -165607,1733 +167189,1717 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [98456] = 7, - ACTIONS(4843), 1, + [98975] = 9, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(1721), 1, + ACTIONS(5101), 1, + anon_sym_EQ, + STATE(401), 1, + sym_compound_statement, + STATE(1741), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5098), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [98481] = 8, - ACTIONS(49), 1, + [99005] = 9, + ACTIONS(625), 1, anon_sym_LBRACE, - ACTIONS(4843), 1, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(408), 1, + ACTIONS(5101), 1, + anon_sym_EQ, + STATE(344), 1, sym_compound_statement, - STATE(1721), 1, + STATE(1741), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [98508] = 8, - ACTIONS(463), 1, + [99035] = 8, + ACTIONS(139), 1, anon_sym_LBRACE, - ACTIONS(4843), 1, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(350), 1, + STATE(136), 1, sym_compound_statement, - STATE(1720), 1, + STATE(1743), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [98535] = 8, - ACTIONS(463), 1, + [99062] = 8, + ACTIONS(393), 1, anon_sym_LBRACE, - ACTIONS(4843), 1, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(321), 1, + STATE(356), 1, sym_compound_statement, - STATE(1721), 1, + STATE(1741), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [98562] = 8, - ACTIONS(463), 1, + [99089] = 8, + ACTIONS(625), 1, anon_sym_LBRACE, - ACTIONS(4843), 1, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(358), 1, + STATE(366), 1, sym_compound_statement, - STATE(1721), 1, + STATE(1743), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [98589] = 8, - ACTIONS(463), 1, + [99116] = 8, + ACTIONS(139), 1, anon_sym_LBRACE, - ACTIONS(4843), 1, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(317), 1, + STATE(135), 1, sym_compound_statement, - STATE(1720), 1, + STATE(1743), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [98616] = 5, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5104), 1, - anon_sym_EQ, - ACTIONS(5100), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(5102), 5, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [98637] = 5, - ACTIONS(5028), 1, + [99143] = 5, + ACTIONS(5113), 1, anon_sym_LBRACK, - STATE(2711), 1, - sym_gnu_asm_input_operand, - STATE(2976), 1, + STATE(2581), 1, + sym_gnu_asm_output_operand, + STATE(3311), 1, sym_string_literal, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5030), 5, + ACTIONS(5115), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [98658] = 8, - ACTIONS(463), 1, + [99164] = 8, + ACTIONS(139), 1, anon_sym_LBRACE, - ACTIONS(4843), 1, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, + anon_sym_LBRACK, + STATE(156), 1, + sym_compound_statement, + STATE(1741), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + STATE(2154), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [99191] = 8, + ACTIONS(139), 1, + anon_sym_LBRACE, + ACTIONS(4890), 1, + anon_sym_LPAREN2, + ACTIONS(4892), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(352), 1, + STATE(153), 1, sym_compound_statement, - STATE(1721), 1, + STATE(1741), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [98685] = 7, + [99218] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(5106), 1, - sym_identifier, - ACTIONS(5111), 1, + ACTIONS(5165), 1, + anon_sym_EQ, + ACTIONS(5161), 2, aux_sym_preproc_elif_token1, - STATE(2246), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(3046), 1, - sym_enumerator, - ACTIONS(5109), 4, + sym_identifier, + ACTIONS(5163), 5, + anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [98710] = 8, - ACTIONS(139), 1, + [99239] = 8, + ACTIONS(49), 1, anon_sym_LBRACE, - ACTIONS(4843), 1, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(154), 1, + STATE(409), 1, sym_compound_statement, - STATE(1721), 1, + STATE(1743), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [98737] = 8, - ACTIONS(139), 1, + [99266] = 8, + ACTIONS(625), 1, anon_sym_LBRACE, - ACTIONS(4843), 1, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(152), 1, + STATE(360), 1, sym_compound_statement, - STATE(1721), 1, + STATE(1743), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [98764] = 8, - ACTIONS(393), 1, + [99293] = 5, + ACTIONS(5123), 1, + anon_sym_LBRACK, + STATE(2597), 1, + sym_gnu_asm_input_operand, + STATE(3096), 1, + sym_string_literal, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5115), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [99314] = 8, + ACTIONS(625), 1, anon_sym_LBRACE, - ACTIONS(4843), 1, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(336), 1, + STATE(354), 1, sym_compound_statement, - STATE(1720), 1, + STATE(1741), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [98791] = 8, - ACTIONS(463), 1, + [99341] = 8, + ACTIONS(625), 1, anon_sym_LBRACE, - ACTIONS(4843), 1, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(357), 1, + STATE(367), 1, sym_compound_statement, - STATE(1721), 1, + STATE(1743), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [98818] = 8, + [99368] = 8, ACTIONS(393), 1, anon_sym_LBRACE, - ACTIONS(4843), 1, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(359), 1, + STATE(326), 1, sym_compound_statement, - STATE(1721), 1, + STATE(1743), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [98845] = 8, + [99395] = 7, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5167), 1, + sym_identifier, + ACTIONS(5172), 1, + aux_sym_preproc_elif_token1, + STATE(2272), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(3010), 1, + sym_enumerator, + ACTIONS(5170), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [99420] = 8, ACTIONS(393), 1, anon_sym_LBRACE, - ACTIONS(4843), 1, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(369), 1, + STATE(331), 1, sym_compound_statement, - STATE(1720), 1, + STATE(1743), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [98872] = 8, - ACTIONS(463), 1, + [99447] = 8, + ACTIONS(393), 1, anon_sym_LBRACE, - ACTIONS(4843), 1, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(315), 1, + STATE(305), 1, sym_compound_statement, - STATE(1720), 1, + STATE(1741), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + STATE(2154), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [99474] = 7, + ACTIONS(4890), 1, + anon_sym_LPAREN2, + ACTIONS(4892), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4894), 1, + anon_sym_LBRACK, + STATE(1743), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + ACTIONS(5174), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [98899] = 8, + [99499] = 8, ACTIONS(139), 1, anon_sym_LBRACE, - ACTIONS(4843), 1, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(126), 1, + STATE(130), 1, sym_compound_statement, - STATE(1721), 1, + STATE(1743), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [98926] = 8, - ACTIONS(393), 1, + [99526] = 8, + ACTIONS(625), 1, anon_sym_LBRACE, - ACTIONS(4843), 1, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(319), 1, + STATE(328), 1, sym_compound_statement, - STATE(1721), 1, + STATE(1741), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [98953] = 8, - ACTIONS(49), 1, + [99553] = 8, + ACTIONS(393), 1, anon_sym_LBRACE, - ACTIONS(4843), 1, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(390), 1, + STATE(322), 1, sym_compound_statement, - STATE(1721), 1, + STATE(1741), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [98980] = 5, - ACTIONS(5076), 1, + [99580] = 8, + ACTIONS(625), 1, + anon_sym_LBRACE, + ACTIONS(4890), 1, + anon_sym_LPAREN2, + ACTIONS(4892), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(2688), 1, - sym_gnu_asm_output_operand, - STATE(3080), 1, - sym_string_literal, + STATE(373), 1, + sym_compound_statement, + STATE(1743), 1, + sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5030), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [99001] = 8, - ACTIONS(139), 1, + STATE(2154), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [99607] = 8, + ACTIONS(49), 1, anon_sym_LBRACE, - ACTIONS(4843), 1, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(132), 1, + STATE(395), 1, sym_compound_statement, - STATE(1721), 1, + STATE(1743), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99028] = 8, + [99634] = 8, ACTIONS(49), 1, anon_sym_LBRACE, - ACTIONS(4843), 1, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(378), 1, + STATE(381), 1, sym_compound_statement, - STATE(1721), 1, + STATE(1743), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99055] = 8, + [99661] = 6, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5176), 1, + sym_identifier, + ACTIONS(5181), 1, + aux_sym_preproc_elif_token1, + STATE(2282), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(5179), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [99684] = 8, ACTIONS(49), 1, anon_sym_LBRACE, - ACTIONS(4843), 1, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(392), 1, + STATE(408), 1, sym_compound_statement, - STATE(1720), 1, + STATE(1741), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99082] = 8, + [99711] = 8, ACTIONS(393), 1, anon_sym_LBRACE, - ACTIONS(4843), 1, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(328), 1, + STATE(308), 1, sym_compound_statement, - STATE(1721), 1, + STATE(1743), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99109] = 8, - ACTIONS(393), 1, + [99738] = 8, + ACTIONS(49), 1, anon_sym_LBRACE, - ACTIONS(4843), 1, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(327), 1, + STATE(380), 1, sym_compound_statement, - STATE(1721), 1, + STATE(1743), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99136] = 8, - ACTIONS(49), 1, + [99765] = 8, + ACTIONS(139), 1, anon_sym_LBRACE, - ACTIONS(4843), 1, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(372), 1, + STATE(133), 1, sym_compound_statement, - STATE(1720), 1, + STATE(1741), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99163] = 8, - ACTIONS(139), 1, + [99792] = 8, + ACTIONS(49), 1, anon_sym_LBRACE, - ACTIONS(4843), 1, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(144), 1, + STATE(397), 1, sym_compound_statement, - STATE(1720), 1, + STATE(1741), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99190] = 8, + [99819] = 8, ACTIONS(49), 1, anon_sym_LBRACE, - ACTIONS(4843), 1, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(397), 1, + STATE(406), 1, sym_compound_statement, - STATE(1720), 1, + STATE(1741), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99217] = 8, + [99846] = 8, ACTIONS(393), 1, anon_sym_LBRACE, - ACTIONS(4843), 1, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(305), 1, + STATE(325), 1, sym_compound_statement, - STATE(1720), 1, + STATE(1743), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99244] = 8, + [99873] = 8, ACTIONS(139), 1, anon_sym_LBRACE, - ACTIONS(4843), 1, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(141), 1, + STATE(144), 1, sym_compound_statement, - STATE(1720), 1, + STATE(1743), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99271] = 8, - ACTIONS(49), 1, + [99900] = 8, + ACTIONS(625), 1, anon_sym_LBRACE, - ACTIONS(4843), 1, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(375), 1, sym_compound_statement, - STATE(1721), 1, + STATE(1741), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99298] = 8, - ACTIONS(139), 1, - anon_sym_LBRACE, - ACTIONS(4843), 1, + [99927] = 7, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(134), 1, - sym_compound_statement, - STATE(1720), 1, + ACTIONS(5183), 1, + anon_sym_RPAREN, + STATE(1743), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99325] = 6, - ACTIONS(3), 1, + [99951] = 5, + ACTIONS(2403), 1, + anon_sym_LBRACK, + ACTIONS(5185), 1, + anon_sym_EQ, + ACTIONS(5187), 1, + anon_sym_DOT, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(5113), 1, - sym_identifier, - ACTIONS(5118), 1, - aux_sym_preproc_elif_token1, - STATE(2270), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(5116), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [99348] = 7, - ACTIONS(4715), 1, + STATE(2320), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [99971] = 7, + ACTIONS(4768), 1, anon_sym_RPAREN, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5120), 1, + ACTIONS(5189), 1, anon_sym_LPAREN2, - ACTIONS(5122), 1, + ACTIONS(5191), 1, anon_sym_LBRACK, STATE(2432), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2320), 2, + STATE(2340), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99372] = 7, - ACTIONS(4845), 1, + [99995] = 7, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5120), 1, + ACTIONS(5189), 1, anon_sym_LPAREN2, - ACTIONS(5124), 1, - anon_sym_RPAREN, - ACTIONS(5126), 1, + ACTIONS(5191), 1, anon_sym_LBRACK, - STATE(2408), 1, + ACTIONS(5193), 1, + anon_sym_RPAREN, + STATE(2432), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2341), 2, + STATE(2340), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99396] = 7, - ACTIONS(4843), 1, + [100019] = 7, + ACTIONS(4778), 1, + anon_sym_RPAREN, + ACTIONS(4892), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5189), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(5195), 1, + anon_sym_LBRACK, + STATE(2434), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + STATE(2388), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [100043] = 7, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(5189), 1, + anon_sym_LPAREN2, + ACTIONS(5195), 1, anon_sym_LBRACK, - ACTIONS(5128), 1, + ACTIONS(5197), 1, anon_sym_RPAREN, - STATE(1721), 1, + STATE(2434), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2388), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99420] = 7, - ACTIONS(4713), 1, - anon_sym_RPAREN, - ACTIONS(4845), 1, + [100067] = 7, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5120), 1, + ACTIONS(5189), 1, anon_sym_LPAREN2, - ACTIONS(5126), 1, + ACTIONS(5191), 1, anon_sym_LBRACK, - STATE(2408), 1, + ACTIONS(5199), 1, + anon_sym_RPAREN, + STATE(2432), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2341), 2, + STATE(2340), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99444] = 7, - ACTIONS(4845), 1, + [100091] = 7, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5120), 1, + ACTIONS(5189), 1, anon_sym_LPAREN2, - ACTIONS(5126), 1, + ACTIONS(5191), 1, anon_sym_LBRACK, - ACTIONS(5130), 1, + ACTIONS(5201), 1, anon_sym_RPAREN, - STATE(2408), 1, + STATE(2432), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2341), 2, + STATE(2340), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99468] = 7, - ACTIONS(4711), 1, + [100115] = 7, + ACTIONS(4776), 1, anon_sym_RPAREN, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5120), 1, + ACTIONS(5189), 1, anon_sym_LPAREN2, - ACTIONS(5126), 1, + ACTIONS(5191), 1, anon_sym_LBRACK, - STATE(2408), 1, + STATE(2432), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2341), 2, + STATE(2340), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99492] = 7, - ACTIONS(4843), 1, + [100139] = 7, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - ACTIONS(5132), 1, + ACTIONS(5203), 1, anon_sym_RPAREN, - STATE(1721), 1, + STATE(1743), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99516] = 7, - ACTIONS(4845), 1, + [100163] = 7, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5120), 1, - anon_sym_LPAREN2, - ACTIONS(5122), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - ACTIONS(5134), 1, - anon_sym_RPAREN, - STATE(2432), 1, + ACTIONS(5205), 1, + anon_sym_LPAREN2, + STATE(951), 1, + sym_macro_invocation_parameter_list, + STATE(1743), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2320), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99540] = 7, - ACTIONS(4845), 1, + [100187] = 7, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, - anon_sym_LBRACK, - ACTIONS(5136), 1, + ACTIONS(5189), 1, anon_sym_LPAREN2, - STATE(1310), 1, - sym__old_style_parameter_list, - STATE(1721), 1, + ACTIONS(5195), 1, + anon_sym_LBRACK, + ACTIONS(5207), 1, + anon_sym_RPAREN, + STATE(2434), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2388), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99564] = 7, - ACTIONS(4845), 1, + [100211] = 5, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5211), 1, + anon_sym_COMMA, + ACTIONS(5209), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(5213), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [100231] = 7, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5120), 1, + ACTIONS(5189), 1, anon_sym_LPAREN2, - ACTIONS(5122), 1, + ACTIONS(5195), 1, anon_sym_LBRACK, - ACTIONS(5138), 1, + ACTIONS(5215), 1, anon_sym_RPAREN, - STATE(2432), 1, + STATE(2434), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2320), 2, + STATE(2388), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99588] = 7, - ACTIONS(4843), 1, + [100255] = 7, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - ACTIONS(5054), 1, + ACTIONS(5101), 1, anon_sym_EQ, - STATE(1720), 1, + STATE(1741), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99612] = 7, - ACTIONS(4845), 1, + [100279] = 7, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5120), 1, + ACTIONS(5189), 1, anon_sym_LPAREN2, - ACTIONS(5122), 1, + ACTIONS(5191), 1, anon_sym_LBRACK, - ACTIONS(5140), 1, + ACTIONS(5217), 1, anon_sym_RPAREN, STATE(2432), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2320), 2, + STATE(2340), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99636] = 7, - ACTIONS(4734), 1, - anon_sym_RPAREN, - ACTIONS(4845), 1, + [100303] = 7, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5120), 1, - anon_sym_LPAREN2, - ACTIONS(5122), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(2432), 1, + ACTIONS(5219), 1, + anon_sym_LPAREN2, + STATE(1319), 1, + sym__old_style_parameter_list, + STATE(1743), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2320), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99660] = 7, - ACTIONS(4703), 1, - anon_sym_RPAREN, - ACTIONS(4845), 1, + [100327] = 7, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5120), 1, + ACTIONS(5189), 1, anon_sym_LPAREN2, - ACTIONS(5126), 1, + ACTIONS(5195), 1, anon_sym_LBRACK, - STATE(2408), 1, + ACTIONS(5221), 1, + anon_sym_RPAREN, + STATE(2434), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2341), 2, + STATE(2388), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99684] = 7, - ACTIONS(4843), 1, - anon_sym_LPAREN2, - ACTIONS(4845), 1, + [100351] = 7, + ACTIONS(4780), 1, + anon_sym_RPAREN, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(5189), 1, + anon_sym_LPAREN2, + ACTIONS(5195), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, - anon_sym_RPAREN, - STATE(1721), 1, + STATE(2434), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + STATE(2388), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99708] = 5, - ACTIONS(3), 1, + [100375] = 7, + ACTIONS(4892), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4894), 1, + anon_sym_LBRACK, + ACTIONS(5223), 1, + anon_sym_LPAREN2, + STATE(976), 1, + sym_macro_invocation_parameter_list, + STATE(1743), 1, + sym_parameter_list, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(5146), 1, - anon_sym_COMMA, - ACTIONS(5144), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(5148), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [99728] = 7, - ACTIONS(4721), 1, - anon_sym_RPAREN, - ACTIONS(4845), 1, + STATE(2154), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [100399] = 7, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5120), 1, + ACTIONS(5189), 1, anon_sym_LPAREN2, - ACTIONS(5122), 1, + ACTIONS(5195), 1, anon_sym_LBRACK, - STATE(2432), 1, + ACTIONS(5225), 1, + anon_sym_RPAREN, + STATE(2434), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2320), 2, + STATE(2388), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99752] = 7, - ACTIONS(4845), 1, + [100423] = 7, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5120), 1, + ACTIONS(5189), 1, anon_sym_LPAREN2, - ACTIONS(5122), 1, + ACTIONS(5191), 1, anon_sym_LBRACK, - ACTIONS(5150), 1, + ACTIONS(5227), 1, anon_sym_RPAREN, STATE(2432), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2320), 2, + STATE(2340), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99776] = 7, - ACTIONS(4845), 1, + [100447] = 7, + ACTIONS(4782), 1, + anon_sym_RPAREN, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5120), 1, + ACTIONS(5189), 1, anon_sym_LPAREN2, - ACTIONS(5126), 1, + ACTIONS(5195), 1, anon_sym_LBRACK, - ACTIONS(5152), 1, - anon_sym_RPAREN, - STATE(2408), 1, + STATE(2434), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2341), 2, + STATE(2388), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99800] = 7, - ACTIONS(4845), 1, + [100471] = 7, + ACTIONS(4797), 1, + anon_sym_RPAREN, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5120), 1, + ACTIONS(5189), 1, anon_sym_LPAREN2, - ACTIONS(5122), 1, + ACTIONS(5195), 1, anon_sym_LBRACK, - ACTIONS(5154), 1, - anon_sym_RPAREN, - STATE(2432), 1, + STATE(2434), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2320), 2, + STATE(2388), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99824] = 7, - ACTIONS(4845), 1, + [100495] = 7, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5120), 1, - anon_sym_LPAREN2, - ACTIONS(5126), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - ACTIONS(5156), 1, - anon_sym_RPAREN, - STATE(2408), 1, + ACTIONS(5229), 1, + anon_sym_LPAREN2, + STATE(918), 1, + sym_macro_invocation_parameter_list, + STATE(1743), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2341), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99848] = 7, - ACTIONS(4845), 1, + [100519] = 7, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5120), 1, + ACTIONS(5189), 1, anon_sym_LPAREN2, - ACTIONS(5122), 1, + ACTIONS(5195), 1, anon_sym_LBRACK, - ACTIONS(5158), 1, + ACTIONS(5231), 1, anon_sym_RPAREN, - STATE(2432), 1, + STATE(2434), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2320), 2, + STATE(2388), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99872] = 7, - ACTIONS(4845), 1, + [100543] = 7, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5120), 1, + ACTIONS(5189), 1, anon_sym_LPAREN2, - ACTIONS(5126), 1, + ACTIONS(5191), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5233), 1, anon_sym_RPAREN, - STATE(2408), 1, + STATE(2432), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2341), 2, + STATE(2340), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99896] = 7, - ACTIONS(4701), 1, - anon_sym_RPAREN, - ACTIONS(4845), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5120), 1, + [100567] = 7, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(5126), 1, + ACTIONS(4892), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(2408), 1, + ACTIONS(5235), 1, + anon_sym_RPAREN, + STATE(1743), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2341), 2, + STATE(2154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99920] = 7, - ACTIONS(4845), 1, + [100591] = 5, + ACTIONS(5237), 1, + anon_sym_LBRACK, + ACTIONS(5240), 1, + anon_sym_EQ, + ACTIONS(5242), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + STATE(2320), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [100611] = 7, + ACTIONS(4764), 1, + anon_sym_RPAREN, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5120), 1, + ACTIONS(5189), 1, anon_sym_LPAREN2, - ACTIONS(5126), 1, + ACTIONS(5191), 1, anon_sym_LBRACK, - ACTIONS(5162), 1, - anon_sym_RPAREN, - STATE(2408), 1, + STATE(2432), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2341), 2, + STATE(2340), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99944] = 7, - ACTIONS(4725), 1, + [100635] = 7, + ACTIONS(4766), 1, anon_sym_RPAREN, - ACTIONS(4845), 1, + ACTIONS(4892), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5120), 1, + ACTIONS(5189), 1, anon_sym_LPAREN2, - ACTIONS(5122), 1, + ACTIONS(5191), 1, anon_sym_LBRACK, STATE(2432), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2320), 2, + STATE(2340), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [99968] = 5, - ACTIONS(5164), 1, + [100659] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5247), 1, + anon_sym_RBRACE, + ACTIONS(5245), 5, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + sym_identifier, + [100676] = 3, + ACTIONS(2657), 1, anon_sym_LBRACK, - ACTIONS(5167), 1, - anon_sym_EQ, - ACTIONS(5169), 1, - anon_sym_DOT, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2297), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [99988] = 5, - ACTIONS(2374), 1, + ACTIONS(2977), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [100691] = 5, + ACTIONS(5189), 1, + anon_sym_LPAREN2, + ACTIONS(5251), 1, anon_sym_LBRACK, - ACTIONS(5172), 1, - anon_sym_EQ, - ACTIONS(5174), 1, - anon_sym_DOT, + STATE(2401), 1, + sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2297), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [100008] = 6, - ACTIONS(5176), 1, + ACTIONS(5249), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [100710] = 3, + ACTIONS(4723), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4725), 5, anon_sym_COMMA, - ACTIONS(5178), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [100725] = 6, + ACTIONS(5253), 1, + anon_sym_COMMA, + ACTIONS(5255), 1, anon_sym_SEMI, - STATE(2645), 1, + STATE(2527), 1, + sym_gnu_asm_expression, + STATE(2528), 1, aux_sym_declaration_repeat1, - STATE(2646), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5257), 2, + anon_sym_asm, + anon_sym___asm__, + [100746] = 3, + ACTIONS(2669), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3013), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [100761] = 6, + ACTIONS(5253), 1, + anon_sym_COMMA, + ACTIONS(5259), 1, + anon_sym_SEMI, + STATE(2576), 1, sym_gnu_asm_expression, + STATE(2582), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5180), 2, + ACTIONS(5257), 2, anon_sym_asm, anon_sym___asm__, - [100029] = 6, - ACTIONS(5176), 1, + [100782] = 6, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5182), 1, + ACTIONS(5261), 1, anon_sym_SEMI, - STATE(2662), 1, + STATE(2725), 1, aux_sym_declaration_repeat1, - STATE(2663), 1, + STATE(2727), 1, sym_gnu_asm_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5180), 2, + ACTIONS(5257), 2, anon_sym_asm, anon_sym___asm__, - [100050] = 6, - ACTIONS(5176), 1, + [100803] = 6, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5184), 1, + ACTIONS(5263), 1, anon_sym_SEMI, - STATE(2706), 1, + STATE(2596), 1, aux_sym_declaration_repeat1, - STATE(2707), 1, + STATE(2598), 1, sym_gnu_asm_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5180), 2, + ACTIONS(5257), 2, anon_sym_asm, anon_sym___asm__, - [100071] = 5, - ACTIONS(5120), 1, - anon_sym_LPAREN2, - ACTIONS(5188), 1, - anon_sym_LBRACK, - STATE(2371), 1, - sym_parameter_list, + [100824] = 6, + ACTIONS(5253), 1, + anon_sym_COMMA, + ACTIONS(5265), 1, + anon_sym_SEMI, + STATE(2758), 1, + sym_gnu_asm_expression, + STATE(2764), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5186), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [100090] = 6, - ACTIONS(5176), 1, + ACTIONS(5257), 2, + anon_sym_asm, + anon_sym___asm__, + [100845] = 6, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5190), 1, + ACTIONS(5267), 1, anon_sym_SEMI, - STATE(2720), 1, + STATE(2497), 1, aux_sym_declaration_repeat1, - STATE(2722), 1, + STATE(2755), 1, sym_gnu_asm_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5180), 2, + ACTIONS(5257), 2, anon_sym_asm, anon_sym___asm__, - [100111] = 4, + [100866] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(5006), 1, + ACTIONS(5271), 1, anon_sym_RBRACE, - ACTIONS(5192), 5, + ACTIONS(5269), 5, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, sym_identifier, - [100128] = 6, - ACTIONS(5176), 1, + [100883] = 5, + ACTIONS(5189), 1, + anon_sym_LPAREN2, + ACTIONS(5251), 1, + anon_sym_LBRACK, + STATE(2401), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5273), 3, anon_sym_COMMA, - ACTIONS(5194), 1, + anon_sym_RPAREN, + anon_sym_COLON, + [100902] = 6, + ACTIONS(5253), 1, + anon_sym_COMMA, + ACTIONS(5275), 1, anon_sym_SEMI, - STATE(2544), 1, + STATE(2662), 1, sym_gnu_asm_expression, - STATE(2546), 1, + STATE(2705), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5180), 2, + ACTIONS(5257), 2, anon_sym_asm, anon_sym___asm__, - [100149] = 3, - STATE(3303), 1, - sym_string_literal, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(5030), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [100164] = 4, + [100923] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(5198), 1, + ACTIONS(5279), 1, anon_sym_RBRACE, - ACTIONS(5196), 5, + ACTIONS(5277), 5, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, sym_identifier, - [100181] = 4, + [100940] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(5202), 1, + ACTIONS(5283), 1, anon_sym_RBRACE, - ACTIONS(5200), 5, + ACTIONS(5281), 5, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, sym_identifier, - [100198] = 6, - ACTIONS(5176), 1, - anon_sym_COMMA, - ACTIONS(5204), 1, - anon_sym_SEMI, - STATE(2724), 1, - aux_sym_declaration_repeat1, - STATE(2725), 1, - sym_gnu_asm_expression, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(5180), 2, - anon_sym_asm, - anon_sym___asm__, - [100219] = 6, - ACTIONS(5176), 1, - anon_sym_COMMA, - ACTIONS(5206), 1, - anon_sym_SEMI, - STATE(2680), 1, - aux_sym_declaration_repeat1, - STATE(2681), 1, - sym_gnu_asm_expression, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(5180), 2, - anon_sym_asm, - anon_sym___asm__, - [100240] = 3, - STATE(3258), 1, - sym_string_literal, - ACTIONS(5), 2, + [100957] = 4, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5030), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [100255] = 6, - ACTIONS(4845), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(5172), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(5170), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [100974] = 5, + ACTIONS(4786), 1, anon_sym_LBRACK, - ACTIONS(5208), 1, - anon_sym_LPAREN2, - STATE(618), 1, - sym_parameter_list, + ACTIONS(4892), 1, + anon_sym_LBRACK_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, + ACTIONS(4784), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(2142), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [100276] = 4, - ACTIONS(5210), 1, - anon_sym_LPAREN2, - ACTIONS(5), 2, + [100993] = 4, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - STATE(2352), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(5212), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [100293] = 5, - ACTIONS(5120), 1, - anon_sym_LPAREN2, - ACTIONS(5188), 1, - anon_sym_LBRACK, - STATE(2371), 1, - sym_parameter_list, + ACTIONS(5287), 1, + anon_sym_RBRACE, + ACTIONS(5285), 5, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + sym_identifier, + [101010] = 6, + ACTIONS(5253), 1, + anon_sym_COMMA, + ACTIONS(5289), 1, + anon_sym_SEMI, + STATE(2627), 1, + sym_gnu_asm_expression, + STATE(2628), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5214), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [100312] = 6, - ACTIONS(5176), 1, + ACTIONS(5257), 2, + anon_sym_asm, + anon_sym___asm__, + [101031] = 6, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5216), 1, + ACTIONS(5291), 1, anon_sym_SEMI, - STATE(2674), 1, + STATE(2720), 1, aux_sym_declaration_repeat1, - STATE(2675), 1, + STATE(2721), 1, sym_gnu_asm_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5180), 2, + ACTIONS(5257), 2, anon_sym_asm, anon_sym___asm__, - [100333] = 6, - ACTIONS(5176), 1, + [101052] = 6, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5218), 1, + ACTIONS(5293), 1, anon_sym_SEMI, - STATE(2631), 1, + STATE(2766), 1, sym_gnu_asm_expression, - STATE(2632), 1, + STATE(2767), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5180), 2, + ACTIONS(5257), 2, anon_sym_asm, anon_sym___asm__, - [100354] = 3, - ACTIONS(2656), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(2658), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [100369] = 5, - ACTIONS(5120), 1, + [101073] = 4, + ACTIONS(5295), 1, anon_sym_LPAREN2, - ACTIONS(5188), 1, - anon_sym_LBRACK, - STATE(2371), 1, - sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5220), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [100388] = 6, - ACTIONS(5176), 1, + STATE(2345), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(5297), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [101090] = 6, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5222), 1, + ACTIONS(5300), 1, anon_sym_SEMI, - STATE(2669), 1, - aux_sym_declaration_repeat1, - STATE(2673), 1, + STATE(2536), 1, sym_gnu_asm_expression, + STATE(2539), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5180), 2, + ACTIONS(5257), 2, anon_sym_asm, anon_sym___asm__, - [100409] = 5, - ACTIONS(4754), 1, - anon_sym_LBRACK, - ACTIONS(4845), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(4752), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(2126), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [100428] = 6, - ACTIONS(5176), 1, + [101111] = 6, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5224), 1, + ACTIONS(5302), 1, anon_sym_SEMI, - STATE(2558), 1, - aux_sym_declaration_repeat1, - STATE(2559), 1, + STATE(2542), 1, sym_gnu_asm_expression, + STATE(2543), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5180), 2, + ACTIONS(5257), 2, anon_sym_asm, anon_sym___asm__, - [100449] = 6, - ACTIONS(5176), 1, + [101132] = 6, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5226), 1, + ACTIONS(5304), 1, anon_sym_SEMI, - STATE(2556), 1, - aux_sym_declaration_repeat1, - STATE(2557), 1, + STATE(2712), 1, sym_gnu_asm_expression, + STATE(2713), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5180), 2, + ACTIONS(5257), 2, anon_sym_asm, anon_sym___asm__, - [100470] = 4, - ACTIONS(5228), 1, + [101153] = 4, + ACTIONS(5306), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2313), 2, + STATE(2361), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(5212), 3, + ACTIONS(5308), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [100487] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5232), 1, - anon_sym_RBRACE, - ACTIONS(5230), 5, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - sym_identifier, - [100504] = 5, - ACTIONS(5120), 1, - anon_sym_LPAREN2, - ACTIONS(5188), 1, - anon_sym_LBRACK, - STATE(2371), 1, - sym_parameter_list, + [101170] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5234), 3, + ACTIONS(1300), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - [100523] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5238), 1, - anon_sym_RBRACE, - ACTIONS(5236), 5, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - sym_identifier, - [100540] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5232), 1, - anon_sym_RBRACE, - ACTIONS(5230), 5, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - sym_identifier, - [100557] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5242), 1, - anon_sym_RBRACE, - ACTIONS(5240), 5, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - sym_identifier, - [100574] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5246), 1, - anon_sym_RBRACE, - ACTIONS(5244), 5, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - sym_identifier, - [100591] = 4, - ACTIONS(5248), 1, - anon_sym_LPAREN2, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - STATE(2335), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(5212), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [100608] = 6, - ACTIONS(4843), 1, + anon_sym_else, + anon_sym_while, + anon_sym___except, + anon_sym___finally, + [101183] = 5, + ACTIONS(5189), 1, anon_sym_LPAREN2, - ACTIONS(4845), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, + ACTIONS(5251), 1, anon_sym_LBRACK, - STATE(1720), 1, + STATE(2401), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [100629] = 4, - ACTIONS(5250), 1, - anon_sym_LPAREN2, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - STATE(2350), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(5212), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [100646] = 6, - ACTIONS(5176), 1, + ACTIONS(5310), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [101202] = 6, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5252), 1, + ACTIONS(5312), 1, anon_sym_SEMI, - STATE(2560), 1, + STATE(2722), 1, sym_gnu_asm_expression, - STATE(2561), 1, + STATE(2726), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5180), 2, - anon_sym_asm, - anon_sym___asm__, - [100667] = 4, - ACTIONS(5254), 1, + ACTIONS(5257), 2, + anon_sym_asm, + anon_sym___asm__, + [101223] = 5, + ACTIONS(5189), 1, + anon_sym_LPAREN2, + ACTIONS(5251), 1, + anon_sym_LBRACK, + STATE(2401), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5314), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [101242] = 4, + ACTIONS(5316), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2352), 2, + STATE(2345), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(5212), 3, + ACTIONS(5308), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [100684] = 4, - ACTIONS(5256), 1, + [101259] = 4, + ACTIONS(5318), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2352), 2, + STATE(2367), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(5212), 3, + ACTIONS(5308), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [100701] = 6, - ACTIONS(4845), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, - anon_sym_LBRACK, - ACTIONS(5258), 1, - anon_sym_LPAREN2, - STATE(871), 1, - sym_parameter_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - STATE(2120), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [100722] = 6, - ACTIONS(5176), 1, + [101276] = 6, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5260), 1, + ACTIONS(5320), 1, anon_sym_SEMI, - STATE(2733), 1, + STATE(2544), 1, sym_gnu_asm_expression, - STATE(2734), 1, + STATE(2557), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5180), 2, + ACTIONS(5257), 2, anon_sym_asm, anon_sym___asm__, - [100743] = 3, - ACTIONS(2652), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(2654), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [100758] = 5, - ACTIONS(5120), 1, - anon_sym_LPAREN2, - ACTIONS(5188), 1, - anon_sym_LBRACK, - STATE(2371), 1, - sym_parameter_list, + [101297] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5262), 3, + ACTIONS(1256), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - [100777] = 6, - ACTIONS(5176), 1, + anon_sym_else, + anon_sym_while, + anon_sym___except, + anon_sym___finally, + [101310] = 6, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5264), 1, + ACTIONS(5322), 1, anon_sym_SEMI, - STATE(2639), 1, - aux_sym_declaration_repeat1, - STATE(2641), 1, + STATE(2659), 1, sym_gnu_asm_expression, + STATE(2660), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5180), 2, + ACTIONS(5257), 2, anon_sym_asm, anon_sym___asm__, - [100798] = 5, - ACTIONS(4719), 1, - anon_sym_LBRACK, - ACTIONS(4845), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(4717), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(2126), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [100817] = 2, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(1308), 6, + [101331] = 6, + ACTIONS(5253), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_else, - anon_sym_while, - anon_sym___except, - anon_sym___finally, - [100830] = 4, - ACTIONS(3), 1, + ACTIONS(5324), 1, + anon_sym_SEMI, + STATE(2585), 1, + sym_gnu_asm_expression, + STATE(2586), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(5198), 1, - anon_sym_RBRACE, - ACTIONS(5196), 5, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - sym_identifier, - [100847] = 3, - STATE(875), 1, + ACTIONS(5257), 2, + anon_sym_asm, + anon_sym___asm__, + [101352] = 3, + STATE(891), 1, sym_string_literal, ACTIONS(5), 2, sym__linux_kernel_annotations, @@ -167344,8973 +168910,9097 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [100862] = 6, - ACTIONS(5176), 1, + [101367] = 4, + ACTIONS(5326), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + STATE(2345), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(5308), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [101384] = 6, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5266), 1, + ACTIONS(5328), 1, anon_sym_SEMI, - STATE(2627), 1, + STATE(2694), 1, aux_sym_declaration_repeat1, - STATE(2634), 1, + STATE(2695), 1, sym_gnu_asm_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5180), 2, + ACTIONS(5257), 2, anon_sym_asm, anon_sym___asm__, - [100883] = 2, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(1264), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_else, - anon_sym_while, - anon_sym___except, - anon_sym___finally, - [100896] = 4, + [101405] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(5270), 1, + ACTIONS(5279), 1, anon_sym_RBRACE, - ACTIONS(5268), 5, + ACTIONS(5277), 5, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, sym_identifier, - [100913] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5111), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(5109), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [100930] = 4, - ACTIONS(3), 1, + [101422] = 6, + ACTIONS(5253), 1, + anon_sym_COMMA, + ACTIONS(5330), 1, + anon_sym_SEMI, + STATE(2514), 1, + aux_sym_declaration_repeat1, + STATE(2516), 1, + sym_gnu_asm_expression, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(5274), 1, - anon_sym_RBRACE, - ACTIONS(5272), 5, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - sym_identifier, - [100947] = 4, - ACTIONS(5276), 1, + ACTIONS(5257), 2, + anon_sym_asm, + anon_sym___asm__, + [101443] = 4, + ACTIONS(5332), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2352), 2, + STATE(2345), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(5212), 3, + ACTIONS(5308), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [100964] = 6, - ACTIONS(5176), 1, + [101460] = 6, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5278), 1, + ACTIONS(5334), 1, anon_sym_SEMI, - STATE(2622), 1, - aux_sym_declaration_repeat1, - STATE(2623), 1, + STATE(2744), 1, sym_gnu_asm_expression, + STATE(2749), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5180), 2, + ACTIONS(5257), 2, anon_sym_asm, anon_sym___asm__, - [100985] = 4, - ACTIONS(5280), 1, - anon_sym_LPAREN2, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - STATE(2352), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(5282), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [101002] = 4, - ACTIONS(5285), 1, + [101481] = 4, + ACTIONS(5336), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2334), 2, + STATE(2345), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(5212), 3, + ACTIONS(5308), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [101019] = 6, - ACTIONS(5176), 1, + [101498] = 6, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5287), 1, + ACTIONS(5338), 1, anon_sym_SEMI, - STATE(2607), 1, + STATE(2566), 1, aux_sym_declaration_repeat1, - STATE(2608), 1, + STATE(2568), 1, sym_gnu_asm_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5180), 2, + ACTIONS(5257), 2, anon_sym_asm, anon_sym___asm__, - [101040] = 5, - ACTIONS(5120), 1, + [101519] = 6, + ACTIONS(4890), 1, anon_sym_LPAREN2, - ACTIONS(5188), 1, + ACTIONS(4892), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4894), 1, anon_sym_LBRACK, - STATE(2371), 1, + STATE(1741), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5289), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [101059] = 5, - ACTIONS(5120), 1, + STATE(2154), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [101540] = 5, + ACTIONS(5189), 1, anon_sym_LPAREN2, - ACTIONS(5188), 1, + ACTIONS(5251), 1, anon_sym_LBRACK, - STATE(2371), 1, + STATE(2401), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5291), 3, + ACTIONS(5340), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [101078] = 6, - ACTIONS(5176), 1, + [101559] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5344), 1, + anon_sym_RBRACE, + ACTIONS(5342), 5, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + sym_identifier, + [101576] = 6, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5293), 1, + ACTIONS(5346), 1, anon_sym_SEMI, - STATE(2599), 1, + STATE(2646), 1, aux_sym_declaration_repeat1, - STATE(2600), 1, + STATE(2648), 1, sym_gnu_asm_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5180), 2, + ACTIONS(5257), 2, anon_sym_asm, anon_sym___asm__, - [101099] = 6, - ACTIONS(5176), 1, - anon_sym_COMMA, - ACTIONS(5295), 1, - anon_sym_SEMI, - STATE(2593), 1, - aux_sym_declaration_repeat1, - STATE(2594), 1, - sym_gnu_asm_expression, + [101597] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5350), 1, + anon_sym_RBRACE, + ACTIONS(5348), 5, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + sym_identifier, + [101614] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5039), 1, + anon_sym_RBRACE, + ACTIONS(5352), 5, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + sym_identifier, + [101631] = 3, + STATE(3243), 1, + sym_string_literal, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5180), 2, - anon_sym_asm, - anon_sym___asm__, - [101120] = 6, - ACTIONS(5176), 1, + ACTIONS(5115), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [101646] = 6, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5297), 1, + ACTIONS(5354), 1, anon_sym_SEMI, - STATE(2586), 1, + STATE(2551), 1, aux_sym_declaration_repeat1, - STATE(2587), 1, + STATE(2552), 1, sym_gnu_asm_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5180), 2, + ACTIONS(5257), 2, anon_sym_asm, anon_sym___asm__, - [101141] = 6, - ACTIONS(5176), 1, - anon_sym_COMMA, - ACTIONS(5299), 1, - anon_sym_SEMI, - STATE(2515), 1, - sym_gnu_asm_expression, - STATE(2516), 1, - aux_sym_declaration_repeat1, - ACTIONS(5), 2, + [101667] = 4, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5180), 2, - anon_sym_asm, - anon_sym___asm__, - [101162] = 6, - ACTIONS(4845), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4847), 1, - anon_sym_LBRACK, - ACTIONS(5301), 1, + ACTIONS(5358), 1, + anon_sym_RBRACE, + ACTIONS(5356), 5, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + sym_identifier, + [101684] = 5, + ACTIONS(5189), 1, anon_sym_LPAREN2, - STATE(884), 1, + ACTIONS(5251), 1, + anon_sym_LBRACK, + STATE(2401), 1, sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(2120), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [101183] = 6, - ACTIONS(5176), 1, + ACTIONS(5360), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [101703] = 6, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5303), 1, + ACTIONS(5362), 1, anon_sym_SEMI, - STATE(2564), 1, + STATE(2623), 1, sym_gnu_asm_expression, - STATE(2591), 1, + STATE(2624), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5180), 2, + ACTIONS(5257), 2, anon_sym_asm, anon_sym___asm__, - [101204] = 6, - ACTIONS(5176), 1, - anon_sym_COMMA, - ACTIONS(5305), 1, - anon_sym_SEMI, - STATE(2520), 1, - aux_sym_declaration_repeat1, - STATE(2521), 1, - sym_gnu_asm_expression, + [101724] = 4, + ACTIONS(5364), 1, + anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5180), 2, - anon_sym_asm, - anon_sym___asm__, - [101225] = 3, - ACTIONS(2660), 1, + STATE(2354), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(5308), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [101741] = 4, + ACTIONS(5366), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + STATE(2365), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(5308), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [101758] = 5, + ACTIONS(5189), 1, + anon_sym_LPAREN2, + ACTIONS(5251), 1, anon_sym_LBRACK, + STATE(2401), 1, + sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(2662), 5, + ACTIONS(5368), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [101240] = 6, - ACTIONS(5176), 1, + [101777] = 6, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5307), 1, + ACTIONS(5370), 1, anon_sym_SEMI, - STATE(2601), 1, - sym_gnu_asm_expression, - STATE(2602), 1, + STATE(2569), 1, aux_sym_declaration_repeat1, + STATE(2571), 1, + sym_gnu_asm_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5180), 2, + ACTIONS(5257), 2, anon_sym_asm, anon_sym___asm__, - [101261] = 6, - ACTIONS(5176), 1, + [101798] = 6, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5309), 1, + ACTIONS(5372), 1, anon_sym_SEMI, - STATE(2494), 1, - sym_gnu_asm_expression, - STATE(2495), 1, + STATE(2564), 1, aux_sym_declaration_repeat1, + STATE(2567), 1, + sym_gnu_asm_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5180), 2, + ACTIONS(5257), 2, anon_sym_asm, anon_sym___asm__, - [101282] = 6, - ACTIONS(5176), 1, - anon_sym_COMMA, - ACTIONS(5311), 1, - anon_sym_SEMI, - STATE(2597), 1, - sym_gnu_asm_expression, - STATE(2598), 1, - aux_sym_declaration_repeat1, - ACTIONS(5), 2, + [101819] = 4, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5180), 2, - anon_sym_asm, - anon_sym___asm__, - [101303] = 6, - ACTIONS(5176), 1, + ACTIONS(5287), 1, + anon_sym_RBRACE, + ACTIONS(5285), 5, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + sym_identifier, + [101836] = 6, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5313), 1, + ACTIONS(5374), 1, anon_sym_SEMI, - STATE(2525), 1, - sym_gnu_asm_expression, - STATE(2527), 1, + STATE(2673), 1, aux_sym_declaration_repeat1, + STATE(2674), 1, + sym_gnu_asm_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5180), 2, + ACTIONS(5257), 2, anon_sym_asm, anon_sym___asm__, - [101324] = 2, + [101857] = 3, + STATE(3257), 1, + sym_string_literal, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5315), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(5115), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [101872] = 5, + ACTIONS(4817), 1, anon_sym_LBRACK, - anon_sym_COLON, - [101336] = 2, + ACTIONS(4892), 1, + anon_sym_LBRACK_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5317), 5, - anon_sym_COMMA, + ACTIONS(4815), 2, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [101348] = 2, + STATE(2142), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [101891] = 6, + ACTIONS(5253), 1, + anon_sym_COMMA, + ACTIONS(5376), 1, + anon_sym_SEMI, + STATE(2554), 1, + aux_sym_declaration_repeat1, + STATE(2555), 1, + sym_gnu_asm_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5257), 2, + anon_sym_asm, + anon_sym___asm__, + [101912] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5319), 5, + ACTIONS(5378), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [101360] = 6, - ACTIONS(5321), 1, - aux_sym_preproc_include_token2, - ACTIONS(5323), 1, - anon_sym_LPAREN, - ACTIONS(5325), 1, - aux_sym_preproc_arg_token1, - STATE(2528), 1, - sym_preproc_params, - STATE(3161), 1, - sym_preproc_arg, - ACTIONS(3), 2, - sym__linux_kernel_annotations, - sym_comment, - [101380] = 6, - ACTIONS(5323), 1, - anon_sym_LPAREN, - ACTIONS(5325), 1, - aux_sym_preproc_arg_token1, - ACTIONS(5327), 1, - aux_sym_preproc_include_token2, - STATE(2635), 1, - sym_preproc_params, - STATE(2965), 1, - sym_preproc_arg, - ACTIONS(3), 2, - sym__linux_kernel_annotations, - sym_comment, - [101400] = 7, + [101924] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3972), 1, + ACTIONS(3704), 1, anon_sym_LBRACE, - ACTIONS(4768), 1, + ACTIONS(4843), 1, anon_sym___declspec, - ACTIONS(5329), 1, + ACTIONS(5380), 1, sym_identifier, - STATE(1537), 1, + STATE(1337), 1, sym_field_declaration_list, - STATE(2508), 1, + STATE(2733), 1, sym_ms_declspec_modifier, - [101422] = 2, + [101946] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5331), 5, + ACTIONS(5382), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [101434] = 7, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3672), 1, - anon_sym_LBRACE, - ACTIONS(4768), 1, - anon_sym___declspec, - ACTIONS(5333), 1, - sym_identifier, - STATE(1330), 1, - sym_field_declaration_list, - STATE(2702), 1, - sym_ms_declspec_modifier, - [101456] = 6, - ACTIONS(5323), 1, - anon_sym_LPAREN, - ACTIONS(5325), 1, - aux_sym_preproc_arg_token1, - ACTIONS(5335), 1, - aux_sym_preproc_include_token2, - STATE(2685), 1, - sym_preproc_params, - STATE(3175), 1, - sym_preproc_arg, - ACTIONS(3), 2, - sym__linux_kernel_annotations, - sym_comment, - [101476] = 7, + [101958] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3043), 1, - anon_sym_LBRACE, - ACTIONS(4768), 1, - anon_sym___declspec, - ACTIONS(5337), 1, - sym_identifier, - STATE(1104), 1, - sym_field_declaration_list, - STATE(2481), 1, - sym_ms_declspec_modifier, - [101498] = 7, - ACTIONS(3), 1, + ACTIONS(3706), 2, + anon_sym___init, + anon_sym___exit, + ACTIONS(3708), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + [101974] = 2, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(4060), 1, - anon_sym_LBRACE, - ACTIONS(4768), 1, - anon_sym___declspec, - ACTIONS(5339), 1, - sym_identifier, - STATE(1673), 1, - sym_field_declaration_list, - STATE(2670), 1, - sym_ms_declspec_modifier, - [101520] = 2, + ACTIONS(5384), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [101986] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5341), 5, + ACTIONS(5386), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [101532] = 5, - ACTIONS(5120), 1, + [101998] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5388), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(5188), 1, anon_sym_LBRACK, - STATE(2371), 1, - sym_parameter_list, + anon_sym_COLON, + [102010] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5098), 2, + ACTIONS(5390), 5, anon_sym_COMMA, anon_sym_RPAREN, - [101550] = 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [102022] = 6, + ACTIONS(5392), 1, + aux_sym_preproc_include_token2, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5396), 1, + aux_sym_preproc_arg_token1, + STATE(2553), 1, + sym_preproc_params, + STATE(3130), 1, + sym_preproc_arg, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + [102042] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5343), 5, + ACTIONS(5398), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [101562] = 2, + [102054] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5345), 5, + ACTIONS(5400), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [101574] = 2, + [102066] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5347), 5, + ACTIONS(5402), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [101586] = 2, + [102078] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5349), 5, + ACTIONS(5404), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [101598] = 7, - ACTIONS(3), 1, + [102090] = 6, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5396), 1, + aux_sym_preproc_arg_token1, + ACTIONS(5406), 1, + aux_sym_preproc_include_token2, + STATE(2513), 1, + sym_preproc_params, + STATE(3085), 1, + sym_preproc_arg, + ACTIONS(3), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(3902), 1, - anon_sym_LBRACE, - ACTIONS(4768), 1, - anon_sym___declspec, - ACTIONS(5351), 1, - sym_identifier, - STATE(1518), 1, - sym_field_declaration_list, - STATE(2550), 1, - sym_ms_declspec_modifier, - [101620] = 7, + [102110] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3996), 1, + ACTIONS(4023), 1, anon_sym_LBRACE, - ACTIONS(4768), 1, + ACTIONS(4843), 1, anon_sym___declspec, - ACTIONS(5353), 1, + ACTIONS(5408), 1, sym_identifier, - STATE(1649), 1, + STATE(1683), 1, sym_field_declaration_list, - STATE(2605), 1, + STATE(2498), 1, sym_ms_declspec_modifier, - [101642] = 5, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - ACTIONS(5357), 1, - anon_sym_COLON_COLON, - STATE(2766), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(5355), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [101660] = 2, + [102132] = 4, + STATE(2836), 1, + sym_gnu_asm_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5359), 5, + ACTIONS(5257), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(5410), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [101672] = 4, - STATE(2918), 1, + anon_sym_SEMI, + [102148] = 4, + STATE(2915), 1, sym_gnu_asm_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5180), 2, + ACTIONS(5257), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(5361), 2, + ACTIONS(5412), 2, anon_sym_COMMA, anon_sym_SEMI, - [101688] = 7, + [102164] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3588), 1, + ACTIONS(3929), 1, anon_sym_LBRACE, - ACTIONS(4768), 1, + ACTIONS(4843), 1, anon_sym___declspec, - ACTIONS(5363), 1, + ACTIONS(5414), 1, sym_identifier, - STATE(1309), 1, + STATE(1540), 1, sym_field_declaration_list, - STATE(2731), 1, + STATE(2575), 1, sym_ms_declspec_modifier, - [101710] = 6, - ACTIONS(5323), 1, + [102186] = 6, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5325), 1, + ACTIONS(5396), 1, aux_sym_preproc_arg_token1, - ACTIONS(5365), 1, + ACTIONS(5416), 1, aux_sym_preproc_include_token2, - STATE(2721), 1, + STATE(2504), 1, sym_preproc_params, - STATE(3294), 1, + STATE(3103), 1, sym_preproc_arg, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [101730] = 4, + [102206] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3660), 2, - anon_sym___init, - anon_sym___exit, - ACTIONS(3662), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - [101746] = 7, + ACTIONS(3615), 1, + anon_sym_LBRACE, + ACTIONS(4843), 1, + anon_sym___declspec, + ACTIONS(5418), 1, + sym_identifier, + STATE(1304), 1, + sym_field_declaration_list, + STATE(2760), 1, + sym_ms_declspec_modifier, + [102228] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4736), 1, + ACTIONS(4137), 1, + anon_sym_LBRACE, + ACTIONS(4843), 1, + anon_sym___declspec, + ACTIONS(5420), 1, sym_identifier, - ACTIONS(5367), 1, - aux_sym_preproc_if_token2, - STATE(2286), 1, - sym_enumerator, - STATE(2407), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2412), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [101768] = 6, - ACTIONS(5323), 1, - anon_sym_LPAREN, - ACTIONS(5325), 1, - aux_sym_preproc_arg_token1, - ACTIONS(5369), 1, - aux_sym_preproc_include_token2, - STATE(2612), 1, - sym_preproc_params, - STATE(2980), 1, - sym_preproc_arg, - ACTIONS(3), 2, + STATE(1693), 1, + sym_field_declaration_list, + STATE(2523), 1, + sym_ms_declspec_modifier, + [102250] = 2, + ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [101788] = 6, - ACTIONS(5323), 1, - anon_sym_LPAREN, - ACTIONS(5325), 1, - aux_sym_preproc_arg_token1, - ACTIONS(5371), 1, - aux_sym_preproc_include_token2, - STATE(2484), 1, - sym_preproc_params, - STATE(3328), 1, - sym_preproc_arg, - ACTIONS(3), 2, + ACTIONS(5422), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [102262] = 7, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - [101808] = 4, - STATE(2939), 1, + ACTIONS(3113), 1, + anon_sym_LBRACE, + ACTIONS(4843), 1, + anon_sym___declspec, + ACTIONS(5424), 1, + sym_identifier, + STATE(1118), 1, + sym_field_declaration_list, + STATE(2683), 1, + sym_ms_declspec_modifier, + [102284] = 4, + STATE(2948), 1, sym_gnu_asm_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5180), 2, + ACTIONS(5257), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(5373), 2, + ACTIONS(5426), 2, anon_sym_COMMA, anon_sym_SEMI, - [101824] = 7, + [102300] = 6, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5396), 1, + aux_sym_preproc_arg_token1, + ACTIONS(5428), 1, + aux_sym_preproc_include_token2, + STATE(2647), 1, + sym_preproc_params, + STATE(3003), 1, + sym_preproc_arg, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + [102320] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2956), 1, + ACTIONS(3989), 1, anon_sym_LBRACE, - ACTIONS(4768), 1, + ACTIONS(4843), 1, anon_sym___declspec, - ACTIONS(5375), 1, + ACTIONS(5430), 1, sym_identifier, - STATE(1075), 1, + STATE(1568), 1, sym_field_declaration_list, - STATE(2489), 1, + STATE(2533), 1, sym_ms_declspec_modifier, - [101846] = 2, + [102342] = 6, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5396), 1, + aux_sym_preproc_arg_token1, + ACTIONS(5432), 1, + aux_sym_preproc_include_token2, + STATE(2752), 1, + sym_preproc_params, + STATE(3462), 1, + sym_preproc_arg, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + [102362] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5377), 5, + ACTIONS(5434), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [101858] = 2, + [102374] = 6, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5396), 1, + aux_sym_preproc_arg_token1, + ACTIONS(5436), 1, + aux_sym_preproc_include_token2, + STATE(2765), 1, + sym_preproc_params, + STATE(3479), 1, + sym_preproc_arg, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + [102394] = 5, + ACTIONS(5189), 1, + anon_sym_LPAREN2, + ACTIONS(5251), 1, + anon_sym_LBRACK, + STATE(2401), 1, + sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5379), 5, + ACTIONS(5174), 2, anon_sym_COMMA, anon_sym_RPAREN, + [102412] = 5, + ACTIONS(3649), 1, anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [101870] = 2, + ACTIONS(5440), 1, + anon_sym_COLON_COLON, + STATE(2793), 1, + sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5381), 5, + ACTIONS(5438), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [102430] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5442), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [101882] = 6, - ACTIONS(5323), 1, + [102442] = 6, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5325), 1, + ACTIONS(5396), 1, aux_sym_preproc_arg_token1, - ACTIONS(5383), 1, + ACTIONS(5444), 1, aux_sym_preproc_include_token2, - STATE(2653), 1, + STATE(2619), 1, sym_preproc_params, - STATE(3035), 1, + STATE(3192), 1, sym_preproc_arg, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [101902] = 4, - STATE(2856), 1, - sym_gnu_asm_expression, - ACTIONS(5), 2, + [102462] = 7, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5180), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(5385), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [101918] = 2, + ACTIONS(4799), 1, + sym_identifier, + ACTIONS(5446), 1, + aux_sym_preproc_if_token2, + STATE(2304), 1, + sym_enumerator, + STATE(2481), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2482), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + [102484] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5387), 5, + ACTIONS(5448), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [101930] = 5, + [102496] = 7, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4736), 1, + ACTIONS(2960), 1, + anon_sym_LBRACE, + ACTIONS(4843), 1, + anon_sym___declspec, + ACTIONS(5450), 1, sym_identifier, - ACTIONS(5389), 1, - aux_sym_preproc_if_token2, - STATE(2412), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [101947] = 2, + STATE(1074), 1, + sym_field_declaration_list, + STATE(2665), 1, + sym_ms_declspec_modifier, + [102518] = 3, + ACTIONS(4932), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5391), 4, + ACTIONS(4930), 3, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [101958] = 6, - ACTIONS(3), 1, + anon_sym_LBRACK_LBRACK, + [102531] = 4, + ACTIONS(5452), 1, + anon_sym_COMMA, + STATE(2427), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(4829), 1, - sym_identifier, - ACTIONS(5393), 1, - aux_sym_preproc_if_token2, - STATE(2246), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(3046), 1, - sym_enumerator, - [101977] = 3, - ACTIONS(4776), 1, + ACTIONS(5455), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [102546] = 4, + ACTIONS(5457), 1, + anon_sym_COMMA, + STATE(2463), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5459), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [102561] = 3, + ACTIONS(4920), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4774), 3, + ACTIONS(4918), 3, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [101990] = 5, - ACTIONS(5120), 1, + [102574] = 4, + ACTIONS(5461), 1, + anon_sym___except, + ACTIONS(5463), 1, + anon_sym___finally, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + STATE(174), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [102589] = 4, + ACTIONS(3649), 1, anon_sym_LPAREN2, - ACTIONS(5188), 1, + STATE(2903), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5465), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [102604] = 3, + ACTIONS(4821), 1, anon_sym_LBRACK, - ACTIONS(5395), 1, - anon_sym_RPAREN, - STATE(2371), 1, - sym_parameter_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [102007] = 3, - ACTIONS(4887), 1, + ACTIONS(4819), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [102617] = 5, + ACTIONS(5467), 1, + anon_sym_DQUOTE, + ACTIONS(5469), 1, + aux_sym_string_literal_token1, + ACTIONS(5471), 1, + sym_escape_sequence, + STATE(2443), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + [102634] = 3, + ACTIONS(4908), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4885), 3, + ACTIONS(4906), 3, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [102020] = 4, - ACTIONS(5397), 1, - anon_sym___except, - ACTIONS(5399), 1, - anon_sym___finally, + [102647] = 3, + ACTIONS(4936), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(513), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [102035] = 5, + ACTIONS(4934), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [102660] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(4736), 1, + ACTIONS(4799), 1, sym_identifier, - ACTIONS(5401), 1, + ACTIONS(5473), 1, aux_sym_preproc_if_token2, - STATE(2270), 2, + STATE(2481), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [102052] = 3, - ACTIONS(4859), 1, + [102677] = 3, + ACTIONS(4857), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4857), 3, + ACTIONS(4855), 3, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [102065] = 4, - ACTIONS(5403), 1, - anon_sym___except, - ACTIONS(5405), 1, - anon_sym___finally, + [102690] = 3, + ACTIONS(4847), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(193), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [102080] = 4, - ACTIONS(5407), 1, - anon_sym_COMMA, - STATE(2427), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4845), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [102703] = 3, + ACTIONS(4876), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5409), 2, + ACTIONS(4874), 3, anon_sym_RPAREN, - anon_sym_COLON, - [102095] = 5, - ACTIONS(5411), 1, - anon_sym_DQUOTE, - ACTIONS(5413), 1, - aux_sym_string_literal_token1, - ACTIONS(5415), 1, - sym_escape_sequence, - STATE(2433), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [102716] = 5, + ACTIONS(5475), 1, + anon_sym_COMMA, + ACTIONS(5477), 1, + anon_sym_RPAREN, + STATE(2671), 1, + aux_sym_macro_invocation_parameter_list_repeat1, + STATE(2742), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [102112] = 4, - ACTIONS(5417), 1, + [102733] = 4, + ACTIONS(5479), 1, anon_sym_SQUOTE, - STATE(2428), 1, + STATE(2448), 1, aux_sym_char_literal_repeat1, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5419), 2, + ACTIONS(5481), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [102127] = 5, - ACTIONS(5413), 1, + [102748] = 5, + ACTIONS(5483), 1, + anon_sym_COMMA, + ACTIONS(5485), 1, + anon_sym_RPAREN, + STATE(2634), 1, + aux_sym__old_style_parameter_list_repeat1, + STATE(2742), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [102765] = 5, + ACTIONS(5487), 1, + anon_sym_DQUOTE, + ACTIONS(5489), 1, aux_sym_string_literal_token1, - ACTIONS(5415), 1, + ACTIONS(5491), 1, sym_escape_sequence, - ACTIONS(5421), 1, + STATE(2460), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + [102782] = 5, + ACTIONS(5475), 1, + anon_sym_COMMA, + ACTIONS(5493), 1, + anon_sym_RPAREN, + STATE(2633), 1, + aux_sym_macro_invocation_parameter_list_repeat1, + STATE(2742), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [102799] = 5, + ACTIONS(5189), 1, + anon_sym_LPAREN2, + ACTIONS(5251), 1, + anon_sym_LBRACK, + ACTIONS(5495), 1, + anon_sym_RPAREN, + STATE(2401), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [102816] = 5, + ACTIONS(5497), 1, anon_sym_DQUOTE, - STATE(2433), 1, + ACTIONS(5499), 1, + aux_sym_string_literal_token1, + ACTIONS(5501), 1, + sym_escape_sequence, + STATE(2480), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [102144] = 4, - ACTIONS(5423), 1, + [102833] = 6, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4896), 1, + sym_identifier, + ACTIONS(5446), 1, + aux_sym_preproc_if_token2, + STATE(2482), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(3010), 1, + sym_enumerator, + [102852] = 4, + ACTIONS(5503), 1, anon_sym_SQUOTE, - STATE(2428), 1, + STATE(2448), 1, aux_sym_char_literal_repeat1, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5419), 2, + ACTIONS(5505), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [102159] = 3, - ACTIONS(4905), 1, + [102867] = 3, + ACTIONS(4944), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4903), 3, + ACTIONS(4942), 3, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [102172] = 4, - ACTIONS(5425), 1, - anon_sym_COMMA, - STATE(2444), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(5427), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [102187] = 3, - ACTIONS(4788), 1, + [102880] = 3, + ACTIONS(4916), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4786), 3, + ACTIONS(4914), 3, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [102200] = 3, - ACTIONS(4899), 1, + [102893] = 3, + ACTIONS(4940), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4897), 3, + ACTIONS(4938), 3, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [102213] = 5, - ACTIONS(5429), 1, - anon_sym_DQUOTE, - ACTIONS(5431), 1, - aux_sym_string_literal_token1, - ACTIONS(5433), 1, - sym_escape_sequence, - STATE(2454), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym__linux_kernel_annotations, - sym_comment, - [102230] = 3, - ACTIONS(4823), 1, + [102906] = 3, + ACTIONS(4962), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4821), 3, + ACTIONS(4960), 3, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [102243] = 3, - ACTIONS(4782), 1, + [102919] = 3, + ACTIONS(4950), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4780), 3, + ACTIONS(4948), 3, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [102256] = 4, - ACTIONS(5407), 1, - anon_sym_COMMA, - STATE(2441), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(5435), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [102271] = 4, - ACTIONS(5437), 1, - anon_sym_SQUOTE, - STATE(2428), 1, - aux_sym_char_literal_repeat1, - ACTIONS(3), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(5439), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [102286] = 3, - ACTIONS(4758), 1, + [102932] = 3, + ACTIONS(4872), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4756), 3, + ACTIONS(4870), 3, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [102299] = 3, - ACTIONS(4815), 1, - anon_sym_LBRACK, + [102945] = 4, + ACTIONS(5508), 1, + anon_sym_COMMA, + STATE(2455), 1, + aux_sym_gnu_asm_clobber_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4813), 3, + ACTIONS(5511), 2, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [102312] = 4, - ACTIONS(5442), 1, + anon_sym_COLON, + [102960] = 4, + ACTIONS(5513), 1, anon_sym___except, - ACTIONS(5444), 1, + ACTIONS(5515), 1, anon_sym___finally, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(227), 2, + STATE(243), 2, sym_seh_except_clause, sym_seh_finally_clause, - [102327] = 3, - ACTIONS(4851), 1, + [102975] = 3, + ACTIONS(4926), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4849), 3, + ACTIONS(4924), 3, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [102340] = 5, - ACTIONS(5446), 1, - anon_sym_DQUOTE, - ACTIONS(5448), 1, - aux_sym_string_literal_token1, - ACTIONS(5451), 1, - sym_escape_sequence, - STATE(2433), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym__linux_kernel_annotations, - sym_comment, - [102357] = 3, - ACTIONS(4819), 1, - anon_sym_LBRACK, + [102988] = 4, + ACTIONS(5517), 1, + anon_sym_COMMA, + STATE(2455), 1, + aux_sym_gnu_asm_clobber_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4817), 3, + ACTIONS(5519), 2, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [102370] = 3, - ACTIONS(4881), 1, + anon_sym_COLON, + [103003] = 3, + ACTIONS(4968), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4879), 3, + ACTIONS(4966), 3, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [102383] = 5, - ACTIONS(5454), 1, + [103016] = 5, + ACTIONS(5521), 1, anon_sym_DQUOTE, - ACTIONS(5456), 1, + ACTIONS(5523), 1, aux_sym_string_literal_token1, - ACTIONS(5458), 1, + ACTIONS(5526), 1, sym_escape_sequence, - STATE(2418), 1, + STATE(2460), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [102400] = 4, - ACTIONS(5460), 1, - anon_sym___except, - ACTIONS(5462), 1, - anon_sym___finally, + [103033] = 4, + ACTIONS(5517), 1, + anon_sym_COMMA, + STATE(2458), 1, + aux_sym_gnu_asm_clobber_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - STATE(229), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [102415] = 6, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4829), 1, - sym_identifier, - ACTIONS(5367), 1, - aux_sym_preproc_if_token2, - STATE(2407), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(3046), 1, - sym_enumerator, - [102434] = 5, - ACTIONS(5120), 1, - anon_sym_LPAREN2, - ACTIONS(5188), 1, - anon_sym_LBRACK, - ACTIONS(5464), 1, + ACTIONS(5529), 2, anon_sym_RPAREN, - STATE(2371), 1, - sym_parameter_list, + anon_sym_COLON, + [103048] = 4, + ACTIONS(5531), 1, + anon_sym_COMMA, + STATE(2427), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [102451] = 5, - ACTIONS(5120), 1, - anon_sym_LPAREN2, - ACTIONS(5188), 1, - anon_sym_LBRACK, - ACTIONS(5466), 1, + ACTIONS(5533), 2, anon_sym_RPAREN, - STATE(2371), 1, - sym_parameter_list, + anon_sym_COLON, + [103063] = 4, + ACTIONS(5457), 1, + anon_sym_COMMA, + STATE(2464), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [102468] = 4, - ACTIONS(5468), 1, + ACTIONS(5535), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [103078] = 4, + ACTIONS(5537), 1, anon_sym_COMMA, - STATE(2441), 1, + STATE(2464), 1, aux_sym_gnu_asm_output_operand_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5471), 2, + ACTIONS(5540), 2, anon_sym_RPAREN, anon_sym_COLON, - [102483] = 5, - ACTIONS(5413), 1, + [103093] = 5, + ACTIONS(5542), 1, + anon_sym_DQUOTE, + ACTIONS(5544), 1, aux_sym_string_literal_token1, - ACTIONS(5415), 1, + ACTIONS(5546), 1, sym_escape_sequence, - ACTIONS(5473), 1, - anon_sym_DQUOTE, - STATE(2433), 1, + STATE(2478), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [102500] = 3, - ACTIONS(4827), 1, + [103110] = 4, + ACTIONS(5548), 1, + anon_sym___except, + ACTIONS(5550), 1, + anon_sym___finally, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + STATE(224), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [103125] = 3, + ACTIONS(4839), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4825), 3, + ACTIONS(4837), 3, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [102513] = 4, - ACTIONS(5425), 1, - anon_sym_COMMA, - STATE(2463), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, + [103138] = 3, + ACTIONS(4825), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5475), 2, + ACTIONS(4823), 3, anon_sym_RPAREN, - anon_sym_COLON, - [102528] = 4, - ACTIONS(5477), 1, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [103151] = 5, + ACTIONS(5483), 1, anon_sym_COMMA, - STATE(2464), 1, - aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(5552), 1, + anon_sym_RPAREN, + STATE(2634), 1, + aux_sym__old_style_parameter_list_repeat1, + STATE(2742), 1, + aux_sym_parameter_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5479), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [102543] = 5, - ACTIONS(5481), 1, + [103168] = 5, + ACTIONS(5554), 1, anon_sym_DQUOTE, - ACTIONS(5483), 1, + ACTIONS(5556), 1, aux_sym_string_literal_token1, - ACTIONS(5485), 1, + ACTIONS(5558), 1, sym_escape_sequence, - STATE(2461), 1, + STATE(2485), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [102560] = 4, - ACTIONS(5487), 1, - anon_sym_SQUOTE, - STATE(2428), 1, - aux_sym_char_literal_repeat1, + [103185] = 5, + ACTIONS(5489), 1, + aux_sym_string_literal_token1, + ACTIONS(5491), 1, + sym_escape_sequence, + ACTIONS(5560), 1, + anon_sym_DQUOTE, + STATE(2460), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5419), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [102575] = 4, - ACTIONS(5489), 1, + [103202] = 4, + ACTIONS(5562), 1, anon_sym_SQUOTE, - STATE(2428), 1, + STATE(2448), 1, aux_sym_char_literal_repeat1, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5419), 2, + ACTIONS(5481), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [102590] = 3, - ACTIONS(4796), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(4794), 3, + [103217] = 5, + ACTIONS(5475), 1, + anon_sym_COMMA, + ACTIONS(5564), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [102603] = 3, - ACTIONS(4873), 1, - anon_sym_LBRACK, + STATE(2729), 1, + aux_sym_macro_invocation_parameter_list_repeat1, + STATE(2742), 1, + aux_sym_parameter_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4871), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [102616] = 3, - ACTIONS(4869), 1, + [103234] = 3, + ACTIONS(4853), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4867), 3, + ACTIONS(4851), 3, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [102629] = 3, - ACTIONS(4865), 1, - anon_sym_LBRACK, + [103247] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4863), 3, - anon_sym_RPAREN, + ACTIONS(5566), 4, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [102642] = 3, - ACTIONS(4891), 1, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [103258] = 3, + ACTIONS(4829), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4889), 3, + ACTIONS(4827), 3, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [102655] = 5, - ACTIONS(5413), 1, - aux_sym_string_literal_token1, - ACTIONS(5415), 1, - sym_escape_sequence, - ACTIONS(5491), 1, - anon_sym_DQUOTE, - STATE(2433), 1, - aux_sym_string_literal_repeat1, + [103271] = 4, + ACTIONS(5568), 1, + anon_sym_SQUOTE, + STATE(2448), 1, + aux_sym_char_literal_repeat1, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [102672] = 4, - ACTIONS(5493), 1, - anon_sym___except, - ACTIONS(5495), 1, - anon_sym___finally, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - STATE(81), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [102687] = 4, - ACTIONS(5497), 1, - anon_sym___except, - ACTIONS(5499), 1, - anon_sym___finally, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - STATE(2756), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [102702] = 5, - ACTIONS(5501), 1, - anon_sym_DQUOTE, - ACTIONS(5503), 1, + ACTIONS(5481), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [103286] = 5, + ACTIONS(5489), 1, aux_sym_string_literal_token1, - ACTIONS(5505), 1, + ACTIONS(5491), 1, sym_escape_sequence, - STATE(2442), 1, + ACTIONS(5570), 1, + anon_sym_DQUOTE, + STATE(2460), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [102719] = 3, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(4809), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [102732] = 4, - ACTIONS(5507), 1, + [103303] = 4, + ACTIONS(5572), 1, anon_sym_SQUOTE, - STATE(2428), 1, + STATE(2448), 1, aux_sym_char_literal_repeat1, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5419), 2, + ACTIONS(5481), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [102747] = 5, - ACTIONS(5509), 1, - anon_sym_COMMA, - ACTIONS(5511), 1, - anon_sym_RPAREN, - STATE(2545), 1, - aux_sym_parameter_list_repeat1, - STATE(2552), 1, - aux_sym__old_style_parameter_list_repeat1, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - [102764] = 5, - ACTIONS(5413), 1, + [103318] = 5, + ACTIONS(5489), 1, aux_sym_string_literal_token1, - ACTIONS(5415), 1, + ACTIONS(5491), 1, sym_escape_sequence, - ACTIONS(5513), 1, + ACTIONS(5574), 1, anon_sym_DQUOTE, - STATE(2433), 1, + STATE(2460), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [102781] = 4, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - STATE(2888), 1, - sym_argument_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(5515), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [102796] = 4, - ACTIONS(5517), 1, - anon_sym_COMMA, - STATE(2463), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(5), 2, + [103335] = 5, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5520), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [102811] = 4, - ACTIONS(5477), 1, - anon_sym_COMMA, - STATE(2466), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(5), 2, + ACTIONS(4799), 1, + sym_identifier, + ACTIONS(5576), 1, + aux_sym_preproc_if_token2, + STATE(2282), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [103352] = 6, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5522), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [102826] = 5, - ACTIONS(5524), 1, + ACTIONS(4896), 1, + sym_identifier, + ACTIONS(5578), 1, + aux_sym_preproc_if_token2, + STATE(2272), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(3010), 1, + sym_enumerator, + [103371] = 5, + ACTIONS(5580), 1, anon_sym_DQUOTE, - ACTIONS(5526), 1, + ACTIONS(5582), 1, aux_sym_string_literal_token1, - ACTIONS(5528), 1, + ACTIONS(5584), 1, sym_escape_sequence, - STATE(2416), 1, + STATE(2471), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [102843] = 4, - ACTIONS(5530), 1, - anon_sym_COMMA, - STATE(2466), 1, - aux_sym_gnu_asm_clobber_list_repeat1, + [103388] = 3, + ACTIONS(4886), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5533), 2, + ACTIONS(4884), 3, anon_sym_RPAREN, - anon_sym_COLON, - [102858] = 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [103401] = 5, + ACTIONS(5489), 1, + aux_sym_string_literal_token1, + ACTIONS(5491), 1, + sym_escape_sequence, + ACTIONS(5586), 1, + anon_sym_DQUOTE, + STATE(2460), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + [103418] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5535), 4, + ACTIONS(5588), 4, anon_sym_COMMA, anon_sym_SEMI, anon_sym_asm, anon_sym___asm__, - [102869] = 3, - ACTIONS(4772), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(4770), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [102882] = 5, - ACTIONS(5509), 1, + [103429] = 4, + ACTIONS(5531), 1, anon_sym_COMMA, - ACTIONS(5537), 1, - anon_sym_RPAREN, - STATE(2545), 1, - aux_sym_parameter_list_repeat1, - STATE(2552), 1, - aux_sym__old_style_parameter_list_repeat1, + STATE(2462), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [102899] = 4, - ACTIONS(5539), 1, + ACTIONS(5590), 2, anon_sym_RPAREN, - ACTIONS(5541), 1, anon_sym_COLON, - STATE(2628), 1, - sym_gnu_asm_input_operand_list, + [103444] = 4, + ACTIONS(5592), 1, + anon_sym___except, + ACTIONS(5594), 1, + anon_sym___finally, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [102913] = 4, - ACTIONS(5543), 1, - anon_sym_COMMA, - ACTIONS(5545), 1, - anon_sym_RPAREN, - STATE(2539), 1, - aux_sym_attribute_specifier_repeat1, + STATE(116), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [103459] = 4, + ACTIONS(5596), 1, + anon_sym___except, + ACTIONS(5598), 1, + anon_sym___finally, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [102927] = 4, - ACTIONS(5325), 1, - aux_sym_preproc_arg_token1, - ACTIONS(5547), 1, - aux_sym_preproc_include_token2, - STATE(3399), 1, - sym_preproc_arg, - ACTIONS(3), 2, - sym__linux_kernel_annotations, - sym_comment, - [102941] = 4, - ACTIONS(5325), 1, - aux_sym_preproc_arg_token1, - ACTIONS(5549), 1, - aux_sym_preproc_include_token2, - STATE(3274), 1, - sym_preproc_arg, - ACTIONS(3), 2, + STATE(2809), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [103474] = 5, + ACTIONS(5189), 1, + anon_sym_LPAREN2, + ACTIONS(5251), 1, + anon_sym_LBRACK, + ACTIONS(5600), 1, + anon_sym_RPAREN, + STATE(2401), 1, + sym_parameter_list, + ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [102955] = 5, - ACTIONS(3), 1, + [103491] = 4, + ACTIONS(5602), 1, + anon_sym___except, + ACTIONS(5604), 1, + anon_sym___finally, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(2942), 1, - anon_sym_LBRACE, - ACTIONS(5551), 1, - sym_identifier, - STATE(1094), 1, - sym_enumerator_list, - [102971] = 3, + STATE(485), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [103506] = 4, + ACTIONS(5606), 1, + anon_sym_SQUOTE, STATE(2448), 1, aux_sym_char_literal_repeat1, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5553), 2, + ACTIONS(5481), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [102983] = 4, - ACTIONS(5555), 1, - aux_sym_preproc_include_token2, - ACTIONS(5557), 1, + [103521] = 5, + ACTIONS(5189), 1, anon_sym_LPAREN2, - STATE(3319), 1, - sym_preproc_argument_list, - ACTIONS(3), 2, + ACTIONS(5251), 1, + anon_sym_LBRACK, + ACTIONS(5608), 1, + anon_sym_RPAREN, + STATE(2401), 1, + sym_parameter_list, + ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [102997] = 5, - ACTIONS(3), 1, + [103538] = 4, + ACTIONS(5610), 1, + anon_sym_COMMA, + ACTIONS(5612), 1, + anon_sym_RPAREN, + STATE(2645), 1, + aux_sym_preproc_params_repeat1, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(3916), 1, - anon_sym_LBRACE, - ACTIONS(5559), 1, - sym_identifier, - STATE(1545), 1, - sym_enumerator_list, - [103013] = 4, - ACTIONS(3), 1, + [103552] = 4, + ACTIONS(4037), 1, + anon_sym_COMMA, + ACTIONS(4077), 1, + anon_sym_RPAREN, + STATE(2751), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5561), 1, - aux_sym_preproc_include_token2, - STATE(2486), 1, - aux_sym_preproc_arg_repeat1, - ACTIONS(5563), 2, - aux_sym_preproc_arg_token2, sym_comment, - [103027] = 4, - ACTIONS(5565), 1, - anon_sym_COMMA, - ACTIONS(5567), 1, - anon_sym_RBRACK_RBRACK, - STATE(2487), 1, - aux_sym_attribute_declaration_repeat1, + [103566] = 4, + ACTIONS(5614), 1, + anon_sym_RPAREN, + ACTIONS(5616), 1, + anon_sym_COLON, + STATE(2754), 1, + sym_gnu_asm_output_operand_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103041] = 5, - ACTIONS(3), 1, + [103580] = 4, + ACTIONS(5253), 1, + anon_sym_COMMA, + ACTIONS(5618), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(2956), 1, - anon_sym_LBRACE, - ACTIONS(5375), 1, - sym_identifier, - STATE(1075), 1, - sym_field_declaration_list, - [103057] = 5, + [103594] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3043), 1, + ACTIONS(4023), 1, anon_sym_LBRACE, - ACTIONS(5569), 1, + ACTIONS(5620), 1, sym_identifier, - STATE(1095), 1, + STATE(1654), 1, sym_field_declaration_list, - [103073] = 4, - ACTIONS(5176), 1, + [103610] = 4, + ACTIONS(5622), 1, anon_sym_COMMA, - ACTIONS(5571), 1, + ACTIONS(5625), 1, anon_sym_SEMI, - STATE(2496), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103087] = 5, - ACTIONS(3), 1, + [103624] = 4, + ACTIONS(5627), 1, + anon_sym_COMMA, + ACTIONS(5629), 1, + anon_sym_RBRACK_RBRACK, + STATE(2670), 1, + aux_sym_attribute_declaration_repeat1, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(5573), 1, - sym_identifier, - ACTIONS(5575), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5577), 1, + [103638] = 4, + ACTIONS(5631), 1, + anon_sym_COMMA, + ACTIONS(5633), 1, anon_sym_RPAREN, - [103103] = 4, - ACTIONS(5325), 1, - aux_sym_preproc_arg_token1, - ACTIONS(5579), 1, - aux_sym_preproc_include_token2, - STATE(3229), 1, - sym_preproc_arg, - ACTIONS(3), 2, + STATE(2716), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [103652] = 4, + ACTIONS(5253), 1, + anon_sym_COMMA, + ACTIONS(5635), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103117] = 4, - ACTIONS(5581), 1, + [103666] = 4, + ACTIONS(5637), 1, anon_sym_RPAREN, - ACTIONS(5583), 1, + ACTIONS(5639), 1, anon_sym_COLON, - STATE(3261), 1, + STATE(3200), 1, sym_gnu_asm_goto_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103131] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5585), 1, + [103680] = 4, + ACTIONS(5396), 1, + aux_sym_preproc_arg_token1, + ACTIONS(5641), 1, aux_sym_preproc_include_token2, - STATE(2505), 1, - aux_sym_preproc_arg_repeat1, - ACTIONS(5587), 2, - aux_sym_preproc_arg_token2, + STATE(3052), 1, + sym_preproc_arg, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - [103145] = 4, - ACTIONS(5565), 1, + [103694] = 4, + ACTIONS(2421), 1, + anon_sym_RBRACE, + ACTIONS(5643), 1, anon_sym_COMMA, - ACTIONS(5589), 1, - anon_sym_RBRACK_RBRACK, - STATE(2512), 1, - aux_sym_attribute_declaration_repeat1, + STATE(2545), 1, + aux_sym_initializer_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103159] = 3, - ACTIONS(5591), 1, + [103708] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5645), 3, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_DOT, + [103718] = 4, + ACTIONS(5647), 1, + anon_sym_RPAREN, + ACTIONS(5649), 1, + anon_sym_COLON, + STATE(2589), 1, + sym_gnu_asm_clobber_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5102), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [103171] = 5, + [103732] = 4, + ACTIONS(5396), 1, + aux_sym_preproc_arg_token1, + ACTIONS(5651), 1, + aux_sym_preproc_include_token2, + STATE(3032), 1, + sym_preproc_arg, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + [103746] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(2956), 1, + ACTIONS(3941), 1, anon_sym_LBRACE, - ACTIONS(5593), 1, + ACTIONS(5653), 1, sym_identifier, - STATE(1051), 1, - sym_field_declaration_list, - [103187] = 4, - ACTIONS(5557), 1, - anon_sym_LPAREN2, - ACTIONS(5595), 1, - aux_sym_preproc_include_token2, - STATE(3319), 1, - sym_preproc_argument_list, - ACTIONS(3), 2, + STATE(1572), 1, + sym_enumerator_list, + [103762] = 4, + ACTIONS(5253), 1, + anon_sym_COMMA, + ACTIONS(5655), 1, + anon_sym_SEMI, + STATE(2593), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103201] = 3, - STATE(2447), 1, - aux_sym_char_literal_repeat1, - ACTIONS(3), 2, + [103776] = 4, + ACTIONS(5627), 1, + anon_sym_COMMA, + ACTIONS(5657), 1, + anon_sym_RBRACK_RBRACK, + STATE(2670), 1, + aux_sym_attribute_declaration_repeat1, + ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5597), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [103213] = 4, - ACTIONS(4008), 1, + [103790] = 4, + ACTIONS(5631), 1, anon_sym_COMMA, - ACTIONS(5599), 1, + ACTIONS(5659), 1, anon_sym_RPAREN, - STATE(2723), 1, - aux_sym_generic_expression_repeat1, + STATE(2531), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [103804] = 4, + ACTIONS(5396), 1, + aux_sym_preproc_arg_token1, + ACTIONS(5661), 1, + aux_sym_preproc_include_token2, + STATE(3036), 1, + sym_preproc_arg, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + [103818] = 4, + ACTIONS(5253), 1, + anon_sym_COMMA, + ACTIONS(5663), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103227] = 4, - ACTIONS(5601), 1, + [103832] = 4, + ACTIONS(5665), 1, + anon_sym_COMMA, + ACTIONS(5668), 1, anon_sym_RPAREN, - ACTIONS(5603), 1, - anon_sym_COLON, - STATE(2513), 1, - sym_gnu_asm_output_operand_list, + STATE(2515), 1, + aux_sym_parameter_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103241] = 4, - ACTIONS(5176), 1, + [103846] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5605), 1, + ACTIONS(5670), 1, anon_sym_SEMI, - STATE(2529), 1, + STATE(2502), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103255] = 4, - ACTIONS(5176), 1, + [103860] = 4, + ACTIONS(4063), 1, + anon_sym_COMMA, + ACTIONS(4065), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [103874] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5607), 1, + ACTIONS(5672), 1, anon_sym_SEMI, STATE(2530), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103269] = 4, - ACTIONS(5176), 1, + [103888] = 4, + ACTIONS(5674), 1, + aux_sym_preproc_include_token2, + ACTIONS(5676), 1, + anon_sym_LPAREN2, + STATE(3483), 1, + sym_preproc_argument_list, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + [103902] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5609), 1, + ACTIONS(5678), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103283] = 4, - ACTIONS(5541), 1, - anon_sym_COLON, - ACTIONS(5611), 1, + [103916] = 4, + ACTIONS(5680), 1, + anon_sym_COMMA, + ACTIONS(5683), 1, anon_sym_RPAREN, - STATE(2526), 1, - sym_gnu_asm_input_operand_list, + STATE(2521), 1, + aux_sym__old_style_parameter_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103297] = 4, - ACTIONS(4000), 1, + [103930] = 4, + ACTIONS(4468), 1, anon_sym_COMMA, - ACTIONS(4022), 1, + ACTIONS(5685), 1, anon_sym_RPAREN, - STATE(2531), 1, - aux_sym_argument_list_repeat1, + STATE(2548), 1, + aux_sym_preproc_argument_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103311] = 4, - ACTIONS(5565), 1, + [103944] = 5, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4137), 1, + anon_sym_LBRACE, + ACTIONS(5687), 1, + sym_identifier, + STATE(1691), 1, + sym_field_declaration_list, + [103960] = 4, + ACTIONS(5627), 1, anon_sym_COMMA, - ACTIONS(5613), 1, + ACTIONS(5689), 1, anon_sym_RBRACK_RBRACK, - STATE(2538), 1, + STATE(2563), 1, aux_sym_attribute_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103325] = 4, - ACTIONS(5543), 1, + [103974] = 4, + ACTIONS(5627), 1, anon_sym_COMMA, - ACTIONS(5615), 1, - anon_sym_RPAREN, - STATE(2510), 1, - aux_sym_attribute_specifier_repeat1, + ACTIONS(5691), 1, + anon_sym_RBRACK_RBRACK, + STATE(2511), 1, + aux_sym_attribute_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103339] = 4, - ACTIONS(5176), 1, + [103988] = 5, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4023), 1, + anon_sym_LBRACE, + ACTIONS(5408), 1, + sym_identifier, + STATE(1683), 1, + sym_field_declaration_list, + [104004] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5617), 1, + ACTIONS(5693), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2559), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103353] = 4, - ACTIONS(5619), 1, + [104018] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5621), 1, - anon_sym_RPAREN, - STATE(2533), 1, - aux_sym_preproc_params_repeat1, + ACTIONS(5695), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103367] = 4, - ACTIONS(5623), 1, + [104032] = 4, + ACTIONS(4027), 1, + anon_sym_COMMA, + ACTIONS(5697), 1, anon_sym_RPAREN, - ACTIONS(5625), 1, - anon_sym_COLON, - STATE(2485), 1, - sym_gnu_asm_clobber_list, + STATE(2607), 1, + aux_sym_generic_expression_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103381] = 4, - ACTIONS(5583), 1, - anon_sym_COLON, - ACTIONS(5627), 1, - anon_sym_RPAREN, - STATE(3213), 1, - sym_gnu_asm_goto_list, + [104046] = 4, + ACTIONS(5253), 1, + anon_sym_COMMA, + ACTIONS(5699), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103395] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5629), 1, - aux_sym_preproc_include_token2, - STATE(2505), 1, - aux_sym_preproc_arg_repeat1, - ACTIONS(5631), 2, - aux_sym_preproc_arg_token2, - sym_comment, - [103409] = 4, - ACTIONS(5634), 1, + [104060] = 4, + ACTIONS(5631), 1, anon_sym_COMMA, - ACTIONS(5636), 1, + ACTIONS(5701), 1, anon_sym_RPAREN, - STATE(2535), 1, - aux_sym_parameter_list_repeat1, + STATE(2609), 1, + aux_sym_attribute_specifier_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103423] = 5, + [104074] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3902), 1, + ACTIONS(3929), 1, anon_sym_LBRACE, - ACTIONS(5351), 1, + ACTIONS(5414), 1, sym_identifier, - STATE(1518), 1, + STATE(1540), 1, sym_field_declaration_list, - [103439] = 5, + [104090] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3972), 1, + ACTIONS(3989), 1, anon_sym_LBRACE, - ACTIONS(5638), 1, + ACTIONS(5703), 1, sym_identifier, - STATE(1551), 1, + STATE(1571), 1, sym_field_declaration_list, - [103455] = 2, + [104106] = 4, + ACTIONS(5627), 1, + anon_sym_COMMA, + ACTIONS(5705), 1, + anon_sym_RBRACK_RBRACK, + STATE(2500), 1, + aux_sym_attribute_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [104120] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3988), 3, + ACTIONS(5707), 3, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_COLON, - [103465] = 4, - ACTIONS(5543), 1, + [104130] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5640), 1, - anon_sym_RPAREN, - STATE(2539), 1, - aux_sym_attribute_specifier_repeat1, + ACTIONS(5709), 1, + anon_sym_SEMI, + STATE(2565), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103479] = 3, - STATE(2419), 1, - aux_sym_char_literal_repeat1, + [104144] = 4, + ACTIONS(5676), 1, + anon_sym_LPAREN2, + ACTIONS(5711), 1, + aux_sym_preproc_include_token2, + STATE(3483), 1, + sym_preproc_argument_list, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5642), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [103491] = 4, - ACTIONS(5644), 1, + [104158] = 4, + ACTIONS(5713), 1, anon_sym_COMMA, - ACTIONS(5647), 1, - anon_sym_RBRACK_RBRACK, - STATE(2512), 1, - aux_sym_attribute_declaration_repeat1, + ACTIONS(5716), 1, + anon_sym_RPAREN, + STATE(2538), 1, + aux_sym_preproc_params_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103505] = 4, - ACTIONS(5541), 1, - anon_sym_COLON, - ACTIONS(5649), 1, - anon_sym_RPAREN, - STATE(2541), 1, - sym_gnu_asm_input_operand_list, + [104172] = 4, + ACTIONS(5253), 1, + anon_sym_COMMA, + ACTIONS(5718), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103519] = 4, - ACTIONS(5603), 1, + [104186] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5720), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [104196] = 4, + ACTIONS(5639), 1, anon_sym_COLON, - ACTIONS(5651), 1, + ACTIONS(5722), 1, anon_sym_RPAREN, - STATE(2542), 1, - sym_gnu_asm_output_operand_list, + STATE(3046), 1, + sym_gnu_asm_goto_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103533] = 4, - ACTIONS(5176), 1, + [104210] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5653), 1, + ACTIONS(5724), 1, anon_sym_SEMI, - STATE(2543), 1, + STATE(2644), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103547] = 4, - ACTIONS(5176), 1, + [104224] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5655), 1, + ACTIONS(5726), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103561] = 4, - ACTIONS(2390), 1, - anon_sym_RBRACE, - ACTIONS(5657), 1, + [104238] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - STATE(2656), 1, - aux_sym_initializer_list_repeat1, + ACTIONS(5728), 1, + anon_sym_SEMI, + STATE(2599), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103575] = 4, - ACTIONS(4000), 1, + [104252] = 4, + ACTIONS(4181), 1, + anon_sym_RBRACE, + ACTIONS(5730), 1, anon_sym_COMMA, - ACTIONS(5659), 1, - anon_sym_RPAREN, - STATE(2555), 1, - aux_sym_argument_list_repeat1, + STATE(2545), 1, + aux_sym_initializer_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103589] = 4, - ACTIONS(5176), 1, - anon_sym_COMMA, - ACTIONS(5661), 1, - anon_sym_SEMI, - STATE(2530), 1, - aux_sym_declaration_repeat1, - ACTIONS(5), 2, + [104266] = 4, + ACTIONS(5396), 1, + aux_sym_preproc_arg_token1, + ACTIONS(5733), 1, + aux_sym_preproc_include_token2, + STATE(3120), 1, + sym_preproc_arg, + ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [103603] = 4, - ACTIONS(5176), 1, + [104280] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5663), 1, + ACTIONS(5735), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2588), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103617] = 4, - ACTIONS(5176), 1, + [104294] = 4, + ACTIONS(4526), 1, + anon_sym_RPAREN, + ACTIONS(5737), 1, anon_sym_COMMA, - ACTIONS(5665), 1, - anon_sym_SEMI, - STATE(2501), 1, - aux_sym_declaration_repeat1, + STATE(2548), 1, + aux_sym_preproc_argument_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103631] = 4, - ACTIONS(5176), 1, + [104308] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5667), 1, + ACTIONS(5740), 1, anon_sym_SEMI, - STATE(2563), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103645] = 4, - ACTIONS(5176), 1, + [104322] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5669), 1, + ACTIONS(5742), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103659] = 4, - ACTIONS(5541), 1, - anon_sym_COLON, - ACTIONS(5671), 1, - anon_sym_RPAREN, - STATE(2503), 1, - sym_gnu_asm_input_operand_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - [103673] = 4, - ACTIONS(5176), 1, + [104336] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5673), 1, + ACTIONS(5744), 1, anon_sym_SEMI, - STATE(2571), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103687] = 4, - ACTIONS(5625), 1, - anon_sym_COLON, - ACTIONS(5675), 1, - anon_sym_RPAREN, - STATE(2504), 1, - sym_gnu_asm_clobber_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - [103701] = 4, - ACTIONS(5176), 1, + [104350] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5677), 1, + ACTIONS(5746), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2641), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103715] = 4, - ACTIONS(5325), 1, + [104364] = 4, + ACTIONS(5396), 1, aux_sym_preproc_arg_token1, - ACTIONS(5679), 1, + ACTIONS(5748), 1, aux_sym_preproc_include_token2, - STATE(3027), 1, + STATE(3167), 1, sym_preproc_arg, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [103729] = 4, - ACTIONS(5176), 1, + [104378] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5681), 1, + ACTIONS(5750), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103743] = 4, - ACTIONS(5683), 1, + [104392] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5686), 1, + ACTIONS(5752), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2549), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103757] = 4, - ACTIONS(4000), 1, + [104406] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(4038), 1, - anon_sym_RPAREN, - STATE(2555), 1, - aux_sym_argument_list_repeat1, + ACTIONS(5754), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103771] = 4, - ACTIONS(4387), 1, + [104420] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5688), 1, - anon_sym_RPAREN, - STATE(2565), 1, - aux_sym_preproc_argument_list_repeat1, + ACTIONS(5756), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103785] = 4, - ACTIONS(5619), 1, + [104434] = 5, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + ACTIONS(5758), 1, + sym_identifier, + STATE(1689), 1, + sym_enumerator_list, + [104450] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5690), 1, - anon_sym_RPAREN, - STATE(2566), 1, - aux_sym_preproc_params_repeat1, + ACTIONS(5760), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103799] = 3, - STATE(2417), 1, - aux_sym_char_literal_repeat1, + [104464] = 4, + ACTIONS(5396), 1, + aux_sym_preproc_arg_token1, + ACTIONS(5762), 1, + aux_sym_preproc_include_token2, + STATE(3138), 1, + sym_preproc_arg, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5692), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [103811] = 4, - ACTIONS(5634), 1, - anon_sym_COMMA, - ACTIONS(5694), 1, - anon_sym_RPAREN, - STATE(2568), 1, - aux_sym_parameter_list_repeat1, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - [103825] = 4, - ACTIONS(4012), 1, + [104478] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(4014), 1, - anon_sym_RBRACE, - STATE(2570), 1, - aux_sym_initializer_list_repeat1, + ACTIONS(5764), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103839] = 4, - ACTIONS(5543), 1, + [104492] = 4, + ACTIONS(5631), 1, anon_sym_COMMA, - ACTIONS(5696), 1, + ACTIONS(5766), 1, anon_sym_RPAREN, - STATE(2583), 1, + STATE(2608), 1, aux_sym_attribute_specifier_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103853] = 4, - ACTIONS(5565), 1, + [104506] = 4, + ACTIONS(5627), 1, anon_sym_COMMA, - ACTIONS(5698), 1, + ACTIONS(5768), 1, anon_sym_RBRACK_RBRACK, - STATE(2512), 1, + STATE(2670), 1, aux_sym_attribute_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, - sym_comment, - [103867] = 4, - ACTIONS(5700), 1, - anon_sym_COMMA, - ACTIONS(5703), 1, - anon_sym_RPAREN, - STATE(2539), 1, - aux_sym_attribute_specifier_repeat1, + sym_comment, + [104520] = 4, + ACTIONS(5253), 1, + anon_sym_COMMA, + ACTIONS(5770), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103881] = 4, - ACTIONS(4048), 1, + [104534] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(4050), 1, - anon_sym_RBRACE, - STATE(2517), 1, - aux_sym_initializer_list_repeat1, + ACTIONS(5772), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103895] = 4, - ACTIONS(5625), 1, - anon_sym_COLON, - ACTIONS(5705), 1, - anon_sym_RPAREN, - STATE(2615), 1, - sym_gnu_asm_clobber_list, + [104548] = 4, + ACTIONS(5253), 1, + anon_sym_COMMA, + ACTIONS(5774), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103909] = 4, - ACTIONS(5541), 1, - anon_sym_COLON, - ACTIONS(5707), 1, - anon_sym_RPAREN, - STATE(2637), 1, - sym_gnu_asm_input_operand_list, + [104562] = 4, + ACTIONS(5253), 1, + anon_sym_COMMA, + ACTIONS(5776), 1, + anon_sym_SEMI, + STATE(2550), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103923] = 4, - ACTIONS(5176), 1, + [104576] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5709), 1, + ACTIONS(5778), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2651), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103937] = 4, - ACTIONS(5176), 1, + [104590] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5711), 1, + ACTIONS(5780), 1, anon_sym_SEMI, - STATE(2687), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103951] = 4, - ACTIONS(5634), 1, + [104604] = 4, + ACTIONS(4031), 1, anon_sym_COMMA, - ACTIONS(5713), 1, + ACTIONS(5782), 1, anon_sym_RPAREN, - STATE(2568), 1, - aux_sym_parameter_list_repeat1, + STATE(2572), 1, + aux_sym_macro_invocation_parameter_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103965] = 4, - ACTIONS(5176), 1, + [104618] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5715), 1, + ACTIONS(5784), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2556), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [103979] = 5, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2103), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5717), 1, - sym_identifier, - STATE(2943), 1, - sym_variadic_parameter, - [103995] = 4, - ACTIONS(4387), 1, - anon_sym_COMMA, - ACTIONS(5719), 1, + [104632] = 4, + ACTIONS(4201), 1, anon_sym_RPAREN, - STATE(2565), 1, - aux_sym_preproc_argument_list_repeat1, + ACTIONS(5786), 1, + anon_sym_COMMA, + STATE(2572), 1, + aux_sym_macro_invocation_parameter_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104009] = 4, - ACTIONS(4000), 1, - anon_sym_COMMA, - ACTIONS(4024), 1, - anon_sym_RPAREN, - STATE(2555), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5), 2, + [104646] = 3, + STATE(2472), 1, + aux_sym_char_literal_repeat1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5789), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [104658] = 3, + STATE(2477), 1, + aux_sym_char_literal_repeat1, + ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [104023] = 5, + ACTIONS(5791), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [104670] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3902), 1, + ACTIONS(3929), 1, anon_sym_LBRACE, - ACTIONS(5721), 1, + ACTIONS(5793), 1, sym_identifier, - STATE(1522), 1, + STATE(1530), 1, sym_field_declaration_list, - [104039] = 4, - ACTIONS(5176), 1, + [104686] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5723), 1, + ACTIONS(5795), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2600), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104053] = 4, - ACTIONS(5725), 1, - anon_sym_COMMA, - ACTIONS(5727), 1, + [104700] = 4, + ACTIONS(5616), 1, + anon_sym_COLON, + ACTIONS(5797), 1, anon_sym_RPAREN, - STATE(2650), 1, - aux_sym__old_style_parameter_list_repeat1, + STATE(2680), 1, + sym_gnu_asm_output_operand_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104067] = 4, - ACTIONS(4000), 1, + [104714] = 4, + ACTIONS(5631), 1, anon_sym_COMMA, - ACTIONS(5729), 1, + ACTIONS(5799), 1, anon_sym_RPAREN, - STATE(2555), 1, - aux_sym_argument_list_repeat1, + STATE(2609), 1, + aux_sym_attribute_specifier_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104081] = 4, - ACTIONS(5603), 1, + [104728] = 4, + ACTIONS(5616), 1, anon_sym_COLON, - ACTIONS(5731), 1, + ACTIONS(5801), 1, anon_sym_RPAREN, - STATE(2470), 1, + STATE(2621), 1, sym_gnu_asm_output_operand_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104095] = 4, - ACTIONS(4156), 1, + [104742] = 4, + ACTIONS(5803), 1, anon_sym_RPAREN, - ACTIONS(5733), 1, - anon_sym_COMMA, - STATE(2555), 1, - aux_sym_argument_list_repeat1, + ACTIONS(5805), 1, + anon_sym_COLON, + STATE(2689), 1, + sym_gnu_asm_input_operand_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104109] = 4, - ACTIONS(5176), 1, - anon_sym_COMMA, - ACTIONS(5736), 1, - anon_sym_SEMI, - STATE(2530), 1, - aux_sym_declaration_repeat1, + [104756] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104123] = 4, - ACTIONS(5176), 1, + ACTIONS(5807), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [104766] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5738), 1, + ACTIONS(5809), 1, anon_sym_SEMI, - STATE(2519), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104137] = 4, - ACTIONS(5176), 1, + [104780] = 4, + ACTIONS(4031), 1, anon_sym_COMMA, - ACTIONS(5740), 1, - anon_sym_SEMI, - STATE(2530), 1, - aux_sym_declaration_repeat1, + ACTIONS(5811), 1, + anon_sym_RPAREN, + STATE(2572), 1, + aux_sym_macro_invocation_parameter_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104151] = 4, - ACTIONS(5176), 1, + [104794] = 4, + ACTIONS(4183), 1, + anon_sym_RPAREN, + ACTIONS(5813), 1, anon_sym_COMMA, - ACTIONS(5742), 1, - anon_sym_SEMI, - STATE(2523), 1, - aux_sym_declaration_repeat1, + STATE(2584), 1, + aux_sym_argument_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104165] = 4, - ACTIONS(5176), 1, + [104808] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5744), 1, + ACTIONS(5816), 1, anon_sym_SEMI, - STATE(2603), 1, + STATE(2629), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104179] = 4, - ACTIONS(5176), 1, + [104822] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5746), 1, + ACTIONS(5818), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104193] = 4, - ACTIONS(5603), 1, - anon_sym_COLON, - ACTIONS(5748), 1, + [104836] = 4, + ACTIONS(4037), 1, + anon_sym_COMMA, + ACTIONS(5820), 1, anon_sym_RPAREN, - STATE(2524), 1, - sym_gnu_asm_output_operand_list, + STATE(2584), 1, + aux_sym_argument_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104207] = 4, - ACTIONS(5176), 1, + [104850] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5750), 1, + ACTIONS(5822), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104221] = 4, - ACTIONS(5176), 1, - anon_sym_COMMA, - ACTIONS(5752), 1, - anon_sym_SEMI, - STATE(2551), 1, - aux_sym_declaration_repeat1, + [104864] = 4, + ACTIONS(5639), 1, + anon_sym_COLON, + ACTIONS(5824), 1, + anon_sym_RPAREN, + STATE(3245), 1, + sym_gnu_asm_goto_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104235] = 4, - ACTIONS(4590), 1, - anon_sym_RPAREN, - ACTIONS(5754), 1, - anon_sym_COMMA, - STATE(2565), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(5), 2, + [104878] = 4, + ACTIONS(5396), 1, + aux_sym_preproc_arg_token1, + ACTIONS(5826), 1, + aux_sym_preproc_include_token2, + STATE(3293), 1, + sym_preproc_arg, + ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [104249] = 4, - ACTIONS(5757), 1, + [104892] = 4, + ACTIONS(4027), 1, anon_sym_COMMA, - ACTIONS(5760), 1, + ACTIONS(5828), 1, anon_sym_RPAREN, - STATE(2566), 1, - aux_sym_preproc_params_repeat1, + STATE(2607), 1, + aux_sym_generic_expression_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104263] = 4, - ACTIONS(4000), 1, + [104906] = 4, + ACTIONS(4037), 1, anon_sym_COMMA, - ACTIONS(4026), 1, + ACTIONS(4053), 1, anon_sym_RPAREN, - STATE(2610), 1, + STATE(2636), 1, aux_sym_argument_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104277] = 4, - ACTIONS(5762), 1, + [104920] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5765), 1, - anon_sym_RPAREN, - STATE(2568), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(5830), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104291] = 2, + [104934] = 4, + ACTIONS(4037), 1, + anon_sym_COMMA, + ACTIONS(4051), 1, + anon_sym_RPAREN, + STATE(2631), 1, + aux_sym_argument_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5767), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [104301] = 4, - ACTIONS(2388), 1, - anon_sym_RBRACE, - ACTIONS(5769), 1, + [104948] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - STATE(2656), 1, - aux_sym_initializer_list_repeat1, + ACTIONS(5832), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104315] = 4, - ACTIONS(5176), 1, + [104962] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5771), 1, + ACTIONS(5834), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104329] = 3, - STATE(2459), 1, - aux_sym_char_literal_repeat1, - ACTIONS(3), 2, + [104976] = 2, + ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5773), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [104341] = 4, - ACTIONS(5543), 1, + ACTIONS(5836), 3, anon_sym_COMMA, - ACTIONS(5775), 1, anon_sym_RPAREN, - STATE(2539), 1, - aux_sym_attribute_specifier_repeat1, + anon_sym_COLON, + [104986] = 4, + ACTIONS(5253), 1, + anon_sym_COMMA, + ACTIONS(5838), 1, + anon_sym_SEMI, + STATE(2561), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104355] = 4, - ACTIONS(5543), 1, + [105000] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5777), 1, - anon_sym_RPAREN, - STATE(2573), 1, - aux_sym_attribute_specifier_repeat1, + ACTIONS(5840), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104369] = 4, - ACTIONS(5543), 1, + [105014] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5779), 1, - anon_sym_RPAREN, - STATE(2539), 1, - aux_sym_attribute_specifier_repeat1, + ACTIONS(5842), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104383] = 4, - ACTIONS(5543), 1, + [105028] = 4, + ACTIONS(5844), 1, anon_sym_COMMA, - ACTIONS(5781), 1, + ACTIONS(5846), 1, anon_sym_RPAREN, - STATE(2539), 1, - aux_sym_attribute_specifier_repeat1, + STATE(2616), 1, + aux_sym_gnu_asm_goto_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104397] = 4, - ACTIONS(5634), 1, + [105042] = 4, + ACTIONS(5848), 1, anon_sym_COMMA, - ACTIONS(5783), 1, + ACTIONS(5850), 1, anon_sym_RPAREN, - STATE(2613), 1, + STATE(2639), 1, aux_sym_parameter_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104411] = 4, - ACTIONS(5634), 1, + [105056] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5785), 1, - anon_sym_RPAREN, - STATE(2545), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(5852), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104425] = 4, - ACTIONS(5543), 1, - anon_sym_COMMA, - ACTIONS(5787), 1, - anon_sym_RPAREN, - STATE(2576), 1, - aux_sym_attribute_specifier_repeat1, + [105070] = 3, + STATE(2479), 1, + aux_sym_char_literal_repeat1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5854), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [105082] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104439] = 4, - ACTIONS(5543), 1, + ACTIONS(5856), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [105092] = 5, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3003), 1, + anon_sym_LBRACE, + ACTIONS(5858), 1, + sym_identifier, + STATE(1127), 1, + sym_enumerator_list, + [105108] = 4, + ACTIONS(5860), 1, anon_sym_COMMA, - ACTIONS(5789), 1, + ACTIONS(5863), 1, anon_sym_RPAREN, - STATE(2539), 1, - aux_sym_attribute_specifier_repeat1, + STATE(2607), 1, + aux_sym_generic_expression_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104453] = 4, - ACTIONS(5543), 1, + [105122] = 4, + ACTIONS(5631), 1, anon_sym_COMMA, - ACTIONS(5791), 1, + ACTIONS(5865), 1, anon_sym_RPAREN, - STATE(2580), 1, + STATE(2609), 1, aux_sym_attribute_specifier_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104467] = 4, - ACTIONS(5325), 1, - aux_sym_preproc_arg_token1, - ACTIONS(5793), 1, - aux_sym_preproc_include_token2, - STATE(3001), 1, - sym_preproc_arg, - ACTIONS(3), 2, - sym__linux_kernel_annotations, - sym_comment, - [104481] = 4, - ACTIONS(5543), 1, + [105136] = 4, + ACTIONS(5867), 1, anon_sym_COMMA, - ACTIONS(5795), 1, + ACTIONS(5870), 1, anon_sym_RPAREN, - STATE(2539), 1, + STATE(2609), 1, aux_sym_attribute_specifier_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104495] = 4, - ACTIONS(5176), 1, - anon_sym_COMMA, - ACTIONS(5797), 1, - anon_sym_SEMI, - STATE(2530), 1, - aux_sym_declaration_repeat1, + [105150] = 4, + ACTIONS(5649), 1, + anon_sym_COLON, + ACTIONS(5872), 1, + anon_sym_RPAREN, + STATE(2541), 1, + sym_gnu_asm_clobber_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104509] = 4, - ACTIONS(5176), 1, + [105164] = 4, + ACTIONS(5627), 1, anon_sym_COMMA, - ACTIONS(5799), 1, - anon_sym_SEMI, - STATE(2530), 1, - aux_sym_declaration_repeat1, + ACTIONS(5874), 1, + anon_sym_RBRACK_RBRACK, + STATE(2670), 1, + aux_sym_attribute_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104523] = 4, - ACTIONS(5176), 1, - anon_sym_COMMA, - ACTIONS(5801), 1, - anon_sym_SEMI, - STATE(2530), 1, - aux_sym_declaration_repeat1, + [105178] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104537] = 4, - ACTIONS(5176), 1, + ACTIONS(5876), 3, anon_sym_COMMA, - ACTIONS(5803), 1, - anon_sym_SEMI, - STATE(2584), 1, - aux_sym_declaration_repeat1, + anon_sym_RPAREN, + anon_sym_COLON, + [105188] = 4, + ACTIONS(5631), 1, + anon_sym_COMMA, + ACTIONS(5878), 1, + anon_sym_RPAREN, + STATE(2578), 1, + aux_sym_attribute_specifier_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104551] = 4, - ACTIONS(5176), 1, - anon_sym_COMMA, - ACTIONS(5805), 1, - anon_sym_SEMI, - STATE(2530), 1, - aux_sym_declaration_repeat1, + [105202] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104565] = 4, - ACTIONS(4000), 1, + ACTIONS(5880), 3, anon_sym_COMMA, - ACTIONS(4016), 1, anon_sym_RPAREN, - STATE(2549), 1, - aux_sym_argument_list_repeat1, + anon_sym_COLON, + [105212] = 4, + ACTIONS(5639), 1, + anon_sym_COLON, + ACTIONS(5882), 1, + anon_sym_RPAREN, + STATE(2987), 1, + sym_gnu_asm_goto_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104579] = 4, - ACTIONS(5176), 1, + [105226] = 4, + ACTIONS(5844), 1, anon_sym_COMMA, - ACTIONS(5807), 1, - anon_sym_SEMI, - STATE(2530), 1, - aux_sym_declaration_repeat1, + ACTIONS(5884), 1, + anon_sym_RPAREN, + STATE(2617), 1, + aux_sym_gnu_asm_goto_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104593] = 4, - ACTIONS(5176), 1, + [105240] = 4, + ACTIONS(5886), 1, anon_sym_COMMA, - ACTIONS(5809), 1, - anon_sym_SEMI, - STATE(2530), 1, - aux_sym_declaration_repeat1, + ACTIONS(5889), 1, + anon_sym_RPAREN, + STATE(2617), 1, + aux_sym_gnu_asm_goto_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104607] = 4, - ACTIONS(5176), 1, - anon_sym_COMMA, - ACTIONS(5811), 1, - anon_sym_SEMI, - STATE(2530), 1, - aux_sym_declaration_repeat1, + [105254] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104621] = 4, - ACTIONS(5176), 1, + ACTIONS(5891), 3, anon_sym_COMMA, - ACTIONS(5813), 1, - anon_sym_SEMI, - STATE(2530), 1, - aux_sym_declaration_repeat1, - ACTIONS(5), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [105264] = 4, + ACTIONS(5396), 1, + aux_sym_preproc_arg_token1, + ACTIONS(5893), 1, + aux_sym_preproc_include_token2, + STATE(3151), 1, + sym_preproc_arg, + ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [104635] = 4, - ACTIONS(5176), 1, - anon_sym_COMMA, - ACTIONS(5815), 1, - anon_sym_SEMI, - STATE(2585), 1, - aux_sym_declaration_repeat1, + [105278] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104649] = 4, - ACTIONS(5603), 1, + ACTIONS(5895), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [105288] = 4, + ACTIONS(5805), 1, anon_sym_COLON, - ACTIONS(5817), 1, + ACTIONS(5897), 1, anon_sym_RPAREN, - STATE(2497), 1, - sym_gnu_asm_output_operand_list, + STATE(2656), 1, + sym_gnu_asm_input_operand_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104663] = 4, - ACTIONS(5603), 1, + [105302] = 4, + ACTIONS(5616), 1, anon_sym_COLON, - ACTIONS(5819), 1, + ACTIONS(5899), 1, anon_sym_RPAREN, - STATE(2629), 1, + STATE(2657), 1, sym_gnu_asm_output_operand_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104677] = 4, - ACTIONS(5176), 1, + [105316] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5821), 1, + ACTIONS(5901), 1, anon_sym_SEMI, - STATE(2630), 1, + STATE(2658), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104691] = 4, - ACTIONS(5176), 1, + [105330] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5823), 1, + ACTIONS(5903), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104705] = 4, - ACTIONS(5176), 1, - anon_sym_COMMA, - ACTIONS(5825), 1, - anon_sym_SEMI, - STATE(2530), 1, - aux_sym_declaration_repeat1, - ACTIONS(5), 2, + [105344] = 4, + ACTIONS(5676), 1, + anon_sym_LPAREN2, + ACTIONS(5905), 1, + aux_sym_preproc_include_token2, + STATE(3483), 1, + sym_preproc_argument_list, + ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [104719] = 4, - ACTIONS(5176), 1, - anon_sym_COMMA, - ACTIONS(5827), 1, - anon_sym_SEMI, - STATE(2588), 1, - aux_sym_declaration_repeat1, - ACTIONS(5), 2, + [105358] = 4, + ACTIONS(5396), 1, + aux_sym_preproc_arg_token1, + ACTIONS(5907), 1, + aux_sym_preproc_include_token2, + STATE(2997), 1, + sym_preproc_arg, + ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [104733] = 4, - ACTIONS(5176), 1, + [105372] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5829), 1, + ACTIONS(5909), 1, anon_sym_SEMI, - STATE(2633), 1, + STATE(2661), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104747] = 4, - ACTIONS(5176), 1, + [105386] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5831), 1, + ACTIONS(5911), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104761] = 4, - ACTIONS(5176), 1, + [105400] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5833), 1, + ACTIONS(5913), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104775] = 4, - ACTIONS(5543), 1, - anon_sym_COMMA, - ACTIONS(5835), 1, - anon_sym_RPAREN, - STATE(2539), 1, - aux_sym_attribute_specifier_repeat1, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - [104789] = 5, + [105414] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, - ACTIONS(5), 1, + ACTIONS(5915), 1, + aux_sym_preproc_include_token2, + STATE(2759), 1, + aux_sym_preproc_arg_repeat1, + ACTIONS(5917), 2, + aux_sym_preproc_arg_token2, sym_comment, - ACTIONS(3996), 1, - anon_sym_LBRACE, - ACTIONS(5837), 1, - sym_identifier, - STATE(1629), 1, - sym_field_declaration_list, - [104805] = 4, - ACTIONS(5176), 1, + [105428] = 4, + ACTIONS(4037), 1, anon_sym_COMMA, - ACTIONS(5839), 1, - anon_sym_SEMI, - STATE(2530), 1, - aux_sym_declaration_repeat1, + ACTIONS(4091), 1, + anon_sym_RPAREN, + STATE(2584), 1, + aux_sym_argument_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104819] = 4, - ACTIONS(5176), 1, + [105442] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5841), 1, + ACTIONS(5919), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2709), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104833] = 4, - ACTIONS(5176), 1, + [105456] = 4, + ACTIONS(4031), 1, anon_sym_COMMA, - ACTIONS(5843), 1, - anon_sym_SEMI, - STATE(2592), 1, - aux_sym_declaration_repeat1, + ACTIONS(4059), 1, + anon_sym_RPAREN, + STATE(2572), 1, + aux_sym_macro_invocation_parameter_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104847] = 4, - ACTIONS(5543), 1, + [105470] = 4, + ACTIONS(5921), 1, anon_sym_COMMA, - ACTIONS(5845), 1, + ACTIONS(5923), 1, anon_sym_RPAREN, - STATE(2604), 1, - aux_sym_attribute_specifier_repeat1, + STATE(2521), 1, + aux_sym__old_style_parameter_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104861] = 4, - ACTIONS(4000), 1, + [105484] = 5, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1208), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5925), 1, + sym_identifier, + STATE(2956), 1, + sym_variadic_parameter, + [105500] = 4, + ACTIONS(4037), 1, anon_sym_COMMA, - ACTIONS(4020), 1, + ACTIONS(4047), 1, anon_sym_RPAREN, - STATE(2555), 1, + STATE(2584), 1, aux_sym_argument_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104875] = 4, - ACTIONS(4387), 1, + [105514] = 4, + ACTIONS(4468), 1, anon_sym_COMMA, - ACTIONS(5847), 1, + ACTIONS(5927), 1, anon_sym_RPAREN, - STATE(2565), 1, + STATE(2548), 1, aux_sym_preproc_argument_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104889] = 4, - ACTIONS(5325), 1, - aux_sym_preproc_arg_token1, - ACTIONS(5849), 1, - aux_sym_preproc_include_token2, - STATE(2989), 1, - sym_preproc_arg, + [105528] = 3, + STATE(2441), 1, + aux_sym_char_literal_repeat1, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [104903] = 4, - ACTIONS(5634), 1, + ACTIONS(5929), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [105540] = 4, + ACTIONS(5848), 1, anon_sym_COMMA, - ACTIONS(5851), 1, + ACTIONS(5931), 1, anon_sym_RPAREN, - STATE(2568), 1, + STATE(2515), 1, aux_sym_parameter_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104917] = 4, - ACTIONS(5176), 1, + [105554] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5853), 1, + ACTIONS(5933), 1, anon_sym_SEMI, - STATE(2606), 1, + STATE(2595), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104931] = 4, - ACTIONS(5583), 1, - anon_sym_COLON, - ACTIONS(5855), 1, - anon_sym_RPAREN, - STATE(3185), 1, - sym_gnu_asm_goto_list, + [105568] = 4, + ACTIONS(5253), 1, + anon_sym_COMMA, + ACTIONS(5935), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104945] = 4, - ACTIONS(4042), 1, + [105582] = 4, + ACTIONS(4043), 1, anon_sym_COMMA, - ACTIONS(4044), 1, + ACTIONS(4045), 1, anon_sym_RBRACE, - STATE(2638), 1, + STATE(2666), 1, aux_sym_initializer_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104959] = 4, - ACTIONS(5565), 1, + [105596] = 4, + ACTIONS(5627), 1, anon_sym_COMMA, - ACTIONS(5857), 1, + ACTIONS(5937), 1, anon_sym_RBRACK_RBRACK, - STATE(2512), 1, + STATE(2717), 1, aux_sym_attribute_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104973] = 4, - ACTIONS(5543), 1, + [105610] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5859), 1, - anon_sym_RPAREN, - STATE(2575), 1, - aux_sym_attribute_specifier_repeat1, + ACTIONS(5939), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [104987] = 4, - ACTIONS(5325), 1, - aux_sym_preproc_arg_token1, - ACTIONS(5861), 1, - aux_sym_preproc_include_token2, - STATE(2974), 1, - sym_preproc_arg, - ACTIONS(3), 2, - sym__linux_kernel_annotations, - sym_comment, - [105001] = 4, - ACTIONS(5176), 1, + [105624] = 4, + ACTIONS(5610), 1, anon_sym_COMMA, - ACTIONS(5863), 1, - anon_sym_SEMI, - STATE(2530), 1, - aux_sym_declaration_repeat1, + ACTIONS(5941), 1, + anon_sym_RPAREN, + STATE(2538), 1, + aux_sym_preproc_params_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105015] = 4, - ACTIONS(5176), 1, + [105638] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5865), 1, + ACTIONS(5943), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105029] = 4, - ACTIONS(5176), 1, + [105652] = 4, + ACTIONS(5396), 1, + aux_sym_preproc_arg_token1, + ACTIONS(5945), 1, + aux_sym_preproc_include_token2, + STATE(3013), 1, + sym_preproc_arg, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + [105666] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5867), 1, + ACTIONS(5947), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2520), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105043] = 4, - ACTIONS(5176), 1, + [105680] = 4, + ACTIONS(5631), 1, anon_sym_COMMA, - ACTIONS(5869), 1, - anon_sym_SEMI, - STATE(2620), 1, - aux_sym_declaration_repeat1, + ACTIONS(5949), 1, + anon_sym_RPAREN, + STATE(2710), 1, + aux_sym_attribute_specifier_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105057] = 4, - ACTIONS(5176), 1, + [105694] = 3, + STATE(2492), 1, + aux_sym_char_literal_repeat1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5951), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [105706] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5871), 1, + ACTIONS(5953), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105071] = 4, - ACTIONS(5634), 1, + [105720] = 4, + ACTIONS(5848), 1, anon_sym_COMMA, - ACTIONS(5873), 1, + ACTIONS(5955), 1, anon_sym_RPAREN, - STATE(2568), 1, + STATE(2515), 1, aux_sym_parameter_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105085] = 4, - ACTIONS(5176), 1, + [105734] = 4, + ACTIONS(5616), 1, + anon_sym_COLON, + ACTIONS(5957), 1, + anon_sym_RPAREN, + STATE(2580), 1, + sym_gnu_asm_output_operand_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [105748] = 4, + ACTIONS(2417), 1, + anon_sym_RBRACE, + ACTIONS(5959), 1, anon_sym_COMMA, - ACTIONS(5875), 1, - anon_sym_SEMI, - STATE(2530), 1, - aux_sym_declaration_repeat1, + STATE(2545), 1, + aux_sym_initializer_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105099] = 4, - ACTIONS(5176), 1, + [105762] = 4, + ACTIONS(5848), 1, anon_sym_COMMA, - ACTIONS(5877), 1, - anon_sym_SEMI, - STATE(2530), 1, - aux_sym_declaration_repeat1, + ACTIONS(5961), 1, + anon_sym_RPAREN, + STATE(2742), 1, + aux_sym_parameter_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105113] = 4, - ACTIONS(5625), 1, + [105776] = 4, + ACTIONS(5649), 1, anon_sym_COLON, - ACTIONS(5879), 1, + ACTIONS(5963), 1, anon_sym_RPAREN, - STATE(2647), 1, + STATE(2677), 1, sym_gnu_asm_clobber_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105127] = 4, - ACTIONS(5541), 1, + [105790] = 4, + ACTIONS(5805), 1, anon_sym_COLON, - ACTIONS(5881), 1, + ACTIONS(5965), 1, anon_sym_RPAREN, - STATE(2648), 1, + STATE(2678), 1, sym_gnu_asm_input_operand_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105141] = 4, - ACTIONS(5176), 1, + [105804] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5883), 1, + ACTIONS(5967), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105155] = 4, - ACTIONS(5176), 1, + [105818] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5885), 1, + ACTIONS(5969), 1, anon_sym_SEMI, - STATE(2649), 1, + STATE(2679), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105169] = 4, - ACTIONS(5176), 1, + [105832] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5887), 1, + ACTIONS(5971), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105183] = 4, - ACTIONS(5176), 1, + [105846] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5889), 1, + ACTIONS(5973), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105197] = 4, - ACTIONS(5176), 1, + [105860] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5891), 1, + ACTIONS(5975), 1, anon_sym_SEMI, - STATE(2621), 1, + STATE(2731), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105211] = 4, - ACTIONS(5325), 1, - aux_sym_preproc_arg_token1, - ACTIONS(5893), 1, - aux_sym_preproc_include_token2, - STATE(3004), 1, - sym_preproc_arg, - ACTIONS(3), 2, + [105874] = 4, + ACTIONS(5253), 1, + anon_sym_COMMA, + ACTIONS(5977), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105225] = 4, - ACTIONS(4000), 1, + [105888] = 4, + ACTIONS(4037), 1, anon_sym_COMMA, - ACTIONS(5895), 1, + ACTIONS(5979), 1, anon_sym_RPAREN, - STATE(2555), 1, + STATE(2584), 1, aux_sym_argument_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105239] = 4, - ACTIONS(5625), 1, - anon_sym_COLON, - ACTIONS(5897), 1, - anon_sym_RPAREN, - STATE(2690), 1, - sym_gnu_asm_clobber_list, - ACTIONS(5), 2, + [105902] = 5, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - [105253] = 4, - ACTIONS(2396), 1, + ACTIONS(2960), 1, + anon_sym_LBRACE, + ACTIONS(5981), 1, + sym_identifier, + STATE(1091), 1, + sym_field_declaration_list, + [105918] = 4, + ACTIONS(2419), 1, anon_sym_RBRACE, - ACTIONS(5899), 1, + ACTIONS(5983), 1, anon_sym_COMMA, - STATE(2656), 1, + STATE(2545), 1, aux_sym_initializer_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105267] = 4, - ACTIONS(5176), 1, + [105932] = 4, + ACTIONS(4037), 1, anon_sym_COMMA, - ACTIONS(5901), 1, - anon_sym_SEMI, - STATE(2530), 1, - aux_sym_declaration_repeat1, + ACTIONS(5985), 1, + anon_sym_RPAREN, + STATE(2584), 1, + aux_sym_argument_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105281] = 4, - ACTIONS(5176), 1, + [105946] = 4, + ACTIONS(5631), 1, anon_sym_COMMA, - ACTIONS(5903), 1, - anon_sym_SEMI, - STATE(2590), 1, - aux_sym_declaration_repeat1, + ACTIONS(5987), 1, + anon_sym_RPAREN, + STATE(2609), 1, + aux_sym_attribute_specifier_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105295] = 4, - ACTIONS(5176), 1, + [105960] = 4, + ACTIONS(5627), 1, anon_sym_COMMA, - ACTIONS(5905), 1, - anon_sym_SEMI, - STATE(2624), 1, - aux_sym_declaration_repeat1, + ACTIONS(5989), 1, + anon_sym_RBRACK_RBRACK, + STATE(2611), 1, + aux_sym_attribute_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105309] = 4, - ACTIONS(5543), 1, + [105974] = 4, + ACTIONS(5991), 1, anon_sym_COMMA, - ACTIONS(5907), 1, - anon_sym_RPAREN, - STATE(2539), 1, - aux_sym_attribute_specifier_repeat1, + ACTIONS(5994), 1, + anon_sym_RBRACK_RBRACK, + STATE(2670), 1, + aux_sym_attribute_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105323] = 4, - ACTIONS(5634), 1, + [105988] = 4, + ACTIONS(4031), 1, anon_sym_COMMA, - ACTIONS(5909), 1, + ACTIONS(4033), 1, anon_sym_RPAREN, - STATE(2625), 1, - aux_sym_parameter_list_repeat1, + STATE(2572), 1, + aux_sym_macro_invocation_parameter_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105337] = 4, - ACTIONS(5176), 1, + [106002] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5911), 1, + ACTIONS(5996), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105351] = 4, - ACTIONS(5176), 1, + [106016] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5913), 1, + ACTIONS(5998), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105365] = 4, - ACTIONS(5176), 1, + [106030] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5915), 1, + ACTIONS(6000), 1, anon_sym_SEMI, - STATE(2626), 1, + STATE(2603), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105379] = 4, - ACTIONS(5583), 1, + [106044] = 5, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2960), 1, + anon_sym_LBRACE, + ACTIONS(5450), 1, + sym_identifier, + STATE(1074), 1, + sym_field_declaration_list, + [106060] = 5, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + ACTIONS(6002), 1, + sym_identifier, + STATE(1689), 1, + sym_enumerator_list, + [106076] = 4, + ACTIONS(5639), 1, anon_sym_COLON, - ACTIONS(5917), 1, + ACTIONS(6004), 1, anon_sym_RPAREN, - STATE(3098), 1, + STATE(3283), 1, sym_gnu_asm_goto_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105393] = 4, - ACTIONS(5625), 1, + [106090] = 4, + ACTIONS(5649), 1, anon_sym_COLON, - ACTIONS(5919), 1, + ACTIONS(6006), 1, anon_sym_RPAREN, - STATE(2660), 1, + STATE(2691), 1, sym_gnu_asm_clobber_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105407] = 4, - ACTIONS(5176), 1, + [106104] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5921), 1, + ACTIONS(6008), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105421] = 4, - ACTIONS(5923), 1, - anon_sym_COMMA, - ACTIONS(5926), 1, + [106118] = 4, + ACTIONS(5805), 1, + anon_sym_COLON, + ACTIONS(6010), 1, anon_sym_RPAREN, - STATE(2650), 1, - aux_sym__old_style_parameter_list_repeat1, + STATE(2507), 1, + sym_gnu_asm_input_operand_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105435] = 4, - ACTIONS(5565), 1, + [106132] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5928), 1, - anon_sym_RBRACK_RBRACK, - STATE(2512), 1, - aux_sym_attribute_declaration_repeat1, + ACTIONS(6012), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105449] = 4, - ACTIONS(5543), 1, + [106146] = 4, + ACTIONS(4031), 1, anon_sym_COMMA, - ACTIONS(5930), 1, + ACTIONS(6014), 1, anon_sym_RPAREN, - STATE(2642), 1, - aux_sym_attribute_specifier_repeat1, + STATE(2572), 1, + aux_sym_macro_invocation_parameter_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105463] = 4, - ACTIONS(5325), 1, + [106160] = 5, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3113), 1, + anon_sym_LBRACE, + ACTIONS(6016), 1, + sym_identifier, + STATE(1104), 1, + sym_field_declaration_list, + [106176] = 4, + ACTIONS(5396), 1, aux_sym_preproc_arg_token1, - ACTIONS(5932), 1, + ACTIONS(6018), 1, aux_sym_preproc_include_token2, - STATE(3209), 1, + STATE(3223), 1, sym_preproc_arg, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [105477] = 4, - ACTIONS(5176), 1, + [106190] = 4, + ACTIONS(5639), 1, + anon_sym_COLON, + ACTIONS(6020), 1, + anon_sym_RPAREN, + STATE(3268), 1, + sym_gnu_asm_goto_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [106204] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5934), 1, + ACTIONS(6022), 1, anon_sym_SEMI, - STATE(2644), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105491] = 2, + [106218] = 4, + ACTIONS(5649), 1, + anon_sym_COLON, + ACTIONS(6024), 1, + anon_sym_RPAREN, + STATE(2685), 1, + sym_gnu_asm_clobber_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5936), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [105501] = 4, - ACTIONS(4158), 1, - anon_sym_RBRACE, - ACTIONS(5938), 1, - anon_sym_COMMA, - STATE(2656), 1, - aux_sym_initializer_list_repeat1, + [106232] = 4, + ACTIONS(5639), 1, + anon_sym_COLON, + ACTIONS(6026), 1, + anon_sym_RPAREN, + STATE(3274), 1, + sym_gnu_asm_goto_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105515] = 4, - ACTIONS(5565), 1, - anon_sym_COMMA, - ACTIONS(5941), 1, - anon_sym_RBRACK_RBRACK, - STATE(2651), 1, - aux_sym_attribute_declaration_repeat1, + [106246] = 4, + ACTIONS(5649), 1, + anon_sym_COLON, + ACTIONS(6028), 1, + anon_sym_RPAREN, + STATE(2503), 1, + sym_gnu_asm_clobber_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105529] = 4, - ACTIONS(5325), 1, - aux_sym_preproc_arg_token1, - ACTIONS(5943), 1, - aux_sym_preproc_include_token2, - STATE(3078), 1, - sym_preproc_arg, - ACTIONS(3), 2, - sym__linux_kernel_annotations, - sym_comment, - [105543] = 4, - ACTIONS(5176), 1, + [106260] = 4, + ACTIONS(4037), 1, anon_sym_COMMA, - ACTIONS(5945), 1, - anon_sym_SEMI, - STATE(2530), 1, - aux_sym_declaration_repeat1, + ACTIONS(6030), 1, + anon_sym_RPAREN, + STATE(2584), 1, + aux_sym_argument_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105557] = 4, - ACTIONS(5583), 1, + [106274] = 4, + ACTIONS(5639), 1, anon_sym_COLON, - ACTIONS(5947), 1, + ACTIONS(6032), 1, anon_sym_RPAREN, - STATE(3103), 1, + STATE(3302), 1, sym_gnu_asm_goto_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105571] = 4, - ACTIONS(5176), 1, - anon_sym_COMMA, - ACTIONS(5949), 1, - anon_sym_SEMI, - STATE(2530), 1, - aux_sym_declaration_repeat1, + [106288] = 4, + ACTIONS(5805), 1, + anon_sym_COLON, + ACTIONS(6034), 1, + anon_sym_RPAREN, + STATE(2610), 1, + sym_gnu_asm_input_operand_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105585] = 4, - ACTIONS(5176), 1, + [106302] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5951), 1, + ACTIONS(6036), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105599] = 4, - ACTIONS(5176), 1, + [106316] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5953), 1, + ACTIONS(6038), 1, anon_sym_SEMI, - STATE(2659), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105613] = 4, - ACTIONS(5176), 1, + [106330] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5955), 1, + ACTIONS(6040), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2686), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105627] = 4, - ACTIONS(4008), 1, + [106344] = 4, + ACTIONS(4027), 1, anon_sym_COMMA, - ACTIONS(5957), 1, + ACTIONS(6042), 1, anon_sym_RPAREN, - STATE(2723), 1, + STATE(2607), 1, aux_sym_generic_expression_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105641] = 4, - ACTIONS(5634), 1, + [106358] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5959), 1, - anon_sym_RPAREN, - STATE(2568), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(6044), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105655] = 4, - ACTIONS(5176), 1, - anon_sym_COMMA, - ACTIONS(5961), 1, - anon_sym_SEMI, - STATE(2530), 1, - aux_sym_declaration_repeat1, + [106372] = 4, + ACTIONS(5805), 1, + anon_sym_COLON, + ACTIONS(6046), 1, + anon_sym_RPAREN, + STATE(2687), 1, + sym_gnu_asm_input_operand_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105669] = 4, - ACTIONS(5325), 1, + [106386] = 4, + ACTIONS(5396), 1, aux_sym_preproc_arg_token1, - ACTIONS(5963), 1, + ACTIONS(6048), 1, aux_sym_preproc_include_token2, - STATE(3177), 1, + STATE(3328), 1, sym_preproc_arg, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [105683] = 4, - ACTIONS(5176), 1, + [106400] = 4, + ACTIONS(5631), 1, anon_sym_COMMA, - ACTIONS(5965), 1, - anon_sym_SEMI, - STATE(2530), 1, - aux_sym_declaration_repeat1, + ACTIONS(6050), 1, + anon_sym_RPAREN, + STATE(2609), 1, + aux_sym_attribute_specifier_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105697] = 5, - ACTIONS(3), 1, + [106414] = 4, + ACTIONS(5649), 1, + anon_sym_COLON, + ACTIONS(6052), 1, + anon_sym_RPAREN, + STATE(2688), 1, + sym_gnu_asm_clobber_list, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(4060), 1, - anon_sym_LBRACE, - ACTIONS(5967), 1, - sym_identifier, - STATE(1684), 1, - sym_field_declaration_list, - [105713] = 5, + [106428] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3614), 1, + ACTIONS(3630), 1, anon_sym_LBRACE, - ACTIONS(5969), 1, + ACTIONS(6054), 1, sym_identifier, - STATE(1329), 1, + STATE(1339), 1, sym_enumerator_list, - [105729] = 5, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3996), 1, - anon_sym_LBRACE, - ACTIONS(5353), 1, - sym_identifier, - STATE(1649), 1, - sym_field_declaration_list, - [105745] = 4, - ACTIONS(5176), 1, - anon_sym_COMMA, - ACTIONS(5971), 1, - anon_sym_SEMI, - STATE(2661), 1, - aux_sym_declaration_repeat1, + [106444] = 3, + ACTIONS(6056), 1, + anon_sym_EQ, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105759] = 4, - ACTIONS(5176), 1, + ACTIONS(5163), 2, anon_sym_COMMA, - ACTIONS(5973), 1, - anon_sym_SEMI, - STATE(2530), 1, - aux_sym_declaration_repeat1, + anon_sym_RBRACE, + [106456] = 4, + ACTIONS(5649), 1, + anon_sym_COLON, + ACTIONS(6058), 1, + anon_sym_RPAREN, + STATE(2615), 1, + sym_gnu_asm_clobber_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105773] = 4, - ACTIONS(5176), 1, + [106470] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5975), 1, + ACTIONS(6060), 1, anon_sym_SEMI, - STATE(2664), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105787] = 4, - ACTIONS(5543), 1, + [106484] = 4, + ACTIONS(5631), 1, anon_sym_COMMA, - ACTIONS(5977), 1, + ACTIONS(6062), 1, anon_sym_RPAREN, - STATE(2539), 1, + STATE(2668), 1, aux_sym_attribute_specifier_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105801] = 4, - ACTIONS(5634), 1, + [106498] = 4, + ACTIONS(4468), 1, anon_sym_COMMA, - ACTIONS(5979), 1, + ACTIONS(6064), 1, anon_sym_RPAREN, - STATE(2666), 1, - aux_sym_parameter_list_repeat1, + STATE(2548), 1, + aux_sym_preproc_argument_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105815] = 4, - ACTIONS(5565), 1, + [106512] = 4, + ACTIONS(4037), 1, anon_sym_COMMA, - ACTIONS(5981), 1, - anon_sym_RBRACK_RBRACK, - STATE(2617), 1, - aux_sym_attribute_declaration_repeat1, + ACTIONS(4055), 1, + anon_sym_RPAREN, + STATE(2584), 1, + aux_sym_argument_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105829] = 4, - ACTIONS(5176), 1, + [106526] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5983), 1, + ACTIONS(6066), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105843] = 4, - ACTIONS(5176), 1, + [106540] = 4, + ACTIONS(5631), 1, anon_sym_COMMA, - ACTIONS(5985), 1, - anon_sym_SEMI, - STATE(2530), 1, - aux_sym_declaration_repeat1, + ACTIONS(6068), 1, + anon_sym_RPAREN, + STATE(2609), 1, + aux_sym_attribute_specifier_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105857] = 4, - ACTIONS(5176), 1, + [106554] = 4, + ACTIONS(5631), 1, anon_sym_COMMA, - ACTIONS(5987), 1, + ACTIONS(6070), 1, + anon_sym_RPAREN, + STATE(2609), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [106568] = 4, + ACTIONS(5253), 1, + anon_sym_COMMA, + ACTIONS(6072), 1, anon_sym_SEMI, - STATE(2667), 1, + STATE(2741), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105871] = 4, - ACTIONS(5565), 1, + [106582] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5989), 1, - anon_sym_RBRACK_RBRACK, - STATE(2512), 1, - aux_sym_attribute_declaration_repeat1, + ACTIONS(6074), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105885] = 4, - ACTIONS(5543), 1, + [106596] = 4, + ACTIONS(5631), 1, anon_sym_COMMA, - ACTIONS(5991), 1, + ACTIONS(6076), 1, anon_sym_RPAREN, - STATE(2676), 1, + STATE(2711), 1, aux_sym_attribute_specifier_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105899] = 4, - ACTIONS(5557), 1, + [106610] = 4, + ACTIONS(5676), 1, anon_sym_LPAREN2, - ACTIONS(5993), 1, + ACTIONS(6078), 1, aux_sym_preproc_include_token2, - STATE(3319), 1, + STATE(3483), 1, sym_preproc_argument_list, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [105913] = 4, - ACTIONS(5325), 1, - aux_sym_preproc_arg_token1, - ACTIONS(5995), 1, - aux_sym_preproc_include_token2, - STATE(3137), 1, - sym_preproc_arg, - ACTIONS(3), 2, + [106624] = 4, + ACTIONS(5631), 1, + anon_sym_COMMA, + ACTIONS(6080), 1, + anon_sym_RPAREN, + STATE(2609), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105927] = 4, - ACTIONS(5557), 1, - anon_sym_LPAREN2, - ACTIONS(5997), 1, - aux_sym_preproc_include_token2, - STATE(3319), 1, - sym_preproc_argument_list, - ACTIONS(3), 2, + [106638] = 4, + ACTIONS(5627), 1, + anon_sym_COMMA, + ACTIONS(6082), 1, + anon_sym_RBRACK_RBRACK, + STATE(2670), 1, + aux_sym_attribute_declaration_repeat1, + ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105941] = 4, - ACTIONS(5176), 1, + [106652] = 4, + ACTIONS(5631), 1, + anon_sym_COMMA, + ACTIONS(6084), 1, + anon_sym_RPAREN, + STATE(2700), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [106666] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(5999), 1, + ACTIONS(6086), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105955] = 2, + [106680] = 4, + ACTIONS(5253), 1, + anon_sym_COMMA, + ACTIONS(6088), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(6001), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [105965] = 4, - ACTIONS(5176), 1, + [106694] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(6003), 1, + ACTIONS(6090), 1, anon_sym_SEMI, - STATE(2679), 1, + STATE(2693), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105979] = 4, - ACTIONS(5583), 1, - anon_sym_COLON, - ACTIONS(6005), 1, - anon_sym_RPAREN, - STATE(3281), 1, - sym_gnu_asm_goto_list, + [106708] = 4, + ACTIONS(5253), 1, + anon_sym_COMMA, + ACTIONS(6092), 1, + anon_sym_SEMI, + STATE(2740), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [105993] = 4, - ACTIONS(5325), 1, - aux_sym_preproc_arg_token1, - ACTIONS(6007), 1, - aux_sym_preproc_include_token2, - STATE(3146), 1, - sym_preproc_arg, - ACTIONS(3), 2, + [106722] = 4, + ACTIONS(5631), 1, + anon_sym_COMMA, + ACTIONS(6094), 1, + anon_sym_RPAREN, + STATE(2609), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106007] = 4, - ACTIONS(5565), 1, + [106736] = 4, + ACTIONS(5627), 1, anon_sym_COMMA, - ACTIONS(6009), 1, + ACTIONS(6096), 1, anon_sym_RBRACK_RBRACK, - STATE(2682), 1, + STATE(2757), 1, aux_sym_attribute_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106021] = 4, - ACTIONS(5565), 1, + [106750] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(6011), 1, - anon_sym_RBRACK_RBRACK, - STATE(2729), 1, - aux_sym_attribute_declaration_repeat1, + ACTIONS(6098), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106035] = 5, - ACTIONS(3), 1, + [106764] = 4, + ACTIONS(5253), 1, + anon_sym_COMMA, + ACTIONS(6100), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(4172), 1, - anon_sym_LBRACE, - ACTIONS(6013), 1, - sym_identifier, - STATE(1665), 1, - sym_enumerator_list, - [106051] = 4, - ACTIONS(5325), 1, - aux_sym_preproc_arg_token1, - ACTIONS(6015), 1, - aux_sym_preproc_include_token2, - STATE(3200), 1, - sym_preproc_arg, - ACTIONS(3), 2, + [106778] = 4, + ACTIONS(5253), 1, + anon_sym_COMMA, + ACTIONS(6102), 1, + anon_sym_SEMI, + STATE(2697), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106065] = 4, - ACTIONS(5583), 1, - anon_sym_COLON, - ACTIONS(6017), 1, + [106792] = 4, + ACTIONS(5631), 1, + anon_sym_COMMA, + ACTIONS(6104), 1, anon_sym_RPAREN, - STATE(3231), 1, - sym_gnu_asm_goto_list, + STATE(2723), 1, + aux_sym_attribute_specifier_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106079] = 4, - ACTIONS(5176), 1, + [106806] = 4, + ACTIONS(4031), 1, anon_sym_COMMA, - ACTIONS(6019), 1, - anon_sym_SEMI, - STATE(2530), 1, - aux_sym_declaration_repeat1, + ACTIONS(4089), 1, + anon_sym_RPAREN, + STATE(2572), 1, + aux_sym_macro_invocation_parameter_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106093] = 4, - ACTIONS(5625), 1, + [106820] = 4, + ACTIONS(5616), 1, anon_sym_COLON, - ACTIONS(6021), 1, + ACTIONS(6106), 1, anon_sym_RPAREN, - STATE(2696), 1, - sym_gnu_asm_clobber_list, + STATE(2698), 1, + sym_gnu_asm_output_operand_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106107] = 4, - ACTIONS(5583), 1, - anon_sym_COLON, - ACTIONS(6023), 1, - anon_sym_RPAREN, - STATE(3245), 1, - sym_gnu_asm_goto_list, + [106834] = 4, + ACTIONS(5253), 1, + anon_sym_COMMA, + ACTIONS(6108), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106121] = 5, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4172), 1, - anon_sym_LBRACE, - ACTIONS(6025), 1, - sym_identifier, - STATE(1665), 1, - sym_enumerator_list, - [106137] = 5, + [106848] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3588), 1, + ACTIONS(3615), 1, anon_sym_LBRACE, - ACTIONS(5363), 1, + ACTIONS(5418), 1, sym_identifier, - STATE(1309), 1, + STATE(1304), 1, sym_field_declaration_list, - [106153] = 5, + [106864] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3672), 1, + ACTIONS(3704), 1, anon_sym_LBRACE, - ACTIONS(6027), 1, + ACTIONS(6110), 1, sym_identifier, - STATE(1333), 1, + STATE(1348), 1, sym_field_declaration_list, - [106169] = 4, - ACTIONS(4000), 1, - anon_sym_COMMA, - ACTIONS(6029), 1, + [106880] = 4, + ACTIONS(5805), 1, + anon_sym_COLON, + ACTIONS(6112), 1, anon_sym_RPAREN, - STATE(2555), 1, - aux_sym_argument_list_repeat1, + STATE(2701), 1, + sym_gnu_asm_input_operand_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106183] = 2, - ACTIONS(5), 2, + [106894] = 4, + ACTIONS(5396), 1, + aux_sym_preproc_arg_token1, + ACTIONS(6114), 1, + aux_sym_preproc_include_token2, + STATE(3026), 1, + sym_preproc_arg, + ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(6031), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [106193] = 4, - ACTIONS(5176), 1, + [106908] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(6033), 1, + ACTIONS(6116), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106207] = 4, - ACTIONS(5176), 1, + [106922] = 4, + ACTIONS(5631), 1, anon_sym_COMMA, - ACTIONS(6035), 1, - anon_sym_SEMI, - STATE(2530), 1, - aux_sym_declaration_repeat1, + ACTIONS(6118), 1, + anon_sym_RPAREN, + STATE(2609), 1, + aux_sym_attribute_specifier_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106221] = 4, - ACTIONS(5176), 1, + [106936] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(6120), 1, + aux_sym_preproc_include_token2, + STATE(2738), 1, + aux_sym_preproc_arg_repeat1, + ACTIONS(6122), 2, + aux_sym_preproc_arg_token2, + sym_comment, + [106950] = 4, + ACTIONS(4067), 1, anon_sym_COMMA, - ACTIONS(6037), 1, - anon_sym_SEMI, - STATE(2697), 1, - aux_sym_declaration_repeat1, + ACTIONS(4069), 1, + anon_sym_RBRACE, + STATE(2654), 1, + aux_sym_initializer_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106235] = 4, - ACTIONS(5176), 1, + [106964] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(6039), 1, + ACTIONS(6125), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106249] = 4, - ACTIONS(5541), 1, - anon_sym_COLON, - ACTIONS(6041), 1, - anon_sym_RPAREN, - STATE(2698), 1, - sym_gnu_asm_input_operand_list, + [106978] = 4, + ACTIONS(5253), 1, + anon_sym_COMMA, + ACTIONS(6127), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106263] = 4, - ACTIONS(5625), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + [106992] = 4, + ACTIONS(5848), 1, + anon_sym_COMMA, + ACTIONS(6129), 1, anon_sym_RPAREN, - STATE(2699), 1, - sym_gnu_asm_clobber_list, + STATE(2515), 1, + aux_sym_parameter_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106277] = 2, + [107006] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(6045), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [106287] = 4, - ACTIONS(6047), 1, + ACTIONS(3787), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + [107016] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(6049), 1, - anon_sym_RPAREN, - STATE(2742), 1, - aux_sym_gnu_asm_goto_list_repeat1, + ACTIONS(6131), 1, + anon_sym_SEMI, + STATE(2736), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106301] = 4, - ACTIONS(1214), 1, + [107030] = 4, + ACTIONS(1242), 1, anon_sym_while, - ACTIONS(6051), 1, + ACTIONS(6133), 1, anon_sym_else, - STATE(2795), 1, + STATE(2774), 1, sym_else_clause, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106315] = 4, - ACTIONS(5634), 1, - anon_sym_COMMA, - ACTIONS(6053), 1, - anon_sym_RPAREN, - STATE(2568), 1, - aux_sym_parameter_list_repeat1, + [107044] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106329] = 4, - ACTIONS(4387), 1, - anon_sym_COMMA, - ACTIONS(6055), 1, + ACTIONS(4009), 3, anon_sym_RPAREN, - STATE(2565), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - [106343] = 4, - ACTIONS(5176), 1, + anon_sym_SEMI, + anon_sym_COLON, + [107054] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(6057), 1, + ACTIONS(6135), 1, anon_sym_SEMI, - STATE(2736), 1, + STATE(2769), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106357] = 4, - ACTIONS(4000), 1, + [107068] = 4, + ACTIONS(4468), 1, anon_sym_COMMA, - ACTIONS(4002), 1, + ACTIONS(6137), 1, anon_sym_RPAREN, - STATE(2555), 1, - aux_sym_argument_list_repeat1, + STATE(2548), 1, + aux_sym_preproc_argument_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106371] = 2, + [107082] = 4, + ACTIONS(5253), 1, + anon_sym_COMMA, + ACTIONS(6139), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(6059), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [106381] = 4, - ACTIONS(5176), 1, + [107096] = 4, + ACTIONS(4037), 1, anon_sym_COMMA, - ACTIONS(6061), 1, - anon_sym_SEMI, - STATE(2530), 1, - aux_sym_declaration_repeat1, + ACTIONS(4039), 1, + anon_sym_RPAREN, + STATE(2708), 1, + aux_sym_argument_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106395] = 4, - ACTIONS(5176), 1, + [107110] = 4, + ACTIONS(4037), 1, anon_sym_COMMA, - ACTIONS(6063), 1, - anon_sym_SEMI, - STATE(2530), 1, - aux_sym_declaration_repeat1, + ACTIONS(4073), 1, + anon_sym_RPAREN, + STATE(2584), 1, + aux_sym_argument_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106409] = 4, - ACTIONS(5325), 1, + [107124] = 4, + ACTIONS(5396), 1, aux_sym_preproc_arg_token1, - ACTIONS(6065), 1, + ACTIONS(6141), 1, aux_sym_preproc_include_token2, - STATE(3402), 1, + STATE(3428), 1, sym_preproc_arg, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [106423] = 4, - ACTIONS(5176), 1, + [107138] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(6067), 1, + ACTIONS(6143), 1, anon_sym_SEMI, - STATE(2705), 1, + STATE(2663), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106437] = 4, - ACTIONS(6069), 1, - anon_sym_COMMA, - ACTIONS(6072), 1, + [107152] = 4, + ACTIONS(5805), 1, + anon_sym_COLON, + ACTIONS(6145), 1, anon_sym_RPAREN, - STATE(2723), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - [106451] = 4, - ACTIONS(5176), 1, - anon_sym_COMMA, - ACTIONS(6074), 1, - anon_sym_SEMI, - STATE(2530), 1, - aux_sym_declaration_repeat1, + STATE(2704), 1, + sym_gnu_asm_input_operand_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106465] = 4, - ACTIONS(5176), 1, + [107166] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(6076), 1, + ACTIONS(6147), 1, anon_sym_SEMI, - STATE(2708), 1, + STATE(2672), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106479] = 4, - ACTIONS(5603), 1, - anon_sym_COLON, - ACTIONS(6078), 1, - anon_sym_RPAREN, - STATE(2709), 1, - sym_gnu_asm_output_operand_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - [106493] = 4, - ACTIONS(5541), 1, - anon_sym_COLON, - ACTIONS(6080), 1, - anon_sym_RPAREN, - STATE(2710), 1, - sym_gnu_asm_input_operand_list, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - [106507] = 4, - ACTIONS(5543), 1, + [107180] = 4, + ACTIONS(5631), 1, anon_sym_COMMA, - ACTIONS(6082), 1, + ACTIONS(6149), 1, anon_sym_RPAREN, - STATE(2471), 1, + STATE(2737), 1, aux_sym_attribute_specifier_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106521] = 4, - ACTIONS(5565), 1, + [107194] = 4, + ACTIONS(5627), 1, anon_sym_COMMA, - ACTIONS(6084), 1, + ACTIONS(6151), 1, anon_sym_RBRACK_RBRACK, - STATE(2512), 1, + STATE(2670), 1, aux_sym_attribute_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106535] = 2, + [107208] = 4, + ACTIONS(5253), 1, + anon_sym_COMMA, + ACTIONS(6153), 1, + anon_sym_SEMI, + STATE(2681), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(3717), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - [106545] = 5, + [107222] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(6155), 1, + aux_sym_preproc_include_token2, + STATE(2738), 1, + aux_sym_preproc_arg_repeat1, + ACTIONS(6157), 2, + aux_sym_preproc_arg_token2, + sym_comment, + [107236] = 5, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3588), 1, + ACTIONS(3615), 1, anon_sym_LBRACE, - ACTIONS(6086), 1, + ACTIONS(6159), 1, sym_identifier, - STATE(1300), 1, + STATE(1329), 1, sym_field_declaration_list, - [106561] = 4, - ACTIONS(5603), 1, + [107252] = 4, + ACTIONS(5616), 1, anon_sym_COLON, - ACTIONS(6088), 1, + ACTIONS(6161), 1, anon_sym_RPAREN, - STATE(2727), 1, + STATE(2734), 1, sym_gnu_asm_output_operand_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106575] = 4, - ACTIONS(5176), 1, + [107266] = 4, + ACTIONS(5848), 1, anon_sym_COMMA, - ACTIONS(6090), 1, - anon_sym_SEMI, - STATE(2719), 1, - aux_sym_declaration_repeat1, + ACTIONS(6163), 1, + anon_sym_RPAREN, + STATE(2652), 1, + aux_sym_parameter_list_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106589] = 4, - ACTIONS(5176), 1, + [107280] = 4, + ACTIONS(5616), 1, + anon_sym_COLON, + ACTIONS(6165), 1, + anon_sym_RPAREN, + STATE(2692), 1, + sym_gnu_asm_output_operand_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107294] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(6092), 1, + ACTIONS(6167), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2499), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106603] = 4, - ACTIONS(4008), 1, - anon_sym_COMMA, - ACTIONS(6094), 1, - anon_sym_RPAREN, - STATE(2723), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(5), 2, + [107308] = 4, + ACTIONS(5396), 1, + aux_sym_preproc_arg_token1, + ACTIONS(6169), 1, + aux_sym_preproc_include_token2, + STATE(3086), 1, + sym_preproc_arg, + ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [106617] = 4, - ACTIONS(5176), 1, + [107322] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(6096), 1, + ACTIONS(6171), 1, anon_sym_SEMI, - STATE(2530), 1, + STATE(2719), 1, aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106631] = 2, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(6098), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [106641] = 4, - ACTIONS(4000), 1, + [107336] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(4004), 1, - anon_sym_RPAREN, - STATE(2717), 1, - aux_sym_argument_list_repeat1, + ACTIONS(6173), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106655] = 2, - ACTIONS(5), 2, + [107350] = 5, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(6100), 3, - anon_sym_COMMA, + ACTIONS(6175), 1, + sym_identifier, + ACTIONS(6177), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6179), 1, anon_sym_RPAREN, - anon_sym_COLON, - [106665] = 4, - ACTIONS(6102), 1, + [107366] = 4, + ACTIONS(5253), 1, anon_sym_COMMA, - ACTIONS(6105), 1, - anon_sym_RPAREN, - STATE(2740), 1, - aux_sym_gnu_asm_goto_list_repeat1, + ACTIONS(6181), 1, + anon_sym_SEMI, + STATE(2499), 1, + aux_sym_declaration_repeat1, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106679] = 4, - ACTIONS(5634), 1, - anon_sym_COMMA, - ACTIONS(6107), 1, - anon_sym_RPAREN, - STATE(2714), 1, - aux_sym_parameter_list_repeat1, + [107380] = 3, + ACTIONS(6183), 1, + anon_sym_LPAREN2, + STATE(451), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106693] = 4, - ACTIONS(6047), 1, - anon_sym_COMMA, - ACTIONS(6109), 1, + [107391] = 3, + ACTIONS(6185), 1, anon_sym_RPAREN, - STATE(2740), 1, - aux_sym_gnu_asm_goto_list_repeat1, + ACTIONS(6187), 1, + sym_number_literal, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106707] = 2, + [107402] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(6111), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [106717] = 2, + ACTIONS(1348), 2, + anon_sym_else, + anon_sym_while, + [107411] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(6113), 3, + ACTIONS(6189), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - [106727] = 2, + [107420] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(1328), 2, + ACTIONS(1372), 2, anon_sym_else, anon_sym_while, - [106736] = 3, - ACTIONS(6115), 1, - anon_sym_COMMA, - ACTIONS(6117), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - [106747] = 2, + [107429] = 3, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + STATE(3038), 1, + sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(1300), 2, - anon_sym_else, - anon_sym_while, - [106756] = 4, + [107440] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(3086), 1, + ACTIONS(6191), 1, sym_identifier, - ACTIONS(3088), 1, - anon_sym_LBRACE, - [106769] = 4, - ACTIONS(3), 1, + STATE(2643), 1, + sym_attribute, + [107453] = 3, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + STATE(3035), 1, + sym_argument_list, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(6119), 1, - sym_identifier, - STATE(2479), 1, - sym_attribute, - [106782] = 3, - ACTIONS(4837), 1, - anon_sym_RBRACE, - ACTIONS(6115), 1, - anon_sym_COMMA, + [107464] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106793] = 3, - ACTIONS(6121), 1, - anon_sym_LPAREN2, - STATE(441), 1, - sym_parenthesized_expression, + ACTIONS(1468), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [107473] = 3, + ACTIONS(4910), 1, + anon_sym_RBRACE, + ACTIONS(6193), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106804] = 2, + [107484] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(1272), 2, + ACTIONS(1332), 2, anon_sym_else, anon_sym_while, - [106813] = 2, + [107493] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(1260), 2, + ACTIONS(1328), 2, anon_sym_else, anon_sym_while, - [106822] = 2, + [107502] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(1352), 2, + ACTIONS(1324), 2, anon_sym_else, anon_sym_while, - [106831] = 3, - ACTIONS(6123), 1, - anon_sym_LPAREN2, - STATE(2763), 1, - sym_parenthesized_expression, + [107511] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106842] = 2, + ACTIONS(1312), 2, + anon_sym_else, + anon_sym_while, + [107520] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(1220), 2, + ACTIONS(1304), 2, anon_sym_else, anon_sym_while, - [106851] = 3, - ACTIONS(6121), 1, - anon_sym_LPAREN2, - STATE(418), 1, - sym_parenthesized_expression, + [107529] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106862] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6125), 1, - sym_identifier, - ACTIONS(6127), 1, + ACTIONS(1444), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [107538] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - [106875] = 2, + STATE(3290), 1, + sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(6129), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [106884] = 3, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - STATE(3320), 1, - sym_argument_list, + [107549] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106895] = 3, - ACTIONS(6131), 1, - anon_sym_RPAREN, - ACTIONS(6133), 1, - sym_number_literal, + ACTIONS(1280), 2, + anon_sym_else, + anon_sym_while, + [107558] = 3, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + STATE(3040), 1, + sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106906] = 3, - ACTIONS(1570), 1, - anon_sym_LBRACE, - STATE(2414), 1, - sym_compound_statement, + [107569] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106917] = 3, - ACTIONS(49), 1, - anon_sym_LBRACE, - STATE(280), 1, - sym_compound_statement, + ACTIONS(1276), 2, + anon_sym_else, + anon_sym_while, + [107578] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106928] = 3, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - STATE(3243), 1, - sym_argument_list, + ACTIONS(1272), 2, + anon_sym_else, + anon_sym_while, + [107587] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106939] = 2, + ACTIONS(1264), 2, + anon_sym_else, + anon_sym_while, + [107596] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(1280), 2, + ACTIONS(1356), 2, anon_sym_else, anon_sym_while, - [106948] = 2, + [107605] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(6135), 2, + ACTIONS(6195), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [106957] = 4, + [107614] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(6119), 1, + ACTIONS(6191), 1, sym_identifier, - STATE(2834), 1, + STATE(2870), 1, sym_attribute, - [106970] = 3, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - STATE(3012), 1, - sym_argument_list, + [107627] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106981] = 3, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - STATE(3008), 1, - sym_argument_list, + ACTIONS(1316), 2, + anon_sym_else, + anon_sym_while, + [107636] = 3, + ACTIONS(4922), 1, + anon_sym_RBRACE, + ACTIONS(6193), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107647] = 3, + ACTIONS(49), 1, + anon_sym_LBRACE, + STATE(296), 1, + sym_compound_statement, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107658] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(1360), 2, + anon_sym_else, + anon_sym_while, + [107667] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [106992] = 3, + ACTIONS(1352), 2, + anon_sym_else, + anon_sym_while, + [107676] = 3, ACTIONS(139), 1, anon_sym_LBRACE, - STATE(124), 1, + STATE(120), 1, sym_compound_statement, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107003] = 3, - ACTIONS(6115), 1, + [107687] = 3, + ACTIONS(6193), 1, anon_sym_COMMA, - ACTIONS(6137), 1, + ACTIONS(6197), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107014] = 3, - ACTIONS(3622), 1, + [107698] = 3, + ACTIONS(6199), 1, anon_sym_LPAREN2, - STATE(3003), 1, - sym_argument_list, + STATE(2895), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107025] = 3, - ACTIONS(3622), 1, + [107709] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(2981), 1, + STATE(3068), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107036] = 3, - ACTIONS(6123), 1, - anon_sym_LPAREN2, - STATE(2954), 1, - sym_parenthesized_expression, + [107720] = 3, + ACTIONS(393), 1, + anon_sym_LBRACE, + STATE(194), 1, + sym_compound_statement, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107047] = 3, - ACTIONS(6123), 1, + [107731] = 3, + ACTIONS(6199), 1, anon_sym_LPAREN2, - STATE(2960), 1, + STATE(3199), 1, sym_parenthesized_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107058] = 3, - ACTIONS(6121), 1, - anon_sym_LPAREN2, - STATE(421), 1, - sym_parenthesized_expression, + [107742] = 3, + ACTIONS(139), 1, + anon_sym_LBRACE, + STATE(101), 1, + sym_compound_statement, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107069] = 2, + [107753] = 3, + ACTIONS(6193), 1, + anon_sym_COMMA, + ACTIONS(6201), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(1284), 2, - anon_sym_else, - anon_sym_while, - [107078] = 2, + [107764] = 3, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + STATE(3072), 1, + sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(1288), 2, - anon_sym_else, - anon_sym_while, - [107087] = 2, + [107775] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(1292), 2, + ACTIONS(1344), 2, anon_sym_else, anon_sym_while, - [107096] = 3, - ACTIONS(1570), 1, + [107784] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3092), 1, + sym_identifier, + ACTIONS(3094), 1, anon_sym_LBRACE, - STATE(2411), 1, - sym_compound_statement, + [107797] = 3, + ACTIONS(6203), 1, + anon_sym_RPAREN, + ACTIONS(6205), 1, + sym_number_literal, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107107] = 3, - ACTIONS(3622), 1, + [107808] = 3, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + STATE(3037), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107819] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, STATE(3033), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107118] = 2, + [107830] = 3, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + STATE(3028), 1, + sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(1268), 2, - anon_sym_else, - anon_sym_while, - [107127] = 3, - ACTIONS(6123), 1, + [107841] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(2927), 1, - sym_parenthesized_expression, + STATE(3004), 1, + sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107138] = 2, + [107852] = 3, + ACTIONS(6199), 1, + anon_sym_LPAREN2, + STATE(2982), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(1312), 2, - anon_sym_else, - anon_sym_while, - [107147] = 4, - ACTIONS(3), 1, + [107863] = 3, + ACTIONS(6199), 1, + anon_sym_LPAREN2, + STATE(3034), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(6119), 1, - sym_identifier, - STATE(2657), 1, - sym_attribute, - [107160] = 3, - ACTIONS(4893), 1, - anon_sym_RBRACE, - ACTIONS(6115), 1, - anon_sym_COMMA, + [107874] = 3, + ACTIONS(1713), 1, + anon_sym_LBRACE, + STATE(2491), 1, + sym_compound_statement, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107171] = 3, - ACTIONS(6123), 1, + [107885] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(2902), 1, - sym_parenthesized_expression, + STATE(3071), 1, + sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107182] = 3, - ACTIONS(6123), 1, + [107896] = 3, + ACTIONS(6199), 1, anon_sym_LPAREN2, - STATE(3118), 1, + STATE(2954), 1, sym_parenthesized_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107193] = 2, - ACTIONS(5), 2, + [107907] = 4, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1324), 2, - anon_sym_else, - anon_sym_while, - [107202] = 3, - ACTIONS(1570), 1, + ACTIONS(6191), 1, + sym_identifier, + STATE(2525), 1, + sym_attribute, + [107920] = 3, + ACTIONS(1713), 1, anon_sym_LBRACE, - STATE(2437), 1, + STATE(2430), 1, sym_compound_statement, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107213] = 3, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - STATE(3160), 1, - sym_argument_list, + [107931] = 3, + ACTIONS(6207), 1, + anon_sym_RPAREN, + ACTIONS(6209), 1, + sym_number_literal, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107224] = 2, + [107942] = 3, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + STATE(3425), 1, + sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(1336), 2, - anon_sym_else, - anon_sym_while, - [107233] = 3, - ACTIONS(6123), 1, + [107953] = 3, + ACTIONS(6199), 1, anon_sym_LPAREN2, - STATE(3173), 1, + STATE(2929), 1, sym_parenthesized_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107244] = 2, + [107964] = 3, + ACTIONS(139), 1, + anon_sym_LBRACE, + STATE(106), 1, + sym_compound_statement, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(1340), 2, - anon_sym_else, - anon_sym_while, - [107253] = 2, + [107975] = 3, + ACTIONS(6199), 1, + anon_sym_LPAREN2, + STATE(3143), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(1224), 2, - anon_sym_else, - anon_sym_while, - [107262] = 2, + [107986] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(1344), 2, + ACTIONS(1292), 2, anon_sym_else, anon_sym_while, - [107271] = 3, - ACTIONS(139), 1, + [107995] = 3, + ACTIONS(1713), 1, anon_sym_LBRACE, - STATE(98), 1, + STATE(2456), 1, sym_compound_statement, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107282] = 3, - ACTIONS(6121), 1, + [108006] = 3, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + STATE(3186), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [108017] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(1288), 2, + anon_sym_else, + anon_sym_while, + [108026] = 3, + ACTIONS(6183), 1, anon_sym_LPAREN2, - STATE(458), 1, + STATE(436), 1, sym_parenthesized_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107293] = 3, - ACTIONS(6123), 1, + [108037] = 3, + ACTIONS(6199), 1, anon_sym_LPAREN2, - STATE(2854), 1, + STATE(2883), 1, sym_parenthesized_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107304] = 2, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(1316), 2, - anon_sym_else, - anon_sym_while, - [107313] = 2, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(1442), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [107322] = 3, - ACTIONS(6121), 1, + [108048] = 3, + ACTIONS(6183), 1, anon_sym_LPAREN2, - STATE(413), 1, + STATE(438), 1, sym_parenthesized_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107333] = 4, + [108059] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(6119), 1, + ACTIONS(6191), 1, sym_identifier, - STATE(2692), 1, + STATE(2669), 1, sym_attribute, - [107346] = 3, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - STATE(3230), 1, - sym_argument_list, + [108072] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107357] = 2, - ACTIONS(5), 2, + ACTIONS(6211), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [108081] = 4, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1348), 2, - anon_sym_else, - anon_sym_while, - [107366] = 3, - ACTIONS(3622), 1, + ACTIONS(6213), 1, + sym_identifier, + ACTIONS(6215), 1, anon_sym_LPAREN2, - STATE(3237), 1, + [108094] = 3, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + STATE(3466), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107377] = 3, - ACTIONS(3622), 1, + [108105] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3240), 1, + STATE(3267), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107388] = 3, - ACTIONS(139), 1, - anon_sym_LBRACE, - STATE(114), 1, - sym_compound_statement, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - [107399] = 3, - ACTIONS(3622), 1, + [108116] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3241), 1, + STATE(3269), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107410] = 3, - ACTIONS(3622), 1, + [108127] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3242), 1, + STATE(3270), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107421] = 3, - ACTIONS(3622), 1, + [108138] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3246), 1, + STATE(3271), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107432] = 3, - ACTIONS(3622), 1, + [108149] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3247), 1, + STATE(3272), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107443] = 3, - ACTIONS(3622), 1, + [108160] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3248), 1, + STATE(3275), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107454] = 2, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(1470), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [107463] = 3, - ACTIONS(6121), 1, + [108171] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(456), 1, - sym_parenthesized_expression, + STATE(3276), 1, + sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107474] = 3, - ACTIONS(3622), 1, + [108182] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3249), 1, + STATE(3277), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107485] = 3, - ACTIONS(3622), 1, + [108193] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3250), 1, + STATE(3278), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107496] = 3, - ACTIONS(3622), 1, + [108204] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3251), 1, + STATE(3279), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107507] = 3, - ACTIONS(3622), 1, + [108215] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3253), 1, + STATE(3280), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107518] = 3, - ACTIONS(3622), 1, + [108226] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3254), 1, + STATE(3284), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107529] = 3, - ACTIONS(3622), 1, + [108237] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3255), 1, + STATE(3285), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107540] = 3, - ACTIONS(3622), 1, + [108248] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3256), 1, + STATE(3286), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107551] = 3, - ACTIONS(3622), 1, + [108259] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3257), 1, + STATE(3287), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107562] = 3, - ACTIONS(3622), 1, + [108270] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3272), 1, + STATE(3288), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107573] = 3, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - STATE(3275), 1, - sym_argument_list, + [108281] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107584] = 3, - ACTIONS(6123), 1, + ACTIONS(1260), 2, + anon_sym_else, + anon_sym_while, + [108290] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(2797), 1, - sym_parenthesized_expression, + STATE(3308), 1, + sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107595] = 3, - ACTIONS(6139), 1, - anon_sym_RPAREN, - ACTIONS(6141), 1, - sym_number_literal, + [108301] = 3, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + STATE(3310), 1, + sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107606] = 3, - ACTIONS(6123), 1, + [108312] = 3, + ACTIONS(6199), 1, anon_sym_LPAREN2, - STATE(3301), 1, + STATE(2826), 1, sym_parenthesized_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107617] = 3, - ACTIONS(6143), 1, - aux_sym_preproc_include_token2, - ACTIONS(6145), 1, - aux_sym_preproc_arg_token1, - ACTIONS(3), 2, + [108323] = 2, + ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107628] = 2, + ACTIONS(1268), 2, + anon_sym_else, + anon_sym_while, + [108332] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(6147), 2, + ACTIONS(6217), 2, anon_sym_COMMA, anon_sym_RPAREN, - [107637] = 3, - ACTIONS(1570), 1, - anon_sym_LBRACE, - STATE(2784), 1, - sym_compound_statement, + [108341] = 3, + ACTIONS(6199), 1, + anon_sym_LPAREN2, + STATE(3355), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107648] = 3, - ACTIONS(1570), 1, + [108352] = 3, + ACTIONS(1713), 1, anon_sym_LBRACE, - STATE(2455), 1, + STATE(2488), 1, sym_compound_statement, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107659] = 3, - ACTIONS(3622), 1, + [108363] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3445), 1, + STATE(3114), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107670] = 2, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(5647), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [107679] = 3, - ACTIONS(6121), 1, + [108374] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(422), 1, - sym_parenthesized_expression, + STATE(3349), 1, + sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107690] = 3, - ACTIONS(3622), 1, + [108385] = 3, + ACTIONS(6183), 1, anon_sym_LPAREN2, - STATE(3292), 1, - sym_argument_list, + STATE(448), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107701] = 3, - ACTIONS(6123), 1, + [108396] = 3, + ACTIONS(6199), 1, anon_sym_LPAREN2, - STATE(2808), 1, + STATE(2806), 1, sym_parenthesized_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107712] = 3, - ACTIONS(6121), 1, + [108407] = 3, + ACTIONS(6183), 1, anon_sym_LPAREN2, - STATE(445), 1, + STATE(421), 1, sym_parenthesized_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107723] = 4, + [108418] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(6119), 1, + ACTIONS(6191), 1, sym_identifier, - STATE(2693), 1, + STATE(2724), 1, sym_attribute, - [107736] = 3, - ACTIONS(6123), 1, + [108431] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(2889), 1, - sym_parenthesized_expression, + STATE(3231), 1, + sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107747] = 3, - ACTIONS(393), 1, - anon_sym_LBRACE, - STATE(195), 1, - sym_compound_statement, + [108442] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107758] = 3, - ACTIONS(6115), 1, + ACTIONS(5994), 2, anon_sym_COMMA, - ACTIONS(6149), 1, - anon_sym_RBRACE, + anon_sym_RBRACK_RBRACK, + [108451] = 3, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + STATE(3303), 1, + sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107769] = 3, - ACTIONS(3622), 1, + [108462] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3119), 1, + STATE(3299), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107780] = 3, - ACTIONS(3622), 1, + [108473] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3106), 1, + STATE(3297), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107791] = 3, - ACTIONS(3622), 1, + [108484] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3102), 1, + STATE(3296), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107802] = 3, - ACTIONS(6151), 1, + [108495] = 3, + ACTIONS(6219), 1, anon_sym_RPAREN, - ACTIONS(6153), 1, + ACTIONS(6221), 1, sym_number_literal, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107813] = 3, - ACTIONS(3622), 1, + [108506] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3101), 1, + STATE(3289), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107824] = 3, - ACTIONS(3622), 1, + [108517] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3100), 1, + STATE(3282), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107835] = 3, - ACTIONS(3622), 1, + [108528] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3099), 1, + STATE(3281), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107846] = 3, - ACTIONS(3622), 1, + [108539] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3060), 1, + STATE(3464), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107857] = 3, - ACTIONS(3622), 1, + [108550] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3053), 1, + STATE(3264), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107868] = 3, - ACTIONS(3622), 1, + [108561] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3040), 1, + STATE(3262), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107879] = 3, - ACTIONS(3622), 1, + [108572] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3037), 1, + STATE(3258), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107890] = 3, - ACTIONS(463), 1, + [108583] = 3, + ACTIONS(625), 1, anon_sym_LBRACE, - STATE(211), 1, + STATE(234), 1, sym_compound_statement, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107901] = 3, - ACTIONS(3622), 1, + [108594] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3032), 1, + STATE(3237), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107912] = 2, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - ACTIONS(6155), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [107921] = 3, - ACTIONS(6157), 1, - anon_sym_RPAREN, - ACTIONS(6159), 1, - sym_number_literal, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - [107932] = 3, - ACTIONS(3622), 1, + [108605] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3030), 1, + STATE(3234), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107943] = 3, - ACTIONS(3622), 1, + [108616] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3022), 1, + STATE(3185), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107954] = 3, - ACTIONS(3622), 1, + [108627] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3244), 1, + STATE(3224), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107965] = 4, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6161), 1, - sym_identifier, - ACTIONS(6163), 1, - anon_sym_RPAREN, - [107978] = 3, - ACTIONS(3622), 1, + [108638] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(2958), 1, + STATE(3221), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [107989] = 3, - ACTIONS(3622), 1, + [108649] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(2959), 1, + STATE(3211), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108000] = 3, - ACTIONS(3622), 1, + [108660] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(2961), 1, + STATE(3208), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108011] = 3, - ACTIONS(3622), 1, + [108671] = 3, + ACTIONS(6199), 1, anon_sym_LPAREN2, - STATE(2968), 1, - sym_argument_list, + STATE(2893), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108022] = 3, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - STATE(2969), 1, - sym_argument_list, + [108682] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6223), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_RPAREN, + [108695] = 3, + ACTIONS(49), 1, + anon_sym_LBRACE, + STATE(181), 1, + sym_compound_statement, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108033] = 3, - ACTIONS(6123), 1, + [108706] = 3, + ACTIONS(6199), 1, anon_sym_LPAREN2, - STATE(2955), 1, + STATE(3190), 1, sym_parenthesized_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108044] = 3, - ACTIONS(6123), 1, - anon_sym_LPAREN2, - STATE(2996), 1, - sym_parenthesized_expression, + [108717] = 3, + ACTIONS(393), 1, + anon_sym_LBRACE, + STATE(210), 1, + sym_compound_statement, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108055] = 2, + [108728] = 3, + ACTIONS(6183), 1, + anon_sym_LPAREN2, + STATE(424), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4134), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [108064] = 2, + [108739] = 3, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + STATE(3235), 1, + sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5361), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [108073] = 4, - ACTIONS(3), 1, + [108750] = 3, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + STATE(3145), 1, + sym_argument_list, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(6165), 1, - sym_identifier, - ACTIONS(6167), 1, + [108761] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - [108086] = 4, - ACTIONS(3), 1, + STATE(3229), 1, + sym_argument_list, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(6169), 1, - sym_identifier, - ACTIONS(6171), 1, - anon_sym_DOT_DOT_DOT, - [108099] = 3, - ACTIONS(3622), 1, + [108772] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3221), 1, + STATE(3228), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108110] = 3, - ACTIONS(1570), 1, + [108783] = 3, + ACTIONS(1713), 1, anon_sym_LBRACE, - STATE(2431), 1, + STATE(2466), 1, sym_compound_statement, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108121] = 3, - ACTIONS(3622), 1, + [108794] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3138), 1, + STATE(3132), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108132] = 3, - ACTIONS(6173), 1, - aux_sym_preproc_include_token2, - ACTIONS(6175), 1, - aux_sym_preproc_arg_token1, - ACTIONS(3), 2, + [108805] = 2, + ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108143] = 3, - ACTIONS(1570), 1, - anon_sym_LBRACE, - STATE(2782), 1, - sym_compound_statement, + ACTIONS(6227), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [108814] = 3, + ACTIONS(6183), 1, + anon_sym_LPAREN2, + STATE(460), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108154] = 3, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - STATE(3211), 1, - sym_argument_list, + [108825] = 3, + ACTIONS(6193), 1, + anon_sym_COMMA, + ACTIONS(6229), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108165] = 3, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - STATE(3210), 1, - sym_argument_list, + [108836] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108176] = 3, - ACTIONS(6121), 1, - anon_sym_LPAREN2, - STATE(417), 1, - sym_parenthesized_expression, + ACTIONS(4201), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [108845] = 3, + ACTIONS(49), 1, + anon_sym_LBRACE, + STATE(198), 1, + sym_compound_statement, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108187] = 3, - ACTIONS(6123), 1, + [108856] = 3, + ACTIONS(6199), 1, anon_sym_LPAREN2, - STATE(2831), 1, + STATE(2943), 1, sym_parenthesized_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108198] = 3, - ACTIONS(6121), 1, + [108867] = 3, + ACTIONS(6183), 1, anon_sym_LPAREN2, - STATE(416), 1, + STATE(461), 1, sym_parenthesized_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108209] = 4, + [108878] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(6119), 1, + ACTIONS(6191), 1, sym_identifier, - STATE(2499), 1, + STATE(2524), 1, sym_attribute, - [108222] = 3, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - STATE(3097), 1, - sym_argument_list, + [108891] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108233] = 2, + ACTIONS(6231), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [108900] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5703), 2, + ACTIONS(5870), 2, anon_sym_COMMA, anon_sym_RPAREN, - [108242] = 3, - ACTIONS(6177), 1, - anon_sym_RPAREN, - ACTIONS(6179), 1, - sym_number_literal, + [108909] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108253] = 3, - ACTIONS(3622), 1, + ACTIONS(4189), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [108918] = 3, + ACTIONS(6183), 1, anon_sym_LPAREN2, - STATE(3208), 1, - sym_argument_list, + STATE(450), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108264] = 2, + [108929] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(6181), 2, + ACTIONS(5426), 2, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [108273] = 3, - ACTIONS(393), 1, - anon_sym_LBRACE, - STATE(241), 1, - sym_compound_statement, + anon_sym_SEMI, + [108938] = 3, + ACTIONS(6183), 1, + anon_sym_LPAREN2, + STATE(449), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [108949] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108284] = 3, - ACTIONS(463), 1, + ACTIONS(4181), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [108958] = 3, + ACTIONS(625), 1, anon_sym_LBRACE, - STATE(233), 1, + STATE(248), 1, sym_compound_statement, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108295] = 3, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - STATE(3015), 1, - sym_argument_list, + [108969] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108306] = 3, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - STATE(3039), 1, - sym_argument_list, + ACTIONS(4125), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [108978] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108317] = 3, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - STATE(3034), 1, - sym_argument_list, - ACTIONS(5), 2, + ACTIONS(4163), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [108987] = 4, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - [108328] = 3, - ACTIONS(3622), 1, + ACTIONS(6234), 1, + sym_identifier, + ACTIONS(6236), 1, anon_sym_LPAREN2, - STATE(3018), 1, - sym_argument_list, + [109000] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108339] = 3, - ACTIONS(3622), 1, + ACTIONS(4183), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [109009] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3277), 1, + STATE(3048), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108350] = 3, - ACTIONS(3622), 1, + [109020] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3279), 1, + STATE(3056), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108361] = 3, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - STATE(3310), 1, - sym_argument_list, + [109031] = 3, + ACTIONS(4946), 1, + anon_sym_RBRACE, + ACTIONS(6193), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108372] = 3, - ACTIONS(3622), 1, + [109042] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3322), 1, + STATE(3236), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108383] = 3, - ACTIONS(393), 1, - anon_sym_LBRACE, - STATE(202), 1, - sym_compound_statement, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - [108394] = 3, - ACTIONS(3622), 1, + [109053] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3329), 1, + STATE(2985), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108405] = 3, - ACTIONS(3622), 1, + [109064] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3401), 1, + STATE(2986), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108416] = 3, - ACTIONS(463), 1, + [109075] = 3, + ACTIONS(625), 1, anon_sym_LBRACE, - STATE(238), 1, + STATE(270), 1, sym_compound_statement, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108427] = 3, - ACTIONS(3622), 1, + [109086] = 3, + ACTIONS(6183), 1, anon_sym_LPAREN2, - STATE(3403), 1, - sym_argument_list, + STATE(425), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108438] = 3, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - STATE(3426), 1, - sym_argument_list, + [109097] = 3, + ACTIONS(6238), 1, + anon_sym_RPAREN, + ACTIONS(6240), 1, + sym_number_literal, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108449] = 3, - ACTIONS(3622), 1, + [109108] = 3, + ACTIONS(6199), 1, anon_sym_LPAREN2, - STATE(3447), 1, - sym_argument_list, + STATE(2797), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108460] = 3, - ACTIONS(3622), 1, + [109119] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3457), 1, + STATE(2988), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108471] = 3, - ACTIONS(3622), 1, + [109130] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3330), 1, + STATE(2989), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108482] = 3, - ACTIONS(3622), 1, + [109141] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3233), 1, + STATE(2990), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108493] = 3, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - STATE(3225), 1, - sym_argument_list, + [109152] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108504] = 3, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - STATE(3223), 1, - sym_argument_list, - ACTIONS(5), 2, + ACTIONS(5716), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [109161] = 3, + ACTIONS(6242), 1, + aux_sym_preproc_include_token2, + ACTIONS(6244), 1, + aux_sym_preproc_arg_token1, + ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [108515] = 3, - ACTIONS(3622), 1, + [109172] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3218), 1, + STATE(2991), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108526] = 3, - ACTIONS(3622), 1, + [109183] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3216), 1, + STATE(2992), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108537] = 3, - ACTIONS(3622), 1, + [109194] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3005), 1, + STATE(2993), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108548] = 3, - ACTIONS(3622), 1, + [109205] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3158), 1, + STATE(2996), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108559] = 3, - ACTIONS(3622), 1, + [109216] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3156), 1, + STATE(2999), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108570] = 3, - ACTIONS(6123), 1, - anon_sym_LPAREN2, - STATE(2877), 1, - sym_parenthesized_expression, + [109227] = 3, + ACTIONS(1713), 1, + anon_sym_LBRACE, + STATE(2784), 1, + sym_compound_statement, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108581] = 3, - ACTIONS(4853), 1, - anon_sym_RBRACE, - ACTIONS(6115), 1, - anon_sym_COMMA, + [109238] = 3, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + STATE(3000), 1, + sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108592] = 2, + [109249] = 3, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + STATE(3001), 1, + sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5373), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [108601] = 3, - ACTIONS(6123), 1, + [109260] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3064), 1, - sym_parenthesized_expression, + STATE(3002), 1, + sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108612] = 3, - ACTIONS(6183), 1, + [109271] = 3, + ACTIONS(6246), 1, anon_sym_RPAREN, - ACTIONS(6185), 1, + ACTIONS(6248), 1, sym_number_literal, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108623] = 2, + [109282] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4156), 2, + ACTIONS(5410), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [108632] = 2, + anon_sym_SEMI, + [109291] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5760), 2, + ACTIONS(6250), 2, anon_sym_COMMA, anon_sym_RPAREN, - [108641] = 2, + [109300] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4162), 2, + ACTIONS(5412), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [108650] = 2, + anon_sym_SEMI, + [109309] = 3, + ACTIONS(393), 1, + anon_sym_LBRACE, + STATE(265), 1, + sym_compound_statement, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(1304), 2, - anon_sym_else, - anon_sym_while, - [108659] = 3, - ACTIONS(6187), 1, - aux_sym_preproc_include_token2, - ACTIONS(6189), 1, - aux_sym_preproc_arg_token1, - ACTIONS(3), 2, + [109320] = 3, + ACTIONS(6253), 1, + anon_sym_RPAREN, + ACTIONS(6255), 1, + sym_number_literal, + ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108670] = 2, + [109331] = 3, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + STATE(3014), 1, + sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4158), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [108679] = 3, + [109342] = 3, ACTIONS(1134), 1, anon_sym_LBRACE, - STATE(524), 1, + STATE(543), 1, sym_compound_statement, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108690] = 2, + [109353] = 3, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + STATE(3015), 1, + sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(4152), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [108699] = 2, + [109364] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5765), 2, + ACTIONS(5683), 2, anon_sym_COMMA, anon_sym_RPAREN, - [108708] = 3, - ACTIONS(6115), 1, - anon_sym_COMMA, - ACTIONS(6191), 1, - anon_sym_RBRACE, + [109373] = 3, + ACTIONS(6199), 1, + anon_sym_LPAREN2, + STATE(2981), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108719] = 3, - ACTIONS(1570), 1, - anon_sym_LBRACE, - STATE(2754), 1, - sym_compound_statement, + [109384] = 3, + ACTIONS(6199), 1, + anon_sym_LPAREN2, + STATE(3024), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108730] = 3, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - STATE(3117), 1, - sym_argument_list, + [109395] = 3, + ACTIONS(4952), 1, + anon_sym_RBRACE, + ACTIONS(6193), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108741] = 3, - ACTIONS(1570), 1, - anon_sym_LBRACE, - STATE(2456), 1, - sym_compound_statement, - ACTIONS(5), 2, + [109406] = 3, + ACTIONS(6257), 1, + aux_sym_preproc_include_token2, + ACTIONS(6259), 1, + aux_sym_preproc_arg_token1, + ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [108752] = 3, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - STATE(2973), 1, - sym_argument_list, + [109417] = 2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108763] = 3, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - STATE(3128), 1, - sym_argument_list, - ACTIONS(5), 2, + ACTIONS(5668), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [109426] = 4, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - [108774] = 3, - ACTIONS(3622), 1, + ACTIONS(6261), 1, + sym_identifier, + ACTIONS(6263), 1, + anon_sym_DOT_DOT_DOT, + [109439] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3132), 1, + STATE(3194), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108785] = 3, - ACTIONS(3622), 1, - anon_sym_LPAREN2, - STATE(3141), 1, - sym_argument_list, - ACTIONS(5), 2, + [109450] = 3, + ACTIONS(6265), 1, + aux_sym_preproc_include_token2, + ACTIONS(6267), 1, + aux_sym_preproc_arg_token1, + ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [108796] = 3, - ACTIONS(6121), 1, - anon_sym_LPAREN2, - STATE(412), 1, - sym_parenthesized_expression, + [109461] = 3, + ACTIONS(1713), 1, + anon_sym_LBRACE, + STATE(2489), 1, + sym_compound_statement, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108807] = 2, + [109472] = 3, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + STATE(3098), 1, + sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5385), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [108816] = 2, + [109483] = 3, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + STATE(3188), 1, + sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(6193), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [108825] = 3, - ACTIONS(3622), 1, + [109494] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3153), 1, + STATE(3181), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108836] = 3, - ACTIONS(6123), 1, + [109505] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(2899), 1, - sym_parenthesized_expression, + STATE(3175), 1, + sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108847] = 2, + [109516] = 3, + ACTIONS(6183), 1, + anon_sym_LPAREN2, + STATE(454), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - ACTIONS(5926), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [108856] = 3, - ACTIONS(6121), 1, + [109527] = 3, + ACTIONS(6199), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(2951), 1, sym_parenthesized_expression, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108867] = 4, + [109538] = 4, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(6119), 1, + ACTIONS(6191), 1, sym_identifier, - STATE(2678), 1, + STATE(2534), 1, sym_attribute, - [108880] = 3, - ACTIONS(3622), 1, + [109551] = 3, + ACTIONS(3649), 1, anon_sym_LPAREN2, - STATE(3166), 1, + STATE(3174), 1, sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108891] = 3, - ACTIONS(6196), 1, - anon_sym_RPAREN, - ACTIONS(6198), 1, - sym_number_literal, + [109562] = 3, + ACTIONS(3649), 1, + anon_sym_LPAREN2, + STATE(3172), 1, + sym_argument_list, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108902] = 3, - ACTIONS(6200), 1, + [109573] = 3, + ACTIONS(6269), 1, anon_sym_RPAREN, - ACTIONS(6202), 1, + ACTIONS(6271), 1, sym_number_literal, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108913] = 3, - ACTIONS(49), 1, + [109584] = 3, + ACTIONS(1713), 1, anon_sym_LBRACE, - STATE(217), 1, + STATE(2798), 1, sym_compound_statement, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108924] = 3, - ACTIONS(6204), 1, - anon_sym_RPAREN, - ACTIONS(6206), 1, - sym_number_literal, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - [108935] = 3, - ACTIONS(4875), 1, - anon_sym_RBRACE, - ACTIONS(6115), 1, + [109595] = 3, + ACTIONS(6193), 1, anon_sym_COMMA, + ACTIONS(6273), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108946] = 3, + [109606] = 3, ACTIONS(1134), 1, anon_sym_LBRACE, - STATE(494), 1, + STATE(487), 1, sym_compound_statement, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108957] = 3, - ACTIONS(6208), 1, + [109617] = 3, + ACTIONS(6275), 1, anon_sym_RPAREN, - ACTIONS(6210), 1, + ACTIONS(6277), 1, sym_number_literal, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108968] = 3, - ACTIONS(1134), 1, + [109628] = 3, + ACTIONS(6279), 1, + anon_sym_RPAREN, + ACTIONS(6281), 1, + sym_number_literal, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [109639] = 3, + ACTIONS(1713), 1, anon_sym_LBRACE, - STATE(481), 1, + STATE(2795), 1, sym_compound_statement, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108979] = 3, - ACTIONS(49), 1, + [109650] = 3, + ACTIONS(1134), 1, anon_sym_LBRACE, - STATE(196), 1, + STATE(492), 1, sym_compound_statement, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108990] = 2, - ACTIONS(4160), 1, + [109661] = 2, + ACTIONS(6283), 1, anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [108998] = 2, - ACTIONS(6212), 1, + [109669] = 2, + ACTIONS(6285), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109006] = 2, - ACTIONS(6214), 1, + [109677] = 2, + ACTIONS(6287), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109014] = 2, - ACTIONS(6216), 1, + [109685] = 2, + ACTIONS(6289), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109022] = 2, - ACTIONS(6218), 1, - anon_sym_SEMI, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - [109030] = 2, - ACTIONS(6220), 1, + [109693] = 2, + ACTIONS(6291), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109038] = 2, - ACTIONS(6222), 1, - aux_sym_preproc_if_token2, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - [109046] = 2, - ACTIONS(6224), 1, - aux_sym_preproc_if_token2, + [109701] = 2, + ACTIONS(6293), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109054] = 3, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6226), 1, - sym_identifier, - [109064] = 2, - ACTIONS(6228), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, - sym__linux_kernel_annotations, - sym_comment, - [109072] = 2, - ACTIONS(6230), 1, + [109709] = 2, + ACTIONS(6295), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109080] = 2, - ACTIONS(6232), 1, - aux_sym_preproc_if_token2, + [109717] = 2, + ACTIONS(6297), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109088] = 2, - ACTIONS(6234), 1, + [109725] = 2, + ACTIONS(6299), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109096] = 2, - ACTIONS(6236), 1, + [109733] = 2, + ACTIONS(6301), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109104] = 2, - ACTIONS(6238), 1, - anon_sym_SEMI, + [109741] = 2, + ACTIONS(6303), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109112] = 2, - ACTIONS(6240), 1, - anon_sym_STAR, + [109749] = 2, + ACTIONS(6305), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109120] = 2, - ACTIONS(6242), 1, - aux_sym_preproc_if_token2, + [109757] = 2, + ACTIONS(6307), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109128] = 2, - ACTIONS(5859), 1, + [109765] = 2, + ACTIONS(6309), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109136] = 2, - ACTIONS(6244), 1, + [109773] = 2, + ACTIONS(6311), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [109144] = 2, - ACTIONS(6246), 1, + [109781] = 2, + ACTIONS(6313), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109152] = 2, - ACTIONS(6248), 1, - anon_sym_LPAREN2, + [109789] = 2, + ACTIONS(6315), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109160] = 3, - ACTIONS(3), 1, + [109797] = 2, + ACTIONS(6317), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(6250), 1, - sym_identifier, - [109170] = 2, - ACTIONS(6252), 1, + [109805] = 2, + ACTIONS(6319), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109178] = 2, - ACTIONS(4044), 1, - anon_sym_RBRACE, + [109813] = 2, + ACTIONS(6321), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109186] = 2, - ACTIONS(6254), 1, + [109821] = 2, + ACTIONS(6323), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [109194] = 2, - ACTIONS(5845), 1, + [109829] = 2, + ACTIONS(5949), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109202] = 2, - ACTIONS(6256), 1, + [109837] = 2, + ACTIONS(6325), 1, aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109210] = 3, + [109845] = 3, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(6258), 1, + ACTIONS(6327), 1, sym_identifier, - [109220] = 2, - ACTIONS(6260), 1, + [109855] = 2, + ACTIONS(6329), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109228] = 2, - ACTIONS(6262), 1, - anon_sym_RBRACK, + [109863] = 2, + ACTIONS(6331), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [109871] = 2, + ACTIONS(6333), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109236] = 2, - ACTIONS(4120), 1, - anon_sym_RPAREN, + [109879] = 2, + ACTIONS(5211), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109244] = 2, - ACTIONS(4184), 1, - anon_sym_RPAREN, + [109887] = 2, + ACTIONS(6335), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109252] = 2, - ACTIONS(4875), 1, - anon_sym_RBRACE, + [109895] = 2, + ACTIONS(6337), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109260] = 2, - ACTIONS(6264), 1, + [109903] = 2, + ACTIONS(6339), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [109268] = 2, - ACTIONS(6266), 1, - sym_primitive_type, + [109911] = 2, + ACTIONS(6341), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109276] = 2, - ACTIONS(6268), 1, + [109919] = 2, + ACTIONS(6343), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109284] = 2, - ACTIONS(6270), 1, - aux_sym_preproc_if_token2, + [109927] = 2, + ACTIONS(6345), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109292] = 2, - ACTIONS(4112), 1, - anon_sym_RPAREN, + [109935] = 3, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6347), 1, + sym_identifier, + [109945] = 2, + ACTIONS(6349), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109300] = 2, - ACTIONS(6272), 1, - anon_sym_RPAREN, + [109953] = 2, + ACTIONS(6351), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109308] = 2, - ACTIONS(6274), 1, - anon_sym_RPAREN, + [109961] = 2, + ACTIONS(6353), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109316] = 2, - ACTIONS(6276), 1, - anon_sym_SEMI, + [109969] = 2, + ACTIONS(4069), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109324] = 2, - ACTIONS(6278), 1, - anon_sym_SEMI, + [109977] = 2, + ACTIONS(6355), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109332] = 2, - ACTIONS(6280), 1, - anon_sym_SEMI, + [109985] = 2, + ACTIONS(6357), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109340] = 2, - ACTIONS(4114), 1, - anon_sym_COLON, + [109993] = 2, + ACTIONS(6359), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109348] = 2, - ACTIONS(6117), 1, - anon_sym_RBRACE, + [110001] = 2, + ACTIONS(6361), 1, + anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109356] = 2, - ACTIONS(6282), 1, + [110009] = 2, + ACTIONS(6363), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [109364] = 2, - ACTIONS(4108), 1, - anon_sym_RPAREN, + [110017] = 2, + ACTIONS(6365), 1, + anon_sym_STAR, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109372] = 2, - ACTIONS(5791), 1, + [110025] = 2, + ACTIONS(6104), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109380] = 2, - ACTIONS(6284), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, + [110033] = 2, + ACTIONS(6367), 1, + anon_sym_SEMI, + ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109388] = 2, - ACTIONS(6286), 1, - anon_sym_RPAREN, + [110041] = 2, + ACTIONS(6273), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109396] = 2, - ACTIONS(6288), 1, - anon_sym_RPAREN, + [110049] = 2, + ACTIONS(6369), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109404] = 2, - ACTIONS(6290), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, + [110057] = 2, + ACTIONS(6371), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [109412] = 2, - ACTIONS(5787), 1, + [110065] = 2, + ACTIONS(6076), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109420] = 2, - ACTIONS(6292), 1, - aux_sym_preproc_if_token2, + [110073] = 2, + ACTIONS(6373), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109428] = 2, - ACTIONS(6294), 1, - aux_sym_preproc_if_token2, + [110081] = 2, + ACTIONS(6375), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109436] = 2, - ACTIONS(4128), 1, - anon_sym_COLON, - ACTIONS(5), 2, + [110089] = 2, + ACTIONS(6377), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [109444] = 2, - ACTIONS(5777), 1, + [110097] = 2, + ACTIONS(6062), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109452] = 2, - ACTIONS(6296), 1, - aux_sym_preproc_if_token2, + [110105] = 2, + ACTIONS(6379), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109460] = 2, - ACTIONS(6298), 1, - aux_sym_preproc_if_token2, + [110113] = 2, + ACTIONS(4145), 1, + anon_sym_COLON, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109468] = 2, - ACTIONS(6300), 1, + [110121] = 2, + ACTIONS(6381), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109476] = 3, + [110129] = 3, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(6302), 1, + ACTIONS(6383), 1, sym_identifier, - [109486] = 3, + [110139] = 3, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(6304), 1, + ACTIONS(6385), 1, sym_identifier, - [109496] = 2, - ACTIONS(6306), 1, - anon_sym_RPAREN, + [110149] = 2, + ACTIONS(6387), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109504] = 2, - ACTIONS(6308), 1, - anon_sym_LPAREN2, + [110157] = 2, + ACTIONS(6389), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109512] = 2, - ACTIONS(6310), 1, + [110165] = 2, + ACTIONS(6391), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109520] = 2, - ACTIONS(6312), 1, + [110173] = 2, + ACTIONS(6393), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109528] = 2, - ACTIONS(6314), 1, - anon_sym_RPAREN, + [110181] = 2, + ACTIONS(6395), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109536] = 2, - ACTIONS(6316), 1, - anon_sym_SEMI, + [110189] = 2, + ACTIONS(6397), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109544] = 2, - ACTIONS(6318), 1, - aux_sym_preproc_if_token2, + [110197] = 2, + ACTIONS(6399), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109552] = 2, - ACTIONS(6320), 1, - anon_sym_RPAREN, + [110205] = 2, + ACTIONS(6401), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109560] = 3, + [110213] = 3, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(6322), 1, + ACTIONS(6403), 1, sym_identifier, - [109570] = 2, - ACTIONS(6324), 1, + [110223] = 2, + ACTIONS(6405), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [109578] = 2, - ACTIONS(6326), 1, - anon_sym_LPAREN2, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - [109586] = 2, - ACTIONS(6328), 1, - anon_sym_LPAREN2, + [110231] = 2, + ACTIONS(4121), 1, + anon_sym_COLON, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109594] = 2, - ACTIONS(6330), 1, - anon_sym_RPAREN, + [110239] = 2, + ACTIONS(6407), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109602] = 2, - ACTIONS(6332), 1, + [110247] = 2, + ACTIONS(6409), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109610] = 2, - ACTIONS(6334), 1, + [110255] = 2, + ACTIONS(6411), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109618] = 2, - ACTIONS(5930), 1, - anon_sym_RPAREN, + [110263] = 2, + ACTIONS(6413), 1, + anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109626] = 2, - ACTIONS(6336), 1, - anon_sym_RPAREN, + [110271] = 2, + ACTIONS(6415), 1, + anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109634] = 2, - ACTIONS(6338), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, + [110279] = 2, + ACTIONS(6417), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109642] = 3, + [110287] = 3, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(6340), 1, + ACTIONS(6419), 1, sym_identifier, - [109652] = 2, - ACTIONS(6342), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - [109660] = 2, - ACTIONS(6344), 1, - aux_sym_preproc_if_token2, - ACTIONS(5), 2, + [110297] = 3, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - [109668] = 2, - ACTIONS(6346), 1, - anon_sym_RPAREN, + ACTIONS(6421), 1, + sym_identifier, + [110307] = 2, + ACTIONS(6423), 1, + anon_sym_COLON, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109676] = 2, - ACTIONS(6348), 1, - anon_sym_RPAREN, + [110315] = 2, + ACTIONS(4191), 1, + anon_sym_COLON, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109684] = 2, - ACTIONS(6350), 1, + [110323] = 2, + ACTIONS(6425), 1, aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109692] = 2, - ACTIONS(6352), 1, + [110331] = 2, + ACTIONS(6427), 1, aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109700] = 2, - ACTIONS(6354), 1, - aux_sym_preproc_if_token2, + [110339] = 2, + ACTIONS(6429), 1, + anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109708] = 3, - ACTIONS(3), 1, + [110347] = 2, + ACTIONS(4528), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(6356), 1, - sym_identifier, - [109718] = 2, - ACTIONS(6358), 1, - anon_sym_RBRACE, + [110355] = 2, + ACTIONS(6431), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109726] = 2, - ACTIONS(5146), 1, - anon_sym_COMMA, + [110363] = 2, + ACTIONS(6433), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109734] = 2, - ACTIONS(6360), 1, - aux_sym_preproc_if_token2, + [110371] = 2, + ACTIONS(6435), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109742] = 3, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6362), 1, - sym_identifier, - [109752] = 2, - ACTIONS(6364), 1, - anon_sym_RBRACE, + [110379] = 2, + ACTIONS(5659), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109760] = 2, - ACTIONS(6366), 1, - aux_sym_preproc_if_token2, + [110387] = 2, + ACTIONS(6437), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109768] = 2, - ACTIONS(6368), 1, - aux_sym_preproc_if_token2, + [110395] = 2, + ACTIONS(4165), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109776] = 2, - ACTIONS(4118), 1, - anon_sym_COLON, + [110403] = 2, + ACTIONS(4129), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109784] = 2, - ACTIONS(6370), 1, + [110411] = 2, + ACTIONS(4093), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109792] = 2, - ACTIONS(6191), 1, - anon_sym_RBRACE, + [110419] = 2, + ACTIONS(6439), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109800] = 2, - ACTIONS(6372), 1, - anon_sym_SEMI, - ACTIONS(5), 2, + [110427] = 2, + ACTIONS(4621), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [109808] = 2, - ACTIONS(6374), 1, - aux_sym_preproc_if_token2, - ACTIONS(5), 2, + [110435] = 3, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - [109816] = 2, - ACTIONS(6376), 1, - aux_sym_preproc_if_token2, + ACTIONS(6441), 1, + sym_identifier, + [110445] = 3, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6443), 1, + sym_identifier, + [110455] = 2, + ACTIONS(6445), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109824] = 2, - ACTIONS(6378), 1, - anon_sym_SEMI, + [110463] = 2, + ACTIONS(6447), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109832] = 2, - ACTIONS(4150), 1, - anon_sym_SEMI, + [110471] = 2, + ACTIONS(6449), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109840] = 2, - ACTIONS(6380), 1, + [110479] = 2, + ACTIONS(6451), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109848] = 2, - ACTIONS(6382), 1, - anon_sym_STAR, + [110487] = 2, + ACTIONS(6453), 1, + sym_primitive_type, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109856] = 2, - ACTIONS(4551), 1, + [110495] = 2, + ACTIONS(6455), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + [110503] = 2, + ACTIONS(6457), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [109864] = 3, + [110511] = 2, + ACTIONS(4952), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [110519] = 3, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(6384), 1, + ACTIONS(6459), 1, sym_identifier, - [109874] = 2, - ACTIONS(6386), 1, - anon_sym_SEMI, - ACTIONS(5), 2, + [110529] = 2, + ACTIONS(5674), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [109882] = 2, - ACTIONS(6388), 1, - anon_sym_SEMI, + [110537] = 2, + ACTIONS(4259), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109890] = 2, - ACTIONS(6390), 1, + [110545] = 2, + ACTIONS(6461), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109898] = 3, + [110553] = 3, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(6392), 1, + ACTIONS(6463), 1, sym_identifier, - [109908] = 2, - ACTIONS(4146), 1, - anon_sym_SEMI, + [110563] = 2, + ACTIONS(6465), 1, + anon_sym_COLON, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109916] = 2, - ACTIONS(6394), 1, + [110571] = 2, + ACTIONS(6467), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109924] = 2, - ACTIONS(6396), 1, + [110579] = 2, + ACTIONS(6469), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109932] = 2, - ACTIONS(6398), 1, - anon_sym_RPAREN, + [110587] = 2, + ACTIONS(6471), 1, + anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109940] = 2, - ACTIONS(6400), 1, + [110595] = 2, + ACTIONS(6473), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109948] = 2, - ACTIONS(6402), 1, + [110603] = 2, + ACTIONS(5633), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109956] = 2, - ACTIONS(6404), 1, - aux_sym_preproc_if_token2, + [110611] = 2, + ACTIONS(6475), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109964] = 2, - ACTIONS(4014), 1, - anon_sym_RBRACE, + [110619] = 2, + ACTIONS(6477), 1, + anon_sym_STAR, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109972] = 2, - ACTIONS(6406), 1, - sym_primitive_type, - ACTIONS(5), 2, + [110627] = 3, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - [109980] = 2, - ACTIONS(4853), 1, - anon_sym_RBRACE, + ACTIONS(6479), 1, + sym_identifier, + [110637] = 2, + ACTIONS(6481), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [109988] = 2, - ACTIONS(6408), 1, + [110645] = 2, + ACTIONS(6483), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [109996] = 2, - ACTIONS(4228), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, + [110653] = 3, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - [110004] = 2, - ACTIONS(6410), 1, - anon_sym_LPAREN2, + ACTIONS(6485), 1, + sym_identifier, + [110663] = 2, + ACTIONS(6487), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110012] = 2, - ACTIONS(6412), 1, - anon_sym_RBRACE, + [110671] = 2, + ACTIONS(6489), 1, + anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110020] = 3, - ACTIONS(3), 1, + [110679] = 2, + ACTIONS(4147), 1, + anon_sym_SEMI, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(6414), 1, - sym_identifier, - [110030] = 2, - ACTIONS(6416), 1, - anon_sym_COLON, + [110687] = 2, + ACTIONS(6491), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110038] = 2, - ACTIONS(6418), 1, - aux_sym_preproc_if_token2, + [110695] = 2, + ACTIONS(4153), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110046] = 2, - ACTIONS(6420), 1, - anon_sym_RBRACE, + [110703] = 2, + ACTIONS(4175), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110054] = 3, + [110711] = 3, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(6422), 1, + ACTIONS(6493), 1, sym_identifier, - [110064] = 2, - ACTIONS(6424), 1, + [110721] = 2, + ACTIONS(6495), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110072] = 2, - ACTIONS(4106), 1, + [110729] = 2, + ACTIONS(4155), 1, anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110080] = 2, - ACTIONS(4096), 1, + [110737] = 2, + ACTIONS(6149), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110088] = 2, - ACTIONS(4116), 1, - anon_sym_RPAREN, + [110745] = 2, + ACTIONS(6497), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110096] = 2, - ACTIONS(6426), 1, - aux_sym_preproc_if_token2, + [110753] = 2, + ACTIONS(4151), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110104] = 2, - ACTIONS(6428), 1, - anon_sym_SEMI, + [110761] = 2, + ACTIONS(6499), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110112] = 2, - ACTIONS(6430), 1, + [110769] = 2, + ACTIONS(4177), 1, anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110120] = 2, - ACTIONS(6432), 1, - aux_sym_preproc_if_token2, + [110777] = 2, + ACTIONS(6501), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110128] = 2, - ACTIONS(6434), 1, + [110785] = 2, + ACTIONS(6503), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + [110793] = 2, + ACTIONS(6505), 1, aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110136] = 2, - ACTIONS(6436), 1, - anon_sym_RBRACE, + [110801] = 2, + ACTIONS(6507), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110144] = 2, - ACTIONS(6438), 1, - anon_sym_RPAREN, + [110809] = 2, + ACTIONS(6509), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110152] = 2, - ACTIONS(6440), 1, - anon_sym_RPAREN, + [110817] = 2, + ACTIONS(4179), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110160] = 2, - ACTIONS(6442), 1, - anon_sym_RPAREN, + [110825] = 2, + ACTIONS(6511), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110168] = 2, - ACTIONS(6444), 1, - anon_sym_RPAREN, + [110833] = 2, + ACTIONS(6513), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110176] = 2, - ACTIONS(6446), 1, - anon_sym_RPAREN, + [110841] = 2, + ACTIONS(6515), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110184] = 2, - ACTIONS(6448), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, + [110849] = 2, + ACTIONS(4651), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [110192] = 2, - ACTIONS(6450), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, + [110857] = 3, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - [110200] = 2, - ACTIONS(6452), 1, - anon_sym_LPAREN2, - ACTIONS(5), 2, + ACTIONS(6517), 1, + sym_identifier, + [110867] = 2, + ACTIONS(6519), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [110208] = 2, - ACTIONS(6454), 1, + [110875] = 2, + ACTIONS(6521), 1, aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110216] = 2, - ACTIONS(6456), 1, + [110883] = 2, + ACTIONS(5766), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110224] = 2, - ACTIONS(4098), 1, - anon_sym_SEMI, + [110891] = 2, + ACTIONS(6523), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110232] = 2, - ACTIONS(6458), 1, - anon_sym_COLON, + [110899] = 2, + ACTIONS(4253), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110240] = 2, - ACTIONS(6460), 1, - aux_sym_preproc_if_token2, + [110907] = 2, + ACTIONS(4946), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110248] = 2, - ACTIONS(6462), 1, - anon_sym_SEMI, + [110915] = 2, + ACTIONS(6525), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110256] = 2, - ACTIONS(6464), 1, - anon_sym_LPAREN2, + [110923] = 2, + ACTIONS(4161), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110264] = 2, - ACTIONS(6466), 1, + [110931] = 2, + ACTIONS(6527), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + [110939] = 2, + ACTIONS(6529), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110272] = 2, - ACTIONS(6468), 1, - anon_sym_LPAREN2, + [110947] = 2, + ACTIONS(6531), 1, + sym_primitive_type, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110280] = 2, - ACTIONS(6470), 1, - anon_sym_LPAREN2, + [110955] = 2, + ACTIONS(5711), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + [110963] = 2, + ACTIONS(6533), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110288] = 2, - ACTIONS(6472), 1, + [110971] = 2, + ACTIONS(6535), 1, anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110296] = 2, - ACTIONS(6474), 1, - anon_sym_LPAREN2, + [110979] = 2, + ACTIONS(6537), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110304] = 2, - ACTIONS(6476), 1, + [110987] = 2, + ACTIONS(6539), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110312] = 2, - ACTIONS(6478), 1, + [110995] = 2, + ACTIONS(6541), 1, anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110320] = 2, - ACTIONS(6480), 1, + [111003] = 2, + ACTIONS(6543), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110328] = 2, - ACTIONS(6482), 1, - anon_sym_SEMI, + [111011] = 2, + ACTIONS(6545), 1, + anon_sym_COLON, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110336] = 2, - ACTIONS(6484), 1, - aux_sym_preproc_if_token2, + [111019] = 2, + ACTIONS(4219), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110344] = 3, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6486), 1, - sym_identifier, - [110354] = 2, - ACTIONS(6115), 1, - anon_sym_COMMA, + [111027] = 2, + ACTIONS(6547), 1, + anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110362] = 3, - ACTIONS(3), 1, + [111035] = 2, + ACTIONS(6549), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(6488), 1, - sym_identifier, - [110372] = 2, - ACTIONS(6490), 1, - aux_sym_preproc_if_token2, + [111043] = 2, + ACTIONS(6551), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110380] = 2, - ACTIONS(6492), 1, + [111051] = 2, + ACTIONS(6553), 1, aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110388] = 3, - ACTIONS(3), 1, - sym__linux_kernel_annotations, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6494), 1, - sym_identifier, - [110398] = 2, - ACTIONS(6496), 1, - anon_sym_RPAREN, + [111059] = 2, + ACTIONS(6555), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110406] = 2, - ACTIONS(4176), 1, + [111067] = 2, + ACTIONS(4123), 1, anon_sym_COLON, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110414] = 2, - ACTIONS(6498), 1, - anon_sym_SEMI, + [111075] = 2, + ACTIONS(6557), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110422] = 2, - ACTIONS(4050), 1, - anon_sym_RBRACE, + [111083] = 2, + ACTIONS(6559), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110430] = 2, - ACTIONS(6500), 1, - anon_sym_RPAREN, + [111091] = 2, + ACTIONS(6561), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110438] = 2, - ACTIONS(6502), 1, - anon_sym_RPAREN, + [111099] = 2, + ACTIONS(6563), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110446] = 3, - ACTIONS(3), 1, + [111107] = 2, + ACTIONS(6565), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(6504), 1, - sym_identifier, - [110456] = 3, + [111115] = 3, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(6506), 1, + ACTIONS(6567), 1, sym_identifier, - [110466] = 3, + [111125] = 3, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(6508), 1, + ACTIONS(6569), 1, sym_identifier, - [110476] = 2, - ACTIONS(6510), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, + [111135] = 2, + ACTIONS(6571), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110484] = 2, - ACTIONS(5696), 1, - anon_sym_RPAREN, + [111143] = 2, + ACTIONS(4159), 1, + anon_sym_COLON, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110492] = 2, - ACTIONS(6512), 1, + [111151] = 2, + ACTIONS(6573), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110500] = 2, - ACTIONS(4164), 1, + [111159] = 2, + ACTIONS(4193), 1, anon_sym_COLON, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110508] = 2, - ACTIONS(6514), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, + [111167] = 2, + ACTIONS(6575), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [110516] = 2, - ACTIONS(6516), 1, - anon_sym_RPAREN, + [111175] = 2, + ACTIONS(6577), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110524] = 2, - ACTIONS(6518), 1, + [111183] = 2, + ACTIONS(6579), 1, aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110532] = 2, - ACTIONS(4100), 1, + [111191] = 2, + ACTIONS(6581), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110540] = 3, + [111199] = 3, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(6520), 1, + ACTIONS(6583), 1, sym_identifier, - [110550] = 2, - ACTIONS(6522), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, + [111209] = 2, + ACTIONS(6585), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110558] = 2, - ACTIONS(6524), 1, - aux_sym_preproc_if_token2, + [111217] = 2, + ACTIONS(6587), 1, + anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110566] = 2, - ACTIONS(6526), 1, - aux_sym_preproc_if_token2, + [111225] = 2, + ACTIONS(6589), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110574] = 2, - ACTIONS(6528), 1, + [111233] = 2, + ACTIONS(6591), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110582] = 2, - ACTIONS(6530), 1, - anon_sym_LPAREN2, + [111241] = 2, + ACTIONS(4261), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110590] = 3, + [111249] = 3, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(6532), 1, + ACTIONS(6593), 1, sym_identifier, - [110600] = 2, - ACTIONS(4212), 1, - anon_sym_RPAREN, + [111259] = 2, + ACTIONS(6229), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110608] = 2, - ACTIONS(6534), 1, - anon_sym_RPAREN, + [111267] = 2, + ACTIONS(6595), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110616] = 2, - ACTIONS(6536), 1, + [111275] = 2, + ACTIONS(6597), 1, anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110624] = 2, - ACTIONS(4511), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, - sym__linux_kernel_annotations, - sym_comment, - [110632] = 2, - ACTIONS(6538), 1, + [111283] = 2, + ACTIONS(6599), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110640] = 2, - ACTIONS(6540), 1, - aux_sym_preproc_if_token2, + [111291] = 3, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6601), 1, + sym_identifier, + [111301] = 2, + ACTIONS(6603), 1, + ts_builtin_sym_end, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110648] = 2, - ACTIONS(6542), 1, - anon_sym_RPAREN, + [111309] = 2, + ACTIONS(4143), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110656] = 2, - ACTIONS(5993), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, + [111317] = 2, + ACTIONS(6605), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110664] = 2, - ACTIONS(5991), 1, + [111325] = 2, + ACTIONS(5878), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110672] = 2, - ACTIONS(6544), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, + [111333] = 2, + ACTIONS(6607), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110680] = 2, - ACTIONS(6546), 1, + [111341] = 2, + ACTIONS(6609), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110688] = 3, - ACTIONS(3), 1, + [111349] = 2, + ACTIONS(4149), 1, + anon_sym_SEMI, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(6548), 1, - sym_identifier, - [110698] = 2, - ACTIONS(6550), 1, - aux_sym_preproc_if_token2, + [111357] = 2, + ACTIONS(6611), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110706] = 3, + [111365] = 3, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(6552), 1, + ACTIONS(6613), 1, sym_identifier, - [110716] = 2, - ACTIONS(6554), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, + [111375] = 2, + ACTIONS(6615), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [110724] = 2, - ACTIONS(6556), 1, + [111383] = 2, + ACTIONS(6617), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110732] = 2, - ACTIONS(6558), 1, - anon_sym_SEMI, + [111391] = 2, + ACTIONS(6619), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110740] = 2, - ACTIONS(4170), 1, - anon_sym_SEMI, + [111399] = 2, + ACTIONS(4207), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110748] = 3, - ACTIONS(3), 1, + [111407] = 2, + ACTIONS(6621), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(6560), 1, - sym_identifier, - [110758] = 2, - ACTIONS(4166), 1, - anon_sym_SEMI, + [111415] = 2, + ACTIONS(6623), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110766] = 2, - ACTIONS(4168), 1, - anon_sym_SEMI, + [111423] = 2, + ACTIONS(4045), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110774] = 2, - ACTIONS(6562), 1, + [111431] = 2, + ACTIONS(6625), 1, anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110782] = 2, - ACTIONS(6564), 1, - anon_sym_LPAREN2, + [111439] = 2, + ACTIONS(6627), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110790] = 2, - ACTIONS(6566), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, + [111447] = 2, + ACTIONS(6629), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110798] = 2, - ACTIONS(6149), 1, + [111455] = 2, + ACTIONS(6631), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110806] = 2, - ACTIONS(6568), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, + [111463] = 2, + ACTIONS(4065), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110814] = 2, - ACTIONS(5997), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, + [111471] = 2, + ACTIONS(6633), 1, + anon_sym_SEMI, + ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110822] = 3, + [111479] = 3, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(6570), 1, + ACTIONS(6635), 1, sym_identifier, - [110832] = 2, - ACTIONS(6572), 1, - anon_sym_LPAREN2, + [111489] = 2, + ACTIONS(6637), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110840] = 2, - ACTIONS(4104), 1, - anon_sym_RPAREN, + [111497] = 2, + ACTIONS(6639), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110848] = 2, - ACTIONS(6574), 1, + [111505] = 2, + ACTIONS(6641), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110856] = 2, - ACTIONS(6576), 1, - anon_sym_RPAREN, + [111513] = 2, + ACTIONS(6643), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110864] = 2, - ACTIONS(6578), 1, - anon_sym_RBRACK, + [111521] = 2, + ACTIONS(4095), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110872] = 2, - ACTIONS(6580), 1, + [111529] = 2, + ACTIONS(6645), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110880] = 2, - ACTIONS(6582), 1, - anon_sym_SEMI, + [111537] = 2, + ACTIONS(6647), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110888] = 2, - ACTIONS(4102), 1, - anon_sym_SEMI, - ACTIONS(5), 2, + [111545] = 3, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - [110896] = 2, - ACTIONS(6584), 1, - anon_sym_RBRACE, + ACTIONS(6649), 1, + sym_identifier, + [111555] = 2, + ACTIONS(6651), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110904] = 2, - ACTIONS(6586), 1, + [111563] = 2, + ACTIONS(6653), 1, aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110912] = 2, - ACTIONS(6588), 1, + [111571] = 2, + ACTIONS(6655), 1, aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110920] = 2, - ACTIONS(6590), 1, + [111579] = 2, + ACTIONS(4173), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [111587] = 2, + ACTIONS(6657), 1, aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110928] = 2, - ACTIONS(6592), 1, - anon_sym_LPAREN2, + [111595] = 2, + ACTIONS(6659), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110936] = 2, - ACTIONS(4126), 1, + [111603] = 2, + ACTIONS(6661), 1, anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110944] = 2, - ACTIONS(6594), 1, - aux_sym_preproc_if_token2, + [111611] = 2, + ACTIONS(6663), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110952] = 2, - ACTIONS(6596), 1, - anon_sym_SEMI, + [111619] = 2, + ACTIONS(6665), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110960] = 2, - ACTIONS(6598), 1, - anon_sym_SEMI, - ACTIONS(5), 2, + [111627] = 2, + ACTIONS(6667), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [110968] = 3, - ACTIONS(3), 1, + [111635] = 2, + ACTIONS(6669), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(6600), 1, - sym_identifier, - [110978] = 2, - ACTIONS(6602), 1, - anon_sym_LPAREN2, + [111643] = 2, + ACTIONS(6671), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110986] = 2, - ACTIONS(6604), 1, - anon_sym_LPAREN2, + [111651] = 2, + ACTIONS(6673), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [110994] = 2, - ACTIONS(6606), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, + [111659] = 2, + ACTIONS(6675), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111002] = 2, - ACTIONS(6608), 1, - anon_sym_STAR, + [111667] = 2, + ACTIONS(6677), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111010] = 2, - ACTIONS(6610), 1, - anon_sym_SEMI, + [111675] = 2, + ACTIONS(6679), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111018] = 2, - ACTIONS(4062), 1, - anon_sym_COLON, + [111683] = 2, + ACTIONS(6197), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111026] = 2, - ACTIONS(6612), 1, - aux_sym_preproc_if_token2, + [111691] = 2, + ACTIONS(6681), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111034] = 3, + [111699] = 3, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(6614), 1, + ACTIONS(6683), 1, sym_identifier, - [111044] = 3, + [111709] = 3, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(6616), 1, + ACTIONS(6685), 1, sym_identifier, - [111054] = 2, - ACTIONS(6618), 1, - aux_sym_preproc_if_token2, + [111719] = 2, + ACTIONS(6687), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111062] = 2, - ACTIONS(6620), 1, + [111727] = 2, + ACTIONS(6689), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111070] = 2, - ACTIONS(6622), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, - sym__linux_kernel_annotations, - sym_comment, - [111078] = 2, - ACTIONS(6624), 1, + [111735] = 2, + ACTIONS(6691), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111086] = 2, - ACTIONS(6626), 1, + [111743] = 2, + ACTIONS(6693), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111094] = 2, - ACTIONS(6628), 1, + [111751] = 3, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6695), 1, + sym_identifier, + [111761] = 2, + ACTIONS(6697), 1, anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111102] = 2, - ACTIONS(6630), 1, - anon_sym_RPAREN, + [111769] = 2, + ACTIONS(6699), 1, + anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111110] = 2, - ACTIONS(6632), 1, + [111777] = 2, + ACTIONS(6701), 1, anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111118] = 3, + [111785] = 3, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(6634), 1, + ACTIONS(6703), 1, sym_identifier, - [111128] = 2, - ACTIONS(6636), 1, - anon_sym_RPAREN, + [111795] = 2, + ACTIONS(6705), 1, + anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111136] = 2, - ACTIONS(6638), 1, - anon_sym_COLON, + [111803] = 2, + ACTIONS(6193), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111144] = 2, - ACTIONS(6640), 1, + [111811] = 2, + ACTIONS(6707), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111152] = 2, - ACTIONS(6642), 1, - sym_number_literal, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - [111160] = 2, - ACTIONS(6644), 1, - anon_sym_SEMI, + [111819] = 2, + ACTIONS(6709), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111168] = 2, - ACTIONS(6646), 1, - anon_sym_RPAREN, + [111827] = 2, + ACTIONS(6711), 1, + anon_sym_COLON, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111176] = 2, - ACTIONS(4180), 1, - anon_sym_RPAREN, + [111835] = 2, + ACTIONS(6713), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111184] = 2, - ACTIONS(6648), 1, - anon_sym_RPAREN, + [111843] = 2, + ACTIONS(6715), 1, + anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111192] = 2, - ACTIONS(4110), 1, - anon_sym_SEMI, + [111851] = 2, + ACTIONS(6717), 1, + anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111200] = 2, - ACTIONS(6650), 1, - anon_sym_RPAREN, + [111859] = 2, + ACTIONS(6719), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111208] = 2, - ACTIONS(6652), 1, - aux_sym_preproc_if_token2, + [111867] = 2, + ACTIONS(6721), 1, + anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111216] = 2, - ACTIONS(6654), 1, + [111875] = 2, + ACTIONS(6723), 1, aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111224] = 2, - ACTIONS(6656), 1, + [111883] = 2, + ACTIONS(6725), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111232] = 2, - ACTIONS(6658), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, + [111891] = 2, + ACTIONS(6727), 1, + anon_sym_COLON, + ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111240] = 2, - ACTIONS(6660), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, + [111899] = 3, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - [111248] = 2, - ACTIONS(6662), 1, - anon_sym_RPAREN, + ACTIONS(6729), 1, + sym_identifier, + [111909] = 2, + ACTIONS(6731), 1, + anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111256] = 2, - ACTIONS(6664), 1, + [111917] = 2, + ACTIONS(6733), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111264] = 2, - ACTIONS(6666), 1, + [111925] = 2, + ACTIONS(6735), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111272] = 2, - ACTIONS(4584), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, + [111933] = 3, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - [111280] = 2, - ACTIONS(4154), 1, - anon_sym_SEMI, + ACTIONS(6737), 1, + sym_identifier, + [111943] = 2, + ACTIONS(6739), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111288] = 2, - ACTIONS(6668), 1, - anon_sym_SEMI, + [111951] = 2, + ACTIONS(6741), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111296] = 2, - ACTIONS(6670), 1, + [111959] = 2, + ACTIONS(6743), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111304] = 2, - ACTIONS(6672), 1, + [111967] = 2, + ACTIONS(6745), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111312] = 2, - ACTIONS(4132), 1, - anon_sym_RPAREN, + [111975] = 2, + ACTIONS(6747), 1, + anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111320] = 2, - ACTIONS(6674), 1, + [111983] = 2, + ACTIONS(5905), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + [111991] = 2, + ACTIONS(6749), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111328] = 2, - ACTIONS(6676), 1, + [111999] = 2, + ACTIONS(6751), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111336] = 2, - ACTIONS(6678), 1, + [112007] = 2, + ACTIONS(6753), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111344] = 2, - ACTIONS(6680), 1, - anon_sym_STAR, + [112015] = 2, + ACTIONS(6755), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111352] = 2, - ACTIONS(6682), 1, + [112023] = 2, + ACTIONS(6757), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111360] = 2, - ACTIONS(6684), 1, + [112031] = 2, + ACTIONS(6759), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111368] = 2, - ACTIONS(6686), 1, - anon_sym_RPAREN, + [112039] = 2, + ACTIONS(6761), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111376] = 2, - ACTIONS(6688), 1, + [112047] = 2, + ACTIONS(6763), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111384] = 2, - ACTIONS(6690), 1, + [112055] = 2, + ACTIONS(6765), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111392] = 2, - ACTIONS(6692), 1, + [112063] = 2, + ACTIONS(6767), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111400] = 2, - ACTIONS(6694), 1, + [112071] = 2, + ACTIONS(6769), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111408] = 2, - ACTIONS(6696), 1, + [112079] = 2, + ACTIONS(6771), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111416] = 2, - ACTIONS(6698), 1, - anon_sym_COLON, + [112087] = 2, + ACTIONS(6773), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111424] = 2, - ACTIONS(6700), 1, + [112095] = 2, + ACTIONS(6775), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111432] = 2, - ACTIONS(6702), 1, + [112103] = 2, + ACTIONS(6777), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111440] = 2, - ACTIONS(6704), 1, + [112111] = 2, + ACTIONS(6779), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111448] = 2, - ACTIONS(6706), 1, + [112119] = 2, + ACTIONS(6781), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111456] = 2, - ACTIONS(6708), 1, + [112127] = 2, + ACTIONS(6783), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111464] = 2, - ACTIONS(6710), 1, - anon_sym_LPAREN2, + [112135] = 2, + ACTIONS(6785), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111472] = 2, - ACTIONS(2702), 1, - anon_sym_LPAREN2, + [112143] = 2, + ACTIONS(6787), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111480] = 2, - ACTIONS(6712), 1, + [112151] = 2, + ACTIONS(6789), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111488] = 2, - ACTIONS(6714), 1, + [112159] = 2, + ACTIONS(6791), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111496] = 2, - ACTIONS(6716), 1, - anon_sym_COMMA, + [112167] = 2, + ACTIONS(6793), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111504] = 2, - ACTIONS(6718), 1, - anon_sym_RPAREN, + [112175] = 2, + ACTIONS(6795), 1, + anon_sym_STAR, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111512] = 2, - ACTIONS(6720), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, + [112183] = 2, + ACTIONS(2725), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [111520] = 3, + [112191] = 3, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(6722), 1, + ACTIONS(6797), 1, sym_identifier, - [111530] = 2, - ACTIONS(4182), 1, - anon_sym_SEMI, - ACTIONS(5), 2, + [112201] = 2, + ACTIONS(6799), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [111538] = 2, - ACTIONS(6724), 1, + [112209] = 2, + ACTIONS(6801), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111546] = 2, - ACTIONS(2708), 1, - anon_sym_LPAREN2, + [112217] = 2, + ACTIONS(6803), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111554] = 2, - ACTIONS(4140), 1, - anon_sym_SEMI, + [112225] = 2, + ACTIONS(6805), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111562] = 2, - ACTIONS(6726), 1, - anon_sym_SEMI, + [112233] = 2, + ACTIONS(6807), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111570] = 2, - ACTIONS(6728), 1, + [112241] = 2, + ACTIONS(4127), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111578] = 2, - ACTIONS(6730), 1, + [112249] = 2, + ACTIONS(6809), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111586] = 3, + [112257] = 3, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(6732), 1, + ACTIONS(6811), 1, sym_identifier, - [111596] = 2, - ACTIONS(6734), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, - sym__linux_kernel_annotations, - sym_comment, - [111604] = 2, - ACTIONS(6736), 1, + [112267] = 2, + ACTIONS(6813), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111612] = 2, - ACTIONS(6738), 1, - aux_sym_preproc_if_token2, + [112275] = 2, + ACTIONS(6815), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111620] = 2, - ACTIONS(6740), 1, + [112283] = 2, + ACTIONS(6817), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111628] = 2, - ACTIONS(6742), 1, + [112291] = 2, + ACTIONS(6819), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111636] = 2, - ACTIONS(6744), 1, - anon_sym_RPAREN, + [112299] = 2, + ACTIONS(6821), 1, + anon_sym_COLON, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111644] = 2, - ACTIONS(6746), 1, - anon_sym_LPAREN2, + [112307] = 2, + ACTIONS(6823), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111652] = 2, - ACTIONS(6748), 1, + [112315] = 2, + ACTIONS(2729), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + [112323] = 2, + ACTIONS(6825), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111660] = 2, - ACTIONS(6750), 1, + [112331] = 2, + ACTIONS(6827), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111668] = 2, - ACTIONS(6752), 1, - aux_sym_preproc_if_token2, + [112339] = 2, + ACTIONS(6829), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111676] = 3, - ACTIONS(3), 1, + [112347] = 2, + ACTIONS(6831), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(6754), 1, - sym_identifier, - [111686] = 2, - ACTIONS(6756), 1, - sym_primitive_type, + [112355] = 2, + ACTIONS(6833), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111694] = 2, - ACTIONS(4893), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, + [112363] = 3, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - [111702] = 2, - ACTIONS(6758), 1, + ACTIONS(6835), 1, + sym_identifier, + [112373] = 2, + ACTIONS(6837), 1, aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111710] = 3, + [112381] = 3, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(6760), 1, + ACTIONS(6839), 1, sym_identifier, - [111720] = 2, - ACTIONS(5595), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, - sym__linux_kernel_annotations, - sym_comment, - [111728] = 2, - ACTIONS(6762), 1, - anon_sym_LPAREN2, + [112391] = 2, + ACTIONS(6841), 1, + anon_sym_STAR, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111736] = 2, - ACTIONS(6764), 1, - aux_sym_preproc_if_token2, + [112399] = 2, + ACTIONS(6843), 1, + anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111744] = 2, - ACTIONS(6766), 1, - anon_sym_RPAREN, + [112407] = 2, + ACTIONS(6845), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111752] = 3, + [112415] = 3, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(6768), 1, + ACTIONS(6847), 1, sym_identifier, - [111762] = 2, - ACTIONS(6770), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, + [112425] = 3, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - [111770] = 2, - ACTIONS(6772), 1, + ACTIONS(6849), 1, + sym_identifier, + [112435] = 2, + ACTIONS(6851), 1, anon_sym_COLON, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111778] = 2, - ACTIONS(6774), 1, - aux_sym_preproc_if_token2, + [112443] = 2, + ACTIONS(6853), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111786] = 3, - ACTIONS(3), 1, + [112451] = 2, + ACTIONS(6078), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(6776), 1, - sym_identifier, - [111796] = 3, - ACTIONS(3), 1, + [112459] = 2, + ACTIONS(4215), 1, + anon_sym_SEMI, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(6778), 1, - sym_identifier, - [111806] = 3, + [112467] = 3, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(6780), 1, + ACTIONS(6855), 1, sym_identifier, - [111816] = 2, - ACTIONS(6782), 1, - anon_sym_LPAREN2, - ACTIONS(5), 2, - sym__linux_kernel_annotations, - sym_comment, - [111824] = 2, - ACTIONS(6784), 1, + [112477] = 2, + ACTIONS(6857), 1, anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111832] = 2, - ACTIONS(6786), 1, + [112485] = 2, + ACTIONS(6859), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111840] = 2, - ACTIONS(6788), 1, + [112493] = 2, + ACTIONS(6861), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + [112501] = 2, + ACTIONS(6863), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111848] = 2, - ACTIONS(6790), 1, + [112509] = 3, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6865), 1, + sym_identifier, + [112519] = 2, + ACTIONS(6867), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111856] = 2, - ACTIONS(6137), 1, - anon_sym_RBRACE, + [112527] = 2, + ACTIONS(4221), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111864] = 2, - ACTIONS(6792), 1, + [112535] = 2, + ACTIONS(6869), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111872] = 2, - ACTIONS(2702), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, + [112543] = 2, + ACTIONS(6871), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111880] = 2, - ACTIONS(4206), 1, - anon_sym_RPAREN, + [112551] = 2, + ACTIONS(6873), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111888] = 2, - ACTIONS(6794), 1, + [112559] = 2, + ACTIONS(6875), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111896] = 2, - ACTIONS(6796), 1, - anon_sym_RPAREN, + [112567] = 2, + ACTIONS(4119), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111904] = 2, - ACTIONS(2708), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, + [112575] = 3, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - [111912] = 2, - ACTIONS(6798), 1, + ACTIONS(6877), 1, + sym_identifier, + [112585] = 2, + ACTIONS(6879), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111920] = 2, - ACTIONS(6800), 1, + [112593] = 2, + ACTIONS(6881), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111928] = 2, - ACTIONS(6802), 1, + [112601] = 2, + ACTIONS(6883), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111936] = 2, - ACTIONS(6804), 1, + [112609] = 2, + ACTIONS(6885), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111944] = 2, - ACTIONS(6806), 1, + [112617] = 2, + ACTIONS(4223), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111952] = 3, - ACTIONS(3), 1, + [112625] = 2, + ACTIONS(6201), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(6808), 1, - sym_identifier, - [111962] = 2, - ACTIONS(6810), 1, + [112633] = 2, + ACTIONS(6887), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111970] = 2, - ACTIONS(4559), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, + [112641] = 2, + ACTIONS(6889), 1, + anon_sym_SEMI, + ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111978] = 2, - ACTIONS(5615), 1, - anon_sym_RPAREN, + [112649] = 2, + ACTIONS(4225), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111986] = 2, - ACTIONS(6812), 1, - anon_sym_STAR, + [112657] = 2, + ACTIONS(6891), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [111994] = 2, - ACTIONS(6814), 1, + [112665] = 2, + ACTIONS(6893), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112002] = 2, - ACTIONS(6816), 1, + [112673] = 2, + ACTIONS(6895), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112010] = 2, - ACTIONS(6818), 1, - aux_sym_preproc_if_token2, + [112681] = 2, + ACTIONS(4211), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112018] = 3, - ACTIONS(3), 1, + [112689] = 2, + ACTIONS(6897), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(6820), 1, - sym_identifier, - [112028] = 2, - ACTIONS(6822), 1, + [112697] = 2, + ACTIONS(6899), 1, anon_sym_while, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112036] = 3, - ACTIONS(3), 1, + [112705] = 2, + ACTIONS(6901), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(6824), 1, - sym_identifier, - [112046] = 2, - ACTIONS(6826), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, + [112713] = 2, + ACTIONS(6903), 1, + anon_sym_SEMI, + ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112054] = 2, - ACTIONS(6828), 1, - anon_sym_RPAREN, + [112721] = 2, + ACTIONS(6905), 1, + anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112062] = 2, - ACTIONS(6830), 1, + [112729] = 2, + ACTIONS(6907), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112070] = 2, - ACTIONS(6832), 1, - anon_sym_while, + [112737] = 2, + ACTIONS(2729), 1, + anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112078] = 3, - ACTIONS(3), 1, + [112745] = 2, + ACTIONS(6909), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(6834), 1, - sym_identifier, - [112088] = 2, - ACTIONS(6836), 1, - anon_sym_SEMI, + [112753] = 2, + ACTIONS(6911), 1, + sym_primitive_type, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112096] = 2, - ACTIONS(6838), 1, + [112761] = 2, + ACTIONS(6913), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112104] = 2, - ACTIONS(6840), 1, + [112769] = 2, + ACTIONS(6915), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112112] = 2, - ACTIONS(6842), 1, + [112777] = 2, + ACTIONS(6917), 1, anon_sym_COMMA, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112120] = 2, - ACTIONS(6844), 1, - anon_sym_STAR, + [112785] = 2, + ACTIONS(4227), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112128] = 2, - ACTIONS(4130), 1, + [112793] = 2, + ACTIONS(4205), 1, anon_sym_COLON, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112136] = 2, - ACTIONS(6846), 1, + [112801] = 2, + ACTIONS(6919), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112144] = 2, - ACTIONS(6848), 1, + [112809] = 2, + ACTIONS(6921), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112152] = 2, - ACTIONS(6850), 1, + [112817] = 2, + ACTIONS(6923), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112160] = 2, - ACTIONS(6852), 1, + [112825] = 2, + ACTIONS(6925), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112168] = 2, - ACTIONS(6854), 1, + [112833] = 2, + ACTIONS(6927), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112176] = 2, - ACTIONS(6856), 1, + [112841] = 2, + ACTIONS(6929), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112184] = 2, - ACTIONS(6858), 1, + [112849] = 2, + ACTIONS(6931), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112192] = 2, - ACTIONS(6860), 1, + [112857] = 2, + ACTIONS(6933), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112200] = 2, - ACTIONS(6862), 1, + [112865] = 2, + ACTIONS(6935), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112208] = 2, - ACTIONS(6864), 1, + [112873] = 2, + ACTIONS(6937), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112216] = 2, - ACTIONS(6866), 1, + [112881] = 2, + ACTIONS(6939), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112224] = 2, - ACTIONS(6868), 1, + [112889] = 2, + ACTIONS(6941), 1, anon_sym_COLON, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112232] = 2, - ACTIONS(6870), 1, + [112897] = 2, + ACTIONS(6943), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112240] = 2, - ACTIONS(6872), 1, + [112905] = 2, + ACTIONS(6945), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112248] = 2, - ACTIONS(6874), 1, + [112913] = 2, + ACTIONS(6947), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112256] = 2, - ACTIONS(6876), 1, + [112921] = 2, + ACTIONS(6949), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112264] = 2, - ACTIONS(6878), 1, + [112929] = 2, + ACTIONS(6951), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112272] = 2, - ACTIONS(4208), 1, - anon_sym_RPAREN, + [112937] = 2, + ACTIONS(4922), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112280] = 2, - ACTIONS(6880), 1, - anon_sym_SEMI, + [112945] = 2, + ACTIONS(6953), 1, + sym_number_literal, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112288] = 2, - ACTIONS(6882), 1, + [112953] = 2, + ACTIONS(6955), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112296] = 2, - ACTIONS(6884), 1, + [112961] = 2, + ACTIONS(6957), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112304] = 2, - ACTIONS(6886), 1, + [112969] = 2, + ACTIONS(6959), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112312] = 2, - ACTIONS(6888), 1, + [112977] = 2, + ACTIONS(6961), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112320] = 2, - ACTIONS(4178), 1, - anon_sym_SEMI, + [112985] = 2, + ACTIONS(6963), 1, + anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112328] = 3, + [112993] = 3, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(6890), 1, + ACTIONS(6965), 1, sym_identifier, - [112338] = 2, - ACTIONS(6892), 1, + [113003] = 2, + ACTIONS(4275), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112346] = 2, - ACTIONS(6894), 1, - anon_sym_SEMI, + [113011] = 2, + ACTIONS(6967), 1, + anon_sym_while, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112354] = 2, - ACTIONS(6896), 1, + [113019] = 2, + ACTIONS(6969), 1, anon_sym_while, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112362] = 2, - ACTIONS(6898), 1, - aux_sym_preproc_if_token2, - ACTIONS(5), 2, + [113027] = 3, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - [112370] = 2, - ACTIONS(4064), 1, - anon_sym_SEMI, + ACTIONS(6971), 1, + sym_identifier, + [113037] = 2, + ACTIONS(6973), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112378] = 2, - ACTIONS(6900), 1, + [113045] = 2, + ACTIONS(4217), 1, anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112386] = 2, - ACTIONS(6902), 1, - aux_sym_preproc_if_token2, + [113053] = 2, + ACTIONS(6975), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112394] = 3, - ACTIONS(3), 1, + [113061] = 2, + ACTIONS(6977), 1, + anon_sym_SEMI, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(6904), 1, - sym_identifier, - [112404] = 2, - ACTIONS(6906), 1, + [113069] = 2, + ACTIONS(6979), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112412] = 2, - ACTIONS(6908), 1, + [113077] = 2, + ACTIONS(6981), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112420] = 2, - ACTIONS(6910), 1, + [113085] = 2, + ACTIONS(6983), 1, anon_sym_COMMA, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112428] = 2, - ACTIONS(6912), 1, + [113093] = 2, + ACTIONS(6985), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112436] = 2, - ACTIONS(6914), 1, + [113101] = 2, + ACTIONS(6987), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112444] = 2, - ACTIONS(6916), 1, + [113109] = 2, + ACTIONS(6989), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112452] = 2, - ACTIONS(6918), 1, + [113117] = 2, + ACTIONS(6991), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112460] = 2, - ACTIONS(6920), 1, + [113125] = 2, + ACTIONS(6993), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112468] = 2, - ACTIONS(6922), 1, + [113133] = 2, + ACTIONS(6995), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112476] = 2, - ACTIONS(6924), 1, + [113141] = 2, + ACTIONS(6997), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112484] = 2, - ACTIONS(6926), 1, + [113149] = 2, + ACTIONS(6999), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112492] = 2, - ACTIONS(6928), 1, + [113157] = 2, + ACTIONS(7001), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112500] = 2, - ACTIONS(6930), 1, + [113165] = 2, + ACTIONS(7003), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112508] = 2, - ACTIONS(6932), 1, + [113173] = 2, + ACTIONS(7005), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112516] = 2, - ACTIONS(6934), 1, + [113181] = 2, + ACTIONS(7007), 1, anon_sym_COLON, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112524] = 2, - ACTIONS(6936), 1, + [113189] = 2, + ACTIONS(7009), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112532] = 2, - ACTIONS(6938), 1, + [113197] = 2, + ACTIONS(7011), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112540] = 2, - ACTIONS(6940), 1, + [113205] = 2, + ACTIONS(7013), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112548] = 2, - ACTIONS(6942), 1, + [113213] = 2, + ACTIONS(7015), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112556] = 2, - ACTIONS(6944), 1, + [113221] = 2, + ACTIONS(7017), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112564] = 2, - ACTIONS(6946), 1, - anon_sym_COLON, + [113229] = 2, + ACTIONS(7019), 1, + anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112572] = 2, - ACTIONS(6948), 1, - anon_sym_RPAREN, + [113237] = 2, + ACTIONS(7021), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112580] = 2, - ACTIONS(6950), 1, + [113245] = 2, + ACTIONS(7023), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112588] = 2, - ACTIONS(6952), 1, + [113253] = 2, + ACTIONS(7025), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112596] = 2, - ACTIONS(6954), 1, - aux_sym_preproc_if_token2, - ACTIONS(5), 2, + [113261] = 3, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - [112604] = 2, - ACTIONS(6956), 1, - anon_sym_RPAREN, + ACTIONS(7027), 1, + sym_identifier, + [113271] = 2, + ACTIONS(7029), 1, + anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112612] = 2, - ACTIONS(4052), 1, + [113279] = 2, + ACTIONS(6084), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112620] = 2, - ACTIONS(6958), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, - sym__linux_kernel_annotations, - sym_comment, - [112628] = 2, - ACTIONS(6960), 1, - anon_sym_while, + [113287] = 2, + ACTIONS(7031), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112636] = 2, - ACTIONS(6962), 1, - anon_sym_RPAREN, + [113295] = 2, + ACTIONS(7033), 1, + anon_sym_while, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112644] = 2, - ACTIONS(6964), 1, + [113303] = 2, + ACTIONS(7035), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [112652] = 2, - ACTIONS(6966), 1, - anon_sym_RPAREN, + [113311] = 2, + ACTIONS(7037), 1, + anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112660] = 2, - ACTIONS(5555), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, + [113319] = 2, + ACTIONS(7039), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [113327] = 2, + ACTIONS(4203), 1, + anon_sym_COLON, + ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112668] = 2, - ACTIONS(6968), 1, + [113335] = 2, + ACTIONS(7041), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112676] = 2, - ACTIONS(6970), 1, + [113343] = 2, + ACTIONS(7043), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112684] = 2, - ACTIONS(6972), 1, + [113351] = 2, + ACTIONS(7045), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112692] = 2, - ACTIONS(6974), 1, + [113359] = 2, + ACTIONS(7047), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112700] = 2, - ACTIONS(6976), 1, + [113367] = 2, + ACTIONS(7049), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112708] = 2, - ACTIONS(6978), 1, + [113375] = 2, + ACTIONS(7051), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112716] = 2, - ACTIONS(6980), 1, + [113383] = 2, + ACTIONS(7053), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112724] = 2, - ACTIONS(6982), 1, + [113391] = 2, + ACTIONS(7055), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112732] = 2, - ACTIONS(6984), 1, + [113399] = 2, + ACTIONS(7057), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112740] = 2, - ACTIONS(6986), 1, + [113407] = 2, + ACTIONS(7059), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112748] = 2, - ACTIONS(6988), 1, + [113415] = 2, + ACTIONS(7061), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112756] = 2, - ACTIONS(6990), 1, + [113423] = 2, + ACTIONS(7063), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112764] = 2, - ACTIONS(6992), 1, + [113431] = 2, + ACTIONS(7065), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112772] = 2, - ACTIONS(6994), 1, + [113439] = 2, + ACTIONS(7067), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112780] = 2, - ACTIONS(6996), 1, + [113447] = 2, + ACTIONS(7069), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112788] = 2, - ACTIONS(6998), 1, + [113455] = 2, + ACTIONS(7071), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112796] = 2, - ACTIONS(7000), 1, + [113463] = 2, + ACTIONS(7073), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112804] = 2, - ACTIONS(7002), 1, + [113471] = 2, + ACTIONS(7075), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112812] = 2, - ACTIONS(7004), 1, - ts_builtin_sym_end, + [113479] = 2, + ACTIONS(7077), 1, + anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112820] = 2, - ACTIONS(7006), 1, + [113487] = 2, + ACTIONS(7079), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112828] = 2, - ACTIONS(7008), 1, + [113495] = 2, + ACTIONS(7081), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112836] = 2, - ACTIONS(7010), 1, - anon_sym_RPAREN, + [113503] = 2, + ACTIONS(7083), 1, + anon_sym_STAR, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112844] = 2, - ACTIONS(7012), 1, + [113511] = 2, + ACTIONS(7085), 1, anon_sym_while, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112852] = 2, - ACTIONS(7014), 1, - anon_sym_LPAREN2, - ACTIONS(5), 2, + [113519] = 3, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - [112860] = 2, - ACTIONS(7016), 1, + ACTIONS(7087), 1, + sym_identifier, + [113529] = 2, + ACTIONS(7089), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112868] = 2, - ACTIONS(7018), 1, + [113537] = 2, + ACTIONS(7091), 1, anon_sym_while, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112876] = 2, - ACTIONS(7020), 1, + [113545] = 2, + ACTIONS(7093), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112884] = 2, - ACTIONS(7022), 1, + [113553] = 2, + ACTIONS(7095), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112892] = 2, - ACTIONS(7024), 1, + [113561] = 2, + ACTIONS(7097), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112900] = 2, - ACTIONS(7026), 1, + [113569] = 2, + ACTIONS(7099), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112908] = 2, - ACTIONS(7028), 1, - anon_sym_LPAREN2, - ACTIONS(5), 2, + [113577] = 2, + ACTIONS(7101), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [112916] = 2, - ACTIONS(7030), 1, - anon_sym_LPAREN2, + [113585] = 2, + ACTIONS(7103), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112924] = 3, - ACTIONS(3), 1, + [113593] = 2, + ACTIONS(7105), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, sym__linux_kernel_annotations, - ACTIONS(5), 1, sym_comment, - ACTIONS(7032), 1, - sym_identifier, - [112934] = 2, - ACTIONS(7034), 1, + [113601] = 2, + ACTIONS(7107), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112942] = 2, - ACTIONS(7036), 1, - anon_sym_SEMI, + [113609] = 2, + ACTIONS(7109), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112950] = 2, - ACTIONS(7038), 1, - anon_sym_SEMI, + [113617] = 2, + ACTIONS(7111), 1, + sym_primitive_type, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112958] = 2, - ACTIONS(7040), 1, + [113625] = 2, + ACTIONS(2725), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112966] = 2, - ACTIONS(4122), 1, - anon_sym_COLON, + [113633] = 2, + ACTIONS(7113), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112974] = 2, - ACTIONS(7042), 1, + [113641] = 2, + ACTIONS(7115), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112982] = 2, - ACTIONS(7044), 1, - anon_sym_COLON, + [113649] = 2, + ACTIONS(7117), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [112990] = 2, - ACTIONS(6082), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, + [113657] = 3, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - [112998] = 2, - ACTIONS(7046), 1, - sym_primitive_type, + ACTIONS(7119), 1, + sym_identifier, + [113667] = 2, + ACTIONS(4910), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [113006] = 2, - ACTIONS(7048), 1, + [113675] = 2, + ACTIONS(4233), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [113014] = 2, - ACTIONS(7050), 1, + [113683] = 2, + ACTIONS(7121), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [113022] = 2, - ACTIONS(7052), 1, - anon_sym_LPAREN2, - ACTIONS(5), 2, + [113691] = 3, + ACTIONS(3), 1, sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - [113030] = 2, - ACTIONS(7054), 1, - anon_sym_LPAREN2, + ACTIONS(7123), 1, + sym_identifier, + [113701] = 2, + ACTIONS(7125), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [113038] = 2, - ACTIONS(7056), 1, + [113709] = 2, + ACTIONS(7127), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [113046] = 2, - ACTIONS(4837), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, + [113717] = 2, + ACTIONS(7129), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [113054] = 2, - ACTIONS(7058), 1, + [113725] = 2, + ACTIONS(7131), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [113062] = 2, - ACTIONS(7060), 1, - anon_sym_LPAREN2, + [113733] = 2, + ACTIONS(7133), 1, + aux_sym_preproc_if_token2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [113070] = 2, - ACTIONS(7062), 1, + [113741] = 2, + ACTIONS(7135), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [113078] = 2, - ACTIONS(7064), 1, - anon_sym_LPAREN2, - ACTIONS(5), 2, + [113749] = 2, + ACTIONS(4540), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, sym__linux_kernel_annotations, sym_comment, - [113086] = 2, - ACTIONS(7066), 1, - anon_sym_RPAREN, + [113757] = 2, + ACTIONS(7137), 1, + anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [113094] = 3, + [113765] = 3, ACTIONS(3), 1, sym__linux_kernel_annotations, ACTIONS(5), 1, sym_comment, - ACTIONS(7068), 1, + ACTIONS(7139), 1, sym_identifier, - [113104] = 2, - ACTIONS(7070), 1, + [113775] = 2, + ACTIONS(7141), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, sym_comment, - [113112] = 2, - ACTIONS(7072), 1, + [113783] = 2, + ACTIONS(7143), 1, anon_sym_LPAREN2, ACTIONS(5), 2, sym__linux_kernel_annotations, @@ -176318,2856 +178008,2873 @@ static const uint16_t ts_small_parse_table[] = { }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(611)] = 0, - [SMALL_STATE(612)] = 117, - [SMALL_STATE(613)] = 234, - [SMALL_STATE(614)] = 351, - [SMALL_STATE(615)] = 468, - [SMALL_STATE(616)] = 582, - [SMALL_STATE(617)] = 695, - [SMALL_STATE(618)] = 808, - [SMALL_STATE(619)] = 897, - [SMALL_STATE(620)] = 1008, - [SMALL_STATE(621)] = 1119, - [SMALL_STATE(622)] = 1232, - [SMALL_STATE(623)] = 1345, - [SMALL_STATE(624)] = 1456, - [SMALL_STATE(625)] = 1569, - [SMALL_STATE(626)] = 1682, - [SMALL_STATE(627)] = 1795, - [SMALL_STATE(628)] = 1906, - [SMALL_STATE(629)] = 2019, - [SMALL_STATE(630)] = 2130, - [SMALL_STATE(631)] = 2243, - [SMALL_STATE(632)] = 2354, - [SMALL_STATE(633)] = 2467, - [SMALL_STATE(634)] = 2582, - [SMALL_STATE(635)] = 2693, - [SMALL_STATE(636)] = 2804, - [SMALL_STATE(637)] = 2915, - [SMALL_STATE(638)] = 3026, - [SMALL_STATE(639)] = 3139, - [SMALL_STATE(640)] = 3252, - [SMALL_STATE(641)] = 3363, - [SMALL_STATE(642)] = 3474, - [SMALL_STATE(643)] = 3585, - [SMALL_STATE(644)] = 3696, - [SMALL_STATE(645)] = 3809, - [SMALL_STATE(646)] = 3920, - [SMALL_STATE(647)] = 4031, - [SMALL_STATE(648)] = 4142, - [SMALL_STATE(649)] = 4253, - [SMALL_STATE(650)] = 4366, - [SMALL_STATE(651)] = 4479, - [SMALL_STATE(652)] = 4592, - [SMALL_STATE(653)] = 4705, - [SMALL_STATE(654)] = 4818, - [SMALL_STATE(655)] = 4931, - [SMALL_STATE(656)] = 5042, - [SMALL_STATE(657)] = 5153, - [SMALL_STATE(658)] = 5266, - [SMALL_STATE(659)] = 5379, - [SMALL_STATE(660)] = 5492, - [SMALL_STATE(661)] = 5605, - [SMALL_STATE(662)] = 5718, - [SMALL_STATE(663)] = 5831, - [SMALL_STATE(664)] = 5944, - [SMALL_STATE(665)] = 6055, - [SMALL_STATE(666)] = 6168, - [SMALL_STATE(667)] = 6281, - [SMALL_STATE(668)] = 6394, - [SMALL_STATE(669)] = 6507, - [SMALL_STATE(670)] = 6620, - [SMALL_STATE(671)] = 6731, - [SMALL_STATE(672)] = 6842, - [SMALL_STATE(673)] = 6953, - [SMALL_STATE(674)] = 7064, - [SMALL_STATE(675)] = 7175, - [SMALL_STATE(676)] = 7286, - [SMALL_STATE(677)] = 7397, - [SMALL_STATE(678)] = 7510, - [SMALL_STATE(679)] = 7625, - [SMALL_STATE(680)] = 7736, - [SMALL_STATE(681)] = 7847, - [SMALL_STATE(682)] = 7958, - [SMALL_STATE(683)] = 8069, - [SMALL_STATE(684)] = 8182, - [SMALL_STATE(685)] = 8295, - [SMALL_STATE(686)] = 8386, - [SMALL_STATE(687)] = 8497, - [SMALL_STATE(688)] = 8608, - [SMALL_STATE(689)] = 8721, - [SMALL_STATE(690)] = 8834, - [SMALL_STATE(691)] = 8947, - [SMALL_STATE(692)] = 9060, - [SMALL_STATE(693)] = 9168, - [SMALL_STATE(694)] = 9276, - [SMALL_STATE(695)] = 9384, - [SMALL_STATE(696)] = 9492, - [SMALL_STATE(697)] = 9602, - [SMALL_STATE(698)] = 9712, - [SMALL_STATE(699)] = 9820, - [SMALL_STATE(700)] = 9930, - [SMALL_STATE(701)] = 10038, - [SMALL_STATE(702)] = 10146, - [SMALL_STATE(703)] = 10256, - [SMALL_STATE(704)] = 10364, - [SMALL_STATE(705)] = 10472, - [SMALL_STATE(706)] = 10580, - [SMALL_STATE(707)] = 10688, - [SMALL_STATE(708)] = 10796, - [SMALL_STATE(709)] = 10904, - [SMALL_STATE(710)] = 11012, - [SMALL_STATE(711)] = 11120, - [SMALL_STATE(712)] = 11228, - [SMALL_STATE(713)] = 11340, - [SMALL_STATE(714)] = 11450, - [SMALL_STATE(715)] = 11560, - [SMALL_STATE(716)] = 11668, - [SMALL_STATE(717)] = 11773, - [SMALL_STATE(718)] = 11878, - [SMALL_STATE(719)] = 11983, - [SMALL_STATE(720)] = 12088, - [SMALL_STATE(721)] = 12193, - [SMALL_STATE(722)] = 12298, - [SMALL_STATE(723)] = 12403, - [SMALL_STATE(724)] = 12508, - [SMALL_STATE(725)] = 12613, - [SMALL_STATE(726)] = 12718, - [SMALL_STATE(727)] = 12823, - [SMALL_STATE(728)] = 12928, - [SMALL_STATE(729)] = 13033, - [SMALL_STATE(730)] = 13138, - [SMALL_STATE(731)] = 13243, - [SMALL_STATE(732)] = 13348, - [SMALL_STATE(733)] = 13453, - [SMALL_STATE(734)] = 13558, - [SMALL_STATE(735)] = 13663, - [SMALL_STATE(736)] = 13768, - [SMALL_STATE(737)] = 13873, - [SMALL_STATE(738)] = 13978, - [SMALL_STATE(739)] = 14083, - [SMALL_STATE(740)] = 14188, - [SMALL_STATE(741)] = 14293, - [SMALL_STATE(742)] = 14398, - [SMALL_STATE(743)] = 14503, - [SMALL_STATE(744)] = 14608, - [SMALL_STATE(745)] = 14713, - [SMALL_STATE(746)] = 14818, - [SMALL_STATE(747)] = 14923, - [SMALL_STATE(748)] = 15028, - [SMALL_STATE(749)] = 15133, - [SMALL_STATE(750)] = 15238, - [SMALL_STATE(751)] = 15343, - [SMALL_STATE(752)] = 15448, - [SMALL_STATE(753)] = 15553, - [SMALL_STATE(754)] = 15658, - [SMALL_STATE(755)] = 15763, - [SMALL_STATE(756)] = 15868, - [SMALL_STATE(757)] = 15973, - [SMALL_STATE(758)] = 16078, - [SMALL_STATE(759)] = 16183, - [SMALL_STATE(760)] = 16288, - [SMALL_STATE(761)] = 16393, - [SMALL_STATE(762)] = 16498, - [SMALL_STATE(763)] = 16603, - [SMALL_STATE(764)] = 16708, - [SMALL_STATE(765)] = 16813, - [SMALL_STATE(766)] = 16918, - [SMALL_STATE(767)] = 17023, - [SMALL_STATE(768)] = 17128, - [SMALL_STATE(769)] = 17233, - [SMALL_STATE(770)] = 17338, - [SMALL_STATE(771)] = 17443, - [SMALL_STATE(772)] = 17548, - [SMALL_STATE(773)] = 17653, - [SMALL_STATE(774)] = 17758, - [SMALL_STATE(775)] = 17863, - [SMALL_STATE(776)] = 17968, - [SMALL_STATE(777)] = 18073, - [SMALL_STATE(778)] = 18178, - [SMALL_STATE(779)] = 18283, - [SMALL_STATE(780)] = 18388, - [SMALL_STATE(781)] = 18493, - [SMALL_STATE(782)] = 18598, - [SMALL_STATE(783)] = 18703, - [SMALL_STATE(784)] = 18808, - [SMALL_STATE(785)] = 18913, - [SMALL_STATE(786)] = 19018, - [SMALL_STATE(787)] = 19123, - [SMALL_STATE(788)] = 19228, - [SMALL_STATE(789)] = 19333, - [SMALL_STATE(790)] = 19438, - [SMALL_STATE(791)] = 19543, - [SMALL_STATE(792)] = 19648, - [SMALL_STATE(793)] = 19753, - [SMALL_STATE(794)] = 19858, - [SMALL_STATE(795)] = 19963, - [SMALL_STATE(796)] = 20068, - [SMALL_STATE(797)] = 20173, - [SMALL_STATE(798)] = 20278, - [SMALL_STATE(799)] = 20383, - [SMALL_STATE(800)] = 20488, - [SMALL_STATE(801)] = 20593, - [SMALL_STATE(802)] = 20698, - [SMALL_STATE(803)] = 20803, - [SMALL_STATE(804)] = 20908, - [SMALL_STATE(805)] = 21013, - [SMALL_STATE(806)] = 21118, - [SMALL_STATE(807)] = 21223, - [SMALL_STATE(808)] = 21328, - [SMALL_STATE(809)] = 21433, - [SMALL_STATE(810)] = 21538, - [SMALL_STATE(811)] = 21643, - [SMALL_STATE(812)] = 21748, - [SMALL_STATE(813)] = 21853, - [SMALL_STATE(814)] = 21958, - [SMALL_STATE(815)] = 22063, - [SMALL_STATE(816)] = 22168, - [SMALL_STATE(817)] = 22273, - [SMALL_STATE(818)] = 22378, - [SMALL_STATE(819)] = 22483, - [SMALL_STATE(820)] = 22588, - [SMALL_STATE(821)] = 22693, - [SMALL_STATE(822)] = 22798, - [SMALL_STATE(823)] = 22903, - [SMALL_STATE(824)] = 23008, - [SMALL_STATE(825)] = 23113, - [SMALL_STATE(826)] = 23218, - [SMALL_STATE(827)] = 23323, - [SMALL_STATE(828)] = 23428, - [SMALL_STATE(829)] = 23533, - [SMALL_STATE(830)] = 23638, - [SMALL_STATE(831)] = 23743, - [SMALL_STATE(832)] = 23848, - [SMALL_STATE(833)] = 23953, - [SMALL_STATE(834)] = 24058, - [SMALL_STATE(835)] = 24163, - [SMALL_STATE(836)] = 24268, - [SMALL_STATE(837)] = 24373, - [SMALL_STATE(838)] = 24478, - [SMALL_STATE(839)] = 24583, - [SMALL_STATE(840)] = 24688, - [SMALL_STATE(841)] = 24793, - [SMALL_STATE(842)] = 24898, - [SMALL_STATE(843)] = 25003, - [SMALL_STATE(844)] = 25108, - [SMALL_STATE(845)] = 25213, - [SMALL_STATE(846)] = 25318, - [SMALL_STATE(847)] = 25423, - [SMALL_STATE(848)] = 25528, - [SMALL_STATE(849)] = 25633, - [SMALL_STATE(850)] = 25738, - [SMALL_STATE(851)] = 25843, - [SMALL_STATE(852)] = 25948, - [SMALL_STATE(853)] = 26053, - [SMALL_STATE(854)] = 26158, - [SMALL_STATE(855)] = 26263, - [SMALL_STATE(856)] = 26368, - [SMALL_STATE(857)] = 26473, - [SMALL_STATE(858)] = 26578, - [SMALL_STATE(859)] = 26683, - [SMALL_STATE(860)] = 26788, - [SMALL_STATE(861)] = 26893, - [SMALL_STATE(862)] = 26998, - [SMALL_STATE(863)] = 27103, - [SMALL_STATE(864)] = 27208, - [SMALL_STATE(865)] = 27313, - [SMALL_STATE(866)] = 27418, - [SMALL_STATE(867)] = 27523, - [SMALL_STATE(868)] = 27628, - [SMALL_STATE(869)] = 27733, - [SMALL_STATE(870)] = 27838, - [SMALL_STATE(871)] = 27943, - [SMALL_STATE(872)] = 28028, - [SMALL_STATE(873)] = 28101, - [SMALL_STATE(874)] = 28204, - [SMALL_STATE(875)] = 28307, - [SMALL_STATE(876)] = 28380, - [SMALL_STATE(877)] = 28483, - [SMALL_STATE(878)] = 28586, - [SMALL_STATE(879)] = 28653, - [SMALL_STATE(880)] = 28756, - [SMALL_STATE(881)] = 28859, - [SMALL_STATE(882)] = 28926, - [SMALL_STATE(883)] = 29029, - [SMALL_STATE(884)] = 29132, - [SMALL_STATE(885)] = 29217, - [SMALL_STATE(886)] = 29284, - [SMALL_STATE(887)] = 29387, - [SMALL_STATE(888)] = 29490, - [SMALL_STATE(889)] = 29593, - [SMALL_STATE(890)] = 29666, - [SMALL_STATE(891)] = 29769, - [SMALL_STATE(892)] = 29869, - [SMALL_STATE(893)] = 29955, - [SMALL_STATE(894)] = 30055, - [SMALL_STATE(895)] = 30126, - [SMALL_STATE(896)] = 30191, - [SMALL_STATE(897)] = 30262, - [SMALL_STATE(898)] = 30327, - [SMALL_STATE(899)] = 30398, - [SMALL_STATE(900)] = 30462, - [SMALL_STATE(901)] = 30526, - [SMALL_STATE(902)] = 30590, - [SMALL_STATE(903)] = 30654, - [SMALL_STATE(904)] = 30718, - [SMALL_STATE(905)] = 30782, - [SMALL_STATE(906)] = 30846, - [SMALL_STATE(907)] = 30910, - [SMALL_STATE(908)] = 30974, - [SMALL_STATE(909)] = 31038, - [SMALL_STATE(910)] = 31102, - [SMALL_STATE(911)] = 31166, - [SMALL_STATE(912)] = 31230, - [SMALL_STATE(913)] = 31294, - [SMALL_STATE(914)] = 31358, - [SMALL_STATE(915)] = 31422, - [SMALL_STATE(916)] = 31492, - [SMALL_STATE(917)] = 31556, - [SMALL_STATE(918)] = 31620, - [SMALL_STATE(919)] = 31705, - [SMALL_STATE(920)] = 31768, - [SMALL_STATE(921)] = 31831, - [SMALL_STATE(922)] = 31894, - [SMALL_STATE(923)] = 31961, - [SMALL_STATE(924)] = 32046, - [SMALL_STATE(925)] = 32131, - [SMALL_STATE(926)] = 32216, - [SMALL_STATE(927)] = 32279, - [SMALL_STATE(928)] = 32342, - [SMALL_STATE(929)] = 32405, - [SMALL_STATE(930)] = 32468, - [SMALL_STATE(931)] = 32531, - [SMALL_STATE(932)] = 32602, - [SMALL_STATE(933)] = 32684, - [SMALL_STATE(934)] = 32746, - [SMALL_STATE(935)] = 32808, - [SMALL_STATE(936)] = 32880, - [SMALL_STATE(937)] = 32962, - [SMALL_STATE(938)] = 33044, - [SMALL_STATE(939)] = 33126, - [SMALL_STATE(940)] = 33208, - [SMALL_STATE(941)] = 33270, - [SMALL_STATE(942)] = 33335, - [SMALL_STATE(943)] = 33404, - [SMALL_STATE(944)] = 33471, - [SMALL_STATE(945)] = 33538, - [SMALL_STATE(946)] = 33598, - [SMALL_STATE(947)] = 33660, - [SMALL_STATE(948)] = 33720, - [SMALL_STATE(949)] = 33780, - [SMALL_STATE(950)] = 33840, - [SMALL_STATE(951)] = 33900, - [SMALL_STATE(952)] = 33960, - [SMALL_STATE(953)] = 34020, - [SMALL_STATE(954)] = 34080, - [SMALL_STATE(955)] = 34140, - [SMALL_STATE(956)] = 34200, - [SMALL_STATE(957)] = 34264, - [SMALL_STATE(958)] = 34324, - [SMALL_STATE(959)] = 34384, - [SMALL_STATE(960)] = 34444, - [SMALL_STATE(961)] = 34504, - [SMALL_STATE(962)] = 34564, - [SMALL_STATE(963)] = 34624, - [SMALL_STATE(964)] = 34684, - [SMALL_STATE(965)] = 34744, - [SMALL_STATE(966)] = 34804, - [SMALL_STATE(967)] = 34864, - [SMALL_STATE(968)] = 34924, - [SMALL_STATE(969)] = 34984, - [SMALL_STATE(970)] = 35044, - [SMALL_STATE(971)] = 35104, - [SMALL_STATE(972)] = 35164, - [SMALL_STATE(973)] = 35224, - [SMALL_STATE(974)] = 35288, - [SMALL_STATE(975)] = 35348, - [SMALL_STATE(976)] = 35412, - [SMALL_STATE(977)] = 35472, - [SMALL_STATE(978)] = 35532, - [SMALL_STATE(979)] = 35596, - [SMALL_STATE(980)] = 35660, - [SMALL_STATE(981)] = 35720, - [SMALL_STATE(982)] = 35784, - [SMALL_STATE(983)] = 35852, - [SMALL_STATE(984)] = 35912, - [SMALL_STATE(985)] = 35976, - [SMALL_STATE(986)] = 36036, - [SMALL_STATE(987)] = 36096, - [SMALL_STATE(988)] = 36160, - [SMALL_STATE(989)] = 36220, - [SMALL_STATE(990)] = 36284, - [SMALL_STATE(991)] = 36344, - [SMALL_STATE(992)] = 36404, - [SMALL_STATE(993)] = 36469, - [SMALL_STATE(994)] = 36542, - [SMALL_STATE(995)] = 36615, - [SMALL_STATE(996)] = 36674, - [SMALL_STATE(997)] = 36733, - [SMALL_STATE(998)] = 36806, - [SMALL_STATE(999)] = 36879, - [SMALL_STATE(1000)] = 36944, - [SMALL_STATE(1001)] = 37009, - [SMALL_STATE(1002)] = 37097, - [SMALL_STATE(1003)] = 37169, - [SMALL_STATE(1004)] = 37227, - [SMALL_STATE(1005)] = 37285, - [SMALL_STATE(1006)] = 37349, - [SMALL_STATE(1007)] = 37417, - [SMALL_STATE(1008)] = 37483, - [SMALL_STATE(1009)] = 37541, - [SMALL_STATE(1010)] = 37611, - [SMALL_STATE(1011)] = 37669, - [SMALL_STATE(1012)] = 37737, - [SMALL_STATE(1013)] = 37815, - [SMALL_STATE(1014)] = 37883, - [SMALL_STATE(1015)] = 37951, - [SMALL_STATE(1016)] = 38021, - [SMALL_STATE(1017)] = 38099, - [SMALL_STATE(1018)] = 38177, - [SMALL_STATE(1019)] = 38245, - [SMALL_STATE(1020)] = 38337, - [SMALL_STATE(1021)] = 38395, - [SMALL_STATE(1022)] = 38487, - [SMALL_STATE(1023)] = 38579, - [SMALL_STATE(1024)] = 38637, - [SMALL_STATE(1025)] = 38707, - [SMALL_STATE(1026)] = 38765, - [SMALL_STATE(1027)] = 38823, - [SMALL_STATE(1028)] = 38893, - [SMALL_STATE(1029)] = 38979, - [SMALL_STATE(1030)] = 39037, - [SMALL_STATE(1031)] = 39121, - [SMALL_STATE(1032)] = 39195, - [SMALL_STATE(1033)] = 39277, - [SMALL_STATE(1034)] = 39357, - [SMALL_STATE(1035)] = 39415, - [SMALL_STATE(1036)] = 39493, - [SMALL_STATE(1037)] = 39551, - [SMALL_STATE(1038)] = 39609, - [SMALL_STATE(1039)] = 39687, - [SMALL_STATE(1040)] = 39744, - [SMALL_STATE(1041)] = 39805, - [SMALL_STATE(1042)] = 39862, - [SMALL_STATE(1043)] = 39919, - [SMALL_STATE(1044)] = 39980, - [SMALL_STATE(1045)] = 40037, - [SMALL_STATE(1046)] = 40094, - [SMALL_STATE(1047)] = 40151, - [SMALL_STATE(1048)] = 40208, - [SMALL_STATE(1049)] = 40265, - [SMALL_STATE(1050)] = 40326, - [SMALL_STATE(1051)] = 40387, - [SMALL_STATE(1052)] = 40454, - [SMALL_STATE(1053)] = 40511, - [SMALL_STATE(1054)] = 40568, - [SMALL_STATE(1055)] = 40635, - [SMALL_STATE(1056)] = 40702, - [SMALL_STATE(1057)] = 40759, - [SMALL_STATE(1058)] = 40820, - [SMALL_STATE(1059)] = 40877, - [SMALL_STATE(1060)] = 40934, - [SMALL_STATE(1061)] = 40991, - [SMALL_STATE(1062)] = 41048, - [SMALL_STATE(1063)] = 41105, - [SMALL_STATE(1064)] = 41162, - [SMALL_STATE(1065)] = 41219, - [SMALL_STATE(1066)] = 41276, - [SMALL_STATE(1067)] = 41343, - [SMALL_STATE(1068)] = 41400, - [SMALL_STATE(1069)] = 41457, - [SMALL_STATE(1070)] = 41514, - [SMALL_STATE(1071)] = 41571, - [SMALL_STATE(1072)] = 41628, - [SMALL_STATE(1073)] = 41685, - [SMALL_STATE(1074)] = 41742, - [SMALL_STATE(1075)] = 41799, - [SMALL_STATE(1076)] = 41866, - [SMALL_STATE(1077)] = 41923, - [SMALL_STATE(1078)] = 41990, - [SMALL_STATE(1079)] = 42047, - [SMALL_STATE(1080)] = 42104, - [SMALL_STATE(1081)] = 42161, - [SMALL_STATE(1082)] = 42218, - [SMALL_STATE(1083)] = 42276, - [SMALL_STATE(1084)] = 42340, - [SMALL_STATE(1085)] = 42398, - [SMALL_STATE(1086)] = 42462, - [SMALL_STATE(1087)] = 42522, - [SMALL_STATE(1088)] = 42578, - [SMALL_STATE(1089)] = 42636, - [SMALL_STATE(1090)] = 42700, - [SMALL_STATE(1091)] = 42764, - [SMALL_STATE(1092)] = 42828, - [SMALL_STATE(1093)] = 42884, - [SMALL_STATE(1094)] = 42940, - [SMALL_STATE(1095)] = 43004, - [SMALL_STATE(1096)] = 43068, - [SMALL_STATE(1097)] = 43132, - [SMALL_STATE(1098)] = 43196, - [SMALL_STATE(1099)] = 43254, - [SMALL_STATE(1100)] = 43318, - [SMALL_STATE(1101)] = 43374, - [SMALL_STATE(1102)] = 43438, - [SMALL_STATE(1103)] = 43500, - [SMALL_STATE(1104)] = 43564, - [SMALL_STATE(1105)] = 43628, - [SMALL_STATE(1106)] = 43692, - [SMALL_STATE(1107)] = 43750, - [SMALL_STATE(1108)] = 43808, - [SMALL_STATE(1109)] = 43866, - [SMALL_STATE(1110)] = 43922, - [SMALL_STATE(1111)] = 43980, - [SMALL_STATE(1112)] = 44036, - [SMALL_STATE(1113)] = 44094, - [SMALL_STATE(1114)] = 44158, - [SMALL_STATE(1115)] = 44222, - [SMALL_STATE(1116)] = 44286, - [SMALL_STATE(1117)] = 44345, - [SMALL_STATE(1118)] = 44400, - [SMALL_STATE(1119)] = 44461, - [SMALL_STATE(1120)] = 44516, - [SMALL_STATE(1121)] = 44571, - [SMALL_STATE(1122)] = 44626, - [SMALL_STATE(1123)] = 44681, - [SMALL_STATE(1124)] = 44736, - [SMALL_STATE(1125)] = 44791, - [SMALL_STATE(1126)] = 44846, - [SMALL_STATE(1127)] = 44901, - [SMALL_STATE(1128)] = 44956, - [SMALL_STATE(1129)] = 45011, - [SMALL_STATE(1130)] = 45076, - [SMALL_STATE(1131)] = 45131, - [SMALL_STATE(1132)] = 45186, - [SMALL_STATE(1133)] = 45241, - [SMALL_STATE(1134)] = 45308, - [SMALL_STATE(1135)] = 45367, - [SMALL_STATE(1136)] = 45422, - [SMALL_STATE(1137)] = 45487, - [SMALL_STATE(1138)] = 45542, - [SMALL_STATE(1139)] = 45597, - [SMALL_STATE(1140)] = 45650, - [SMALL_STATE(1141)] = 45705, - [SMALL_STATE(1142)] = 45760, - [SMALL_STATE(1143)] = 45815, - [SMALL_STATE(1144)] = 45870, - [SMALL_STATE(1145)] = 45935, - [SMALL_STATE(1146)] = 45990, - [SMALL_STATE(1147)] = 46045, - [SMALL_STATE(1148)] = 46100, - [SMALL_STATE(1149)] = 46161, - [SMALL_STATE(1150)] = 46216, - [SMALL_STATE(1151)] = 46271, - [SMALL_STATE(1152)] = 46326, - [SMALL_STATE(1153)] = 46391, - [SMALL_STATE(1154)] = 46480, - [SMALL_STATE(1155)] = 46539, - [SMALL_STATE(1156)] = 46598, - [SMALL_STATE(1157)] = 46657, - [SMALL_STATE(1158)] = 46716, - [SMALL_STATE(1159)] = 46771, - [SMALL_STATE(1160)] = 46838, - [SMALL_STATE(1161)] = 46927, - [SMALL_STATE(1162)] = 46986, - [SMALL_STATE(1163)] = 47075, - [SMALL_STATE(1164)] = 47130, - [SMALL_STATE(1165)] = 47185, - [SMALL_STATE(1166)] = 47254, - [SMALL_STATE(1167)] = 47309, - [SMALL_STATE(1168)] = 47380, - [SMALL_STATE(1169)] = 47435, - [SMALL_STATE(1170)] = 47490, - [SMALL_STATE(1171)] = 47545, - [SMALL_STATE(1172)] = 47610, - [SMALL_STATE(1173)] = 47665, - [SMALL_STATE(1174)] = 47720, - [SMALL_STATE(1175)] = 47775, - [SMALL_STATE(1176)] = 47830, - [SMALL_STATE(1177)] = 47885, - [SMALL_STATE(1178)] = 47940, - [SMALL_STATE(1179)] = 48015, - [SMALL_STATE(1180)] = 48092, - [SMALL_STATE(1181)] = 48171, - [SMALL_STATE(1182)] = 48252, - [SMALL_STATE(1183)] = 48315, - [SMALL_STATE(1184)] = 48398, - [SMALL_STATE(1185)] = 48483, - [SMALL_STATE(1186)] = 48537, - [SMALL_STATE(1187)] = 48591, - [SMALL_STATE(1188)] = 48643, - [SMALL_STATE(1189)] = 48697, - [SMALL_STATE(1190)] = 48749, - [SMALL_STATE(1191)] = 48803, - [SMALL_STATE(1192)] = 48855, - [SMALL_STATE(1193)] = 48923, - [SMALL_STATE(1194)] = 48975, - [SMALL_STATE(1195)] = 49027, - [SMALL_STATE(1196)] = 49081, - [SMALL_STATE(1197)] = 49133, - [SMALL_STATE(1198)] = 49187, - [SMALL_STATE(1199)] = 49241, - [SMALL_STATE(1200)] = 49293, - [SMALL_STATE(1201)] = 49347, - [SMALL_STATE(1202)] = 49401, - [SMALL_STATE(1203)] = 49455, - [SMALL_STATE(1204)] = 49509, - [SMALL_STATE(1205)] = 49563, - [SMALL_STATE(1206)] = 49617, - [SMALL_STATE(1207)] = 49671, - [SMALL_STATE(1208)] = 49723, - [SMALL_STATE(1209)] = 49775, - [SMALL_STATE(1210)] = 49829, - [SMALL_STATE(1211)] = 49883, - [SMALL_STATE(1212)] = 49937, - [SMALL_STATE(1213)] = 49991, - [SMALL_STATE(1214)] = 50045, - [SMALL_STATE(1215)] = 50097, - [SMALL_STATE(1216)] = 50149, - [SMALL_STATE(1217)] = 50211, - [SMALL_STATE(1218)] = 50265, - [SMALL_STATE(1219)] = 50319, - [SMALL_STATE(1220)] = 50371, - [SMALL_STATE(1221)] = 50423, - [SMALL_STATE(1222)] = 50475, - [SMALL_STATE(1223)] = 50533, - [SMALL_STATE(1224)] = 50585, - [SMALL_STATE(1225)] = 50639, - [SMALL_STATE(1226)] = 50693, - [SMALL_STATE(1227)] = 50745, - [SMALL_STATE(1228)] = 50809, - [SMALL_STATE(1229)] = 50863, - [SMALL_STATE(1230)] = 50917, - [SMALL_STATE(1231)] = 50971, - [SMALL_STATE(1232)] = 51025, - [SMALL_STATE(1233)] = 51079, - [SMALL_STATE(1234)] = 51131, - [SMALL_STATE(1235)] = 51185, - [SMALL_STATE(1236)] = 51237, - [SMALL_STATE(1237)] = 51289, - [SMALL_STATE(1238)] = 51357, - [SMALL_STATE(1239)] = 51425, - [SMALL_STATE(1240)] = 51477, - [SMALL_STATE(1241)] = 51531, - [SMALL_STATE(1242)] = 51585, - [SMALL_STATE(1243)] = 51639, - [SMALL_STATE(1244)] = 51691, - [SMALL_STATE(1245)] = 51743, - [SMALL_STATE(1246)] = 51795, - [SMALL_STATE(1247)] = 51847, - [SMALL_STATE(1248)] = 51901, - [SMALL_STATE(1249)] = 51955, - [SMALL_STATE(1250)] = 52009, - [SMALL_STATE(1251)] = 52061, - [SMALL_STATE(1252)] = 52129, - [SMALL_STATE(1253)] = 52181, - [SMALL_STATE(1254)] = 52233, - [SMALL_STATE(1255)] = 52287, - [SMALL_STATE(1256)] = 52341, - [SMALL_STATE(1257)] = 52395, - [SMALL_STATE(1258)] = 52458, - [SMALL_STATE(1259)] = 52509, - [SMALL_STATE(1260)] = 52590, - [SMALL_STATE(1261)] = 52669, - [SMALL_STATE(1262)] = 52746, - [SMALL_STATE(1263)] = 52821, - [SMALL_STATE(1264)] = 52894, - [SMALL_STATE(1265)] = 52965, - [SMALL_STATE(1266)] = 53032, - [SMALL_STATE(1267)] = 53097, - [SMALL_STATE(1268)] = 53186, - [SMALL_STATE(1269)] = 53237, - [SMALL_STATE(1270)] = 53290, - [SMALL_STATE(1271)] = 53351, - [SMALL_STATE(1272)] = 53414, - [SMALL_STATE(1273)] = 53465, - [SMALL_STATE(1274)] = 53526, - [SMALL_STATE(1275)] = 53611, - [SMALL_STATE(1276)] = 53672, - [SMALL_STATE(1277)] = 53761, - [SMALL_STATE(1278)] = 53846, - [SMALL_STATE(1279)] = 53905, - [SMALL_STATE(1280)] = 53970, - [SMALL_STATE(1281)] = 54035, - [SMALL_STATE(1282)] = 54120, - [SMALL_STATE(1283)] = 54181, - [SMALL_STATE(1284)] = 54246, - [SMALL_STATE(1285)] = 54307, - [SMALL_STATE(1286)] = 54358, - [SMALL_STATE(1287)] = 54410, - [SMALL_STATE(1288)] = 54464, - [SMALL_STATE(1289)] = 54516, - [SMALL_STATE(1290)] = 54568, - [SMALL_STATE(1291)] = 54620, - [SMALL_STATE(1292)] = 54672, - [SMALL_STATE(1293)] = 54726, - [SMALL_STATE(1294)] = 54788, - [SMALL_STATE(1295)] = 54840, - [SMALL_STATE(1296)] = 54892, - [SMALL_STATE(1297)] = 54944, - [SMALL_STATE(1298)] = 54996, - [SMALL_STATE(1299)] = 55048, - [SMALL_STATE(1300)] = 55100, - [SMALL_STATE(1301)] = 55162, - [SMALL_STATE(1302)] = 55214, - [SMALL_STATE(1303)] = 55266, - [SMALL_STATE(1304)] = 55320, - [SMALL_STATE(1305)] = 55372, - [SMALL_STATE(1306)] = 55424, - [SMALL_STATE(1307)] = 55476, - [SMALL_STATE(1308)] = 55528, - [SMALL_STATE(1309)] = 55580, - [SMALL_STATE(1310)] = 55642, - [SMALL_STATE(1311)] = 55694, - [SMALL_STATE(1312)] = 55748, - [SMALL_STATE(1313)] = 55800, - [SMALL_STATE(1314)] = 55862, - [SMALL_STATE(1315)] = 55924, - [SMALL_STATE(1316)] = 55976, - [SMALL_STATE(1317)] = 56038, - [SMALL_STATE(1318)] = 56092, - [SMALL_STATE(1319)] = 56146, - [SMALL_STATE(1320)] = 56199, - [SMALL_STATE(1321)] = 56258, - [SMALL_STATE(1322)] = 56309, - [SMALL_STATE(1323)] = 56360, - [SMALL_STATE(1324)] = 56411, - [SMALL_STATE(1325)] = 56462, - [SMALL_STATE(1326)] = 56513, - [SMALL_STATE(1327)] = 56564, - [SMALL_STATE(1328)] = 56615, - [SMALL_STATE(1329)] = 56666, - [SMALL_STATE(1330)] = 56725, - [SMALL_STATE(1331)] = 56784, - [SMALL_STATE(1332)] = 56837, - [SMALL_STATE(1333)] = 56890, - [SMALL_STATE(1334)] = 56949, - [SMALL_STATE(1335)] = 57002, - [SMALL_STATE(1336)] = 57055, - [SMALL_STATE(1337)] = 57108, - [SMALL_STATE(1338)] = 57161, - [SMALL_STATE(1339)] = 57220, - [SMALL_STATE(1340)] = 57273, - [SMALL_STATE(1341)] = 57332, - [SMALL_STATE(1342)] = 57391, - [SMALL_STATE(1343)] = 57444, - [SMALL_STATE(1344)] = 57504, - [SMALL_STATE(1345)] = 57554, - [SMALL_STATE(1346)] = 57604, - [SMALL_STATE(1347)] = 57654, - [SMALL_STATE(1348)] = 57704, - [SMALL_STATE(1349)] = 57754, - [SMALL_STATE(1350)] = 57804, - [SMALL_STATE(1351)] = 57854, - [SMALL_STATE(1352)] = 57904, - [SMALL_STATE(1353)] = 57954, - [SMALL_STATE(1354)] = 58014, - [SMALL_STATE(1355)] = 58064, - [SMALL_STATE(1356)] = 58114, - [SMALL_STATE(1357)] = 58174, - [SMALL_STATE(1358)] = 58258, - [SMALL_STATE(1359)] = 58342, - [SMALL_STATE(1360)] = 58402, - [SMALL_STATE(1361)] = 58452, - [SMALL_STATE(1362)] = 58512, - [SMALL_STATE(1363)] = 58562, - [SMALL_STATE(1364)] = 58612, - [SMALL_STATE(1365)] = 58676, - [SMALL_STATE(1366)] = 58742, - [SMALL_STATE(1367)] = 58812, - [SMALL_STATE(1368)] = 58884, - [SMALL_STATE(1369)] = 58958, - [SMALL_STATE(1370)] = 59034, - [SMALL_STATE(1371)] = 59114, - [SMALL_STATE(1372)] = 59164, - [SMALL_STATE(1373)] = 59226, - [SMALL_STATE(1374)] = 59310, - [SMALL_STATE(1375)] = 59388, - [SMALL_STATE(1376)] = 59438, - [SMALL_STATE(1377)] = 59488, - [SMALL_STATE(1378)] = 59538, - [SMALL_STATE(1379)] = 59588, - [SMALL_STATE(1380)] = 59638, - [SMALL_STATE(1381)] = 59688, - [SMALL_STATE(1382)] = 59738, - [SMALL_STATE(1383)] = 59788, - [SMALL_STATE(1384)] = 59838, - [SMALL_STATE(1385)] = 59888, - [SMALL_STATE(1386)] = 59938, - [SMALL_STATE(1387)] = 59988, - [SMALL_STATE(1388)] = 60038, - [SMALL_STATE(1389)] = 60088, - [SMALL_STATE(1390)] = 60138, - [SMALL_STATE(1391)] = 60188, - [SMALL_STATE(1392)] = 60238, - [SMALL_STATE(1393)] = 60288, - [SMALL_STATE(1394)] = 60338, - [SMALL_STATE(1395)] = 60388, - [SMALL_STATE(1396)] = 60446, - [SMALL_STATE(1397)] = 60496, - [SMALL_STATE(1398)] = 60543, - [SMALL_STATE(1399)] = 60590, - [SMALL_STATE(1400)] = 60637, - [SMALL_STATE(1401)] = 60716, - [SMALL_STATE(1402)] = 60795, - [SMALL_STATE(1403)] = 60874, - [SMALL_STATE(1404)] = 60921, - [SMALL_STATE(1405)] = 61000, - [SMALL_STATE(1406)] = 61079, - [SMALL_STATE(1407)] = 61130, - [SMALL_STATE(1408)] = 61209, - [SMALL_STATE(1409)] = 61288, - [SMALL_STATE(1410)] = 61367, - [SMALL_STATE(1411)] = 61419, - [SMALL_STATE(1412)] = 61484, - [SMALL_STATE(1413)] = 61565, - [SMALL_STATE(1414)] = 61646, - [SMALL_STATE(1415)] = 61693, - [SMALL_STATE(1416)] = 61740, - [SMALL_STATE(1417)] = 61787, - [SMALL_STATE(1418)] = 61834, - [SMALL_STATE(1419)] = 61897, - [SMALL_STATE(1420)] = 61944, - [SMALL_STATE(1421)] = 61991, - [SMALL_STATE(1422)] = 62038, - [SMALL_STATE(1423)] = 62085, - [SMALL_STATE(1424)] = 62132, - [SMALL_STATE(1425)] = 62179, - [SMALL_STATE(1426)] = 62226, - [SMALL_STATE(1427)] = 62273, - [SMALL_STATE(1428)] = 62320, - [SMALL_STATE(1429)] = 62389, - [SMALL_STATE(1430)] = 62460, - [SMALL_STATE(1431)] = 62507, - [SMALL_STATE(1432)] = 62554, - [SMALL_STATE(1433)] = 62601, - [SMALL_STATE(1434)] = 62674, - [SMALL_STATE(1435)] = 62755, - [SMALL_STATE(1436)] = 62816, - [SMALL_STATE(1437)] = 62897, - [SMALL_STATE(1438)] = 62944, - [SMALL_STATE(1439)] = 63019, - [SMALL_STATE(1440)] = 63066, - [SMALL_STATE(1441)] = 63143, - [SMALL_STATE(1442)] = 63218, - [SMALL_STATE(1443)] = 63291, - [SMALL_STATE(1444)] = 63364, - [SMALL_STATE(1445)] = 63437, - [SMALL_STATE(1446)] = 63510, - [SMALL_STATE(1447)] = 63580, - [SMALL_STATE(1448)] = 63656, - [SMALL_STATE(1449)] = 63726, - [SMALL_STATE(1450)] = 63792, - [SMALL_STATE(1451)] = 63862, - [SMALL_STATE(1452)] = 63932, - [SMALL_STATE(1453)] = 63992, - [SMALL_STATE(1454)] = 64072, - [SMALL_STATE(1455)] = 64142, - [SMALL_STATE(1456)] = 64212, - [SMALL_STATE(1457)] = 64292, - [SMALL_STATE(1458)] = 64372, - [SMALL_STATE(1459)] = 64434, - [SMALL_STATE(1460)] = 64492, - [SMALL_STATE(1461)] = 64572, - [SMALL_STATE(1462)] = 64642, - [SMALL_STATE(1463)] = 64716, - [SMALL_STATE(1464)] = 64788, - [SMALL_STATE(1465)] = 64858, - [SMALL_STATE(1466)] = 64928, - [SMALL_STATE(1467)] = 64998, - [SMALL_STATE(1468)] = 65068, - [SMALL_STATE(1469)] = 65138, - [SMALL_STATE(1470)] = 65208, - [SMALL_STATE(1471)] = 65276, - [SMALL_STATE(1472)] = 65333, - [SMALL_STATE(1473)] = 65390, - [SMALL_STATE(1474)] = 65447, - [SMALL_STATE(1475)] = 65504, - [SMALL_STATE(1476)] = 65570, - [SMALL_STATE(1477)] = 65636, - [SMALL_STATE(1478)] = 65694, - [SMALL_STATE(1479)] = 65750, - [SMALL_STATE(1480)] = 65824, - [SMALL_STATE(1481)] = 65890, - [SMALL_STATE(1482)] = 65956, - [SMALL_STATE(1483)] = 66006, - [SMALL_STATE(1484)] = 66068, - [SMALL_STATE(1485)] = 66132, - [SMALL_STATE(1486)] = 66198, - [SMALL_STATE(1487)] = 66264, - [SMALL_STATE(1488)] = 66330, - [SMALL_STATE(1489)] = 66398, - [SMALL_STATE(1490)] = 66466, - [SMALL_STATE(1491)] = 66536, - [SMALL_STATE(1492)] = 66590, - [SMALL_STATE(1493)] = 66656, - [SMALL_STATE(1494)] = 66722, - [SMALL_STATE(1495)] = 66788, - [SMALL_STATE(1496)] = 66854, - [SMALL_STATE(1497)] = 66920, - [SMALL_STATE(1498)] = 66986, - [SMALL_STATE(1499)] = 67052, - [SMALL_STATE(1500)] = 67118, - [SMALL_STATE(1501)] = 67184, - [SMALL_STATE(1502)] = 67258, - [SMALL_STATE(1503)] = 67332, - [SMALL_STATE(1504)] = 67398, - [SMALL_STATE(1505)] = 67452, - [SMALL_STATE(1506)] = 67518, - [SMALL_STATE(1507)] = 67584, - [SMALL_STATE(1508)] = 67638, - [SMALL_STATE(1509)] = 67704, - [SMALL_STATE(1510)] = 67770, - [SMALL_STATE(1511)] = 67836, - [SMALL_STATE(1512)] = 67890, - [SMALL_STATE(1513)] = 67956, - [SMALL_STATE(1514)] = 68022, - [SMALL_STATE(1515)] = 68088, - [SMALL_STATE(1516)] = 68151, - [SMALL_STATE(1517)] = 68214, - [SMALL_STATE(1518)] = 68277, - [SMALL_STATE(1519)] = 68328, - [SMALL_STATE(1520)] = 68379, - [SMALL_STATE(1521)] = 68442, - [SMALL_STATE(1522)] = 68493, - [SMALL_STATE(1523)] = 68544, - [SMALL_STATE(1524)] = 68595, - [SMALL_STATE(1525)] = 68658, - [SMALL_STATE(1526)] = 68721, - [SMALL_STATE(1527)] = 68772, - [SMALL_STATE(1528)] = 68835, - [SMALL_STATE(1529)] = 68910, - [SMALL_STATE(1530)] = 68973, - [SMALL_STATE(1531)] = 69036, - [SMALL_STATE(1532)] = 69084, - [SMALL_STATE(1533)] = 69138, - [SMALL_STATE(1534)] = 69214, - [SMALL_STATE(1535)] = 69290, - [SMALL_STATE(1536)] = 69344, - [SMALL_STATE(1537)] = 69384, - [SMALL_STATE(1538)] = 69432, - [SMALL_STATE(1539)] = 69508, - [SMALL_STATE(1540)] = 69584, - [SMALL_STATE(1541)] = 69660, - [SMALL_STATE(1542)] = 69736, - [SMALL_STATE(1543)] = 69812, - [SMALL_STATE(1544)] = 69888, - [SMALL_STATE(1545)] = 69928, - [SMALL_STATE(1546)] = 69976, - [SMALL_STATE(1547)] = 70024, - [SMALL_STATE(1548)] = 70100, - [SMALL_STATE(1549)] = 70176, - [SMALL_STATE(1550)] = 70224, - [SMALL_STATE(1551)] = 70300, - [SMALL_STATE(1552)] = 70348, - [SMALL_STATE(1553)] = 70402, - [SMALL_STATE(1554)] = 70478, - [SMALL_STATE(1555)] = 70554, - [SMALL_STATE(1556)] = 70630, - [SMALL_STATE(1557)] = 70678, - [SMALL_STATE(1558)] = 70726, - [SMALL_STATE(1559)] = 70799, - [SMALL_STATE(1560)] = 70850, - [SMALL_STATE(1561)] = 70923, - [SMALL_STATE(1562)] = 70996, - [SMALL_STATE(1563)] = 71071, - [SMALL_STATE(1564)] = 71144, - [SMALL_STATE(1565)] = 71183, - [SMALL_STATE(1566)] = 71256, - [SMALL_STATE(1567)] = 71329, - [SMALL_STATE(1568)] = 71402, - [SMALL_STATE(1569)] = 71475, - [SMALL_STATE(1570)] = 71548, - [SMALL_STATE(1571)] = 71615, - [SMALL_STATE(1572)] = 71688, - [SMALL_STATE(1573)] = 71727, - [SMALL_STATE(1574)] = 71800, - [SMALL_STATE(1575)] = 71873, - [SMALL_STATE(1576)] = 71946, - [SMALL_STATE(1577)] = 72019, - [SMALL_STATE(1578)] = 72092, - [SMALL_STATE(1579)] = 72165, - [SMALL_STATE(1580)] = 72234, - [SMALL_STATE(1581)] = 72289, - [SMALL_STATE(1582)] = 72346, - [SMALL_STATE(1583)] = 72407, - [SMALL_STATE(1584)] = 72480, - [SMALL_STATE(1585)] = 72553, - [SMALL_STATE(1586)] = 72626, - [SMALL_STATE(1587)] = 72697, - [SMALL_STATE(1588)] = 72750, - [SMALL_STATE(1589)] = 72823, - [SMALL_STATE(1590)] = 72890, - [SMALL_STATE(1591)] = 72963, - [SMALL_STATE(1592)] = 73036, - [SMALL_STATE(1593)] = 73109, - [SMALL_STATE(1594)] = 73180, - [SMALL_STATE(1595)] = 73219, - [SMALL_STATE(1596)] = 73292, - [SMALL_STATE(1597)] = 73331, - [SMALL_STATE(1598)] = 73370, - [SMALL_STATE(1599)] = 73443, - [SMALL_STATE(1600)] = 73514, - [SMALL_STATE(1601)] = 73587, - [SMALL_STATE(1602)] = 73660, - [SMALL_STATE(1603)] = 73731, - [SMALL_STATE(1604)] = 73804, - [SMALL_STATE(1605)] = 73875, - [SMALL_STATE(1606)] = 73946, - [SMALL_STATE(1607)] = 74019, - [SMALL_STATE(1608)] = 74082, - [SMALL_STATE(1609)] = 74153, - [SMALL_STATE(1610)] = 74226, - [SMALL_STATE(1611)] = 74265, - [SMALL_STATE(1612)] = 74338, - [SMALL_STATE(1613)] = 74403, - [SMALL_STATE(1614)] = 74476, - [SMALL_STATE(1615)] = 74549, - [SMALL_STATE(1616)] = 74588, - [SMALL_STATE(1617)] = 74641, - [SMALL_STATE(1618)] = 74714, - [SMALL_STATE(1619)] = 74765, - [SMALL_STATE(1620)] = 74838, - [SMALL_STATE(1621)] = 74909, - [SMALL_STATE(1622)] = 74960, - [SMALL_STATE(1623)] = 75033, - [SMALL_STATE(1624)] = 75106, - [SMALL_STATE(1625)] = 75176, - [SMALL_STATE(1626)] = 75224, - [SMALL_STATE(1627)] = 75294, - [SMALL_STATE(1628)] = 75342, - [SMALL_STATE(1629)] = 75412, - [SMALL_STATE(1630)] = 75460, - [SMALL_STATE(1631)] = 75530, - [SMALL_STATE(1632)] = 75600, - [SMALL_STATE(1633)] = 75670, - [SMALL_STATE(1634)] = 75740, - [SMALL_STATE(1635)] = 75810, - [SMALL_STATE(1636)] = 75880, - [SMALL_STATE(1637)] = 75950, - [SMALL_STATE(1638)] = 76020, - [SMALL_STATE(1639)] = 76090, - [SMALL_STATE(1640)] = 76160, - [SMALL_STATE(1641)] = 76230, - [SMALL_STATE(1642)] = 76300, - [SMALL_STATE(1643)] = 76348, - [SMALL_STATE(1644)] = 76418, - [SMALL_STATE(1645)] = 76488, - [SMALL_STATE(1646)] = 76558, - [SMALL_STATE(1647)] = 76628, - [SMALL_STATE(1648)] = 76698, - [SMALL_STATE(1649)] = 76768, - [SMALL_STATE(1650)] = 76816, - [SMALL_STATE(1651)] = 76864, - [SMALL_STATE(1652)] = 76934, - [SMALL_STATE(1653)] = 77004, - [SMALL_STATE(1654)] = 77074, - [SMALL_STATE(1655)] = 77144, - [SMALL_STATE(1656)] = 77214, - [SMALL_STATE(1657)] = 77284, - [SMALL_STATE(1658)] = 77354, - [SMALL_STATE(1659)] = 77424, - [SMALL_STATE(1660)] = 77494, - [SMALL_STATE(1661)] = 77564, - [SMALL_STATE(1662)] = 77634, - [SMALL_STATE(1663)] = 77704, - [SMALL_STATE(1664)] = 77771, - [SMALL_STATE(1665)] = 77816, - [SMALL_STATE(1666)] = 77861, - [SMALL_STATE(1667)] = 77898, - [SMALL_STATE(1668)] = 77943, - [SMALL_STATE(1669)] = 77980, - [SMALL_STATE(1670)] = 78039, - [SMALL_STATE(1671)] = 78076, - [SMALL_STATE(1672)] = 78113, - [SMALL_STATE(1673)] = 78164, - [SMALL_STATE(1674)] = 78209, - [SMALL_STATE(1675)] = 78264, - [SMALL_STATE(1676)] = 78309, - [SMALL_STATE(1677)] = 78364, - [SMALL_STATE(1678)] = 78401, - [SMALL_STATE(1679)] = 78456, - [SMALL_STATE(1680)] = 78511, - [SMALL_STATE(1681)] = 78556, - [SMALL_STATE(1682)] = 78611, - [SMALL_STATE(1683)] = 78666, - [SMALL_STATE(1684)] = 78725, - [SMALL_STATE(1685)] = 78770, - [SMALL_STATE(1686)] = 78824, - [SMALL_STATE(1687)] = 78888, - [SMALL_STATE(1688)] = 78942, - [SMALL_STATE(1689)] = 78996, - [SMALL_STATE(1690)] = 79032, - [SMALL_STATE(1691)] = 79076, - [SMALL_STATE(1692)] = 79140, - [SMALL_STATE(1693)] = 79194, - [SMALL_STATE(1694)] = 79248, - [SMALL_STATE(1695)] = 79312, - [SMALL_STATE(1696)] = 79348, - [SMALL_STATE(1697)] = 79384, - [SMALL_STATE(1698)] = 79438, - [SMALL_STATE(1699)] = 79474, - [SMALL_STATE(1700)] = 79528, - [SMALL_STATE(1701)] = 79592, - [SMALL_STATE(1702)] = 79628, - [SMALL_STATE(1703)] = 79682, - [SMALL_STATE(1704)] = 79722, - [SMALL_STATE(1705)] = 79776, - [SMALL_STATE(1706)] = 79837, - [SMALL_STATE(1707)] = 79898, - [SMALL_STATE(1708)] = 79939, - [SMALL_STATE(1709)] = 80000, - [SMALL_STATE(1710)] = 80061, - [SMALL_STATE(1711)] = 80122, - [SMALL_STATE(1712)] = 80183, - [SMALL_STATE(1713)] = 80226, - [SMALL_STATE(1714)] = 80287, - [SMALL_STATE(1715)] = 80348, - [SMALL_STATE(1716)] = 80409, - [SMALL_STATE(1717)] = 80470, - [SMALL_STATE(1718)] = 80531, - [SMALL_STATE(1719)] = 80592, - [SMALL_STATE(1720)] = 80634, - [SMALL_STATE(1721)] = 80688, - [SMALL_STATE(1722)] = 80736, - [SMALL_STATE(1723)] = 80778, - [SMALL_STATE(1724)] = 80820, - [SMALL_STATE(1725)] = 80862, - [SMALL_STATE(1726)] = 80893, - [SMALL_STATE(1727)] = 80928, - [SMALL_STATE(1728)] = 80971, - [SMALL_STATE(1729)] = 81026, - [SMALL_STATE(1730)] = 81059, - [SMALL_STATE(1731)] = 81102, - [SMALL_STATE(1732)] = 81137, - [SMALL_STATE(1733)] = 81172, - [SMALL_STATE(1734)] = 81207, - [SMALL_STATE(1735)] = 81262, - [SMALL_STATE(1736)] = 81315, - [SMALL_STATE(1737)] = 81368, - [SMALL_STATE(1738)] = 81401, - [SMALL_STATE(1739)] = 81454, - [SMALL_STATE(1740)] = 81489, - [SMALL_STATE(1741)] = 81544, - [SMALL_STATE(1742)] = 81577, - [SMALL_STATE(1743)] = 81620, - [SMALL_STATE(1744)] = 81655, - [SMALL_STATE(1745)] = 81690, - [SMALL_STATE(1746)] = 81743, - [SMALL_STATE(1747)] = 81778, - [SMALL_STATE(1748)] = 81821, - [SMALL_STATE(1749)] = 81854, - [SMALL_STATE(1750)] = 81905, - [SMALL_STATE(1751)] = 81942, - [SMALL_STATE(1752)] = 81973, - [SMALL_STATE(1753)] = 82008, - [SMALL_STATE(1754)] = 82054, - [SMALL_STATE(1755)] = 82104, - [SMALL_STATE(1756)] = 82138, - [SMALL_STATE(1757)] = 82184, - [SMALL_STATE(1758)] = 82234, - [SMALL_STATE(1759)] = 82268, - [SMALL_STATE(1760)] = 82322, - [SMALL_STATE(1761)] = 82358, - [SMALL_STATE(1762)] = 82390, - [SMALL_STATE(1763)] = 82426, - [SMALL_STATE(1764)] = 82476, - [SMALL_STATE(1765)] = 82512, - [SMALL_STATE(1766)] = 82548, - [SMALL_STATE(1767)] = 82584, - [SMALL_STATE(1768)] = 82630, - [SMALL_STATE(1769)] = 82680, - [SMALL_STATE(1770)] = 82730, - [SMALL_STATE(1771)] = 82762, - [SMALL_STATE(1772)] = 82818, - [SMALL_STATE(1773)] = 82854, - [SMALL_STATE(1774)] = 82890, - [SMALL_STATE(1775)] = 82946, - [SMALL_STATE(1776)] = 82980, - [SMALL_STATE(1777)] = 83036, - [SMALL_STATE(1778)] = 83070, - [SMALL_STATE(1779)] = 83108, - [SMALL_STATE(1780)] = 83154, - [SMALL_STATE(1781)] = 83188, - [SMALL_STATE(1782)] = 83222, - [SMALL_STATE(1783)] = 83254, - [SMALL_STATE(1784)] = 83288, - [SMALL_STATE(1785)] = 83344, - [SMALL_STATE(1786)] = 83378, - [SMALL_STATE(1787)] = 83412, - [SMALL_STATE(1788)] = 83448, - [SMALL_STATE(1789)] = 83482, - [SMALL_STATE(1790)] = 83514, - [SMALL_STATE(1791)] = 83554, - [SMALL_STATE(1792)] = 83604, - [SMALL_STATE(1793)] = 83654, - [SMALL_STATE(1794)] = 83685, - [SMALL_STATE(1795)] = 83716, - [SMALL_STATE(1796)] = 83759, - [SMALL_STATE(1797)] = 83802, - [SMALL_STATE(1798)] = 83845, - [SMALL_STATE(1799)] = 83888, - [SMALL_STATE(1800)] = 83919, - [SMALL_STATE(1801)] = 83962, - [SMALL_STATE(1802)] = 84005, - [SMALL_STATE(1803)] = 84048, - [SMALL_STATE(1804)] = 84091, - [SMALL_STATE(1805)] = 84134, - [SMALL_STATE(1806)] = 84177, - [SMALL_STATE(1807)] = 84220, - [SMALL_STATE(1808)] = 84263, - [SMALL_STATE(1809)] = 84314, - [SMALL_STATE(1810)] = 84357, - [SMALL_STATE(1811)] = 84400, - [SMALL_STATE(1812)] = 84429, - [SMALL_STATE(1813)] = 84460, - [SMALL_STATE(1814)] = 84491, - [SMALL_STATE(1815)] = 84520, - [SMALL_STATE(1816)] = 84551, - [SMALL_STATE(1817)] = 84594, - [SMALL_STATE(1818)] = 84637, - [SMALL_STATE(1819)] = 84680, - [SMALL_STATE(1820)] = 84711, - [SMALL_STATE(1821)] = 84742, - [SMALL_STATE(1822)] = 84773, - [SMALL_STATE(1823)] = 84816, - [SMALL_STATE(1824)] = 84859, - [SMALL_STATE(1825)] = 84902, - [SMALL_STATE(1826)] = 84945, - [SMALL_STATE(1827)] = 84988, - [SMALL_STATE(1828)] = 85019, - [SMALL_STATE(1829)] = 85062, - [SMALL_STATE(1830)] = 85105, - [SMALL_STATE(1831)] = 85136, - [SMALL_STATE(1832)] = 85179, - [SMALL_STATE(1833)] = 85208, - [SMALL_STATE(1834)] = 85251, - [SMALL_STATE(1835)] = 85280, - [SMALL_STATE(1836)] = 85323, - [SMALL_STATE(1837)] = 85354, - [SMALL_STATE(1838)] = 85397, - [SMALL_STATE(1839)] = 85432, - [SMALL_STATE(1840)] = 85461, - [SMALL_STATE(1841)] = 85498, - [SMALL_STATE(1842)] = 85529, - [SMALL_STATE(1843)] = 85570, - [SMALL_STATE(1844)] = 85601, - [SMALL_STATE(1845)] = 85632, - [SMALL_STATE(1846)] = 85675, - [SMALL_STATE(1847)] = 85706, - [SMALL_STATE(1848)] = 85749, - [SMALL_STATE(1849)] = 85778, - [SMALL_STATE(1850)] = 85821, - [SMALL_STATE(1851)] = 85866, - [SMALL_STATE(1852)] = 85897, - [SMALL_STATE(1853)] = 85928, - [SMALL_STATE(1854)] = 85959, - [SMALL_STATE(1855)] = 85994, - [SMALL_STATE(1856)] = 86025, - [SMALL_STATE(1857)] = 86056, - [SMALL_STATE(1858)] = 86103, - [SMALL_STATE(1859)] = 86134, - [SMALL_STATE(1860)] = 86165, - [SMALL_STATE(1861)] = 86208, - [SMALL_STATE(1862)] = 86239, - [SMALL_STATE(1863)] = 86282, - [SMALL_STATE(1864)] = 86325, - [SMALL_STATE(1865)] = 86356, - [SMALL_STATE(1866)] = 86393, - [SMALL_STATE(1867)] = 86422, - [SMALL_STATE(1868)] = 86469, - [SMALL_STATE(1869)] = 86518, - [SMALL_STATE(1870)] = 86547, - [SMALL_STATE(1871)] = 86590, - [SMALL_STATE(1872)] = 86623, - [SMALL_STATE(1873)] = 86674, - [SMALL_STATE(1874)] = 86717, - [SMALL_STATE(1875)] = 86748, - [SMALL_STATE(1876)] = 86777, - [SMALL_STATE(1877)] = 86806, - [SMALL_STATE(1878)] = 86837, - [SMALL_STATE(1879)] = 86880, - [SMALL_STATE(1880)] = 86923, - [SMALL_STATE(1881)] = 86966, - [SMALL_STATE(1882)] = 86997, - [SMALL_STATE(1883)] = 87028, - [SMALL_STATE(1884)] = 87071, - [SMALL_STATE(1885)] = 87102, - [SMALL_STATE(1886)] = 87133, - [SMALL_STATE(1887)] = 87161, - [SMALL_STATE(1888)] = 87207, - [SMALL_STATE(1889)] = 87253, - [SMALL_STATE(1890)] = 87283, - [SMALL_STATE(1891)] = 87311, - [SMALL_STATE(1892)] = 87357, - [SMALL_STATE(1893)] = 87403, - [SMALL_STATE(1894)] = 87431, - [SMALL_STATE(1895)] = 87477, - [SMALL_STATE(1896)] = 87505, - [SMALL_STATE(1897)] = 87551, - [SMALL_STATE(1898)] = 87597, - [SMALL_STATE(1899)] = 87627, - [SMALL_STATE(1900)] = 87657, - [SMALL_STATE(1901)] = 87703, - [SMALL_STATE(1902)] = 87733, - [SMALL_STATE(1903)] = 87763, - [SMALL_STATE(1904)] = 87813, - [SMALL_STATE(1905)] = 87841, - [SMALL_STATE(1906)] = 87889, - [SMALL_STATE(1907)] = 87919, - [SMALL_STATE(1908)] = 87949, - [SMALL_STATE(1909)] = 87979, - [SMALL_STATE(1910)] = 88009, - [SMALL_STATE(1911)] = 88039, - [SMALL_STATE(1912)] = 88069, - [SMALL_STATE(1913)] = 88099, - [SMALL_STATE(1914)] = 88149, - [SMALL_STATE(1915)] = 88195, - [SMALL_STATE(1916)] = 88225, - [SMALL_STATE(1917)] = 88255, - [SMALL_STATE(1918)] = 88283, - [SMALL_STATE(1919)] = 88327, - [SMALL_STATE(1920)] = 88357, - [SMALL_STATE(1921)] = 88385, - [SMALL_STATE(1922)] = 88431, - [SMALL_STATE(1923)] = 88461, - [SMALL_STATE(1924)] = 88491, - [SMALL_STATE(1925)] = 88537, - [SMALL_STATE(1926)] = 88579, - [SMALL_STATE(1927)] = 88625, - [SMALL_STATE(1928)] = 88655, - [SMALL_STATE(1929)] = 88683, - [SMALL_STATE(1930)] = 88713, - [SMALL_STATE(1931)] = 88759, - [SMALL_STATE(1932)] = 88799, - [SMALL_STATE(1933)] = 88847, - [SMALL_STATE(1934)] = 88875, - [SMALL_STATE(1935)] = 88905, - [SMALL_STATE(1936)] = 88951, - [SMALL_STATE(1937)] = 88981, - [SMALL_STATE(1938)] = 89013, - [SMALL_STATE(1939)] = 89059, - [SMALL_STATE(1940)] = 89087, - [SMALL_STATE(1941)] = 89117, - [SMALL_STATE(1942)] = 89151, - [SMALL_STATE(1943)] = 89187, - [SMALL_STATE(1944)] = 89225, - [SMALL_STATE(1945)] = 89271, - [SMALL_STATE(1946)] = 89300, - [SMALL_STATE(1947)] = 89347, - [SMALL_STATE(1948)] = 89378, - [SMALL_STATE(1949)] = 89419, - [SMALL_STATE(1950)] = 89446, - [SMALL_STATE(1951)] = 89477, - [SMALL_STATE(1952)] = 89508, - [SMALL_STATE(1953)] = 89539, - [SMALL_STATE(1954)] = 89568, - [SMALL_STATE(1955)] = 89597, - [SMALL_STATE(1956)] = 89624, - [SMALL_STATE(1957)] = 89659, - [SMALL_STATE(1958)] = 89690, - [SMALL_STATE(1959)] = 89717, - [SMALL_STATE(1960)] = 89746, - [SMALL_STATE(1961)] = 89777, - [SMALL_STATE(1962)] = 89808, - [SMALL_STATE(1963)] = 89855, - [SMALL_STATE(1964)] = 89886, - [SMALL_STATE(1965)] = 89917, - [SMALL_STATE(1966)] = 89944, - [SMALL_STATE(1967)] = 89970, - [SMALL_STATE(1968)] = 89996, - [SMALL_STATE(1969)] = 90022, - [SMALL_STATE(1970)] = 90048, - [SMALL_STATE(1971)] = 90074, - [SMALL_STATE(1972)] = 90100, - [SMALL_STATE(1973)] = 90144, - [SMALL_STATE(1974)] = 90170, - [SMALL_STATE(1975)] = 90214, - [SMALL_STATE(1976)] = 90258, - [SMALL_STATE(1977)] = 90284, - [SMALL_STATE(1978)] = 90328, - [SMALL_STATE(1979)] = 90372, - [SMALL_STATE(1980)] = 90416, - [SMALL_STATE(1981)] = 90442, - [SMALL_STATE(1982)] = 90468, - [SMALL_STATE(1983)] = 90494, - [SMALL_STATE(1984)] = 90520, - [SMALL_STATE(1985)] = 90546, - [SMALL_STATE(1986)] = 90582, - [SMALL_STATE(1987)] = 90626, - [SMALL_STATE(1988)] = 90652, - [SMALL_STATE(1989)] = 90678, - [SMALL_STATE(1990)] = 90704, - [SMALL_STATE(1991)] = 90730, - [SMALL_STATE(1992)] = 90756, - [SMALL_STATE(1993)] = 90782, - [SMALL_STATE(1994)] = 90826, - [SMALL_STATE(1995)] = 90852, - [SMALL_STATE(1996)] = 90878, - [SMALL_STATE(1997)] = 90914, - [SMALL_STATE(1998)] = 90940, - [SMALL_STATE(1999)] = 90966, - [SMALL_STATE(2000)] = 91006, - [SMALL_STATE(2001)] = 91032, - [SMALL_STATE(2002)] = 91058, - [SMALL_STATE(2003)] = 91102, - [SMALL_STATE(2004)] = 91146, - [SMALL_STATE(2005)] = 91172, - [SMALL_STATE(2006)] = 91198, - [SMALL_STATE(2007)] = 91224, - [SMALL_STATE(2008)] = 91250, - [SMALL_STATE(2009)] = 91286, - [SMALL_STATE(2010)] = 91322, - [SMALL_STATE(2011)] = 91348, - [SMALL_STATE(2012)] = 91374, - [SMALL_STATE(2013)] = 91400, - [SMALL_STATE(2014)] = 91426, - [SMALL_STATE(2015)] = 91473, - [SMALL_STATE(2016)] = 91520, - [SMALL_STATE(2017)] = 91567, - [SMALL_STATE(2018)] = 91614, - [SMALL_STATE(2019)] = 91655, - [SMALL_STATE(2020)] = 91702, - [SMALL_STATE(2021)] = 91743, - [SMALL_STATE(2022)] = 91790, - [SMALL_STATE(2023)] = 91825, - [SMALL_STATE(2024)] = 91866, - [SMALL_STATE(2025)] = 91897, - [SMALL_STATE(2026)] = 91944, - [SMALL_STATE(2027)] = 91979, - [SMALL_STATE(2028)] = 92026, - [SMALL_STATE(2029)] = 92067, - [SMALL_STATE(2030)] = 92102, - [SMALL_STATE(2031)] = 92137, - [SMALL_STATE(2032)] = 92184, - [SMALL_STATE(2033)] = 92225, - [SMALL_STATE(2034)] = 92272, - [SMALL_STATE(2035)] = 92319, - [SMALL_STATE(2036)] = 92350, - [SMALL_STATE(2037)] = 92385, - [SMALL_STATE(2038)] = 92432, - [SMALL_STATE(2039)] = 92474, - [SMALL_STATE(2040)] = 92516, - [SMALL_STATE(2041)] = 92558, - [SMALL_STATE(2042)] = 92600, - [SMALL_STATE(2043)] = 92630, - [SMALL_STATE(2044)] = 92655, - [SMALL_STATE(2045)] = 92686, - [SMALL_STATE(2046)] = 92725, - [SMALL_STATE(2047)] = 92764, - [SMALL_STATE(2048)] = 92789, - [SMALL_STATE(2049)] = 92814, - [SMALL_STATE(2050)] = 92839, - [SMALL_STATE(2051)] = 92878, - [SMALL_STATE(2052)] = 92903, - [SMALL_STATE(2053)] = 92942, - [SMALL_STATE(2054)] = 92981, - [SMALL_STATE(2055)] = 93006, - [SMALL_STATE(2056)] = 93031, - [SMALL_STATE(2057)] = 93062, - [SMALL_STATE(2058)] = 93101, - [SMALL_STATE(2059)] = 93140, - [SMALL_STATE(2060)] = 93179, - [SMALL_STATE(2061)] = 93204, - [SMALL_STATE(2062)] = 93243, - [SMALL_STATE(2063)] = 93268, - [SMALL_STATE(2064)] = 93293, - [SMALL_STATE(2065)] = 93324, - [SMALL_STATE(2066)] = 93363, - [SMALL_STATE(2067)] = 93388, - [SMALL_STATE(2068)] = 93427, - [SMALL_STATE(2069)] = 93452, - [SMALL_STATE(2070)] = 93477, - [SMALL_STATE(2071)] = 93502, - [SMALL_STATE(2072)] = 93527, - [SMALL_STATE(2073)] = 93551, - [SMALL_STATE(2074)] = 93587, - [SMALL_STATE(2075)] = 93623, - [SMALL_STATE(2076)] = 93653, - [SMALL_STATE(2077)] = 93677, - [SMALL_STATE(2078)] = 93717, - [SMALL_STATE(2079)] = 93753, - [SMALL_STATE(2080)] = 93793, - [SMALL_STATE(2081)] = 93833, - [SMALL_STATE(2082)] = 93863, - [SMALL_STATE(2083)] = 93903, - [SMALL_STATE(2084)] = 93927, - [SMALL_STATE(2085)] = 93967, - [SMALL_STATE(2086)] = 93997, - [SMALL_STATE(2087)] = 94037, - [SMALL_STATE(2088)] = 94061, - [SMALL_STATE(2089)] = 94101, - [SMALL_STATE(2090)] = 94125, - [SMALL_STATE(2091)] = 94149, - [SMALL_STATE(2092)] = 94185, - [SMALL_STATE(2093)] = 94221, - [SMALL_STATE(2094)] = 94261, - [SMALL_STATE(2095)] = 94301, - [SMALL_STATE(2096)] = 94325, - [SMALL_STATE(2097)] = 94365, - [SMALL_STATE(2098)] = 94405, - [SMALL_STATE(2099)] = 94445, - [SMALL_STATE(2100)] = 94485, - [SMALL_STATE(2101)] = 94525, - [SMALL_STATE(2102)] = 94561, - [SMALL_STATE(2103)] = 94585, - [SMALL_STATE(2104)] = 94609, - [SMALL_STATE(2105)] = 94649, - [SMALL_STATE(2106)] = 94689, - [SMALL_STATE(2107)] = 94729, - [SMALL_STATE(2108)] = 94769, - [SMALL_STATE(2109)] = 94805, - [SMALL_STATE(2110)] = 94845, - [SMALL_STATE(2111)] = 94875, - [SMALL_STATE(2112)] = 94915, - [SMALL_STATE(2113)] = 94955, - [SMALL_STATE(2114)] = 94979, - [SMALL_STATE(2115)] = 95015, - [SMALL_STATE(2116)] = 95055, - [SMALL_STATE(2117)] = 95095, - [SMALL_STATE(2118)] = 95135, - [SMALL_STATE(2119)] = 95159, - [SMALL_STATE(2120)] = 95194, - [SMALL_STATE(2121)] = 95219, - [SMALL_STATE(2122)] = 95254, - [SMALL_STATE(2123)] = 95289, - [SMALL_STATE(2124)] = 95324, - [SMALL_STATE(2125)] = 95359, - [SMALL_STATE(2126)] = 95394, - [SMALL_STATE(2127)] = 95419, - [SMALL_STATE(2128)] = 95442, - [SMALL_STATE(2129)] = 95463, - [SMALL_STATE(2130)] = 95498, - [SMALL_STATE(2131)] = 95533, - [SMALL_STATE(2132)] = 95554, - [SMALL_STATE(2133)] = 95589, - [SMALL_STATE(2134)] = 95610, - [SMALL_STATE(2135)] = 95631, - [SMALL_STATE(2136)] = 95663, - [SMALL_STATE(2137)] = 95691, - [SMALL_STATE(2138)] = 95719, - [SMALL_STATE(2139)] = 95751, - [SMALL_STATE(2140)] = 95783, - [SMALL_STATE(2141)] = 95807, - [SMALL_STATE(2142)] = 95831, - [SMALL_STATE(2143)] = 95855, - [SMALL_STATE(2144)] = 95879, - [SMALL_STATE(2145)] = 95911, - [SMALL_STATE(2146)] = 95943, - [SMALL_STATE(2147)] = 95977, - [SMALL_STATE(2148)] = 96009, - [SMALL_STATE(2149)] = 96037, - [SMALL_STATE(2150)] = 96069, - [SMALL_STATE(2151)] = 96097, - [SMALL_STATE(2152)] = 96125, - [SMALL_STATE(2153)] = 96159, - [SMALL_STATE(2154)] = 96183, - [SMALL_STATE(2155)] = 96215, - [SMALL_STATE(2156)] = 96243, - [SMALL_STATE(2157)] = 96277, - [SMALL_STATE(2158)] = 96305, - [SMALL_STATE(2159)] = 96337, - [SMALL_STATE(2160)] = 96365, - [SMALL_STATE(2161)] = 96393, - [SMALL_STATE(2162)] = 96425, - [SMALL_STATE(2163)] = 96457, - [SMALL_STATE(2164)] = 96485, - [SMALL_STATE(2165)] = 96517, - [SMALL_STATE(2166)] = 96545, - [SMALL_STATE(2167)] = 96577, - [SMALL_STATE(2168)] = 96605, - [SMALL_STATE(2169)] = 96633, - [SMALL_STATE(2170)] = 96661, - [SMALL_STATE(2171)] = 96689, - [SMALL_STATE(2172)] = 96723, - [SMALL_STATE(2173)] = 96755, - [SMALL_STATE(2174)] = 96783, - [SMALL_STATE(2175)] = 96811, - [SMALL_STATE(2176)] = 96843, - [SMALL_STATE(2177)] = 96867, - [SMALL_STATE(2178)] = 96899, - [SMALL_STATE(2179)] = 96931, - [SMALL_STATE(2180)] = 96963, - [SMALL_STATE(2181)] = 96995, - [SMALL_STATE(2182)] = 97029, - [SMALL_STATE(2183)] = 97063, - [SMALL_STATE(2184)] = 97095, - [SMALL_STATE(2185)] = 97127, - [SMALL_STATE(2186)] = 97161, - [SMALL_STATE(2187)] = 97195, - [SMALL_STATE(2188)] = 97223, - [SMALL_STATE(2189)] = 97251, - [SMALL_STATE(2190)] = 97283, - [SMALL_STATE(2191)] = 97311, - [SMALL_STATE(2192)] = 97339, - [SMALL_STATE(2193)] = 97364, - [SMALL_STATE(2194)] = 97383, - [SMALL_STATE(2195)] = 97404, - [SMALL_STATE(2196)] = 97423, - [SMALL_STATE(2197)] = 97442, - [SMALL_STATE(2198)] = 97461, - [SMALL_STATE(2199)] = 97488, - [SMALL_STATE(2200)] = 97507, - [SMALL_STATE(2201)] = 97526, - [SMALL_STATE(2202)] = 97559, - [SMALL_STATE(2203)] = 97586, - [SMALL_STATE(2204)] = 97619, - [SMALL_STATE(2205)] = 97638, - [SMALL_STATE(2206)] = 97657, - [SMALL_STATE(2207)] = 97676, - [SMALL_STATE(2208)] = 97695, - [SMALL_STATE(2209)] = 97728, - [SMALL_STATE(2210)] = 97747, - [SMALL_STATE(2211)] = 97774, - [SMALL_STATE(2212)] = 97799, - [SMALL_STATE(2213)] = 97832, - [SMALL_STATE(2214)] = 97852, - [SMALL_STATE(2215)] = 97876, - [SMALL_STATE(2216)] = 97906, - [SMALL_STATE(2217)] = 97936, - [SMALL_STATE(2218)] = 97966, - [SMALL_STATE(2219)] = 97996, - [SMALL_STATE(2220)] = 98020, - [SMALL_STATE(2221)] = 98050, - [SMALL_STATE(2222)] = 98074, - [SMALL_STATE(2223)] = 98098, - [SMALL_STATE(2224)] = 98128, - [SMALL_STATE(2225)] = 98152, - [SMALL_STATE(2226)] = 98182, - [SMALL_STATE(2227)] = 98206, - [SMALL_STATE(2228)] = 98236, - [SMALL_STATE(2229)] = 98260, - [SMALL_STATE(2230)] = 98284, - [SMALL_STATE(2231)] = 98308, - [SMALL_STATE(2232)] = 98332, - [SMALL_STATE(2233)] = 98358, - [SMALL_STATE(2234)] = 98382, - [SMALL_STATE(2235)] = 98408, - [SMALL_STATE(2236)] = 98432, - [SMALL_STATE(2237)] = 98456, - [SMALL_STATE(2238)] = 98481, - [SMALL_STATE(2239)] = 98508, - [SMALL_STATE(2240)] = 98535, - [SMALL_STATE(2241)] = 98562, - [SMALL_STATE(2242)] = 98589, - [SMALL_STATE(2243)] = 98616, - [SMALL_STATE(2244)] = 98637, - [SMALL_STATE(2245)] = 98658, - [SMALL_STATE(2246)] = 98685, - [SMALL_STATE(2247)] = 98710, - [SMALL_STATE(2248)] = 98737, - [SMALL_STATE(2249)] = 98764, - [SMALL_STATE(2250)] = 98791, - [SMALL_STATE(2251)] = 98818, - [SMALL_STATE(2252)] = 98845, - [SMALL_STATE(2253)] = 98872, - [SMALL_STATE(2254)] = 98899, - [SMALL_STATE(2255)] = 98926, - [SMALL_STATE(2256)] = 98953, - [SMALL_STATE(2257)] = 98980, - [SMALL_STATE(2258)] = 99001, - [SMALL_STATE(2259)] = 99028, - [SMALL_STATE(2260)] = 99055, - [SMALL_STATE(2261)] = 99082, - [SMALL_STATE(2262)] = 99109, - [SMALL_STATE(2263)] = 99136, - [SMALL_STATE(2264)] = 99163, - [SMALL_STATE(2265)] = 99190, - [SMALL_STATE(2266)] = 99217, - [SMALL_STATE(2267)] = 99244, - [SMALL_STATE(2268)] = 99271, - [SMALL_STATE(2269)] = 99298, - [SMALL_STATE(2270)] = 99325, - [SMALL_STATE(2271)] = 99348, - [SMALL_STATE(2272)] = 99372, - [SMALL_STATE(2273)] = 99396, - [SMALL_STATE(2274)] = 99420, - [SMALL_STATE(2275)] = 99444, - [SMALL_STATE(2276)] = 99468, - [SMALL_STATE(2277)] = 99492, - [SMALL_STATE(2278)] = 99516, - [SMALL_STATE(2279)] = 99540, - [SMALL_STATE(2280)] = 99564, - [SMALL_STATE(2281)] = 99588, - [SMALL_STATE(2282)] = 99612, - [SMALL_STATE(2283)] = 99636, - [SMALL_STATE(2284)] = 99660, - [SMALL_STATE(2285)] = 99684, - [SMALL_STATE(2286)] = 99708, - [SMALL_STATE(2287)] = 99728, - [SMALL_STATE(2288)] = 99752, - [SMALL_STATE(2289)] = 99776, - [SMALL_STATE(2290)] = 99800, - [SMALL_STATE(2291)] = 99824, - [SMALL_STATE(2292)] = 99848, - [SMALL_STATE(2293)] = 99872, - [SMALL_STATE(2294)] = 99896, - [SMALL_STATE(2295)] = 99920, - [SMALL_STATE(2296)] = 99944, - [SMALL_STATE(2297)] = 99968, - [SMALL_STATE(2298)] = 99988, - [SMALL_STATE(2299)] = 100008, - [SMALL_STATE(2300)] = 100029, - [SMALL_STATE(2301)] = 100050, - [SMALL_STATE(2302)] = 100071, - [SMALL_STATE(2303)] = 100090, - [SMALL_STATE(2304)] = 100111, - [SMALL_STATE(2305)] = 100128, - [SMALL_STATE(2306)] = 100149, - [SMALL_STATE(2307)] = 100164, - [SMALL_STATE(2308)] = 100181, - [SMALL_STATE(2309)] = 100198, - [SMALL_STATE(2310)] = 100219, - [SMALL_STATE(2311)] = 100240, - [SMALL_STATE(2312)] = 100255, - [SMALL_STATE(2313)] = 100276, - [SMALL_STATE(2314)] = 100293, - [SMALL_STATE(2315)] = 100312, - [SMALL_STATE(2316)] = 100333, - [SMALL_STATE(2317)] = 100354, - [SMALL_STATE(2318)] = 100369, - [SMALL_STATE(2319)] = 100388, - [SMALL_STATE(2320)] = 100409, - [SMALL_STATE(2321)] = 100428, - [SMALL_STATE(2322)] = 100449, - [SMALL_STATE(2323)] = 100470, - [SMALL_STATE(2324)] = 100487, - [SMALL_STATE(2325)] = 100504, - [SMALL_STATE(2326)] = 100523, - [SMALL_STATE(2327)] = 100540, - [SMALL_STATE(2328)] = 100557, - [SMALL_STATE(2329)] = 100574, - [SMALL_STATE(2330)] = 100591, - [SMALL_STATE(2331)] = 100608, - [SMALL_STATE(2332)] = 100629, - [SMALL_STATE(2333)] = 100646, - [SMALL_STATE(2334)] = 100667, - [SMALL_STATE(2335)] = 100684, - [SMALL_STATE(2336)] = 100701, - [SMALL_STATE(2337)] = 100722, - [SMALL_STATE(2338)] = 100743, - [SMALL_STATE(2339)] = 100758, - [SMALL_STATE(2340)] = 100777, - [SMALL_STATE(2341)] = 100798, - [SMALL_STATE(2342)] = 100817, - [SMALL_STATE(2343)] = 100830, - [SMALL_STATE(2344)] = 100847, - [SMALL_STATE(2345)] = 100862, - [SMALL_STATE(2346)] = 100883, - [SMALL_STATE(2347)] = 100896, - [SMALL_STATE(2348)] = 100913, - [SMALL_STATE(2349)] = 100930, - [SMALL_STATE(2350)] = 100947, - [SMALL_STATE(2351)] = 100964, - [SMALL_STATE(2352)] = 100985, - [SMALL_STATE(2353)] = 101002, - [SMALL_STATE(2354)] = 101019, - [SMALL_STATE(2355)] = 101040, - [SMALL_STATE(2356)] = 101059, - [SMALL_STATE(2357)] = 101078, - [SMALL_STATE(2358)] = 101099, - [SMALL_STATE(2359)] = 101120, - [SMALL_STATE(2360)] = 101141, - [SMALL_STATE(2361)] = 101162, - [SMALL_STATE(2362)] = 101183, - [SMALL_STATE(2363)] = 101204, - [SMALL_STATE(2364)] = 101225, - [SMALL_STATE(2365)] = 101240, - [SMALL_STATE(2366)] = 101261, - [SMALL_STATE(2367)] = 101282, - [SMALL_STATE(2368)] = 101303, - [SMALL_STATE(2369)] = 101324, - [SMALL_STATE(2370)] = 101336, - [SMALL_STATE(2371)] = 101348, - [SMALL_STATE(2372)] = 101360, - [SMALL_STATE(2373)] = 101380, - [SMALL_STATE(2374)] = 101400, - [SMALL_STATE(2375)] = 101422, - [SMALL_STATE(2376)] = 101434, - [SMALL_STATE(2377)] = 101456, - [SMALL_STATE(2378)] = 101476, - [SMALL_STATE(2379)] = 101498, - [SMALL_STATE(2380)] = 101520, - [SMALL_STATE(2381)] = 101532, - [SMALL_STATE(2382)] = 101550, - [SMALL_STATE(2383)] = 101562, - [SMALL_STATE(2384)] = 101574, - [SMALL_STATE(2385)] = 101586, - [SMALL_STATE(2386)] = 101598, - [SMALL_STATE(2387)] = 101620, - [SMALL_STATE(2388)] = 101642, - [SMALL_STATE(2389)] = 101660, - [SMALL_STATE(2390)] = 101672, - [SMALL_STATE(2391)] = 101688, - [SMALL_STATE(2392)] = 101710, - [SMALL_STATE(2393)] = 101730, - [SMALL_STATE(2394)] = 101746, - [SMALL_STATE(2395)] = 101768, - [SMALL_STATE(2396)] = 101788, - [SMALL_STATE(2397)] = 101808, - [SMALL_STATE(2398)] = 101824, - [SMALL_STATE(2399)] = 101846, - [SMALL_STATE(2400)] = 101858, - [SMALL_STATE(2401)] = 101870, - [SMALL_STATE(2402)] = 101882, - [SMALL_STATE(2403)] = 101902, - [SMALL_STATE(2404)] = 101918, - [SMALL_STATE(2405)] = 101930, - [SMALL_STATE(2406)] = 101947, - [SMALL_STATE(2407)] = 101958, - [SMALL_STATE(2408)] = 101977, - [SMALL_STATE(2409)] = 101990, - [SMALL_STATE(2410)] = 102007, - [SMALL_STATE(2411)] = 102020, - [SMALL_STATE(2412)] = 102035, - [SMALL_STATE(2413)] = 102052, - [SMALL_STATE(2414)] = 102065, - [SMALL_STATE(2415)] = 102080, - [SMALL_STATE(2416)] = 102095, - [SMALL_STATE(2417)] = 102112, - [SMALL_STATE(2418)] = 102127, - [SMALL_STATE(2419)] = 102144, - [SMALL_STATE(2420)] = 102159, - [SMALL_STATE(2421)] = 102172, - [SMALL_STATE(2422)] = 102187, - [SMALL_STATE(2423)] = 102200, - [SMALL_STATE(2424)] = 102213, - [SMALL_STATE(2425)] = 102230, - [SMALL_STATE(2426)] = 102243, - [SMALL_STATE(2427)] = 102256, - [SMALL_STATE(2428)] = 102271, - [SMALL_STATE(2429)] = 102286, - [SMALL_STATE(2430)] = 102299, - [SMALL_STATE(2431)] = 102312, - [SMALL_STATE(2432)] = 102327, - [SMALL_STATE(2433)] = 102340, - [SMALL_STATE(2434)] = 102357, - [SMALL_STATE(2435)] = 102370, - [SMALL_STATE(2436)] = 102383, - [SMALL_STATE(2437)] = 102400, - [SMALL_STATE(2438)] = 102415, - [SMALL_STATE(2439)] = 102434, - [SMALL_STATE(2440)] = 102451, - [SMALL_STATE(2441)] = 102468, - [SMALL_STATE(2442)] = 102483, - [SMALL_STATE(2443)] = 102500, - [SMALL_STATE(2444)] = 102513, - [SMALL_STATE(2445)] = 102528, - [SMALL_STATE(2446)] = 102543, - [SMALL_STATE(2447)] = 102560, - [SMALL_STATE(2448)] = 102575, - [SMALL_STATE(2449)] = 102590, - [SMALL_STATE(2450)] = 102603, - [SMALL_STATE(2451)] = 102616, - [SMALL_STATE(2452)] = 102629, - [SMALL_STATE(2453)] = 102642, - [SMALL_STATE(2454)] = 102655, - [SMALL_STATE(2455)] = 102672, - [SMALL_STATE(2456)] = 102687, - [SMALL_STATE(2457)] = 102702, - [SMALL_STATE(2458)] = 102719, - [SMALL_STATE(2459)] = 102732, - [SMALL_STATE(2460)] = 102747, - [SMALL_STATE(2461)] = 102764, - [SMALL_STATE(2462)] = 102781, - [SMALL_STATE(2463)] = 102796, - [SMALL_STATE(2464)] = 102811, - [SMALL_STATE(2465)] = 102826, - [SMALL_STATE(2466)] = 102843, - [SMALL_STATE(2467)] = 102858, - [SMALL_STATE(2468)] = 102869, - [SMALL_STATE(2469)] = 102882, - [SMALL_STATE(2470)] = 102899, - [SMALL_STATE(2471)] = 102913, - [SMALL_STATE(2472)] = 102927, - [SMALL_STATE(2473)] = 102941, - [SMALL_STATE(2474)] = 102955, - [SMALL_STATE(2475)] = 102971, - [SMALL_STATE(2476)] = 102983, - [SMALL_STATE(2477)] = 102997, - [SMALL_STATE(2478)] = 103013, - [SMALL_STATE(2479)] = 103027, - [SMALL_STATE(2480)] = 103041, - [SMALL_STATE(2481)] = 103057, - [SMALL_STATE(2482)] = 103073, - [SMALL_STATE(2483)] = 103087, - [SMALL_STATE(2484)] = 103103, - [SMALL_STATE(2485)] = 103117, - [SMALL_STATE(2486)] = 103131, - [SMALL_STATE(2487)] = 103145, - [SMALL_STATE(2488)] = 103159, - [SMALL_STATE(2489)] = 103171, - [SMALL_STATE(2490)] = 103187, - [SMALL_STATE(2491)] = 103201, - [SMALL_STATE(2492)] = 103213, - [SMALL_STATE(2493)] = 103227, - [SMALL_STATE(2494)] = 103241, - [SMALL_STATE(2495)] = 103255, - [SMALL_STATE(2496)] = 103269, - [SMALL_STATE(2497)] = 103283, - [SMALL_STATE(2498)] = 103297, - [SMALL_STATE(2499)] = 103311, - [SMALL_STATE(2500)] = 103325, - [SMALL_STATE(2501)] = 103339, - [SMALL_STATE(2502)] = 103353, - [SMALL_STATE(2503)] = 103367, - [SMALL_STATE(2504)] = 103381, - [SMALL_STATE(2505)] = 103395, - [SMALL_STATE(2506)] = 103409, - [SMALL_STATE(2507)] = 103423, - [SMALL_STATE(2508)] = 103439, - [SMALL_STATE(2509)] = 103455, - [SMALL_STATE(2510)] = 103465, - [SMALL_STATE(2511)] = 103479, - [SMALL_STATE(2512)] = 103491, - [SMALL_STATE(2513)] = 103505, - [SMALL_STATE(2514)] = 103519, - [SMALL_STATE(2515)] = 103533, - [SMALL_STATE(2516)] = 103547, - [SMALL_STATE(2517)] = 103561, - [SMALL_STATE(2518)] = 103575, - [SMALL_STATE(2519)] = 103589, - [SMALL_STATE(2520)] = 103603, - [SMALL_STATE(2521)] = 103617, - [SMALL_STATE(2522)] = 103631, - [SMALL_STATE(2523)] = 103645, - [SMALL_STATE(2524)] = 103659, - [SMALL_STATE(2525)] = 103673, - [SMALL_STATE(2526)] = 103687, - [SMALL_STATE(2527)] = 103701, - [SMALL_STATE(2528)] = 103715, - [SMALL_STATE(2529)] = 103729, - [SMALL_STATE(2530)] = 103743, - [SMALL_STATE(2531)] = 103757, - [SMALL_STATE(2532)] = 103771, - [SMALL_STATE(2533)] = 103785, - [SMALL_STATE(2534)] = 103799, - [SMALL_STATE(2535)] = 103811, - [SMALL_STATE(2536)] = 103825, - [SMALL_STATE(2537)] = 103839, - [SMALL_STATE(2538)] = 103853, - [SMALL_STATE(2539)] = 103867, - [SMALL_STATE(2540)] = 103881, - [SMALL_STATE(2541)] = 103895, - [SMALL_STATE(2542)] = 103909, - [SMALL_STATE(2543)] = 103923, - [SMALL_STATE(2544)] = 103937, - [SMALL_STATE(2545)] = 103951, - [SMALL_STATE(2546)] = 103965, - [SMALL_STATE(2547)] = 103979, - [SMALL_STATE(2548)] = 103995, - [SMALL_STATE(2549)] = 104009, - [SMALL_STATE(2550)] = 104023, - [SMALL_STATE(2551)] = 104039, - [SMALL_STATE(2552)] = 104053, - [SMALL_STATE(2553)] = 104067, - [SMALL_STATE(2554)] = 104081, - [SMALL_STATE(2555)] = 104095, - [SMALL_STATE(2556)] = 104109, - [SMALL_STATE(2557)] = 104123, - [SMALL_STATE(2558)] = 104137, - [SMALL_STATE(2559)] = 104151, - [SMALL_STATE(2560)] = 104165, - [SMALL_STATE(2561)] = 104179, - [SMALL_STATE(2562)] = 104193, - [SMALL_STATE(2563)] = 104207, - [SMALL_STATE(2564)] = 104221, - [SMALL_STATE(2565)] = 104235, - [SMALL_STATE(2566)] = 104249, - [SMALL_STATE(2567)] = 104263, - [SMALL_STATE(2568)] = 104277, - [SMALL_STATE(2569)] = 104291, - [SMALL_STATE(2570)] = 104301, - [SMALL_STATE(2571)] = 104315, - [SMALL_STATE(2572)] = 104329, - [SMALL_STATE(2573)] = 104341, - [SMALL_STATE(2574)] = 104355, - [SMALL_STATE(2575)] = 104369, - [SMALL_STATE(2576)] = 104383, - [SMALL_STATE(2577)] = 104397, - [SMALL_STATE(2578)] = 104411, - [SMALL_STATE(2579)] = 104425, - [SMALL_STATE(2580)] = 104439, - [SMALL_STATE(2581)] = 104453, - [SMALL_STATE(2582)] = 104467, - [SMALL_STATE(2583)] = 104481, - [SMALL_STATE(2584)] = 104495, - [SMALL_STATE(2585)] = 104509, - [SMALL_STATE(2586)] = 104523, - [SMALL_STATE(2587)] = 104537, - [SMALL_STATE(2588)] = 104551, - [SMALL_STATE(2589)] = 104565, - [SMALL_STATE(2590)] = 104579, - [SMALL_STATE(2591)] = 104593, - [SMALL_STATE(2592)] = 104607, - [SMALL_STATE(2593)] = 104621, - [SMALL_STATE(2594)] = 104635, - [SMALL_STATE(2595)] = 104649, - [SMALL_STATE(2596)] = 104663, - [SMALL_STATE(2597)] = 104677, - [SMALL_STATE(2598)] = 104691, - [SMALL_STATE(2599)] = 104705, - [SMALL_STATE(2600)] = 104719, - [SMALL_STATE(2601)] = 104733, - [SMALL_STATE(2602)] = 104747, - [SMALL_STATE(2603)] = 104761, - [SMALL_STATE(2604)] = 104775, - [SMALL_STATE(2605)] = 104789, - [SMALL_STATE(2606)] = 104805, - [SMALL_STATE(2607)] = 104819, - [SMALL_STATE(2608)] = 104833, - [SMALL_STATE(2609)] = 104847, - [SMALL_STATE(2610)] = 104861, - [SMALL_STATE(2611)] = 104875, - [SMALL_STATE(2612)] = 104889, - [SMALL_STATE(2613)] = 104903, - [SMALL_STATE(2614)] = 104917, - [SMALL_STATE(2615)] = 104931, - [SMALL_STATE(2616)] = 104945, - [SMALL_STATE(2617)] = 104959, - [SMALL_STATE(2618)] = 104973, - [SMALL_STATE(2619)] = 104987, - [SMALL_STATE(2620)] = 105001, - [SMALL_STATE(2621)] = 105015, - [SMALL_STATE(2622)] = 105029, - [SMALL_STATE(2623)] = 105043, - [SMALL_STATE(2624)] = 105057, - [SMALL_STATE(2625)] = 105071, - [SMALL_STATE(2626)] = 105085, - [SMALL_STATE(2627)] = 105099, - [SMALL_STATE(2628)] = 105113, - [SMALL_STATE(2629)] = 105127, - [SMALL_STATE(2630)] = 105141, - [SMALL_STATE(2631)] = 105155, - [SMALL_STATE(2632)] = 105169, - [SMALL_STATE(2633)] = 105183, - [SMALL_STATE(2634)] = 105197, - [SMALL_STATE(2635)] = 105211, - [SMALL_STATE(2636)] = 105225, - [SMALL_STATE(2637)] = 105239, - [SMALL_STATE(2638)] = 105253, - [SMALL_STATE(2639)] = 105267, - [SMALL_STATE(2640)] = 105281, - [SMALL_STATE(2641)] = 105295, - [SMALL_STATE(2642)] = 105309, - [SMALL_STATE(2643)] = 105323, - [SMALL_STATE(2644)] = 105337, - [SMALL_STATE(2645)] = 105351, - [SMALL_STATE(2646)] = 105365, - [SMALL_STATE(2647)] = 105379, - [SMALL_STATE(2648)] = 105393, - [SMALL_STATE(2649)] = 105407, - [SMALL_STATE(2650)] = 105421, - [SMALL_STATE(2651)] = 105435, - [SMALL_STATE(2652)] = 105449, - [SMALL_STATE(2653)] = 105463, - [SMALL_STATE(2654)] = 105477, - [SMALL_STATE(2655)] = 105491, - [SMALL_STATE(2656)] = 105501, - [SMALL_STATE(2657)] = 105515, - [SMALL_STATE(2658)] = 105529, - [SMALL_STATE(2659)] = 105543, - [SMALL_STATE(2660)] = 105557, - [SMALL_STATE(2661)] = 105571, - [SMALL_STATE(2662)] = 105585, - [SMALL_STATE(2663)] = 105599, - [SMALL_STATE(2664)] = 105613, - [SMALL_STATE(2665)] = 105627, - [SMALL_STATE(2666)] = 105641, - [SMALL_STATE(2667)] = 105655, - [SMALL_STATE(2668)] = 105669, - [SMALL_STATE(2669)] = 105683, - [SMALL_STATE(2670)] = 105697, - [SMALL_STATE(2671)] = 105713, - [SMALL_STATE(2672)] = 105729, - [SMALL_STATE(2673)] = 105745, - [SMALL_STATE(2674)] = 105759, - [SMALL_STATE(2675)] = 105773, - [SMALL_STATE(2676)] = 105787, - [SMALL_STATE(2677)] = 105801, - [SMALL_STATE(2678)] = 105815, - [SMALL_STATE(2679)] = 105829, - [SMALL_STATE(2680)] = 105843, - [SMALL_STATE(2681)] = 105857, - [SMALL_STATE(2682)] = 105871, - [SMALL_STATE(2683)] = 105885, - [SMALL_STATE(2684)] = 105899, - [SMALL_STATE(2685)] = 105913, - [SMALL_STATE(2686)] = 105927, - [SMALL_STATE(2687)] = 105941, - [SMALL_STATE(2688)] = 105955, - [SMALL_STATE(2689)] = 105965, - [SMALL_STATE(2690)] = 105979, - [SMALL_STATE(2691)] = 105993, - [SMALL_STATE(2692)] = 106007, - [SMALL_STATE(2693)] = 106021, - [SMALL_STATE(2694)] = 106035, - [SMALL_STATE(2695)] = 106051, - [SMALL_STATE(2696)] = 106065, - [SMALL_STATE(2697)] = 106079, - [SMALL_STATE(2698)] = 106093, - [SMALL_STATE(2699)] = 106107, - [SMALL_STATE(2700)] = 106121, - [SMALL_STATE(2701)] = 106137, - [SMALL_STATE(2702)] = 106153, - [SMALL_STATE(2703)] = 106169, - [SMALL_STATE(2704)] = 106183, - [SMALL_STATE(2705)] = 106193, - [SMALL_STATE(2706)] = 106207, - [SMALL_STATE(2707)] = 106221, - [SMALL_STATE(2708)] = 106235, - [SMALL_STATE(2709)] = 106249, - [SMALL_STATE(2710)] = 106263, - [SMALL_STATE(2711)] = 106277, - [SMALL_STATE(2712)] = 106287, - [SMALL_STATE(2713)] = 106301, - [SMALL_STATE(2714)] = 106315, - [SMALL_STATE(2715)] = 106329, - [SMALL_STATE(2716)] = 106343, - [SMALL_STATE(2717)] = 106357, - [SMALL_STATE(2718)] = 106371, - [SMALL_STATE(2719)] = 106381, - [SMALL_STATE(2720)] = 106395, - [SMALL_STATE(2721)] = 106409, - [SMALL_STATE(2722)] = 106423, - [SMALL_STATE(2723)] = 106437, - [SMALL_STATE(2724)] = 106451, - [SMALL_STATE(2725)] = 106465, - [SMALL_STATE(2726)] = 106479, - [SMALL_STATE(2727)] = 106493, - [SMALL_STATE(2728)] = 106507, - [SMALL_STATE(2729)] = 106521, - [SMALL_STATE(2730)] = 106535, - [SMALL_STATE(2731)] = 106545, - [SMALL_STATE(2732)] = 106561, - [SMALL_STATE(2733)] = 106575, - [SMALL_STATE(2734)] = 106589, - [SMALL_STATE(2735)] = 106603, - [SMALL_STATE(2736)] = 106617, - [SMALL_STATE(2737)] = 106631, - [SMALL_STATE(2738)] = 106641, - [SMALL_STATE(2739)] = 106655, - [SMALL_STATE(2740)] = 106665, - [SMALL_STATE(2741)] = 106679, - [SMALL_STATE(2742)] = 106693, - [SMALL_STATE(2743)] = 106707, - [SMALL_STATE(2744)] = 106717, - [SMALL_STATE(2745)] = 106727, - [SMALL_STATE(2746)] = 106736, - [SMALL_STATE(2747)] = 106747, - [SMALL_STATE(2748)] = 106756, - [SMALL_STATE(2749)] = 106769, - [SMALL_STATE(2750)] = 106782, - [SMALL_STATE(2751)] = 106793, - [SMALL_STATE(2752)] = 106804, - [SMALL_STATE(2753)] = 106813, - [SMALL_STATE(2754)] = 106822, - [SMALL_STATE(2755)] = 106831, - [SMALL_STATE(2756)] = 106842, - [SMALL_STATE(2757)] = 106851, - [SMALL_STATE(2758)] = 106862, - [SMALL_STATE(2759)] = 106875, - [SMALL_STATE(2760)] = 106884, - [SMALL_STATE(2761)] = 106895, - [SMALL_STATE(2762)] = 106906, - [SMALL_STATE(2763)] = 106917, - [SMALL_STATE(2764)] = 106928, - [SMALL_STATE(2765)] = 106939, - [SMALL_STATE(2766)] = 106948, - [SMALL_STATE(2767)] = 106957, - [SMALL_STATE(2768)] = 106970, - [SMALL_STATE(2769)] = 106981, - [SMALL_STATE(2770)] = 106992, - [SMALL_STATE(2771)] = 107003, - [SMALL_STATE(2772)] = 107014, - [SMALL_STATE(2773)] = 107025, - [SMALL_STATE(2774)] = 107036, - [SMALL_STATE(2775)] = 107047, - [SMALL_STATE(2776)] = 107058, - [SMALL_STATE(2777)] = 107069, - [SMALL_STATE(2778)] = 107078, - [SMALL_STATE(2779)] = 107087, - [SMALL_STATE(2780)] = 107096, - [SMALL_STATE(2781)] = 107107, - [SMALL_STATE(2782)] = 107118, - [SMALL_STATE(2783)] = 107127, - [SMALL_STATE(2784)] = 107138, - [SMALL_STATE(2785)] = 107147, - [SMALL_STATE(2786)] = 107160, - [SMALL_STATE(2787)] = 107171, - [SMALL_STATE(2788)] = 107182, - [SMALL_STATE(2789)] = 107193, - [SMALL_STATE(2790)] = 107202, - [SMALL_STATE(2791)] = 107213, - [SMALL_STATE(2792)] = 107224, - [SMALL_STATE(2793)] = 107233, - [SMALL_STATE(2794)] = 107244, - [SMALL_STATE(2795)] = 107253, - [SMALL_STATE(2796)] = 107262, - [SMALL_STATE(2797)] = 107271, - [SMALL_STATE(2798)] = 107282, - [SMALL_STATE(2799)] = 107293, - [SMALL_STATE(2800)] = 107304, - [SMALL_STATE(2801)] = 107313, - [SMALL_STATE(2802)] = 107322, - [SMALL_STATE(2803)] = 107333, - [SMALL_STATE(2804)] = 107346, - [SMALL_STATE(2805)] = 107357, - [SMALL_STATE(2806)] = 107366, - [SMALL_STATE(2807)] = 107377, - [SMALL_STATE(2808)] = 107388, - [SMALL_STATE(2809)] = 107399, - [SMALL_STATE(2810)] = 107410, - [SMALL_STATE(2811)] = 107421, - [SMALL_STATE(2812)] = 107432, - [SMALL_STATE(2813)] = 107443, - [SMALL_STATE(2814)] = 107454, - [SMALL_STATE(2815)] = 107463, - [SMALL_STATE(2816)] = 107474, - [SMALL_STATE(2817)] = 107485, - [SMALL_STATE(2818)] = 107496, - [SMALL_STATE(2819)] = 107507, - [SMALL_STATE(2820)] = 107518, - [SMALL_STATE(2821)] = 107529, - [SMALL_STATE(2822)] = 107540, - [SMALL_STATE(2823)] = 107551, - [SMALL_STATE(2824)] = 107562, - [SMALL_STATE(2825)] = 107573, - [SMALL_STATE(2826)] = 107584, - [SMALL_STATE(2827)] = 107595, - [SMALL_STATE(2828)] = 107606, - [SMALL_STATE(2829)] = 107617, - [SMALL_STATE(2830)] = 107628, - [SMALL_STATE(2831)] = 107637, - [SMALL_STATE(2832)] = 107648, - [SMALL_STATE(2833)] = 107659, - [SMALL_STATE(2834)] = 107670, - [SMALL_STATE(2835)] = 107679, - [SMALL_STATE(2836)] = 107690, - [SMALL_STATE(2837)] = 107701, - [SMALL_STATE(2838)] = 107712, - [SMALL_STATE(2839)] = 107723, - [SMALL_STATE(2840)] = 107736, - [SMALL_STATE(2841)] = 107747, - [SMALL_STATE(2842)] = 107758, - [SMALL_STATE(2843)] = 107769, - [SMALL_STATE(2844)] = 107780, - [SMALL_STATE(2845)] = 107791, - [SMALL_STATE(2846)] = 107802, - [SMALL_STATE(2847)] = 107813, - [SMALL_STATE(2848)] = 107824, - [SMALL_STATE(2849)] = 107835, - [SMALL_STATE(2850)] = 107846, - [SMALL_STATE(2851)] = 107857, - [SMALL_STATE(2852)] = 107868, - [SMALL_STATE(2853)] = 107879, - [SMALL_STATE(2854)] = 107890, - [SMALL_STATE(2855)] = 107901, - [SMALL_STATE(2856)] = 107912, - [SMALL_STATE(2857)] = 107921, - [SMALL_STATE(2858)] = 107932, - [SMALL_STATE(2859)] = 107943, - [SMALL_STATE(2860)] = 107954, - [SMALL_STATE(2861)] = 107965, - [SMALL_STATE(2862)] = 107978, - [SMALL_STATE(2863)] = 107989, - [SMALL_STATE(2864)] = 108000, - [SMALL_STATE(2865)] = 108011, - [SMALL_STATE(2866)] = 108022, - [SMALL_STATE(2867)] = 108033, - [SMALL_STATE(2868)] = 108044, - [SMALL_STATE(2869)] = 108055, - [SMALL_STATE(2870)] = 108064, - [SMALL_STATE(2871)] = 108073, - [SMALL_STATE(2872)] = 108086, - [SMALL_STATE(2873)] = 108099, - [SMALL_STATE(2874)] = 108110, - [SMALL_STATE(2875)] = 108121, - [SMALL_STATE(2876)] = 108132, - [SMALL_STATE(2877)] = 108143, - [SMALL_STATE(2878)] = 108154, - [SMALL_STATE(2879)] = 108165, - [SMALL_STATE(2880)] = 108176, - [SMALL_STATE(2881)] = 108187, - [SMALL_STATE(2882)] = 108198, - [SMALL_STATE(2883)] = 108209, - [SMALL_STATE(2884)] = 108222, - [SMALL_STATE(2885)] = 108233, - [SMALL_STATE(2886)] = 108242, - [SMALL_STATE(2887)] = 108253, - [SMALL_STATE(2888)] = 108264, - [SMALL_STATE(2889)] = 108273, - [SMALL_STATE(2890)] = 108284, - [SMALL_STATE(2891)] = 108295, - [SMALL_STATE(2892)] = 108306, - [SMALL_STATE(2893)] = 108317, - [SMALL_STATE(2894)] = 108328, - [SMALL_STATE(2895)] = 108339, - [SMALL_STATE(2896)] = 108350, - [SMALL_STATE(2897)] = 108361, - [SMALL_STATE(2898)] = 108372, - [SMALL_STATE(2899)] = 108383, - [SMALL_STATE(2900)] = 108394, - [SMALL_STATE(2901)] = 108405, - [SMALL_STATE(2902)] = 108416, - [SMALL_STATE(2903)] = 108427, - [SMALL_STATE(2904)] = 108438, - [SMALL_STATE(2905)] = 108449, - [SMALL_STATE(2906)] = 108460, - [SMALL_STATE(2907)] = 108471, - [SMALL_STATE(2908)] = 108482, - [SMALL_STATE(2909)] = 108493, - [SMALL_STATE(2910)] = 108504, - [SMALL_STATE(2911)] = 108515, - [SMALL_STATE(2912)] = 108526, - [SMALL_STATE(2913)] = 108537, - [SMALL_STATE(2914)] = 108548, - [SMALL_STATE(2915)] = 108559, - [SMALL_STATE(2916)] = 108570, - [SMALL_STATE(2917)] = 108581, - [SMALL_STATE(2918)] = 108592, - [SMALL_STATE(2919)] = 108601, - [SMALL_STATE(2920)] = 108612, - [SMALL_STATE(2921)] = 108623, - [SMALL_STATE(2922)] = 108632, - [SMALL_STATE(2923)] = 108641, - [SMALL_STATE(2924)] = 108650, - [SMALL_STATE(2925)] = 108659, - [SMALL_STATE(2926)] = 108670, - [SMALL_STATE(2927)] = 108679, - [SMALL_STATE(2928)] = 108690, - [SMALL_STATE(2929)] = 108699, - [SMALL_STATE(2930)] = 108708, - [SMALL_STATE(2931)] = 108719, - [SMALL_STATE(2932)] = 108730, - [SMALL_STATE(2933)] = 108741, - [SMALL_STATE(2934)] = 108752, - [SMALL_STATE(2935)] = 108763, - [SMALL_STATE(2936)] = 108774, - [SMALL_STATE(2937)] = 108785, - [SMALL_STATE(2938)] = 108796, - [SMALL_STATE(2939)] = 108807, - [SMALL_STATE(2940)] = 108816, - [SMALL_STATE(2941)] = 108825, - [SMALL_STATE(2942)] = 108836, - [SMALL_STATE(2943)] = 108847, - [SMALL_STATE(2944)] = 108856, - [SMALL_STATE(2945)] = 108867, - [SMALL_STATE(2946)] = 108880, - [SMALL_STATE(2947)] = 108891, - [SMALL_STATE(2948)] = 108902, - [SMALL_STATE(2949)] = 108913, - [SMALL_STATE(2950)] = 108924, - [SMALL_STATE(2951)] = 108935, - [SMALL_STATE(2952)] = 108946, - [SMALL_STATE(2953)] = 108957, - [SMALL_STATE(2954)] = 108968, - [SMALL_STATE(2955)] = 108979, - [SMALL_STATE(2956)] = 108990, - [SMALL_STATE(2957)] = 108998, - [SMALL_STATE(2958)] = 109006, - [SMALL_STATE(2959)] = 109014, - [SMALL_STATE(2960)] = 109022, - [SMALL_STATE(2961)] = 109030, - [SMALL_STATE(2962)] = 109038, - [SMALL_STATE(2963)] = 109046, - [SMALL_STATE(2964)] = 109054, - [SMALL_STATE(2965)] = 109064, - [SMALL_STATE(2966)] = 109072, - [SMALL_STATE(2967)] = 109080, - [SMALL_STATE(2968)] = 109088, - [SMALL_STATE(2969)] = 109096, - [SMALL_STATE(2970)] = 109104, - [SMALL_STATE(2971)] = 109112, - [SMALL_STATE(2972)] = 109120, - [SMALL_STATE(2973)] = 109128, - [SMALL_STATE(2974)] = 109136, - [SMALL_STATE(2975)] = 109144, - [SMALL_STATE(2976)] = 109152, - [SMALL_STATE(2977)] = 109160, - [SMALL_STATE(2978)] = 109170, - [SMALL_STATE(2979)] = 109178, - [SMALL_STATE(2980)] = 109186, - [SMALL_STATE(2981)] = 109194, - [SMALL_STATE(2982)] = 109202, - [SMALL_STATE(2983)] = 109210, - [SMALL_STATE(2984)] = 109220, - [SMALL_STATE(2985)] = 109228, - [SMALL_STATE(2986)] = 109236, - [SMALL_STATE(2987)] = 109244, - [SMALL_STATE(2988)] = 109252, - [SMALL_STATE(2989)] = 109260, - [SMALL_STATE(2990)] = 109268, - [SMALL_STATE(2991)] = 109276, - [SMALL_STATE(2992)] = 109284, - [SMALL_STATE(2993)] = 109292, - [SMALL_STATE(2994)] = 109300, - [SMALL_STATE(2995)] = 109308, - [SMALL_STATE(2996)] = 109316, - [SMALL_STATE(2997)] = 109324, - [SMALL_STATE(2998)] = 109332, - [SMALL_STATE(2999)] = 109340, - [SMALL_STATE(3000)] = 109348, - [SMALL_STATE(3001)] = 109356, - [SMALL_STATE(3002)] = 109364, - [SMALL_STATE(3003)] = 109372, - [SMALL_STATE(3004)] = 109380, - [SMALL_STATE(3005)] = 109388, - [SMALL_STATE(3006)] = 109396, - [SMALL_STATE(3007)] = 109404, - [SMALL_STATE(3008)] = 109412, - [SMALL_STATE(3009)] = 109420, - [SMALL_STATE(3010)] = 109428, - [SMALL_STATE(3011)] = 109436, - [SMALL_STATE(3012)] = 109444, - [SMALL_STATE(3013)] = 109452, - [SMALL_STATE(3014)] = 109460, - [SMALL_STATE(3015)] = 109468, - [SMALL_STATE(3016)] = 109476, - [SMALL_STATE(3017)] = 109486, - [SMALL_STATE(3018)] = 109496, - [SMALL_STATE(3019)] = 109504, - [SMALL_STATE(3020)] = 109512, - [SMALL_STATE(3021)] = 109520, - [SMALL_STATE(3022)] = 109528, - [SMALL_STATE(3023)] = 109536, - [SMALL_STATE(3024)] = 109544, - [SMALL_STATE(3025)] = 109552, - [SMALL_STATE(3026)] = 109560, - [SMALL_STATE(3027)] = 109570, - [SMALL_STATE(3028)] = 109578, - [SMALL_STATE(3029)] = 109586, - [SMALL_STATE(3030)] = 109594, - [SMALL_STATE(3031)] = 109602, - [SMALL_STATE(3032)] = 109610, - [SMALL_STATE(3033)] = 109618, - [SMALL_STATE(3034)] = 109626, - [SMALL_STATE(3035)] = 109634, - [SMALL_STATE(3036)] = 109642, - [SMALL_STATE(3037)] = 109652, - [SMALL_STATE(3038)] = 109660, - [SMALL_STATE(3039)] = 109668, - [SMALL_STATE(3040)] = 109676, - [SMALL_STATE(3041)] = 109684, - [SMALL_STATE(3042)] = 109692, - [SMALL_STATE(3043)] = 109700, - [SMALL_STATE(3044)] = 109708, - [SMALL_STATE(3045)] = 109718, - [SMALL_STATE(3046)] = 109726, - [SMALL_STATE(3047)] = 109734, - [SMALL_STATE(3048)] = 109742, - [SMALL_STATE(3049)] = 109752, - [SMALL_STATE(3050)] = 109760, - [SMALL_STATE(3051)] = 109768, - [SMALL_STATE(3052)] = 109776, - [SMALL_STATE(3053)] = 109784, - [SMALL_STATE(3054)] = 109792, - [SMALL_STATE(3055)] = 109800, - [SMALL_STATE(3056)] = 109808, - [SMALL_STATE(3057)] = 109816, - [SMALL_STATE(3058)] = 109824, - [SMALL_STATE(3059)] = 109832, - [SMALL_STATE(3060)] = 109840, - [SMALL_STATE(3061)] = 109848, - [SMALL_STATE(3062)] = 109856, - [SMALL_STATE(3063)] = 109864, - [SMALL_STATE(3064)] = 109874, - [SMALL_STATE(3065)] = 109882, - [SMALL_STATE(3066)] = 109890, - [SMALL_STATE(3067)] = 109898, - [SMALL_STATE(3068)] = 109908, - [SMALL_STATE(3069)] = 109916, - [SMALL_STATE(3070)] = 109924, - [SMALL_STATE(3071)] = 109932, - [SMALL_STATE(3072)] = 109940, - [SMALL_STATE(3073)] = 109948, - [SMALL_STATE(3074)] = 109956, - [SMALL_STATE(3075)] = 109964, - [SMALL_STATE(3076)] = 109972, - [SMALL_STATE(3077)] = 109980, - [SMALL_STATE(3078)] = 109988, - [SMALL_STATE(3079)] = 109996, - [SMALL_STATE(3080)] = 110004, - [SMALL_STATE(3081)] = 110012, - [SMALL_STATE(3082)] = 110020, - [SMALL_STATE(3083)] = 110030, - [SMALL_STATE(3084)] = 110038, - [SMALL_STATE(3085)] = 110046, - [SMALL_STATE(3086)] = 110054, - [SMALL_STATE(3087)] = 110064, - [SMALL_STATE(3088)] = 110072, - [SMALL_STATE(3089)] = 110080, - [SMALL_STATE(3090)] = 110088, - [SMALL_STATE(3091)] = 110096, - [SMALL_STATE(3092)] = 110104, - [SMALL_STATE(3093)] = 110112, - [SMALL_STATE(3094)] = 110120, - [SMALL_STATE(3095)] = 110128, - [SMALL_STATE(3096)] = 110136, - [SMALL_STATE(3097)] = 110144, - [SMALL_STATE(3098)] = 110152, - [SMALL_STATE(3099)] = 110160, - [SMALL_STATE(3100)] = 110168, - [SMALL_STATE(3101)] = 110176, - [SMALL_STATE(3102)] = 110184, - [SMALL_STATE(3103)] = 110192, - [SMALL_STATE(3104)] = 110200, - [SMALL_STATE(3105)] = 110208, - [SMALL_STATE(3106)] = 110216, - [SMALL_STATE(3107)] = 110224, - [SMALL_STATE(3108)] = 110232, - [SMALL_STATE(3109)] = 110240, - [SMALL_STATE(3110)] = 110248, - [SMALL_STATE(3111)] = 110256, - [SMALL_STATE(3112)] = 110264, - [SMALL_STATE(3113)] = 110272, - [SMALL_STATE(3114)] = 110280, - [SMALL_STATE(3115)] = 110288, - [SMALL_STATE(3116)] = 110296, - [SMALL_STATE(3117)] = 110304, - [SMALL_STATE(3118)] = 110312, - [SMALL_STATE(3119)] = 110320, - [SMALL_STATE(3120)] = 110328, - [SMALL_STATE(3121)] = 110336, - [SMALL_STATE(3122)] = 110344, - [SMALL_STATE(3123)] = 110354, - [SMALL_STATE(3124)] = 110362, - [SMALL_STATE(3125)] = 110372, - [SMALL_STATE(3126)] = 110380, - [SMALL_STATE(3127)] = 110388, - [SMALL_STATE(3128)] = 110398, - [SMALL_STATE(3129)] = 110406, - [SMALL_STATE(3130)] = 110414, - [SMALL_STATE(3131)] = 110422, - [SMALL_STATE(3132)] = 110430, - [SMALL_STATE(3133)] = 110438, - [SMALL_STATE(3134)] = 110446, - [SMALL_STATE(3135)] = 110456, - [SMALL_STATE(3136)] = 110466, - [SMALL_STATE(3137)] = 110476, - [SMALL_STATE(3138)] = 110484, - [SMALL_STATE(3139)] = 110492, - [SMALL_STATE(3140)] = 110500, - [SMALL_STATE(3141)] = 110508, - [SMALL_STATE(3142)] = 110516, - [SMALL_STATE(3143)] = 110524, - [SMALL_STATE(3144)] = 110532, - [SMALL_STATE(3145)] = 110540, - [SMALL_STATE(3146)] = 110550, - [SMALL_STATE(3147)] = 110558, - [SMALL_STATE(3148)] = 110566, - [SMALL_STATE(3149)] = 110574, - [SMALL_STATE(3150)] = 110582, - [SMALL_STATE(3151)] = 110590, - [SMALL_STATE(3152)] = 110600, - [SMALL_STATE(3153)] = 110608, - [SMALL_STATE(3154)] = 110616, - [SMALL_STATE(3155)] = 110624, - [SMALL_STATE(3156)] = 110632, - [SMALL_STATE(3157)] = 110640, - [SMALL_STATE(3158)] = 110648, - [SMALL_STATE(3159)] = 110656, - [SMALL_STATE(3160)] = 110664, - [SMALL_STATE(3161)] = 110672, - [SMALL_STATE(3162)] = 110680, - [SMALL_STATE(3163)] = 110688, - [SMALL_STATE(3164)] = 110698, - [SMALL_STATE(3165)] = 110706, - [SMALL_STATE(3166)] = 110716, - [SMALL_STATE(3167)] = 110724, - [SMALL_STATE(3168)] = 110732, - [SMALL_STATE(3169)] = 110740, - [SMALL_STATE(3170)] = 110748, - [SMALL_STATE(3171)] = 110758, - [SMALL_STATE(3172)] = 110766, - [SMALL_STATE(3173)] = 110774, - [SMALL_STATE(3174)] = 110782, - [SMALL_STATE(3175)] = 110790, - [SMALL_STATE(3176)] = 110798, - [SMALL_STATE(3177)] = 110806, - [SMALL_STATE(3178)] = 110814, - [SMALL_STATE(3179)] = 110822, - [SMALL_STATE(3180)] = 110832, - [SMALL_STATE(3181)] = 110840, - [SMALL_STATE(3182)] = 110848, - [SMALL_STATE(3183)] = 110856, - [SMALL_STATE(3184)] = 110864, - [SMALL_STATE(3185)] = 110872, - [SMALL_STATE(3186)] = 110880, - [SMALL_STATE(3187)] = 110888, - [SMALL_STATE(3188)] = 110896, - [SMALL_STATE(3189)] = 110904, - [SMALL_STATE(3190)] = 110912, - [SMALL_STATE(3191)] = 110920, - [SMALL_STATE(3192)] = 110928, - [SMALL_STATE(3193)] = 110936, - [SMALL_STATE(3194)] = 110944, - [SMALL_STATE(3195)] = 110952, - [SMALL_STATE(3196)] = 110960, - [SMALL_STATE(3197)] = 110968, - [SMALL_STATE(3198)] = 110978, - [SMALL_STATE(3199)] = 110986, - [SMALL_STATE(3200)] = 110994, - [SMALL_STATE(3201)] = 111002, - [SMALL_STATE(3202)] = 111010, - [SMALL_STATE(3203)] = 111018, - [SMALL_STATE(3204)] = 111026, - [SMALL_STATE(3205)] = 111034, - [SMALL_STATE(3206)] = 111044, - [SMALL_STATE(3207)] = 111054, - [SMALL_STATE(3208)] = 111062, - [SMALL_STATE(3209)] = 111070, - [SMALL_STATE(3210)] = 111078, - [SMALL_STATE(3211)] = 111086, - [SMALL_STATE(3212)] = 111094, - [SMALL_STATE(3213)] = 111102, - [SMALL_STATE(3214)] = 111110, - [SMALL_STATE(3215)] = 111118, - [SMALL_STATE(3216)] = 111128, - [SMALL_STATE(3217)] = 111136, - [SMALL_STATE(3218)] = 111144, - [SMALL_STATE(3219)] = 111152, - [SMALL_STATE(3220)] = 111160, - [SMALL_STATE(3221)] = 111168, - [SMALL_STATE(3222)] = 111176, - [SMALL_STATE(3223)] = 111184, - [SMALL_STATE(3224)] = 111192, - [SMALL_STATE(3225)] = 111200, - [SMALL_STATE(3226)] = 111208, - [SMALL_STATE(3227)] = 111216, - [SMALL_STATE(3228)] = 111224, - [SMALL_STATE(3229)] = 111232, - [SMALL_STATE(3230)] = 111240, - [SMALL_STATE(3231)] = 111248, - [SMALL_STATE(3232)] = 111256, - [SMALL_STATE(3233)] = 111264, - [SMALL_STATE(3234)] = 111272, - [SMALL_STATE(3235)] = 111280, - [SMALL_STATE(3236)] = 111288, - [SMALL_STATE(3237)] = 111296, - [SMALL_STATE(3238)] = 111304, - [SMALL_STATE(3239)] = 111312, - [SMALL_STATE(3240)] = 111320, - [SMALL_STATE(3241)] = 111328, - [SMALL_STATE(3242)] = 111336, - [SMALL_STATE(3243)] = 111344, - [SMALL_STATE(3244)] = 111352, - [SMALL_STATE(3245)] = 111360, - [SMALL_STATE(3246)] = 111368, - [SMALL_STATE(3247)] = 111376, - [SMALL_STATE(3248)] = 111384, - [SMALL_STATE(3249)] = 111392, - [SMALL_STATE(3250)] = 111400, - [SMALL_STATE(3251)] = 111408, - [SMALL_STATE(3252)] = 111416, - [SMALL_STATE(3253)] = 111424, - [SMALL_STATE(3254)] = 111432, - [SMALL_STATE(3255)] = 111440, - [SMALL_STATE(3256)] = 111448, - [SMALL_STATE(3257)] = 111456, - [SMALL_STATE(3258)] = 111464, - [SMALL_STATE(3259)] = 111472, - [SMALL_STATE(3260)] = 111480, - [SMALL_STATE(3261)] = 111488, - [SMALL_STATE(3262)] = 111496, - [SMALL_STATE(3263)] = 111504, - [SMALL_STATE(3264)] = 111512, - [SMALL_STATE(3265)] = 111520, - [SMALL_STATE(3266)] = 111530, - [SMALL_STATE(3267)] = 111538, - [SMALL_STATE(3268)] = 111546, - [SMALL_STATE(3269)] = 111554, - [SMALL_STATE(3270)] = 111562, - [SMALL_STATE(3271)] = 111570, - [SMALL_STATE(3272)] = 111578, - [SMALL_STATE(3273)] = 111586, - [SMALL_STATE(3274)] = 111596, - [SMALL_STATE(3275)] = 111604, - [SMALL_STATE(3276)] = 111612, - [SMALL_STATE(3277)] = 111620, - [SMALL_STATE(3278)] = 111628, - [SMALL_STATE(3279)] = 111636, - [SMALL_STATE(3280)] = 111644, - [SMALL_STATE(3281)] = 111652, - [SMALL_STATE(3282)] = 111660, - [SMALL_STATE(3283)] = 111668, - [SMALL_STATE(3284)] = 111676, - [SMALL_STATE(3285)] = 111686, - [SMALL_STATE(3286)] = 111694, - [SMALL_STATE(3287)] = 111702, - [SMALL_STATE(3288)] = 111710, - [SMALL_STATE(3289)] = 111720, - [SMALL_STATE(3290)] = 111728, - [SMALL_STATE(3291)] = 111736, - [SMALL_STATE(3292)] = 111744, - [SMALL_STATE(3293)] = 111752, - [SMALL_STATE(3294)] = 111762, - [SMALL_STATE(3295)] = 111770, - [SMALL_STATE(3296)] = 111778, - [SMALL_STATE(3297)] = 111786, - [SMALL_STATE(3298)] = 111796, - [SMALL_STATE(3299)] = 111806, - [SMALL_STATE(3300)] = 111816, - [SMALL_STATE(3301)] = 111824, - [SMALL_STATE(3302)] = 111832, - [SMALL_STATE(3303)] = 111840, - [SMALL_STATE(3304)] = 111848, - [SMALL_STATE(3305)] = 111856, - [SMALL_STATE(3306)] = 111864, - [SMALL_STATE(3307)] = 111872, - [SMALL_STATE(3308)] = 111880, - [SMALL_STATE(3309)] = 111888, - [SMALL_STATE(3310)] = 111896, - [SMALL_STATE(3311)] = 111904, - [SMALL_STATE(3312)] = 111912, - [SMALL_STATE(3313)] = 111920, - [SMALL_STATE(3314)] = 111928, - [SMALL_STATE(3315)] = 111936, - [SMALL_STATE(3316)] = 111944, - [SMALL_STATE(3317)] = 111952, - [SMALL_STATE(3318)] = 111962, - [SMALL_STATE(3319)] = 111970, - [SMALL_STATE(3320)] = 111978, - [SMALL_STATE(3321)] = 111986, - [SMALL_STATE(3322)] = 111994, - [SMALL_STATE(3323)] = 112002, - [SMALL_STATE(3324)] = 112010, - [SMALL_STATE(3325)] = 112018, - [SMALL_STATE(3326)] = 112028, - [SMALL_STATE(3327)] = 112036, - [SMALL_STATE(3328)] = 112046, - [SMALL_STATE(3329)] = 112054, - [SMALL_STATE(3330)] = 112062, - [SMALL_STATE(3331)] = 112070, - [SMALL_STATE(3332)] = 112078, - [SMALL_STATE(3333)] = 112088, - [SMALL_STATE(3334)] = 112096, - [SMALL_STATE(3335)] = 112104, - [SMALL_STATE(3336)] = 112112, - [SMALL_STATE(3337)] = 112120, - [SMALL_STATE(3338)] = 112128, - [SMALL_STATE(3339)] = 112136, - [SMALL_STATE(3340)] = 112144, - [SMALL_STATE(3341)] = 112152, - [SMALL_STATE(3342)] = 112160, - [SMALL_STATE(3343)] = 112168, - [SMALL_STATE(3344)] = 112176, - [SMALL_STATE(3345)] = 112184, - [SMALL_STATE(3346)] = 112192, - [SMALL_STATE(3347)] = 112200, - [SMALL_STATE(3348)] = 112208, - [SMALL_STATE(3349)] = 112216, - [SMALL_STATE(3350)] = 112224, - [SMALL_STATE(3351)] = 112232, - [SMALL_STATE(3352)] = 112240, - [SMALL_STATE(3353)] = 112248, - [SMALL_STATE(3354)] = 112256, - [SMALL_STATE(3355)] = 112264, - [SMALL_STATE(3356)] = 112272, - [SMALL_STATE(3357)] = 112280, - [SMALL_STATE(3358)] = 112288, - [SMALL_STATE(3359)] = 112296, - [SMALL_STATE(3360)] = 112304, - [SMALL_STATE(3361)] = 112312, - [SMALL_STATE(3362)] = 112320, - [SMALL_STATE(3363)] = 112328, - [SMALL_STATE(3364)] = 112338, - [SMALL_STATE(3365)] = 112346, - [SMALL_STATE(3366)] = 112354, - [SMALL_STATE(3367)] = 112362, - [SMALL_STATE(3368)] = 112370, - [SMALL_STATE(3369)] = 112378, - [SMALL_STATE(3370)] = 112386, - [SMALL_STATE(3371)] = 112394, - [SMALL_STATE(3372)] = 112404, - [SMALL_STATE(3373)] = 112412, - [SMALL_STATE(3374)] = 112420, - [SMALL_STATE(3375)] = 112428, - [SMALL_STATE(3376)] = 112436, - [SMALL_STATE(3377)] = 112444, - [SMALL_STATE(3378)] = 112452, - [SMALL_STATE(3379)] = 112460, - [SMALL_STATE(3380)] = 112468, - [SMALL_STATE(3381)] = 112476, - [SMALL_STATE(3382)] = 112484, - [SMALL_STATE(3383)] = 112492, - [SMALL_STATE(3384)] = 112500, - [SMALL_STATE(3385)] = 112508, - [SMALL_STATE(3386)] = 112516, - [SMALL_STATE(3387)] = 112524, - [SMALL_STATE(3388)] = 112532, - [SMALL_STATE(3389)] = 112540, - [SMALL_STATE(3390)] = 112548, - [SMALL_STATE(3391)] = 112556, - [SMALL_STATE(3392)] = 112564, - [SMALL_STATE(3393)] = 112572, - [SMALL_STATE(3394)] = 112580, - [SMALL_STATE(3395)] = 112588, - [SMALL_STATE(3396)] = 112596, - [SMALL_STATE(3397)] = 112604, - [SMALL_STATE(3398)] = 112612, - [SMALL_STATE(3399)] = 112620, - [SMALL_STATE(3400)] = 112628, - [SMALL_STATE(3401)] = 112636, - [SMALL_STATE(3402)] = 112644, - [SMALL_STATE(3403)] = 112652, - [SMALL_STATE(3404)] = 112660, - [SMALL_STATE(3405)] = 112668, - [SMALL_STATE(3406)] = 112676, - [SMALL_STATE(3407)] = 112684, - [SMALL_STATE(3408)] = 112692, - [SMALL_STATE(3409)] = 112700, - [SMALL_STATE(3410)] = 112708, - [SMALL_STATE(3411)] = 112716, - [SMALL_STATE(3412)] = 112724, - [SMALL_STATE(3413)] = 112732, - [SMALL_STATE(3414)] = 112740, - [SMALL_STATE(3415)] = 112748, - [SMALL_STATE(3416)] = 112756, - [SMALL_STATE(3417)] = 112764, - [SMALL_STATE(3418)] = 112772, - [SMALL_STATE(3419)] = 112780, - [SMALL_STATE(3420)] = 112788, - [SMALL_STATE(3421)] = 112796, - [SMALL_STATE(3422)] = 112804, - [SMALL_STATE(3423)] = 112812, - [SMALL_STATE(3424)] = 112820, - [SMALL_STATE(3425)] = 112828, - [SMALL_STATE(3426)] = 112836, - [SMALL_STATE(3427)] = 112844, - [SMALL_STATE(3428)] = 112852, - [SMALL_STATE(3429)] = 112860, - [SMALL_STATE(3430)] = 112868, - [SMALL_STATE(3431)] = 112876, - [SMALL_STATE(3432)] = 112884, - [SMALL_STATE(3433)] = 112892, - [SMALL_STATE(3434)] = 112900, - [SMALL_STATE(3435)] = 112908, - [SMALL_STATE(3436)] = 112916, - [SMALL_STATE(3437)] = 112924, - [SMALL_STATE(3438)] = 112934, - [SMALL_STATE(3439)] = 112942, - [SMALL_STATE(3440)] = 112950, - [SMALL_STATE(3441)] = 112958, - [SMALL_STATE(3442)] = 112966, - [SMALL_STATE(3443)] = 112974, - [SMALL_STATE(3444)] = 112982, - [SMALL_STATE(3445)] = 112990, - [SMALL_STATE(3446)] = 112998, - [SMALL_STATE(3447)] = 113006, - [SMALL_STATE(3448)] = 113014, - [SMALL_STATE(3449)] = 113022, - [SMALL_STATE(3450)] = 113030, - [SMALL_STATE(3451)] = 113038, - [SMALL_STATE(3452)] = 113046, - [SMALL_STATE(3453)] = 113054, - [SMALL_STATE(3454)] = 113062, - [SMALL_STATE(3455)] = 113070, - [SMALL_STATE(3456)] = 113078, - [SMALL_STATE(3457)] = 113086, - [SMALL_STATE(3458)] = 113094, - [SMALL_STATE(3459)] = 113104, - [SMALL_STATE(3460)] = 113112, + [SMALL_STATE(621)] = 0, + [SMALL_STATE(622)] = 117, + [SMALL_STATE(623)] = 234, + [SMALL_STATE(624)] = 351, + [SMALL_STATE(625)] = 468, + [SMALL_STATE(626)] = 582, + [SMALL_STATE(627)] = 697, + [SMALL_STATE(628)] = 808, + [SMALL_STATE(629)] = 921, + [SMALL_STATE(630)] = 1032, + [SMALL_STATE(631)] = 1143, + [SMALL_STATE(632)] = 1256, + [SMALL_STATE(633)] = 1369, + [SMALL_STATE(634)] = 1482, + [SMALL_STATE(635)] = 1595, + [SMALL_STATE(636)] = 1706, + [SMALL_STATE(637)] = 1817, + [SMALL_STATE(638)] = 1930, + [SMALL_STATE(639)] = 2041, + [SMALL_STATE(640)] = 2154, + [SMALL_STATE(641)] = 2265, + [SMALL_STATE(642)] = 2378, + [SMALL_STATE(643)] = 2489, + [SMALL_STATE(644)] = 2602, + [SMALL_STATE(645)] = 2693, + [SMALL_STATE(646)] = 2804, + [SMALL_STATE(647)] = 2915, + [SMALL_STATE(648)] = 3030, + [SMALL_STATE(649)] = 3141, + [SMALL_STATE(650)] = 3254, + [SMALL_STATE(651)] = 3367, + [SMALL_STATE(652)] = 3480, + [SMALL_STATE(653)] = 3591, + [SMALL_STATE(654)] = 3704, + [SMALL_STATE(655)] = 3815, + [SMALL_STATE(656)] = 3926, + [SMALL_STATE(657)] = 4037, + [SMALL_STATE(658)] = 4148, + [SMALL_STATE(659)] = 4259, + [SMALL_STATE(660)] = 4370, + [SMALL_STATE(661)] = 4483, + [SMALL_STATE(662)] = 4596, + [SMALL_STATE(663)] = 4709, + [SMALL_STATE(664)] = 4822, + [SMALL_STATE(665)] = 4933, + [SMALL_STATE(666)] = 5044, + [SMALL_STATE(667)] = 5155, + [SMALL_STATE(668)] = 5266, + [SMALL_STATE(669)] = 5379, + [SMALL_STATE(670)] = 5490, + [SMALL_STATE(671)] = 5603, + [SMALL_STATE(672)] = 5714, + [SMALL_STATE(673)] = 5827, + [SMALL_STATE(674)] = 5938, + [SMALL_STATE(675)] = 6049, + [SMALL_STATE(676)] = 6162, + [SMALL_STATE(677)] = 6273, + [SMALL_STATE(678)] = 6386, + [SMALL_STATE(679)] = 6497, + [SMALL_STATE(680)] = 6610, + [SMALL_STATE(681)] = 6723, + [SMALL_STATE(682)] = 6836, + [SMALL_STATE(683)] = 6949, + [SMALL_STATE(684)] = 7062, + [SMALL_STATE(685)] = 7175, + [SMALL_STATE(686)] = 7286, + [SMALL_STATE(687)] = 7399, + [SMALL_STATE(688)] = 7512, + [SMALL_STATE(689)] = 7623, + [SMALL_STATE(690)] = 7736, + [SMALL_STATE(691)] = 7847, + [SMALL_STATE(692)] = 7960, + [SMALL_STATE(693)] = 8073, + [SMALL_STATE(694)] = 8184, + [SMALL_STATE(695)] = 8295, + [SMALL_STATE(696)] = 8408, + [SMALL_STATE(697)] = 8519, + [SMALL_STATE(698)] = 8632, + [SMALL_STATE(699)] = 8740, + [SMALL_STATE(700)] = 8852, + [SMALL_STATE(701)] = 8960, + [SMALL_STATE(702)] = 9068, + [SMALL_STATE(703)] = 9176, + [SMALL_STATE(704)] = 9284, + [SMALL_STATE(705)] = 9392, + [SMALL_STATE(706)] = 9502, + [SMALL_STATE(707)] = 9610, + [SMALL_STATE(708)] = 9720, + [SMALL_STATE(709)] = 9830, + [SMALL_STATE(710)] = 9938, + [SMALL_STATE(711)] = 10046, + [SMALL_STATE(712)] = 10154, + [SMALL_STATE(713)] = 10262, + [SMALL_STATE(714)] = 10372, + [SMALL_STATE(715)] = 10480, + [SMALL_STATE(716)] = 10588, + [SMALL_STATE(717)] = 10696, + [SMALL_STATE(718)] = 10804, + [SMALL_STATE(719)] = 10914, + [SMALL_STATE(720)] = 11024, + [SMALL_STATE(721)] = 11132, + [SMALL_STATE(722)] = 11240, + [SMALL_STATE(723)] = 11345, + [SMALL_STATE(724)] = 11450, + [SMALL_STATE(725)] = 11555, + [SMALL_STATE(726)] = 11660, + [SMALL_STATE(727)] = 11765, + [SMALL_STATE(728)] = 11870, + [SMALL_STATE(729)] = 11975, + [SMALL_STATE(730)] = 12080, + [SMALL_STATE(731)] = 12185, + [SMALL_STATE(732)] = 12290, + [SMALL_STATE(733)] = 12395, + [SMALL_STATE(734)] = 12500, + [SMALL_STATE(735)] = 12605, + [SMALL_STATE(736)] = 12710, + [SMALL_STATE(737)] = 12815, + [SMALL_STATE(738)] = 12920, + [SMALL_STATE(739)] = 13025, + [SMALL_STATE(740)] = 13130, + [SMALL_STATE(741)] = 13235, + [SMALL_STATE(742)] = 13340, + [SMALL_STATE(743)] = 13445, + [SMALL_STATE(744)] = 13550, + [SMALL_STATE(745)] = 13655, + [SMALL_STATE(746)] = 13760, + [SMALL_STATE(747)] = 13865, + [SMALL_STATE(748)] = 13970, + [SMALL_STATE(749)] = 14075, + [SMALL_STATE(750)] = 14180, + [SMALL_STATE(751)] = 14285, + [SMALL_STATE(752)] = 14390, + [SMALL_STATE(753)] = 14495, + [SMALL_STATE(754)] = 14600, + [SMALL_STATE(755)] = 14705, + [SMALL_STATE(756)] = 14810, + [SMALL_STATE(757)] = 14915, + [SMALL_STATE(758)] = 15020, + [SMALL_STATE(759)] = 15125, + [SMALL_STATE(760)] = 15230, + [SMALL_STATE(761)] = 15335, + [SMALL_STATE(762)] = 15440, + [SMALL_STATE(763)] = 15545, + [SMALL_STATE(764)] = 15650, + [SMALL_STATE(765)] = 15755, + [SMALL_STATE(766)] = 15860, + [SMALL_STATE(767)] = 15965, + [SMALL_STATE(768)] = 16070, + [SMALL_STATE(769)] = 16175, + [SMALL_STATE(770)] = 16280, + [SMALL_STATE(771)] = 16385, + [SMALL_STATE(772)] = 16490, + [SMALL_STATE(773)] = 16595, + [SMALL_STATE(774)] = 16700, + [SMALL_STATE(775)] = 16805, + [SMALL_STATE(776)] = 16910, + [SMALL_STATE(777)] = 17015, + [SMALL_STATE(778)] = 17120, + [SMALL_STATE(779)] = 17225, + [SMALL_STATE(780)] = 17330, + [SMALL_STATE(781)] = 17435, + [SMALL_STATE(782)] = 17540, + [SMALL_STATE(783)] = 17645, + [SMALL_STATE(784)] = 17750, + [SMALL_STATE(785)] = 17855, + [SMALL_STATE(786)] = 17960, + [SMALL_STATE(787)] = 18065, + [SMALL_STATE(788)] = 18170, + [SMALL_STATE(789)] = 18275, + [SMALL_STATE(790)] = 18380, + [SMALL_STATE(791)] = 18485, + [SMALL_STATE(792)] = 18590, + [SMALL_STATE(793)] = 18695, + [SMALL_STATE(794)] = 18800, + [SMALL_STATE(795)] = 18905, + [SMALL_STATE(796)] = 19010, + [SMALL_STATE(797)] = 19115, + [SMALL_STATE(798)] = 19220, + [SMALL_STATE(799)] = 19325, + [SMALL_STATE(800)] = 19430, + [SMALL_STATE(801)] = 19535, + [SMALL_STATE(802)] = 19640, + [SMALL_STATE(803)] = 19745, + [SMALL_STATE(804)] = 19850, + [SMALL_STATE(805)] = 19955, + [SMALL_STATE(806)] = 20060, + [SMALL_STATE(807)] = 20165, + [SMALL_STATE(808)] = 20270, + [SMALL_STATE(809)] = 20375, + [SMALL_STATE(810)] = 20480, + [SMALL_STATE(811)] = 20585, + [SMALL_STATE(812)] = 20690, + [SMALL_STATE(813)] = 20795, + [SMALL_STATE(814)] = 20900, + [SMALL_STATE(815)] = 21005, + [SMALL_STATE(816)] = 21110, + [SMALL_STATE(817)] = 21215, + [SMALL_STATE(818)] = 21320, + [SMALL_STATE(819)] = 21425, + [SMALL_STATE(820)] = 21530, + [SMALL_STATE(821)] = 21635, + [SMALL_STATE(822)] = 21740, + [SMALL_STATE(823)] = 21845, + [SMALL_STATE(824)] = 21950, + [SMALL_STATE(825)] = 22055, + [SMALL_STATE(826)] = 22160, + [SMALL_STATE(827)] = 22265, + [SMALL_STATE(828)] = 22370, + [SMALL_STATE(829)] = 22475, + [SMALL_STATE(830)] = 22580, + [SMALL_STATE(831)] = 22685, + [SMALL_STATE(832)] = 22790, + [SMALL_STATE(833)] = 22895, + [SMALL_STATE(834)] = 23000, + [SMALL_STATE(835)] = 23105, + [SMALL_STATE(836)] = 23210, + [SMALL_STATE(837)] = 23315, + [SMALL_STATE(838)] = 23420, + [SMALL_STATE(839)] = 23525, + [SMALL_STATE(840)] = 23630, + [SMALL_STATE(841)] = 23735, + [SMALL_STATE(842)] = 23840, + [SMALL_STATE(843)] = 23945, + [SMALL_STATE(844)] = 24050, + [SMALL_STATE(845)] = 24155, + [SMALL_STATE(846)] = 24260, + [SMALL_STATE(847)] = 24365, + [SMALL_STATE(848)] = 24470, + [SMALL_STATE(849)] = 24575, + [SMALL_STATE(850)] = 24680, + [SMALL_STATE(851)] = 24785, + [SMALL_STATE(852)] = 24890, + [SMALL_STATE(853)] = 24995, + [SMALL_STATE(854)] = 25100, + [SMALL_STATE(855)] = 25205, + [SMALL_STATE(856)] = 25310, + [SMALL_STATE(857)] = 25415, + [SMALL_STATE(858)] = 25520, + [SMALL_STATE(859)] = 25625, + [SMALL_STATE(860)] = 25730, + [SMALL_STATE(861)] = 25835, + [SMALL_STATE(862)] = 25940, + [SMALL_STATE(863)] = 26045, + [SMALL_STATE(864)] = 26150, + [SMALL_STATE(865)] = 26255, + [SMALL_STATE(866)] = 26360, + [SMALL_STATE(867)] = 26465, + [SMALL_STATE(868)] = 26570, + [SMALL_STATE(869)] = 26675, + [SMALL_STATE(870)] = 26780, + [SMALL_STATE(871)] = 26885, + [SMALL_STATE(872)] = 26990, + [SMALL_STATE(873)] = 27095, + [SMALL_STATE(874)] = 27200, + [SMALL_STATE(875)] = 27305, + [SMALL_STATE(876)] = 27410, + [SMALL_STATE(877)] = 27515, + [SMALL_STATE(878)] = 27588, + [SMALL_STATE(879)] = 27691, + [SMALL_STATE(880)] = 27794, + [SMALL_STATE(881)] = 27897, + [SMALL_STATE(882)] = 27970, + [SMALL_STATE(883)] = 28073, + [SMALL_STATE(884)] = 28146, + [SMALL_STATE(885)] = 28249, + [SMALL_STATE(886)] = 28322, + [SMALL_STATE(887)] = 28425, + [SMALL_STATE(888)] = 28528, + [SMALL_STATE(889)] = 28631, + [SMALL_STATE(890)] = 28734, + [SMALL_STATE(891)] = 28837, + [SMALL_STATE(892)] = 28910, + [SMALL_STATE(893)] = 29013, + [SMALL_STATE(894)] = 29116, + [SMALL_STATE(895)] = 29202, + [SMALL_STATE(896)] = 29302, + [SMALL_STATE(897)] = 29402, + [SMALL_STATE(898)] = 29473, + [SMALL_STATE(899)] = 29544, + [SMALL_STATE(900)] = 29609, + [SMALL_STATE(901)] = 29674, + [SMALL_STATE(902)] = 29745, + [SMALL_STATE(903)] = 29809, + [SMALL_STATE(904)] = 29873, + [SMALL_STATE(905)] = 29937, + [SMALL_STATE(906)] = 30001, + [SMALL_STATE(907)] = 30065, + [SMALL_STATE(908)] = 30129, + [SMALL_STATE(909)] = 30193, + [SMALL_STATE(910)] = 30257, + [SMALL_STATE(911)] = 30321, + [SMALL_STATE(912)] = 30385, + [SMALL_STATE(913)] = 30449, + [SMALL_STATE(914)] = 30519, + [SMALL_STATE(915)] = 30583, + [SMALL_STATE(916)] = 30647, + [SMALL_STATE(917)] = 30711, + [SMALL_STATE(918)] = 30775, + [SMALL_STATE(919)] = 30839, + [SMALL_STATE(920)] = 30903, + [SMALL_STATE(921)] = 30967, + [SMALL_STATE(922)] = 31031, + [SMALL_STATE(923)] = 31095, + [SMALL_STATE(924)] = 31159, + [SMALL_STATE(925)] = 31223, + [SMALL_STATE(926)] = 31286, + [SMALL_STATE(927)] = 31371, + [SMALL_STATE(928)] = 31442, + [SMALL_STATE(929)] = 31511, + [SMALL_STATE(930)] = 31574, + [SMALL_STATE(931)] = 31641, + [SMALL_STATE(932)] = 31710, + [SMALL_STATE(933)] = 31795, + [SMALL_STATE(934)] = 31864, + [SMALL_STATE(935)] = 31949, + [SMALL_STATE(936)] = 32034, + [SMALL_STATE(937)] = 32103, + [SMALL_STATE(938)] = 32185, + [SMALL_STATE(939)] = 32247, + [SMALL_STATE(940)] = 32329, + [SMALL_STATE(941)] = 32391, + [SMALL_STATE(942)] = 32473, + [SMALL_STATE(943)] = 32535, + [SMALL_STATE(944)] = 32607, + [SMALL_STATE(945)] = 32689, + [SMALL_STATE(946)] = 32771, + [SMALL_STATE(947)] = 32838, + [SMALL_STATE(948)] = 32907, + [SMALL_STATE(949)] = 32972, + [SMALL_STATE(950)] = 33039, + [SMALL_STATE(951)] = 33099, + [SMALL_STATE(952)] = 33159, + [SMALL_STATE(953)] = 33219, + [SMALL_STATE(954)] = 33279, + [SMALL_STATE(955)] = 33339, + [SMALL_STATE(956)] = 33399, + [SMALL_STATE(957)] = 33459, + [SMALL_STATE(958)] = 33519, + [SMALL_STATE(959)] = 33579, + [SMALL_STATE(960)] = 33643, + [SMALL_STATE(961)] = 33707, + [SMALL_STATE(962)] = 33767, + [SMALL_STATE(963)] = 33827, + [SMALL_STATE(964)] = 33887, + [SMALL_STATE(965)] = 33947, + [SMALL_STATE(966)] = 34007, + [SMALL_STATE(967)] = 34067, + [SMALL_STATE(968)] = 34131, + [SMALL_STATE(969)] = 34191, + [SMALL_STATE(970)] = 34251, + [SMALL_STATE(971)] = 34311, + [SMALL_STATE(972)] = 34371, + [SMALL_STATE(973)] = 34433, + [SMALL_STATE(974)] = 34493, + [SMALL_STATE(975)] = 34557, + [SMALL_STATE(976)] = 34621, + [SMALL_STATE(977)] = 34681, + [SMALL_STATE(978)] = 34741, + [SMALL_STATE(979)] = 34801, + [SMALL_STATE(980)] = 34861, + [SMALL_STATE(981)] = 34925, + [SMALL_STATE(982)] = 34985, + [SMALL_STATE(983)] = 35045, + [SMALL_STATE(984)] = 35105, + [SMALL_STATE(985)] = 35165, + [SMALL_STATE(986)] = 35225, + [SMALL_STATE(987)] = 35285, + [SMALL_STATE(988)] = 35345, + [SMALL_STATE(989)] = 35409, + [SMALL_STATE(990)] = 35469, + [SMALL_STATE(991)] = 35529, + [SMALL_STATE(992)] = 35589, + [SMALL_STATE(993)] = 35653, + [SMALL_STATE(994)] = 35717, + [SMALL_STATE(995)] = 35777, + [SMALL_STATE(996)] = 35837, + [SMALL_STATE(997)] = 35897, + [SMALL_STATE(998)] = 35957, + [SMALL_STATE(999)] = 36017, + [SMALL_STATE(1000)] = 36077, + [SMALL_STATE(1001)] = 36137, + [SMALL_STATE(1002)] = 36197, + [SMALL_STATE(1003)] = 36257, + [SMALL_STATE(1004)] = 36317, + [SMALL_STATE(1005)] = 36385, + [SMALL_STATE(1006)] = 36458, + [SMALL_STATE(1007)] = 36531, + [SMALL_STATE(1008)] = 36590, + [SMALL_STATE(1009)] = 36655, + [SMALL_STATE(1010)] = 36728, + [SMALL_STATE(1011)] = 36787, + [SMALL_STATE(1012)] = 36860, + [SMALL_STATE(1013)] = 36925, + [SMALL_STATE(1014)] = 36990, + [SMALL_STATE(1015)] = 37070, + [SMALL_STATE(1016)] = 37162, + [SMALL_STATE(1017)] = 37220, + [SMALL_STATE(1018)] = 37312, + [SMALL_STATE(1019)] = 37380, + [SMALL_STATE(1020)] = 37438, + [SMALL_STATE(1021)] = 37496, + [SMALL_STATE(1022)] = 37574, + [SMALL_STATE(1023)] = 37642, + [SMALL_STATE(1024)] = 37720, + [SMALL_STATE(1025)] = 37778, + [SMALL_STATE(1026)] = 37844, + [SMALL_STATE(1027)] = 37902, + [SMALL_STATE(1028)] = 37970, + [SMALL_STATE(1029)] = 38028, + [SMALL_STATE(1030)] = 38102, + [SMALL_STATE(1031)] = 38174, + [SMALL_STATE(1032)] = 38232, + [SMALL_STATE(1033)] = 38324, + [SMALL_STATE(1034)] = 38382, + [SMALL_STATE(1035)] = 38460, + [SMALL_STATE(1036)] = 38530, + [SMALL_STATE(1037)] = 38600, + [SMALL_STATE(1038)] = 38682, + [SMALL_STATE(1039)] = 38750, + [SMALL_STATE(1040)] = 38818, + [SMALL_STATE(1041)] = 38896, + [SMALL_STATE(1042)] = 38980, + [SMALL_STATE(1043)] = 39038, + [SMALL_STATE(1044)] = 39124, + [SMALL_STATE(1045)] = 39182, + [SMALL_STATE(1046)] = 39270, + [SMALL_STATE(1047)] = 39340, + [SMALL_STATE(1048)] = 39410, + [SMALL_STATE(1049)] = 39468, + [SMALL_STATE(1050)] = 39546, + [SMALL_STATE(1051)] = 39610, + [SMALL_STATE(1052)] = 39668, + [SMALL_STATE(1053)] = 39725, + [SMALL_STATE(1054)] = 39782, + [SMALL_STATE(1055)] = 39839, + [SMALL_STATE(1056)] = 39896, + [SMALL_STATE(1057)] = 39953, + [SMALL_STATE(1058)] = 40010, + [SMALL_STATE(1059)] = 40067, + [SMALL_STATE(1060)] = 40124, + [SMALL_STATE(1061)] = 40181, + [SMALL_STATE(1062)] = 40238, + [SMALL_STATE(1063)] = 40295, + [SMALL_STATE(1064)] = 40352, + [SMALL_STATE(1065)] = 40419, + [SMALL_STATE(1066)] = 40476, + [SMALL_STATE(1067)] = 40533, + [SMALL_STATE(1068)] = 40590, + [SMALL_STATE(1069)] = 40647, + [SMALL_STATE(1070)] = 40704, + [SMALL_STATE(1071)] = 40761, + [SMALL_STATE(1072)] = 40818, + [SMALL_STATE(1073)] = 40879, + [SMALL_STATE(1074)] = 40940, + [SMALL_STATE(1075)] = 41007, + [SMALL_STATE(1076)] = 41074, + [SMALL_STATE(1077)] = 41131, + [SMALL_STATE(1078)] = 41188, + [SMALL_STATE(1079)] = 41245, + [SMALL_STATE(1080)] = 41302, + [SMALL_STATE(1081)] = 41363, + [SMALL_STATE(1082)] = 41430, + [SMALL_STATE(1083)] = 41487, + [SMALL_STATE(1084)] = 41548, + [SMALL_STATE(1085)] = 41609, + [SMALL_STATE(1086)] = 41666, + [SMALL_STATE(1087)] = 41723, + [SMALL_STATE(1088)] = 41780, + [SMALL_STATE(1089)] = 41837, + [SMALL_STATE(1090)] = 41894, + [SMALL_STATE(1091)] = 41951, + [SMALL_STATE(1092)] = 42018, + [SMALL_STATE(1093)] = 42075, + [SMALL_STATE(1094)] = 42142, + [SMALL_STATE(1095)] = 42199, + [SMALL_STATE(1096)] = 42257, + [SMALL_STATE(1097)] = 42313, + [SMALL_STATE(1098)] = 42371, + [SMALL_STATE(1099)] = 42429, + [SMALL_STATE(1100)] = 42489, + [SMALL_STATE(1101)] = 42547, + [SMALL_STATE(1102)] = 42611, + [SMALL_STATE(1103)] = 42675, + [SMALL_STATE(1104)] = 42731, + [SMALL_STATE(1105)] = 42795, + [SMALL_STATE(1106)] = 42851, + [SMALL_STATE(1107)] = 42907, + [SMALL_STATE(1108)] = 42971, + [SMALL_STATE(1109)] = 43035, + [SMALL_STATE(1110)] = 43099, + [SMALL_STATE(1111)] = 43163, + [SMALL_STATE(1112)] = 43227, + [SMALL_STATE(1113)] = 43285, + [SMALL_STATE(1114)] = 43349, + [SMALL_STATE(1115)] = 43407, + [SMALL_STATE(1116)] = 43471, + [SMALL_STATE(1117)] = 43533, + [SMALL_STATE(1118)] = 43597, + [SMALL_STATE(1119)] = 43661, + [SMALL_STATE(1120)] = 43725, + [SMALL_STATE(1121)] = 43789, + [SMALL_STATE(1122)] = 43845, + [SMALL_STATE(1123)] = 43903, + [SMALL_STATE(1124)] = 43961, + [SMALL_STATE(1125)] = 44025, + [SMALL_STATE(1126)] = 44081, + [SMALL_STATE(1127)] = 44145, + [SMALL_STATE(1128)] = 44209, + [SMALL_STATE(1129)] = 44267, + [SMALL_STATE(1130)] = 44322, + [SMALL_STATE(1131)] = 44377, + [SMALL_STATE(1132)] = 44430, + [SMALL_STATE(1133)] = 44485, + [SMALL_STATE(1134)] = 44544, + [SMALL_STATE(1135)] = 44603, + [SMALL_STATE(1136)] = 44658, + [SMALL_STATE(1137)] = 44713, + [SMALL_STATE(1138)] = 44768, + [SMALL_STATE(1139)] = 44827, + [SMALL_STATE(1140)] = 44882, + [SMALL_STATE(1141)] = 44941, + [SMALL_STATE(1142)] = 44996, + [SMALL_STATE(1143)] = 45051, + [SMALL_STATE(1144)] = 45110, + [SMALL_STATE(1145)] = 45175, + [SMALL_STATE(1146)] = 45230, + [SMALL_STATE(1147)] = 45295, + [SMALL_STATE(1148)] = 45362, + [SMALL_STATE(1149)] = 45417, + [SMALL_STATE(1150)] = 45472, + [SMALL_STATE(1151)] = 45527, + [SMALL_STATE(1152)] = 45582, + [SMALL_STATE(1153)] = 45637, + [SMALL_STATE(1154)] = 45692, + [SMALL_STATE(1155)] = 45747, + [SMALL_STATE(1156)] = 45802, + [SMALL_STATE(1157)] = 45857, + [SMALL_STATE(1158)] = 45912, + [SMALL_STATE(1159)] = 45971, + [SMALL_STATE(1160)] = 46026, + [SMALL_STATE(1161)] = 46091, + [SMALL_STATE(1162)] = 46146, + [SMALL_STATE(1163)] = 46207, + [SMALL_STATE(1164)] = 46262, + [SMALL_STATE(1165)] = 46317, + [SMALL_STATE(1166)] = 46372, + [SMALL_STATE(1167)] = 46427, + [SMALL_STATE(1168)] = 46482, + [SMALL_STATE(1169)] = 46537, + [SMALL_STATE(1170)] = 46592, + [SMALL_STATE(1171)] = 46647, + [SMALL_STATE(1172)] = 46702, + [SMALL_STATE(1173)] = 46757, + [SMALL_STATE(1174)] = 46812, + [SMALL_STATE(1175)] = 46877, + [SMALL_STATE(1176)] = 46940, + [SMALL_STATE(1177)] = 47029, + [SMALL_STATE(1178)] = 47084, + [SMALL_STATE(1179)] = 47173, + [SMALL_STATE(1180)] = 47228, + [SMALL_STATE(1181)] = 47289, + [SMALL_STATE(1182)] = 47348, + [SMALL_STATE(1183)] = 47403, + [SMALL_STATE(1184)] = 47470, + [SMALL_STATE(1185)] = 47525, + [SMALL_STATE(1186)] = 47580, + [SMALL_STATE(1187)] = 47665, + [SMALL_STATE(1188)] = 47754, + [SMALL_STATE(1189)] = 47837, + [SMALL_STATE(1190)] = 47918, + [SMALL_STATE(1191)] = 47997, + [SMALL_STATE(1192)] = 48074, + [SMALL_STATE(1193)] = 48149, + [SMALL_STATE(1194)] = 48220, + [SMALL_STATE(1195)] = 48289, + [SMALL_STATE(1196)] = 48344, + [SMALL_STATE(1197)] = 48399, + [SMALL_STATE(1198)] = 48464, + [SMALL_STATE(1199)] = 48518, + [SMALL_STATE(1200)] = 48570, + [SMALL_STATE(1201)] = 48624, + [SMALL_STATE(1202)] = 48676, + [SMALL_STATE(1203)] = 48730, + [SMALL_STATE(1204)] = 48784, + [SMALL_STATE(1205)] = 48838, + [SMALL_STATE(1206)] = 48896, + [SMALL_STATE(1207)] = 48950, + [SMALL_STATE(1208)] = 49004, + [SMALL_STATE(1209)] = 49056, + [SMALL_STATE(1210)] = 49108, + [SMALL_STATE(1211)] = 49162, + [SMALL_STATE(1212)] = 49216, + [SMALL_STATE(1213)] = 49268, + [SMALL_STATE(1214)] = 49322, + [SMALL_STATE(1215)] = 49390, + [SMALL_STATE(1216)] = 49444, + [SMALL_STATE(1217)] = 49496, + [SMALL_STATE(1218)] = 49548, + [SMALL_STATE(1219)] = 49616, + [SMALL_STATE(1220)] = 49670, + [SMALL_STATE(1221)] = 49722, + [SMALL_STATE(1222)] = 49776, + [SMALL_STATE(1223)] = 49830, + [SMALL_STATE(1224)] = 49884, + [SMALL_STATE(1225)] = 49936, + [SMALL_STATE(1226)] = 49990, + [SMALL_STATE(1227)] = 50042, + [SMALL_STATE(1228)] = 50094, + [SMALL_STATE(1229)] = 50148, + [SMALL_STATE(1230)] = 50200, + [SMALL_STATE(1231)] = 50252, + [SMALL_STATE(1232)] = 50306, + [SMALL_STATE(1233)] = 50374, + [SMALL_STATE(1234)] = 50426, + [SMALL_STATE(1235)] = 50480, + [SMALL_STATE(1236)] = 50548, + [SMALL_STATE(1237)] = 50602, + [SMALL_STATE(1238)] = 50656, + [SMALL_STATE(1239)] = 50710, + [SMALL_STATE(1240)] = 50762, + [SMALL_STATE(1241)] = 50816, + [SMALL_STATE(1242)] = 50870, + [SMALL_STATE(1243)] = 50924, + [SMALL_STATE(1244)] = 50976, + [SMALL_STATE(1245)] = 51038, + [SMALL_STATE(1246)] = 51092, + [SMALL_STATE(1247)] = 51144, + [SMALL_STATE(1248)] = 51208, + [SMALL_STATE(1249)] = 51260, + [SMALL_STATE(1250)] = 51312, + [SMALL_STATE(1251)] = 51366, + [SMALL_STATE(1252)] = 51418, + [SMALL_STATE(1253)] = 51470, + [SMALL_STATE(1254)] = 51524, + [SMALL_STATE(1255)] = 51578, + [SMALL_STATE(1256)] = 51630, + [SMALL_STATE(1257)] = 51684, + [SMALL_STATE(1258)] = 51738, + [SMALL_STATE(1259)] = 51792, + [SMALL_STATE(1260)] = 51844, + [SMALL_STATE(1261)] = 51898, + [SMALL_STATE(1262)] = 51950, + [SMALL_STATE(1263)] = 52004, + [SMALL_STATE(1264)] = 52058, + [SMALL_STATE(1265)] = 52110, + [SMALL_STATE(1266)] = 52164, + [SMALL_STATE(1267)] = 52216, + [SMALL_STATE(1268)] = 52270, + [SMALL_STATE(1269)] = 52324, + [SMALL_STATE(1270)] = 52376, + [SMALL_STATE(1271)] = 52443, + [SMALL_STATE(1272)] = 52504, + [SMALL_STATE(1273)] = 52589, + [SMALL_STATE(1274)] = 52678, + [SMALL_STATE(1275)] = 52739, + [SMALL_STATE(1276)] = 52828, + [SMALL_STATE(1277)] = 52893, + [SMALL_STATE(1278)] = 52956, + [SMALL_STATE(1279)] = 53007, + [SMALL_STATE(1280)] = 53088, + [SMALL_STATE(1281)] = 53167, + [SMALL_STATE(1282)] = 53244, + [SMALL_STATE(1283)] = 53319, + [SMALL_STATE(1284)] = 53392, + [SMALL_STATE(1285)] = 53463, + [SMALL_STATE(1286)] = 53548, + [SMALL_STATE(1287)] = 53613, + [SMALL_STATE(1288)] = 53664, + [SMALL_STATE(1289)] = 53715, + [SMALL_STATE(1290)] = 53776, + [SMALL_STATE(1291)] = 53835, + [SMALL_STATE(1292)] = 53920, + [SMALL_STATE(1293)] = 53981, + [SMALL_STATE(1294)] = 54044, + [SMALL_STATE(1295)] = 54109, + [SMALL_STATE(1296)] = 54160, + [SMALL_STATE(1297)] = 54221, + [SMALL_STATE(1298)] = 54286, + [SMALL_STATE(1299)] = 54339, + [SMALL_STATE(1300)] = 54393, + [SMALL_STATE(1301)] = 54455, + [SMALL_STATE(1302)] = 54507, + [SMALL_STATE(1303)] = 54559, + [SMALL_STATE(1304)] = 54611, + [SMALL_STATE(1305)] = 54673, + [SMALL_STATE(1306)] = 54727, + [SMALL_STATE(1307)] = 54781, + [SMALL_STATE(1308)] = 54833, + [SMALL_STATE(1309)] = 54885, + [SMALL_STATE(1310)] = 54937, + [SMALL_STATE(1311)] = 54989, + [SMALL_STATE(1312)] = 55041, + [SMALL_STATE(1313)] = 55093, + [SMALL_STATE(1314)] = 55147, + [SMALL_STATE(1315)] = 55199, + [SMALL_STATE(1316)] = 55251, + [SMALL_STATE(1317)] = 55305, + [SMALL_STATE(1318)] = 55359, + [SMALL_STATE(1319)] = 55411, + [SMALL_STATE(1320)] = 55463, + [SMALL_STATE(1321)] = 55515, + [SMALL_STATE(1322)] = 55577, + [SMALL_STATE(1323)] = 55629, + [SMALL_STATE(1324)] = 55691, + [SMALL_STATE(1325)] = 55743, + [SMALL_STATE(1326)] = 55795, + [SMALL_STATE(1327)] = 55847, + [SMALL_STATE(1328)] = 55899, + [SMALL_STATE(1329)] = 55951, + [SMALL_STATE(1330)] = 56013, + [SMALL_STATE(1331)] = 56075, + [SMALL_STATE(1332)] = 56127, + [SMALL_STATE(1333)] = 56186, + [SMALL_STATE(1334)] = 56239, + [SMALL_STATE(1335)] = 56290, + [SMALL_STATE(1336)] = 56343, + [SMALL_STATE(1337)] = 56394, + [SMALL_STATE(1338)] = 56453, + [SMALL_STATE(1339)] = 56512, + [SMALL_STATE(1340)] = 56571, + [SMALL_STATE(1341)] = 56624, + [SMALL_STATE(1342)] = 56677, + [SMALL_STATE(1343)] = 56728, + [SMALL_STATE(1344)] = 56781, + [SMALL_STATE(1345)] = 56832, + [SMALL_STATE(1346)] = 56883, + [SMALL_STATE(1347)] = 56936, + [SMALL_STATE(1348)] = 56987, + [SMALL_STATE(1349)] = 57046, + [SMALL_STATE(1350)] = 57099, + [SMALL_STATE(1351)] = 57158, + [SMALL_STATE(1352)] = 57211, + [SMALL_STATE(1353)] = 57264, + [SMALL_STATE(1354)] = 57315, + [SMALL_STATE(1355)] = 57366, + [SMALL_STATE(1356)] = 57425, + [SMALL_STATE(1357)] = 57509, + [SMALL_STATE(1358)] = 57559, + [SMALL_STATE(1359)] = 57609, + [SMALL_STATE(1360)] = 57667, + [SMALL_STATE(1361)] = 57717, + [SMALL_STATE(1362)] = 57767, + [SMALL_STATE(1363)] = 57817, + [SMALL_STATE(1364)] = 57867, + [SMALL_STATE(1365)] = 57917, + [SMALL_STATE(1366)] = 57967, + [SMALL_STATE(1367)] = 58017, + [SMALL_STATE(1368)] = 58077, + [SMALL_STATE(1369)] = 58161, + [SMALL_STATE(1370)] = 58211, + [SMALL_STATE(1371)] = 58261, + [SMALL_STATE(1372)] = 58321, + [SMALL_STATE(1373)] = 58371, + [SMALL_STATE(1374)] = 58435, + [SMALL_STATE(1375)] = 58485, + [SMALL_STATE(1376)] = 58535, + [SMALL_STATE(1377)] = 58585, + [SMALL_STATE(1378)] = 58635, + [SMALL_STATE(1379)] = 58685, + [SMALL_STATE(1380)] = 58735, + [SMALL_STATE(1381)] = 58795, + [SMALL_STATE(1382)] = 58855, + [SMALL_STATE(1383)] = 58921, + [SMALL_STATE(1384)] = 58991, + [SMALL_STATE(1385)] = 59063, + [SMALL_STATE(1386)] = 59113, + [SMALL_STATE(1387)] = 59187, + [SMALL_STATE(1388)] = 59237, + [SMALL_STATE(1389)] = 59287, + [SMALL_STATE(1390)] = 59337, + [SMALL_STATE(1391)] = 59387, + [SMALL_STATE(1392)] = 59447, + [SMALL_STATE(1393)] = 59497, + [SMALL_STATE(1394)] = 59573, + [SMALL_STATE(1395)] = 59623, + [SMALL_STATE(1396)] = 59673, + [SMALL_STATE(1397)] = 59723, + [SMALL_STATE(1398)] = 59773, + [SMALL_STATE(1399)] = 59823, + [SMALL_STATE(1400)] = 59901, + [SMALL_STATE(1401)] = 59951, + [SMALL_STATE(1402)] = 60031, + [SMALL_STATE(1403)] = 60081, + [SMALL_STATE(1404)] = 60131, + [SMALL_STATE(1405)] = 60193, + [SMALL_STATE(1406)] = 60243, + [SMALL_STATE(1407)] = 60293, + [SMALL_STATE(1408)] = 60343, + [SMALL_STATE(1409)] = 60393, + [SMALL_STATE(1410)] = 60477, + [SMALL_STATE(1411)] = 60528, + [SMALL_STATE(1412)] = 60575, + [SMALL_STATE(1413)] = 60654, + [SMALL_STATE(1414)] = 60733, + [SMALL_STATE(1415)] = 60812, + [SMALL_STATE(1416)] = 60891, + [SMALL_STATE(1417)] = 60970, + [SMALL_STATE(1418)] = 61017, + [SMALL_STATE(1419)] = 61096, + [SMALL_STATE(1420)] = 61175, + [SMALL_STATE(1421)] = 61222, + [SMALL_STATE(1422)] = 61301, + [SMALL_STATE(1423)] = 61348, + [SMALL_STATE(1424)] = 61400, + [SMALL_STATE(1425)] = 61447, + [SMALL_STATE(1426)] = 61516, + [SMALL_STATE(1427)] = 61563, + [SMALL_STATE(1428)] = 61610, + [SMALL_STATE(1429)] = 61657, + [SMALL_STATE(1430)] = 61704, + [SMALL_STATE(1431)] = 61751, + [SMALL_STATE(1432)] = 61798, + [SMALL_STATE(1433)] = 61845, + [SMALL_STATE(1434)] = 61892, + [SMALL_STATE(1435)] = 61939, + [SMALL_STATE(1436)] = 61986, + [SMALL_STATE(1437)] = 62033, + [SMALL_STATE(1438)] = 62080, + [SMALL_STATE(1439)] = 62143, + [SMALL_STATE(1440)] = 62208, + [SMALL_STATE(1441)] = 62289, + [SMALL_STATE(1442)] = 62336, + [SMALL_STATE(1443)] = 62407, + [SMALL_STATE(1444)] = 62480, + [SMALL_STATE(1445)] = 62555, + [SMALL_STATE(1446)] = 62636, + [SMALL_STATE(1447)] = 62711, + [SMALL_STATE(1448)] = 62788, + [SMALL_STATE(1449)] = 62835, + [SMALL_STATE(1450)] = 62882, + [SMALL_STATE(1451)] = 62963, + [SMALL_STATE(1452)] = 63024, + [SMALL_STATE(1453)] = 63071, + [SMALL_STATE(1454)] = 63152, + [SMALL_STATE(1455)] = 63199, + [SMALL_STATE(1456)] = 63272, + [SMALL_STATE(1457)] = 63345, + [SMALL_STATE(1458)] = 63418, + [SMALL_STATE(1459)] = 63491, + [SMALL_STATE(1460)] = 63561, + [SMALL_STATE(1461)] = 63631, + [SMALL_STATE(1462)] = 63701, + [SMALL_STATE(1463)] = 63771, + [SMALL_STATE(1464)] = 63841, + [SMALL_STATE(1465)] = 63911, + [SMALL_STATE(1466)] = 63981, + [SMALL_STATE(1467)] = 64051, + [SMALL_STATE(1468)] = 64131, + [SMALL_STATE(1469)] = 64201, + [SMALL_STATE(1470)] = 64271, + [SMALL_STATE(1471)] = 64351, + [SMALL_STATE(1472)] = 64421, + [SMALL_STATE(1473)] = 64479, + [SMALL_STATE(1474)] = 64555, + [SMALL_STATE(1475)] = 64629, + [SMALL_STATE(1476)] = 64709, + [SMALL_STATE(1477)] = 64781, + [SMALL_STATE(1478)] = 64851, + [SMALL_STATE(1479)] = 64919, + [SMALL_STATE(1480)] = 64985, + [SMALL_STATE(1481)] = 65065, + [SMALL_STATE(1482)] = 65127, + [SMALL_STATE(1483)] = 65187, + [SMALL_STATE(1484)] = 65257, + [SMALL_STATE(1485)] = 65314, + [SMALL_STATE(1486)] = 65371, + [SMALL_STATE(1487)] = 65428, + [SMALL_STATE(1488)] = 65485, + [SMALL_STATE(1489)] = 65551, + [SMALL_STATE(1490)] = 65625, + [SMALL_STATE(1491)] = 65691, + [SMALL_STATE(1492)] = 65757, + [SMALL_STATE(1493)] = 65823, + [SMALL_STATE(1494)] = 65889, + [SMALL_STATE(1495)] = 65955, + [SMALL_STATE(1496)] = 66021, + [SMALL_STATE(1497)] = 66075, + [SMALL_STATE(1498)] = 66141, + [SMALL_STATE(1499)] = 66195, + [SMALL_STATE(1500)] = 66261, + [SMALL_STATE(1501)] = 66311, + [SMALL_STATE(1502)] = 66377, + [SMALL_STATE(1503)] = 66451, + [SMALL_STATE(1504)] = 66517, + [SMALL_STATE(1505)] = 66591, + [SMALL_STATE(1506)] = 66657, + [SMALL_STATE(1507)] = 66723, + [SMALL_STATE(1508)] = 66789, + [SMALL_STATE(1509)] = 66855, + [SMALL_STATE(1510)] = 66921, + [SMALL_STATE(1511)] = 66987, + [SMALL_STATE(1512)] = 67053, + [SMALL_STATE(1513)] = 67121, + [SMALL_STATE(1514)] = 67177, + [SMALL_STATE(1515)] = 67243, + [SMALL_STATE(1516)] = 67309, + [SMALL_STATE(1517)] = 67375, + [SMALL_STATE(1518)] = 67429, + [SMALL_STATE(1519)] = 67495, + [SMALL_STATE(1520)] = 67565, + [SMALL_STATE(1521)] = 67631, + [SMALL_STATE(1522)] = 67699, + [SMALL_STATE(1523)] = 67757, + [SMALL_STATE(1524)] = 67823, + [SMALL_STATE(1525)] = 67889, + [SMALL_STATE(1526)] = 67951, + [SMALL_STATE(1527)] = 68005, + [SMALL_STATE(1528)] = 68069, + [SMALL_STATE(1529)] = 68120, + [SMALL_STATE(1530)] = 68171, + [SMALL_STATE(1531)] = 68222, + [SMALL_STATE(1532)] = 68285, + [SMALL_STATE(1533)] = 68348, + [SMALL_STATE(1534)] = 68423, + [SMALL_STATE(1535)] = 68486, + [SMALL_STATE(1536)] = 68549, + [SMALL_STATE(1537)] = 68612, + [SMALL_STATE(1538)] = 68663, + [SMALL_STATE(1539)] = 68726, + [SMALL_STATE(1540)] = 68789, + [SMALL_STATE(1541)] = 68840, + [SMALL_STATE(1542)] = 68903, + [SMALL_STATE(1543)] = 68966, + [SMALL_STATE(1544)] = 69017, + [SMALL_STATE(1545)] = 69065, + [SMALL_STATE(1546)] = 69113, + [SMALL_STATE(1547)] = 69167, + [SMALL_STATE(1548)] = 69243, + [SMALL_STATE(1549)] = 69319, + [SMALL_STATE(1550)] = 69359, + [SMALL_STATE(1551)] = 69435, + [SMALL_STATE(1552)] = 69511, + [SMALL_STATE(1553)] = 69587, + [SMALL_STATE(1554)] = 69663, + [SMALL_STATE(1555)] = 69739, + [SMALL_STATE(1556)] = 69793, + [SMALL_STATE(1557)] = 69869, + [SMALL_STATE(1558)] = 69917, + [SMALL_STATE(1559)] = 69993, + [SMALL_STATE(1560)] = 70069, + [SMALL_STATE(1561)] = 70109, + [SMALL_STATE(1562)] = 70185, + [SMALL_STATE(1563)] = 70261, + [SMALL_STATE(1564)] = 70337, + [SMALL_STATE(1565)] = 70413, + [SMALL_STATE(1566)] = 70489, + [SMALL_STATE(1567)] = 70543, + [SMALL_STATE(1568)] = 70619, + [SMALL_STATE(1569)] = 70667, + [SMALL_STATE(1570)] = 70743, + [SMALL_STATE(1571)] = 70819, + [SMALL_STATE(1572)] = 70867, + [SMALL_STATE(1573)] = 70915, + [SMALL_STATE(1574)] = 70963, + [SMALL_STATE(1575)] = 71011, + [SMALL_STATE(1576)] = 71087, + [SMALL_STATE(1577)] = 71163, + [SMALL_STATE(1578)] = 71236, + [SMALL_STATE(1579)] = 71309, + [SMALL_STATE(1580)] = 71378, + [SMALL_STATE(1581)] = 71445, + [SMALL_STATE(1582)] = 71512, + [SMALL_STATE(1583)] = 71577, + [SMALL_STATE(1584)] = 71640, + [SMALL_STATE(1585)] = 71701, + [SMALL_STATE(1586)] = 71774, + [SMALL_STATE(1587)] = 71831, + [SMALL_STATE(1588)] = 71886, + [SMALL_STATE(1589)] = 71925, + [SMALL_STATE(1590)] = 71964, + [SMALL_STATE(1591)] = 72037, + [SMALL_STATE(1592)] = 72110, + [SMALL_STATE(1593)] = 72181, + [SMALL_STATE(1594)] = 72254, + [SMALL_STATE(1595)] = 72307, + [SMALL_STATE(1596)] = 72380, + [SMALL_STATE(1597)] = 72431, + [SMALL_STATE(1598)] = 72504, + [SMALL_STATE(1599)] = 72577, + [SMALL_STATE(1600)] = 72650, + [SMALL_STATE(1601)] = 72723, + [SMALL_STATE(1602)] = 72796, + [SMALL_STATE(1603)] = 72869, + [SMALL_STATE(1604)] = 72942, + [SMALL_STATE(1605)] = 73015, + [SMALL_STATE(1606)] = 73088, + [SMALL_STATE(1607)] = 73159, + [SMALL_STATE(1608)] = 73232, + [SMALL_STATE(1609)] = 73305, + [SMALL_STATE(1610)] = 73376, + [SMALL_STATE(1611)] = 73449, + [SMALL_STATE(1612)] = 73520, + [SMALL_STATE(1613)] = 73595, + [SMALL_STATE(1614)] = 73668, + [SMALL_STATE(1615)] = 73741, + [SMALL_STATE(1616)] = 73814, + [SMALL_STATE(1617)] = 73885, + [SMALL_STATE(1618)] = 73958, + [SMALL_STATE(1619)] = 74029, + [SMALL_STATE(1620)] = 74100, + [SMALL_STATE(1621)] = 74139, + [SMALL_STATE(1622)] = 74210, + [SMALL_STATE(1623)] = 74283, + [SMALL_STATE(1624)] = 74356, + [SMALL_STATE(1625)] = 74395, + [SMALL_STATE(1626)] = 74446, + [SMALL_STATE(1627)] = 74517, + [SMALL_STATE(1628)] = 74590, + [SMALL_STATE(1629)] = 74663, + [SMALL_STATE(1630)] = 74736, + [SMALL_STATE(1631)] = 74789, + [SMALL_STATE(1632)] = 74862, + [SMALL_STATE(1633)] = 74901, + [SMALL_STATE(1634)] = 74974, + [SMALL_STATE(1635)] = 75045, + [SMALL_STATE(1636)] = 75118, + [SMALL_STATE(1637)] = 75191, + [SMALL_STATE(1638)] = 75264, + [SMALL_STATE(1639)] = 75337, + [SMALL_STATE(1640)] = 75410, + [SMALL_STATE(1641)] = 75449, + [SMALL_STATE(1642)] = 75522, + [SMALL_STATE(1643)] = 75561, + [SMALL_STATE(1644)] = 75612, + [SMALL_STATE(1645)] = 75685, + [SMALL_STATE(1646)] = 75755, + [SMALL_STATE(1647)] = 75825, + [SMALL_STATE(1648)] = 75873, + [SMALL_STATE(1649)] = 75943, + [SMALL_STATE(1650)] = 76013, + [SMALL_STATE(1651)] = 76083, + [SMALL_STATE(1652)] = 76131, + [SMALL_STATE(1653)] = 76201, + [SMALL_STATE(1654)] = 76271, + [SMALL_STATE(1655)] = 76319, + [SMALL_STATE(1656)] = 76389, + [SMALL_STATE(1657)] = 76437, + [SMALL_STATE(1658)] = 76507, + [SMALL_STATE(1659)] = 76577, + [SMALL_STATE(1660)] = 76647, + [SMALL_STATE(1661)] = 76717, + [SMALL_STATE(1662)] = 76787, + [SMALL_STATE(1663)] = 76857, + [SMALL_STATE(1664)] = 76927, + [SMALL_STATE(1665)] = 76997, + [SMALL_STATE(1666)] = 77067, + [SMALL_STATE(1667)] = 77137, + [SMALL_STATE(1668)] = 77207, + [SMALL_STATE(1669)] = 77277, + [SMALL_STATE(1670)] = 77347, + [SMALL_STATE(1671)] = 77417, + [SMALL_STATE(1672)] = 77487, + [SMALL_STATE(1673)] = 77535, + [SMALL_STATE(1674)] = 77605, + [SMALL_STATE(1675)] = 77675, + [SMALL_STATE(1676)] = 77745, + [SMALL_STATE(1677)] = 77815, + [SMALL_STATE(1678)] = 77885, + [SMALL_STATE(1679)] = 77955, + [SMALL_STATE(1680)] = 78025, + [SMALL_STATE(1681)] = 78095, + [SMALL_STATE(1682)] = 78165, + [SMALL_STATE(1683)] = 78235, + [SMALL_STATE(1684)] = 78283, + [SMALL_STATE(1685)] = 78320, + [SMALL_STATE(1686)] = 78375, + [SMALL_STATE(1687)] = 78412, + [SMALL_STATE(1688)] = 78471, + [SMALL_STATE(1689)] = 78538, + [SMALL_STATE(1690)] = 78583, + [SMALL_STATE(1691)] = 78638, + [SMALL_STATE(1692)] = 78683, + [SMALL_STATE(1693)] = 78734, + [SMALL_STATE(1694)] = 78779, + [SMALL_STATE(1695)] = 78834, + [SMALL_STATE(1696)] = 78871, + [SMALL_STATE(1697)] = 78916, + [SMALL_STATE(1698)] = 78971, + [SMALL_STATE(1699)] = 79008, + [SMALL_STATE(1700)] = 79067, + [SMALL_STATE(1701)] = 79122, + [SMALL_STATE(1702)] = 79167, + [SMALL_STATE(1703)] = 79212, + [SMALL_STATE(1704)] = 79249, + [SMALL_STATE(1705)] = 79294, + [SMALL_STATE(1706)] = 79349, + [SMALL_STATE(1707)] = 79413, + [SMALL_STATE(1708)] = 79467, + [SMALL_STATE(1709)] = 79521, + [SMALL_STATE(1710)] = 79575, + [SMALL_STATE(1711)] = 79629, + [SMALL_STATE(1712)] = 79693, + [SMALL_STATE(1713)] = 79737, + [SMALL_STATE(1714)] = 79791, + [SMALL_STATE(1715)] = 79827, + [SMALL_STATE(1716)] = 79863, + [SMALL_STATE(1717)] = 79917, + [SMALL_STATE(1718)] = 79971, + [SMALL_STATE(1719)] = 80025, + [SMALL_STATE(1720)] = 80061, + [SMALL_STATE(1721)] = 80101, + [SMALL_STATE(1722)] = 80137, + [SMALL_STATE(1723)] = 80201, + [SMALL_STATE(1724)] = 80265, + [SMALL_STATE(1725)] = 80301, + [SMALL_STATE(1726)] = 80355, + [SMALL_STATE(1727)] = 80416, + [SMALL_STATE(1728)] = 80477, + [SMALL_STATE(1729)] = 80538, + [SMALL_STATE(1730)] = 80599, + [SMALL_STATE(1731)] = 80660, + [SMALL_STATE(1732)] = 80721, + [SMALL_STATE(1733)] = 80782, + [SMALL_STATE(1734)] = 80825, + [SMALL_STATE(1735)] = 80886, + [SMALL_STATE(1736)] = 80947, + [SMALL_STATE(1737)] = 80988, + [SMALL_STATE(1738)] = 81049, + [SMALL_STATE(1739)] = 81110, + [SMALL_STATE(1740)] = 81171, + [SMALL_STATE(1741)] = 81213, + [SMALL_STATE(1742)] = 81267, + [SMALL_STATE(1743)] = 81309, + [SMALL_STATE(1744)] = 81357, + [SMALL_STATE(1745)] = 81399, + [SMALL_STATE(1746)] = 81441, + [SMALL_STATE(1747)] = 81494, + [SMALL_STATE(1748)] = 81529, + [SMALL_STATE(1749)] = 81562, + [SMALL_STATE(1750)] = 81617, + [SMALL_STATE(1751)] = 81652, + [SMALL_STATE(1752)] = 81703, + [SMALL_STATE(1753)] = 81746, + [SMALL_STATE(1754)] = 81799, + [SMALL_STATE(1755)] = 81834, + [SMALL_STATE(1756)] = 81887, + [SMALL_STATE(1757)] = 81942, + [SMALL_STATE(1758)] = 81973, + [SMALL_STATE(1759)] = 82016, + [SMALL_STATE(1760)] = 82047, + [SMALL_STATE(1761)] = 82084, + [SMALL_STATE(1762)] = 82119, + [SMALL_STATE(1763)] = 82152, + [SMALL_STATE(1764)] = 82187, + [SMALL_STATE(1765)] = 82242, + [SMALL_STATE(1766)] = 82295, + [SMALL_STATE(1767)] = 82328, + [SMALL_STATE(1768)] = 82363, + [SMALL_STATE(1769)] = 82406, + [SMALL_STATE(1770)] = 82449, + [SMALL_STATE(1771)] = 82482, + [SMALL_STATE(1772)] = 82517, + [SMALL_STATE(1773)] = 82552, + [SMALL_STATE(1774)] = 82587, + [SMALL_STATE(1775)] = 82623, + [SMALL_STATE(1776)] = 82661, + [SMALL_STATE(1777)] = 82695, + [SMALL_STATE(1778)] = 82745, + [SMALL_STATE(1779)] = 82781, + [SMALL_STATE(1780)] = 82831, + [SMALL_STATE(1781)] = 82865, + [SMALL_STATE(1782)] = 82899, + [SMALL_STATE(1783)] = 82935, + [SMALL_STATE(1784)] = 82969, + [SMALL_STATE(1785)] = 83005, + [SMALL_STATE(1786)] = 83055, + [SMALL_STATE(1787)] = 83089, + [SMALL_STATE(1788)] = 83123, + [SMALL_STATE(1789)] = 83157, + [SMALL_STATE(1790)] = 83211, + [SMALL_STATE(1791)] = 83247, + [SMALL_STATE(1792)] = 83287, + [SMALL_STATE(1793)] = 83337, + [SMALL_STATE(1794)] = 83373, + [SMALL_STATE(1795)] = 83419, + [SMALL_STATE(1796)] = 83453, + [SMALL_STATE(1797)] = 83509, + [SMALL_STATE(1798)] = 83565, + [SMALL_STATE(1799)] = 83621, + [SMALL_STATE(1800)] = 83671, + [SMALL_STATE(1801)] = 83707, + [SMALL_STATE(1802)] = 83743, + [SMALL_STATE(1803)] = 83777, + [SMALL_STATE(1804)] = 83823, + [SMALL_STATE(1805)] = 83869, + [SMALL_STATE(1806)] = 83919, + [SMALL_STATE(1807)] = 83951, + [SMALL_STATE(1808)] = 83983, + [SMALL_STATE(1809)] = 84017, + [SMALL_STATE(1810)] = 84073, + [SMALL_STATE(1811)] = 84105, + [SMALL_STATE(1812)] = 84137, + [SMALL_STATE(1813)] = 84183, + [SMALL_STATE(1814)] = 84233, + [SMALL_STATE(1815)] = 84264, + [SMALL_STATE(1816)] = 84307, + [SMALL_STATE(1817)] = 84338, + [SMALL_STATE(1818)] = 84369, + [SMALL_STATE(1819)] = 84400, + [SMALL_STATE(1820)] = 84431, + [SMALL_STATE(1821)] = 84462, + [SMALL_STATE(1822)] = 84513, + [SMALL_STATE(1823)] = 84542, + [SMALL_STATE(1824)] = 84577, + [SMALL_STATE(1825)] = 84620, + [SMALL_STATE(1826)] = 84651, + [SMALL_STATE(1827)] = 84682, + [SMALL_STATE(1828)] = 84713, + [SMALL_STATE(1829)] = 84744, + [SMALL_STATE(1830)] = 84775, + [SMALL_STATE(1831)] = 84806, + [SMALL_STATE(1832)] = 84835, + [SMALL_STATE(1833)] = 84878, + [SMALL_STATE(1834)] = 84909, + [SMALL_STATE(1835)] = 84940, + [SMALL_STATE(1836)] = 84971, + [SMALL_STATE(1837)] = 85014, + [SMALL_STATE(1838)] = 85057, + [SMALL_STATE(1839)] = 85100, + [SMALL_STATE(1840)] = 85131, + [SMALL_STATE(1841)] = 85174, + [SMALL_STATE(1842)] = 85205, + [SMALL_STATE(1843)] = 85236, + [SMALL_STATE(1844)] = 85279, + [SMALL_STATE(1845)] = 85310, + [SMALL_STATE(1846)] = 85341, + [SMALL_STATE(1847)] = 85384, + [SMALL_STATE(1848)] = 85415, + [SMALL_STATE(1849)] = 85458, + [SMALL_STATE(1850)] = 85501, + [SMALL_STATE(1851)] = 85544, + [SMALL_STATE(1852)] = 85573, + [SMALL_STATE(1853)] = 85602, + [SMALL_STATE(1854)] = 85645, + [SMALL_STATE(1855)] = 85676, + [SMALL_STATE(1856)] = 85719, + [SMALL_STATE(1857)] = 85750, + [SMALL_STATE(1858)] = 85793, + [SMALL_STATE(1859)] = 85836, + [SMALL_STATE(1860)] = 85879, + [SMALL_STATE(1861)] = 85922, + [SMALL_STATE(1862)] = 85951, + [SMALL_STATE(1863)] = 85994, + [SMALL_STATE(1864)] = 86037, + [SMALL_STATE(1865)] = 86080, + [SMALL_STATE(1866)] = 86123, + [SMALL_STATE(1867)] = 86166, + [SMALL_STATE(1868)] = 86203, + [SMALL_STATE(1869)] = 86234, + [SMALL_STATE(1870)] = 86265, + [SMALL_STATE(1871)] = 86296, + [SMALL_STATE(1872)] = 86327, + [SMALL_STATE(1873)] = 86370, + [SMALL_STATE(1874)] = 86413, + [SMALL_STATE(1875)] = 86456, + [SMALL_STATE(1876)] = 86485, + [SMALL_STATE(1877)] = 86528, + [SMALL_STATE(1878)] = 86579, + [SMALL_STATE(1879)] = 86622, + [SMALL_STATE(1880)] = 86665, + [SMALL_STATE(1881)] = 86708, + [SMALL_STATE(1882)] = 86737, + [SMALL_STATE(1883)] = 86770, + [SMALL_STATE(1884)] = 86799, + [SMALL_STATE(1885)] = 86848, + [SMALL_STATE(1886)] = 86895, + [SMALL_STATE(1887)] = 86942, + [SMALL_STATE(1888)] = 86987, + [SMALL_STATE(1889)] = 87030, + [SMALL_STATE(1890)] = 87071, + [SMALL_STATE(1891)] = 87108, + [SMALL_STATE(1892)] = 87143, + [SMALL_STATE(1893)] = 87174, + [SMALL_STATE(1894)] = 87205, + [SMALL_STATE(1895)] = 87236, + [SMALL_STATE(1896)] = 87279, + [SMALL_STATE(1897)] = 87322, + [SMALL_STATE(1898)] = 87365, + [SMALL_STATE(1899)] = 87408, + [SMALL_STATE(1900)] = 87437, + [SMALL_STATE(1901)] = 87480, + [SMALL_STATE(1902)] = 87523, + [SMALL_STATE(1903)] = 87554, + [SMALL_STATE(1904)] = 87597, + [SMALL_STATE(1905)] = 87626, + [SMALL_STATE(1906)] = 87669, + [SMALL_STATE(1907)] = 87712, + [SMALL_STATE(1908)] = 87742, + [SMALL_STATE(1909)] = 87772, + [SMALL_STATE(1910)] = 87822, + [SMALL_STATE(1911)] = 87850, + [SMALL_STATE(1912)] = 87898, + [SMALL_STATE(1913)] = 87944, + [SMALL_STATE(1914)] = 87986, + [SMALL_STATE(1915)] = 88016, + [SMALL_STATE(1916)] = 88046, + [SMALL_STATE(1917)] = 88092, + [SMALL_STATE(1918)] = 88138, + [SMALL_STATE(1919)] = 88178, + [SMALL_STATE(1920)] = 88224, + [SMALL_STATE(1921)] = 88268, + [SMALL_STATE(1922)] = 88314, + [SMALL_STATE(1923)] = 88360, + [SMALL_STATE(1924)] = 88406, + [SMALL_STATE(1925)] = 88452, + [SMALL_STATE(1926)] = 88498, + [SMALL_STATE(1927)] = 88530, + [SMALL_STATE(1928)] = 88576, + [SMALL_STATE(1929)] = 88622, + [SMALL_STATE(1930)] = 88668, + [SMALL_STATE(1931)] = 88698, + [SMALL_STATE(1932)] = 88728, + [SMALL_STATE(1933)] = 88774, + [SMALL_STATE(1934)] = 88802, + [SMALL_STATE(1935)] = 88832, + [SMALL_STATE(1936)] = 88860, + [SMALL_STATE(1937)] = 88890, + [SMALL_STATE(1938)] = 88920, + [SMALL_STATE(1939)] = 88950, + [SMALL_STATE(1940)] = 88998, + [SMALL_STATE(1941)] = 89028, + [SMALL_STATE(1942)] = 89058, + [SMALL_STATE(1943)] = 89086, + [SMALL_STATE(1944)] = 89114, + [SMALL_STATE(1945)] = 89142, + [SMALL_STATE(1946)] = 89172, + [SMALL_STATE(1947)] = 89206, + [SMALL_STATE(1948)] = 89236, + [SMALL_STATE(1949)] = 89282, + [SMALL_STATE(1950)] = 89318, + [SMALL_STATE(1951)] = 89364, + [SMALL_STATE(1952)] = 89394, + [SMALL_STATE(1953)] = 89444, + [SMALL_STATE(1954)] = 89472, + [SMALL_STATE(1955)] = 89502, + [SMALL_STATE(1956)] = 89530, + [SMALL_STATE(1957)] = 89558, + [SMALL_STATE(1958)] = 89596, + [SMALL_STATE(1959)] = 89626, + [SMALL_STATE(1960)] = 89656, + [SMALL_STATE(1961)] = 89686, + [SMALL_STATE(1962)] = 89714, + [SMALL_STATE(1963)] = 89744, + [SMALL_STATE(1964)] = 89774, + [SMALL_STATE(1965)] = 89820, + [SMALL_STATE(1966)] = 89850, + [SMALL_STATE(1967)] = 89877, + [SMALL_STATE(1968)] = 89924, + [SMALL_STATE(1969)] = 89951, + [SMALL_STATE(1970)] = 89986, + [SMALL_STATE(1971)] = 90017, + [SMALL_STATE(1972)] = 90048, + [SMALL_STATE(1973)] = 90079, + [SMALL_STATE(1974)] = 90110, + [SMALL_STATE(1975)] = 90141, + [SMALL_STATE(1976)] = 90172, + [SMALL_STATE(1977)] = 90203, + [SMALL_STATE(1978)] = 90234, + [SMALL_STATE(1979)] = 90261, + [SMALL_STATE(1980)] = 90288, + [SMALL_STATE(1981)] = 90317, + [SMALL_STATE(1982)] = 90346, + [SMALL_STATE(1983)] = 90377, + [SMALL_STATE(1984)] = 90418, + [SMALL_STATE(1985)] = 90447, + [SMALL_STATE(1986)] = 90476, + [SMALL_STATE(1987)] = 90523, + [SMALL_STATE(1988)] = 90549, + [SMALL_STATE(1989)] = 90575, + [SMALL_STATE(1990)] = 90601, + [SMALL_STATE(1991)] = 90627, + [SMALL_STATE(1992)] = 90653, + [SMALL_STATE(1993)] = 90689, + [SMALL_STATE(1994)] = 90715, + [SMALL_STATE(1995)] = 90759, + [SMALL_STATE(1996)] = 90803, + [SMALL_STATE(1997)] = 90829, + [SMALL_STATE(1998)] = 90855, + [SMALL_STATE(1999)] = 90899, + [SMALL_STATE(2000)] = 90925, + [SMALL_STATE(2001)] = 90951, + [SMALL_STATE(2002)] = 90987, + [SMALL_STATE(2003)] = 91023, + [SMALL_STATE(2004)] = 91049, + [SMALL_STATE(2005)] = 91075, + [SMALL_STATE(2006)] = 91101, + [SMALL_STATE(2007)] = 91145, + [SMALL_STATE(2008)] = 91189, + [SMALL_STATE(2009)] = 91215, + [SMALL_STATE(2010)] = 91241, + [SMALL_STATE(2011)] = 91267, + [SMALL_STATE(2012)] = 91311, + [SMALL_STATE(2013)] = 91337, + [SMALL_STATE(2014)] = 91377, + [SMALL_STATE(2015)] = 91403, + [SMALL_STATE(2016)] = 91429, + [SMALL_STATE(2017)] = 91455, + [SMALL_STATE(2018)] = 91481, + [SMALL_STATE(2019)] = 91507, + [SMALL_STATE(2020)] = 91551, + [SMALL_STATE(2021)] = 91595, + [SMALL_STATE(2022)] = 91621, + [SMALL_STATE(2023)] = 91647, + [SMALL_STATE(2024)] = 91673, + [SMALL_STATE(2025)] = 91699, + [SMALL_STATE(2026)] = 91725, + [SMALL_STATE(2027)] = 91751, + [SMALL_STATE(2028)] = 91777, + [SMALL_STATE(2029)] = 91803, + [SMALL_STATE(2030)] = 91829, + [SMALL_STATE(2031)] = 91855, + [SMALL_STATE(2032)] = 91881, + [SMALL_STATE(2033)] = 91917, + [SMALL_STATE(2034)] = 91961, + [SMALL_STATE(2035)] = 92005, + [SMALL_STATE(2036)] = 92040, + [SMALL_STATE(2037)] = 92087, + [SMALL_STATE(2038)] = 92134, + [SMALL_STATE(2039)] = 92181, + [SMALL_STATE(2040)] = 92228, + [SMALL_STATE(2041)] = 92269, + [SMALL_STATE(2042)] = 92310, + [SMALL_STATE(2043)] = 92345, + [SMALL_STATE(2044)] = 92392, + [SMALL_STATE(2045)] = 92427, + [SMALL_STATE(2046)] = 92474, + [SMALL_STATE(2047)] = 92521, + [SMALL_STATE(2048)] = 92552, + [SMALL_STATE(2049)] = 92593, + [SMALL_STATE(2050)] = 92640, + [SMALL_STATE(2051)] = 92687, + [SMALL_STATE(2052)] = 92734, + [SMALL_STATE(2053)] = 92775, + [SMALL_STATE(2054)] = 92822, + [SMALL_STATE(2055)] = 92853, + [SMALL_STATE(2056)] = 92888, + [SMALL_STATE(2057)] = 92935, + [SMALL_STATE(2058)] = 92976, + [SMALL_STATE(2059)] = 93011, + [SMALL_STATE(2060)] = 93053, + [SMALL_STATE(2061)] = 93095, + [SMALL_STATE(2062)] = 93137, + [SMALL_STATE(2063)] = 93179, + [SMALL_STATE(2064)] = 93209, + [SMALL_STATE(2065)] = 93234, + [SMALL_STATE(2066)] = 93259, + [SMALL_STATE(2067)] = 93284, + [SMALL_STATE(2068)] = 93309, + [SMALL_STATE(2069)] = 93334, + [SMALL_STATE(2070)] = 93365, + [SMALL_STATE(2071)] = 93390, + [SMALL_STATE(2072)] = 93415, + [SMALL_STATE(2073)] = 93454, + [SMALL_STATE(2074)] = 93493, + [SMALL_STATE(2075)] = 93532, + [SMALL_STATE(2076)] = 93571, + [SMALL_STATE(2077)] = 93596, + [SMALL_STATE(2078)] = 93635, + [SMALL_STATE(2079)] = 93660, + [SMALL_STATE(2080)] = 93685, + [SMALL_STATE(2081)] = 93724, + [SMALL_STATE(2082)] = 93749, + [SMALL_STATE(2083)] = 93780, + [SMALL_STATE(2084)] = 93805, + [SMALL_STATE(2085)] = 93830, + [SMALL_STATE(2086)] = 93855, + [SMALL_STATE(2087)] = 93886, + [SMALL_STATE(2088)] = 93925, + [SMALL_STATE(2089)] = 93964, + [SMALL_STATE(2090)] = 93989, + [SMALL_STATE(2091)] = 94028, + [SMALL_STATE(2092)] = 94067, + [SMALL_STATE(2093)] = 94106, + [SMALL_STATE(2094)] = 94136, + [SMALL_STATE(2095)] = 94176, + [SMALL_STATE(2096)] = 94216, + [SMALL_STATE(2097)] = 94252, + [SMALL_STATE(2098)] = 94276, + [SMALL_STATE(2099)] = 94316, + [SMALL_STATE(2100)] = 94356, + [SMALL_STATE(2101)] = 94396, + [SMALL_STATE(2102)] = 94432, + [SMALL_STATE(2103)] = 94472, + [SMALL_STATE(2104)] = 94512, + [SMALL_STATE(2105)] = 94548, + [SMALL_STATE(2106)] = 94572, + [SMALL_STATE(2107)] = 94612, + [SMALL_STATE(2108)] = 94652, + [SMALL_STATE(2109)] = 94676, + [SMALL_STATE(2110)] = 94712, + [SMALL_STATE(2111)] = 94752, + [SMALL_STATE(2112)] = 94792, + [SMALL_STATE(2113)] = 94816, + [SMALL_STATE(2114)] = 94856, + [SMALL_STATE(2115)] = 94896, + [SMALL_STATE(2116)] = 94936, + [SMALL_STATE(2117)] = 94972, + [SMALL_STATE(2118)] = 94996, + [SMALL_STATE(2119)] = 95036, + [SMALL_STATE(2120)] = 95076, + [SMALL_STATE(2121)] = 95116, + [SMALL_STATE(2122)] = 95140, + [SMALL_STATE(2123)] = 95180, + [SMALL_STATE(2124)] = 95204, + [SMALL_STATE(2125)] = 95228, + [SMALL_STATE(2126)] = 95264, + [SMALL_STATE(2127)] = 95304, + [SMALL_STATE(2128)] = 95328, + [SMALL_STATE(2129)] = 95364, + [SMALL_STATE(2130)] = 95404, + [SMALL_STATE(2131)] = 95434, + [SMALL_STATE(2132)] = 95474, + [SMALL_STATE(2133)] = 95504, + [SMALL_STATE(2134)] = 95544, + [SMALL_STATE(2135)] = 95574, + [SMALL_STATE(2136)] = 95614, + [SMALL_STATE(2137)] = 95638, + [SMALL_STATE(2138)] = 95678, + [SMALL_STATE(2139)] = 95714, + [SMALL_STATE(2140)] = 95738, + [SMALL_STATE(2141)] = 95773, + [SMALL_STATE(2142)] = 95808, + [SMALL_STATE(2143)] = 95833, + [SMALL_STATE(2144)] = 95868, + [SMALL_STATE(2145)] = 95889, + [SMALL_STATE(2146)] = 95924, + [SMALL_STATE(2147)] = 95959, + [SMALL_STATE(2148)] = 95994, + [SMALL_STATE(2149)] = 96029, + [SMALL_STATE(2150)] = 96050, + [SMALL_STATE(2151)] = 96085, + [SMALL_STATE(2152)] = 96106, + [SMALL_STATE(2153)] = 96129, + [SMALL_STATE(2154)] = 96164, + [SMALL_STATE(2155)] = 96189, + [SMALL_STATE(2156)] = 96210, + [SMALL_STATE(2157)] = 96244, + [SMALL_STATE(2158)] = 96276, + [SMALL_STATE(2159)] = 96308, + [SMALL_STATE(2160)] = 96332, + [SMALL_STATE(2161)] = 96356, + [SMALL_STATE(2162)] = 96388, + [SMALL_STATE(2163)] = 96420, + [SMALL_STATE(2164)] = 96448, + [SMALL_STATE(2165)] = 96476, + [SMALL_STATE(2166)] = 96500, + [SMALL_STATE(2167)] = 96534, + [SMALL_STATE(2168)] = 96562, + [SMALL_STATE(2169)] = 96590, + [SMALL_STATE(2170)] = 96618, + [SMALL_STATE(2171)] = 96650, + [SMALL_STATE(2172)] = 96682, + [SMALL_STATE(2173)] = 96714, + [SMALL_STATE(2174)] = 96746, + [SMALL_STATE(2175)] = 96780, + [SMALL_STATE(2176)] = 96814, + [SMALL_STATE(2177)] = 96846, + [SMALL_STATE(2178)] = 96878, + [SMALL_STATE(2179)] = 96912, + [SMALL_STATE(2180)] = 96936, + [SMALL_STATE(2181)] = 96968, + [SMALL_STATE(2182)] = 96996, + [SMALL_STATE(2183)] = 97024, + [SMALL_STATE(2184)] = 97056, + [SMALL_STATE(2185)] = 97088, + [SMALL_STATE(2186)] = 97120, + [SMALL_STATE(2187)] = 97144, + [SMALL_STATE(2188)] = 97176, + [SMALL_STATE(2189)] = 97208, + [SMALL_STATE(2190)] = 97236, + [SMALL_STATE(2191)] = 97264, + [SMALL_STATE(2192)] = 97296, + [SMALL_STATE(2193)] = 97320, + [SMALL_STATE(2194)] = 97348, + [SMALL_STATE(2195)] = 97380, + [SMALL_STATE(2196)] = 97408, + [SMALL_STATE(2197)] = 97436, + [SMALL_STATE(2198)] = 97464, + [SMALL_STATE(2199)] = 97496, + [SMALL_STATE(2200)] = 97524, + [SMALL_STATE(2201)] = 97556, + [SMALL_STATE(2202)] = 97590, + [SMALL_STATE(2203)] = 97618, + [SMALL_STATE(2204)] = 97646, + [SMALL_STATE(2205)] = 97678, + [SMALL_STATE(2206)] = 97706, + [SMALL_STATE(2207)] = 97734, + [SMALL_STATE(2208)] = 97768, + [SMALL_STATE(2209)] = 97796, + [SMALL_STATE(2210)] = 97828, + [SMALL_STATE(2211)] = 97862, + [SMALL_STATE(2212)] = 97890, + [SMALL_STATE(2213)] = 97918, + [SMALL_STATE(2214)] = 97937, + [SMALL_STATE(2215)] = 97964, + [SMALL_STATE(2216)] = 97983, + [SMALL_STATE(2217)] = 98016, + [SMALL_STATE(2218)] = 98049, + [SMALL_STATE(2219)] = 98068, + [SMALL_STATE(2220)] = 98087, + [SMALL_STATE(2221)] = 98106, + [SMALL_STATE(2222)] = 98131, + [SMALL_STATE(2223)] = 98150, + [SMALL_STATE(2224)] = 98169, + [SMALL_STATE(2225)] = 98194, + [SMALL_STATE(2226)] = 98221, + [SMALL_STATE(2227)] = 98240, + [SMALL_STATE(2228)] = 98259, + [SMALL_STATE(2229)] = 98278, + [SMALL_STATE(2230)] = 98311, + [SMALL_STATE(2231)] = 98338, + [SMALL_STATE(2232)] = 98371, + [SMALL_STATE(2233)] = 98392, + [SMALL_STATE(2234)] = 98411, + [SMALL_STATE(2235)] = 98441, + [SMALL_STATE(2236)] = 98467, + [SMALL_STATE(2237)] = 98491, + [SMALL_STATE(2238)] = 98521, + [SMALL_STATE(2239)] = 98545, + [SMALL_STATE(2240)] = 98569, + [SMALL_STATE(2241)] = 98593, + [SMALL_STATE(2242)] = 98617, + [SMALL_STATE(2243)] = 98641, + [SMALL_STATE(2244)] = 98665, + [SMALL_STATE(2245)] = 98695, + [SMALL_STATE(2246)] = 98715, + [SMALL_STATE(2247)] = 98745, + [SMALL_STATE(2248)] = 98769, + [SMALL_STATE(2249)] = 98799, + [SMALL_STATE(2250)] = 98829, + [SMALL_STATE(2251)] = 98853, + [SMALL_STATE(2252)] = 98877, + [SMALL_STATE(2253)] = 98901, + [SMALL_STATE(2254)] = 98927, + [SMALL_STATE(2255)] = 98951, + [SMALL_STATE(2256)] = 98975, + [SMALL_STATE(2257)] = 99005, + [SMALL_STATE(2258)] = 99035, + [SMALL_STATE(2259)] = 99062, + [SMALL_STATE(2260)] = 99089, + [SMALL_STATE(2261)] = 99116, + [SMALL_STATE(2262)] = 99143, + [SMALL_STATE(2263)] = 99164, + [SMALL_STATE(2264)] = 99191, + [SMALL_STATE(2265)] = 99218, + [SMALL_STATE(2266)] = 99239, + [SMALL_STATE(2267)] = 99266, + [SMALL_STATE(2268)] = 99293, + [SMALL_STATE(2269)] = 99314, + [SMALL_STATE(2270)] = 99341, + [SMALL_STATE(2271)] = 99368, + [SMALL_STATE(2272)] = 99395, + [SMALL_STATE(2273)] = 99420, + [SMALL_STATE(2274)] = 99447, + [SMALL_STATE(2275)] = 99474, + [SMALL_STATE(2276)] = 99499, + [SMALL_STATE(2277)] = 99526, + [SMALL_STATE(2278)] = 99553, + [SMALL_STATE(2279)] = 99580, + [SMALL_STATE(2280)] = 99607, + [SMALL_STATE(2281)] = 99634, + [SMALL_STATE(2282)] = 99661, + [SMALL_STATE(2283)] = 99684, + [SMALL_STATE(2284)] = 99711, + [SMALL_STATE(2285)] = 99738, + [SMALL_STATE(2286)] = 99765, + [SMALL_STATE(2287)] = 99792, + [SMALL_STATE(2288)] = 99819, + [SMALL_STATE(2289)] = 99846, + [SMALL_STATE(2290)] = 99873, + [SMALL_STATE(2291)] = 99900, + [SMALL_STATE(2292)] = 99927, + [SMALL_STATE(2293)] = 99951, + [SMALL_STATE(2294)] = 99971, + [SMALL_STATE(2295)] = 99995, + [SMALL_STATE(2296)] = 100019, + [SMALL_STATE(2297)] = 100043, + [SMALL_STATE(2298)] = 100067, + [SMALL_STATE(2299)] = 100091, + [SMALL_STATE(2300)] = 100115, + [SMALL_STATE(2301)] = 100139, + [SMALL_STATE(2302)] = 100163, + [SMALL_STATE(2303)] = 100187, + [SMALL_STATE(2304)] = 100211, + [SMALL_STATE(2305)] = 100231, + [SMALL_STATE(2306)] = 100255, + [SMALL_STATE(2307)] = 100279, + [SMALL_STATE(2308)] = 100303, + [SMALL_STATE(2309)] = 100327, + [SMALL_STATE(2310)] = 100351, + [SMALL_STATE(2311)] = 100375, + [SMALL_STATE(2312)] = 100399, + [SMALL_STATE(2313)] = 100423, + [SMALL_STATE(2314)] = 100447, + [SMALL_STATE(2315)] = 100471, + [SMALL_STATE(2316)] = 100495, + [SMALL_STATE(2317)] = 100519, + [SMALL_STATE(2318)] = 100543, + [SMALL_STATE(2319)] = 100567, + [SMALL_STATE(2320)] = 100591, + [SMALL_STATE(2321)] = 100611, + [SMALL_STATE(2322)] = 100635, + [SMALL_STATE(2323)] = 100659, + [SMALL_STATE(2324)] = 100676, + [SMALL_STATE(2325)] = 100691, + [SMALL_STATE(2326)] = 100710, + [SMALL_STATE(2327)] = 100725, + [SMALL_STATE(2328)] = 100746, + [SMALL_STATE(2329)] = 100761, + [SMALL_STATE(2330)] = 100782, + [SMALL_STATE(2331)] = 100803, + [SMALL_STATE(2332)] = 100824, + [SMALL_STATE(2333)] = 100845, + [SMALL_STATE(2334)] = 100866, + [SMALL_STATE(2335)] = 100883, + [SMALL_STATE(2336)] = 100902, + [SMALL_STATE(2337)] = 100923, + [SMALL_STATE(2338)] = 100940, + [SMALL_STATE(2339)] = 100957, + [SMALL_STATE(2340)] = 100974, + [SMALL_STATE(2341)] = 100993, + [SMALL_STATE(2342)] = 101010, + [SMALL_STATE(2343)] = 101031, + [SMALL_STATE(2344)] = 101052, + [SMALL_STATE(2345)] = 101073, + [SMALL_STATE(2346)] = 101090, + [SMALL_STATE(2347)] = 101111, + [SMALL_STATE(2348)] = 101132, + [SMALL_STATE(2349)] = 101153, + [SMALL_STATE(2350)] = 101170, + [SMALL_STATE(2351)] = 101183, + [SMALL_STATE(2352)] = 101202, + [SMALL_STATE(2353)] = 101223, + [SMALL_STATE(2354)] = 101242, + [SMALL_STATE(2355)] = 101259, + [SMALL_STATE(2356)] = 101276, + [SMALL_STATE(2357)] = 101297, + [SMALL_STATE(2358)] = 101310, + [SMALL_STATE(2359)] = 101331, + [SMALL_STATE(2360)] = 101352, + [SMALL_STATE(2361)] = 101367, + [SMALL_STATE(2362)] = 101384, + [SMALL_STATE(2363)] = 101405, + [SMALL_STATE(2364)] = 101422, + [SMALL_STATE(2365)] = 101443, + [SMALL_STATE(2366)] = 101460, + [SMALL_STATE(2367)] = 101481, + [SMALL_STATE(2368)] = 101498, + [SMALL_STATE(2369)] = 101519, + [SMALL_STATE(2370)] = 101540, + [SMALL_STATE(2371)] = 101559, + [SMALL_STATE(2372)] = 101576, + [SMALL_STATE(2373)] = 101597, + [SMALL_STATE(2374)] = 101614, + [SMALL_STATE(2375)] = 101631, + [SMALL_STATE(2376)] = 101646, + [SMALL_STATE(2377)] = 101667, + [SMALL_STATE(2378)] = 101684, + [SMALL_STATE(2379)] = 101703, + [SMALL_STATE(2380)] = 101724, + [SMALL_STATE(2381)] = 101741, + [SMALL_STATE(2382)] = 101758, + [SMALL_STATE(2383)] = 101777, + [SMALL_STATE(2384)] = 101798, + [SMALL_STATE(2385)] = 101819, + [SMALL_STATE(2386)] = 101836, + [SMALL_STATE(2387)] = 101857, + [SMALL_STATE(2388)] = 101872, + [SMALL_STATE(2389)] = 101891, + [SMALL_STATE(2390)] = 101912, + [SMALL_STATE(2391)] = 101924, + [SMALL_STATE(2392)] = 101946, + [SMALL_STATE(2393)] = 101958, + [SMALL_STATE(2394)] = 101974, + [SMALL_STATE(2395)] = 101986, + [SMALL_STATE(2396)] = 101998, + [SMALL_STATE(2397)] = 102010, + [SMALL_STATE(2398)] = 102022, + [SMALL_STATE(2399)] = 102042, + [SMALL_STATE(2400)] = 102054, + [SMALL_STATE(2401)] = 102066, + [SMALL_STATE(2402)] = 102078, + [SMALL_STATE(2403)] = 102090, + [SMALL_STATE(2404)] = 102110, + [SMALL_STATE(2405)] = 102132, + [SMALL_STATE(2406)] = 102148, + [SMALL_STATE(2407)] = 102164, + [SMALL_STATE(2408)] = 102186, + [SMALL_STATE(2409)] = 102206, + [SMALL_STATE(2410)] = 102228, + [SMALL_STATE(2411)] = 102250, + [SMALL_STATE(2412)] = 102262, + [SMALL_STATE(2413)] = 102284, + [SMALL_STATE(2414)] = 102300, + [SMALL_STATE(2415)] = 102320, + [SMALL_STATE(2416)] = 102342, + [SMALL_STATE(2417)] = 102362, + [SMALL_STATE(2418)] = 102374, + [SMALL_STATE(2419)] = 102394, + [SMALL_STATE(2420)] = 102412, + [SMALL_STATE(2421)] = 102430, + [SMALL_STATE(2422)] = 102442, + [SMALL_STATE(2423)] = 102462, + [SMALL_STATE(2424)] = 102484, + [SMALL_STATE(2425)] = 102496, + [SMALL_STATE(2426)] = 102518, + [SMALL_STATE(2427)] = 102531, + [SMALL_STATE(2428)] = 102546, + [SMALL_STATE(2429)] = 102561, + [SMALL_STATE(2430)] = 102574, + [SMALL_STATE(2431)] = 102589, + [SMALL_STATE(2432)] = 102604, + [SMALL_STATE(2433)] = 102617, + [SMALL_STATE(2434)] = 102634, + [SMALL_STATE(2435)] = 102647, + [SMALL_STATE(2436)] = 102660, + [SMALL_STATE(2437)] = 102677, + [SMALL_STATE(2438)] = 102690, + [SMALL_STATE(2439)] = 102703, + [SMALL_STATE(2440)] = 102716, + [SMALL_STATE(2441)] = 102733, + [SMALL_STATE(2442)] = 102748, + [SMALL_STATE(2443)] = 102765, + [SMALL_STATE(2444)] = 102782, + [SMALL_STATE(2445)] = 102799, + [SMALL_STATE(2446)] = 102816, + [SMALL_STATE(2447)] = 102833, + [SMALL_STATE(2448)] = 102852, + [SMALL_STATE(2449)] = 102867, + [SMALL_STATE(2450)] = 102880, + [SMALL_STATE(2451)] = 102893, + [SMALL_STATE(2452)] = 102906, + [SMALL_STATE(2453)] = 102919, + [SMALL_STATE(2454)] = 102932, + [SMALL_STATE(2455)] = 102945, + [SMALL_STATE(2456)] = 102960, + [SMALL_STATE(2457)] = 102975, + [SMALL_STATE(2458)] = 102988, + [SMALL_STATE(2459)] = 103003, + [SMALL_STATE(2460)] = 103016, + [SMALL_STATE(2461)] = 103033, + [SMALL_STATE(2462)] = 103048, + [SMALL_STATE(2463)] = 103063, + [SMALL_STATE(2464)] = 103078, + [SMALL_STATE(2465)] = 103093, + [SMALL_STATE(2466)] = 103110, + [SMALL_STATE(2467)] = 103125, + [SMALL_STATE(2468)] = 103138, + [SMALL_STATE(2469)] = 103151, + [SMALL_STATE(2470)] = 103168, + [SMALL_STATE(2471)] = 103185, + [SMALL_STATE(2472)] = 103202, + [SMALL_STATE(2473)] = 103217, + [SMALL_STATE(2474)] = 103234, + [SMALL_STATE(2475)] = 103247, + [SMALL_STATE(2476)] = 103258, + [SMALL_STATE(2477)] = 103271, + [SMALL_STATE(2478)] = 103286, + [SMALL_STATE(2479)] = 103303, + [SMALL_STATE(2480)] = 103318, + [SMALL_STATE(2481)] = 103335, + [SMALL_STATE(2482)] = 103352, + [SMALL_STATE(2483)] = 103371, + [SMALL_STATE(2484)] = 103388, + [SMALL_STATE(2485)] = 103401, + [SMALL_STATE(2486)] = 103418, + [SMALL_STATE(2487)] = 103429, + [SMALL_STATE(2488)] = 103444, + [SMALL_STATE(2489)] = 103459, + [SMALL_STATE(2490)] = 103474, + [SMALL_STATE(2491)] = 103491, + [SMALL_STATE(2492)] = 103506, + [SMALL_STATE(2493)] = 103521, + [SMALL_STATE(2494)] = 103538, + [SMALL_STATE(2495)] = 103552, + [SMALL_STATE(2496)] = 103566, + [SMALL_STATE(2497)] = 103580, + [SMALL_STATE(2498)] = 103594, + [SMALL_STATE(2499)] = 103610, + [SMALL_STATE(2500)] = 103624, + [SMALL_STATE(2501)] = 103638, + [SMALL_STATE(2502)] = 103652, + [SMALL_STATE(2503)] = 103666, + [SMALL_STATE(2504)] = 103680, + [SMALL_STATE(2505)] = 103694, + [SMALL_STATE(2506)] = 103708, + [SMALL_STATE(2507)] = 103718, + [SMALL_STATE(2508)] = 103732, + [SMALL_STATE(2509)] = 103746, + [SMALL_STATE(2510)] = 103762, + [SMALL_STATE(2511)] = 103776, + [SMALL_STATE(2512)] = 103790, + [SMALL_STATE(2513)] = 103804, + [SMALL_STATE(2514)] = 103818, + [SMALL_STATE(2515)] = 103832, + [SMALL_STATE(2516)] = 103846, + [SMALL_STATE(2517)] = 103860, + [SMALL_STATE(2518)] = 103874, + [SMALL_STATE(2519)] = 103888, + [SMALL_STATE(2520)] = 103902, + [SMALL_STATE(2521)] = 103916, + [SMALL_STATE(2522)] = 103930, + [SMALL_STATE(2523)] = 103944, + [SMALL_STATE(2524)] = 103960, + [SMALL_STATE(2525)] = 103974, + [SMALL_STATE(2526)] = 103988, + [SMALL_STATE(2527)] = 104004, + [SMALL_STATE(2528)] = 104018, + [SMALL_STATE(2529)] = 104032, + [SMALL_STATE(2530)] = 104046, + [SMALL_STATE(2531)] = 104060, + [SMALL_STATE(2532)] = 104074, + [SMALL_STATE(2533)] = 104090, + [SMALL_STATE(2534)] = 104106, + [SMALL_STATE(2535)] = 104120, + [SMALL_STATE(2536)] = 104130, + [SMALL_STATE(2537)] = 104144, + [SMALL_STATE(2538)] = 104158, + [SMALL_STATE(2539)] = 104172, + [SMALL_STATE(2540)] = 104186, + [SMALL_STATE(2541)] = 104196, + [SMALL_STATE(2542)] = 104210, + [SMALL_STATE(2543)] = 104224, + [SMALL_STATE(2544)] = 104238, + [SMALL_STATE(2545)] = 104252, + [SMALL_STATE(2546)] = 104266, + [SMALL_STATE(2547)] = 104280, + [SMALL_STATE(2548)] = 104294, + [SMALL_STATE(2549)] = 104308, + [SMALL_STATE(2550)] = 104322, + [SMALL_STATE(2551)] = 104336, + [SMALL_STATE(2552)] = 104350, + [SMALL_STATE(2553)] = 104364, + [SMALL_STATE(2554)] = 104378, + [SMALL_STATE(2555)] = 104392, + [SMALL_STATE(2556)] = 104406, + [SMALL_STATE(2557)] = 104420, + [SMALL_STATE(2558)] = 104434, + [SMALL_STATE(2559)] = 104450, + [SMALL_STATE(2560)] = 104464, + [SMALL_STATE(2561)] = 104478, + [SMALL_STATE(2562)] = 104492, + [SMALL_STATE(2563)] = 104506, + [SMALL_STATE(2564)] = 104520, + [SMALL_STATE(2565)] = 104534, + [SMALL_STATE(2566)] = 104548, + [SMALL_STATE(2567)] = 104562, + [SMALL_STATE(2568)] = 104576, + [SMALL_STATE(2569)] = 104590, + [SMALL_STATE(2570)] = 104604, + [SMALL_STATE(2571)] = 104618, + [SMALL_STATE(2572)] = 104632, + [SMALL_STATE(2573)] = 104646, + [SMALL_STATE(2574)] = 104658, + [SMALL_STATE(2575)] = 104670, + [SMALL_STATE(2576)] = 104686, + [SMALL_STATE(2577)] = 104700, + [SMALL_STATE(2578)] = 104714, + [SMALL_STATE(2579)] = 104728, + [SMALL_STATE(2580)] = 104742, + [SMALL_STATE(2581)] = 104756, + [SMALL_STATE(2582)] = 104766, + [SMALL_STATE(2583)] = 104780, + [SMALL_STATE(2584)] = 104794, + [SMALL_STATE(2585)] = 104808, + [SMALL_STATE(2586)] = 104822, + [SMALL_STATE(2587)] = 104836, + [SMALL_STATE(2588)] = 104850, + [SMALL_STATE(2589)] = 104864, + [SMALL_STATE(2590)] = 104878, + [SMALL_STATE(2591)] = 104892, + [SMALL_STATE(2592)] = 104906, + [SMALL_STATE(2593)] = 104920, + [SMALL_STATE(2594)] = 104934, + [SMALL_STATE(2595)] = 104948, + [SMALL_STATE(2596)] = 104962, + [SMALL_STATE(2597)] = 104976, + [SMALL_STATE(2598)] = 104986, + [SMALL_STATE(2599)] = 105000, + [SMALL_STATE(2600)] = 105014, + [SMALL_STATE(2601)] = 105028, + [SMALL_STATE(2602)] = 105042, + [SMALL_STATE(2603)] = 105056, + [SMALL_STATE(2604)] = 105070, + [SMALL_STATE(2605)] = 105082, + [SMALL_STATE(2606)] = 105092, + [SMALL_STATE(2607)] = 105108, + [SMALL_STATE(2608)] = 105122, + [SMALL_STATE(2609)] = 105136, + [SMALL_STATE(2610)] = 105150, + [SMALL_STATE(2611)] = 105164, + [SMALL_STATE(2612)] = 105178, + [SMALL_STATE(2613)] = 105188, + [SMALL_STATE(2614)] = 105202, + [SMALL_STATE(2615)] = 105212, + [SMALL_STATE(2616)] = 105226, + [SMALL_STATE(2617)] = 105240, + [SMALL_STATE(2618)] = 105254, + [SMALL_STATE(2619)] = 105264, + [SMALL_STATE(2620)] = 105278, + [SMALL_STATE(2621)] = 105288, + [SMALL_STATE(2622)] = 105302, + [SMALL_STATE(2623)] = 105316, + [SMALL_STATE(2624)] = 105330, + [SMALL_STATE(2625)] = 105344, + [SMALL_STATE(2626)] = 105358, + [SMALL_STATE(2627)] = 105372, + [SMALL_STATE(2628)] = 105386, + [SMALL_STATE(2629)] = 105400, + [SMALL_STATE(2630)] = 105414, + [SMALL_STATE(2631)] = 105428, + [SMALL_STATE(2632)] = 105442, + [SMALL_STATE(2633)] = 105456, + [SMALL_STATE(2634)] = 105470, + [SMALL_STATE(2635)] = 105484, + [SMALL_STATE(2636)] = 105500, + [SMALL_STATE(2637)] = 105514, + [SMALL_STATE(2638)] = 105528, + [SMALL_STATE(2639)] = 105540, + [SMALL_STATE(2640)] = 105554, + [SMALL_STATE(2641)] = 105568, + [SMALL_STATE(2642)] = 105582, + [SMALL_STATE(2643)] = 105596, + [SMALL_STATE(2644)] = 105610, + [SMALL_STATE(2645)] = 105624, + [SMALL_STATE(2646)] = 105638, + [SMALL_STATE(2647)] = 105652, + [SMALL_STATE(2648)] = 105666, + [SMALL_STATE(2649)] = 105680, + [SMALL_STATE(2650)] = 105694, + [SMALL_STATE(2651)] = 105706, + [SMALL_STATE(2652)] = 105720, + [SMALL_STATE(2653)] = 105734, + [SMALL_STATE(2654)] = 105748, + [SMALL_STATE(2655)] = 105762, + [SMALL_STATE(2656)] = 105776, + [SMALL_STATE(2657)] = 105790, + [SMALL_STATE(2658)] = 105804, + [SMALL_STATE(2659)] = 105818, + [SMALL_STATE(2660)] = 105832, + [SMALL_STATE(2661)] = 105846, + [SMALL_STATE(2662)] = 105860, + [SMALL_STATE(2663)] = 105874, + [SMALL_STATE(2664)] = 105888, + [SMALL_STATE(2665)] = 105902, + [SMALL_STATE(2666)] = 105918, + [SMALL_STATE(2667)] = 105932, + [SMALL_STATE(2668)] = 105946, + [SMALL_STATE(2669)] = 105960, + [SMALL_STATE(2670)] = 105974, + [SMALL_STATE(2671)] = 105988, + [SMALL_STATE(2672)] = 106002, + [SMALL_STATE(2673)] = 106016, + [SMALL_STATE(2674)] = 106030, + [SMALL_STATE(2675)] = 106044, + [SMALL_STATE(2676)] = 106060, + [SMALL_STATE(2677)] = 106076, + [SMALL_STATE(2678)] = 106090, + [SMALL_STATE(2679)] = 106104, + [SMALL_STATE(2680)] = 106118, + [SMALL_STATE(2681)] = 106132, + [SMALL_STATE(2682)] = 106146, + [SMALL_STATE(2683)] = 106160, + [SMALL_STATE(2684)] = 106176, + [SMALL_STATE(2685)] = 106190, + [SMALL_STATE(2686)] = 106204, + [SMALL_STATE(2687)] = 106218, + [SMALL_STATE(2688)] = 106232, + [SMALL_STATE(2689)] = 106246, + [SMALL_STATE(2690)] = 106260, + [SMALL_STATE(2691)] = 106274, + [SMALL_STATE(2692)] = 106288, + [SMALL_STATE(2693)] = 106302, + [SMALL_STATE(2694)] = 106316, + [SMALL_STATE(2695)] = 106330, + [SMALL_STATE(2696)] = 106344, + [SMALL_STATE(2697)] = 106358, + [SMALL_STATE(2698)] = 106372, + [SMALL_STATE(2699)] = 106386, + [SMALL_STATE(2700)] = 106400, + [SMALL_STATE(2701)] = 106414, + [SMALL_STATE(2702)] = 106428, + [SMALL_STATE(2703)] = 106444, + [SMALL_STATE(2704)] = 106456, + [SMALL_STATE(2705)] = 106470, + [SMALL_STATE(2706)] = 106484, + [SMALL_STATE(2707)] = 106498, + [SMALL_STATE(2708)] = 106512, + [SMALL_STATE(2709)] = 106526, + [SMALL_STATE(2710)] = 106540, + [SMALL_STATE(2711)] = 106554, + [SMALL_STATE(2712)] = 106568, + [SMALL_STATE(2713)] = 106582, + [SMALL_STATE(2714)] = 106596, + [SMALL_STATE(2715)] = 106610, + [SMALL_STATE(2716)] = 106624, + [SMALL_STATE(2717)] = 106638, + [SMALL_STATE(2718)] = 106652, + [SMALL_STATE(2719)] = 106666, + [SMALL_STATE(2720)] = 106680, + [SMALL_STATE(2721)] = 106694, + [SMALL_STATE(2722)] = 106708, + [SMALL_STATE(2723)] = 106722, + [SMALL_STATE(2724)] = 106736, + [SMALL_STATE(2725)] = 106750, + [SMALL_STATE(2726)] = 106764, + [SMALL_STATE(2727)] = 106778, + [SMALL_STATE(2728)] = 106792, + [SMALL_STATE(2729)] = 106806, + [SMALL_STATE(2730)] = 106820, + [SMALL_STATE(2731)] = 106834, + [SMALL_STATE(2732)] = 106848, + [SMALL_STATE(2733)] = 106864, + [SMALL_STATE(2734)] = 106880, + [SMALL_STATE(2735)] = 106894, + [SMALL_STATE(2736)] = 106908, + [SMALL_STATE(2737)] = 106922, + [SMALL_STATE(2738)] = 106936, + [SMALL_STATE(2739)] = 106950, + [SMALL_STATE(2740)] = 106964, + [SMALL_STATE(2741)] = 106978, + [SMALL_STATE(2742)] = 106992, + [SMALL_STATE(2743)] = 107006, + [SMALL_STATE(2744)] = 107016, + [SMALL_STATE(2745)] = 107030, + [SMALL_STATE(2746)] = 107044, + [SMALL_STATE(2747)] = 107054, + [SMALL_STATE(2748)] = 107068, + [SMALL_STATE(2749)] = 107082, + [SMALL_STATE(2750)] = 107096, + [SMALL_STATE(2751)] = 107110, + [SMALL_STATE(2752)] = 107124, + [SMALL_STATE(2753)] = 107138, + [SMALL_STATE(2754)] = 107152, + [SMALL_STATE(2755)] = 107166, + [SMALL_STATE(2756)] = 107180, + [SMALL_STATE(2757)] = 107194, + [SMALL_STATE(2758)] = 107208, + [SMALL_STATE(2759)] = 107222, + [SMALL_STATE(2760)] = 107236, + [SMALL_STATE(2761)] = 107252, + [SMALL_STATE(2762)] = 107266, + [SMALL_STATE(2763)] = 107280, + [SMALL_STATE(2764)] = 107294, + [SMALL_STATE(2765)] = 107308, + [SMALL_STATE(2766)] = 107322, + [SMALL_STATE(2767)] = 107336, + [SMALL_STATE(2768)] = 107350, + [SMALL_STATE(2769)] = 107366, + [SMALL_STATE(2770)] = 107380, + [SMALL_STATE(2771)] = 107391, + [SMALL_STATE(2772)] = 107402, + [SMALL_STATE(2773)] = 107411, + [SMALL_STATE(2774)] = 107420, + [SMALL_STATE(2775)] = 107429, + [SMALL_STATE(2776)] = 107440, + [SMALL_STATE(2777)] = 107453, + [SMALL_STATE(2778)] = 107464, + [SMALL_STATE(2779)] = 107473, + [SMALL_STATE(2780)] = 107484, + [SMALL_STATE(2781)] = 107493, + [SMALL_STATE(2782)] = 107502, + [SMALL_STATE(2783)] = 107511, + [SMALL_STATE(2784)] = 107520, + [SMALL_STATE(2785)] = 107529, + [SMALL_STATE(2786)] = 107538, + [SMALL_STATE(2787)] = 107549, + [SMALL_STATE(2788)] = 107558, + [SMALL_STATE(2789)] = 107569, + [SMALL_STATE(2790)] = 107578, + [SMALL_STATE(2791)] = 107587, + [SMALL_STATE(2792)] = 107596, + [SMALL_STATE(2793)] = 107605, + [SMALL_STATE(2794)] = 107614, + [SMALL_STATE(2795)] = 107627, + [SMALL_STATE(2796)] = 107636, + [SMALL_STATE(2797)] = 107647, + [SMALL_STATE(2798)] = 107658, + [SMALL_STATE(2799)] = 107667, + [SMALL_STATE(2800)] = 107676, + [SMALL_STATE(2801)] = 107687, + [SMALL_STATE(2802)] = 107698, + [SMALL_STATE(2803)] = 107709, + [SMALL_STATE(2804)] = 107720, + [SMALL_STATE(2805)] = 107731, + [SMALL_STATE(2806)] = 107742, + [SMALL_STATE(2807)] = 107753, + [SMALL_STATE(2808)] = 107764, + [SMALL_STATE(2809)] = 107775, + [SMALL_STATE(2810)] = 107784, + [SMALL_STATE(2811)] = 107797, + [SMALL_STATE(2812)] = 107808, + [SMALL_STATE(2813)] = 107819, + [SMALL_STATE(2814)] = 107830, + [SMALL_STATE(2815)] = 107841, + [SMALL_STATE(2816)] = 107852, + [SMALL_STATE(2817)] = 107863, + [SMALL_STATE(2818)] = 107874, + [SMALL_STATE(2819)] = 107885, + [SMALL_STATE(2820)] = 107896, + [SMALL_STATE(2821)] = 107907, + [SMALL_STATE(2822)] = 107920, + [SMALL_STATE(2823)] = 107931, + [SMALL_STATE(2824)] = 107942, + [SMALL_STATE(2825)] = 107953, + [SMALL_STATE(2826)] = 107964, + [SMALL_STATE(2827)] = 107975, + [SMALL_STATE(2828)] = 107986, + [SMALL_STATE(2829)] = 107995, + [SMALL_STATE(2830)] = 108006, + [SMALL_STATE(2831)] = 108017, + [SMALL_STATE(2832)] = 108026, + [SMALL_STATE(2833)] = 108037, + [SMALL_STATE(2834)] = 108048, + [SMALL_STATE(2835)] = 108059, + [SMALL_STATE(2836)] = 108072, + [SMALL_STATE(2837)] = 108081, + [SMALL_STATE(2838)] = 108094, + [SMALL_STATE(2839)] = 108105, + [SMALL_STATE(2840)] = 108116, + [SMALL_STATE(2841)] = 108127, + [SMALL_STATE(2842)] = 108138, + [SMALL_STATE(2843)] = 108149, + [SMALL_STATE(2844)] = 108160, + [SMALL_STATE(2845)] = 108171, + [SMALL_STATE(2846)] = 108182, + [SMALL_STATE(2847)] = 108193, + [SMALL_STATE(2848)] = 108204, + [SMALL_STATE(2849)] = 108215, + [SMALL_STATE(2850)] = 108226, + [SMALL_STATE(2851)] = 108237, + [SMALL_STATE(2852)] = 108248, + [SMALL_STATE(2853)] = 108259, + [SMALL_STATE(2854)] = 108270, + [SMALL_STATE(2855)] = 108281, + [SMALL_STATE(2856)] = 108290, + [SMALL_STATE(2857)] = 108301, + [SMALL_STATE(2858)] = 108312, + [SMALL_STATE(2859)] = 108323, + [SMALL_STATE(2860)] = 108332, + [SMALL_STATE(2861)] = 108341, + [SMALL_STATE(2862)] = 108352, + [SMALL_STATE(2863)] = 108363, + [SMALL_STATE(2864)] = 108374, + [SMALL_STATE(2865)] = 108385, + [SMALL_STATE(2866)] = 108396, + [SMALL_STATE(2867)] = 108407, + [SMALL_STATE(2868)] = 108418, + [SMALL_STATE(2869)] = 108431, + [SMALL_STATE(2870)] = 108442, + [SMALL_STATE(2871)] = 108451, + [SMALL_STATE(2872)] = 108462, + [SMALL_STATE(2873)] = 108473, + [SMALL_STATE(2874)] = 108484, + [SMALL_STATE(2875)] = 108495, + [SMALL_STATE(2876)] = 108506, + [SMALL_STATE(2877)] = 108517, + [SMALL_STATE(2878)] = 108528, + [SMALL_STATE(2879)] = 108539, + [SMALL_STATE(2880)] = 108550, + [SMALL_STATE(2881)] = 108561, + [SMALL_STATE(2882)] = 108572, + [SMALL_STATE(2883)] = 108583, + [SMALL_STATE(2884)] = 108594, + [SMALL_STATE(2885)] = 108605, + [SMALL_STATE(2886)] = 108616, + [SMALL_STATE(2887)] = 108627, + [SMALL_STATE(2888)] = 108638, + [SMALL_STATE(2889)] = 108649, + [SMALL_STATE(2890)] = 108660, + [SMALL_STATE(2891)] = 108671, + [SMALL_STATE(2892)] = 108682, + [SMALL_STATE(2893)] = 108695, + [SMALL_STATE(2894)] = 108706, + [SMALL_STATE(2895)] = 108717, + [SMALL_STATE(2896)] = 108728, + [SMALL_STATE(2897)] = 108739, + [SMALL_STATE(2898)] = 108750, + [SMALL_STATE(2899)] = 108761, + [SMALL_STATE(2900)] = 108772, + [SMALL_STATE(2901)] = 108783, + [SMALL_STATE(2902)] = 108794, + [SMALL_STATE(2903)] = 108805, + [SMALL_STATE(2904)] = 108814, + [SMALL_STATE(2905)] = 108825, + [SMALL_STATE(2906)] = 108836, + [SMALL_STATE(2907)] = 108845, + [SMALL_STATE(2908)] = 108856, + [SMALL_STATE(2909)] = 108867, + [SMALL_STATE(2910)] = 108878, + [SMALL_STATE(2911)] = 108891, + [SMALL_STATE(2912)] = 108900, + [SMALL_STATE(2913)] = 108909, + [SMALL_STATE(2914)] = 108918, + [SMALL_STATE(2915)] = 108929, + [SMALL_STATE(2916)] = 108938, + [SMALL_STATE(2917)] = 108949, + [SMALL_STATE(2918)] = 108958, + [SMALL_STATE(2919)] = 108969, + [SMALL_STATE(2920)] = 108978, + [SMALL_STATE(2921)] = 108987, + [SMALL_STATE(2922)] = 109000, + [SMALL_STATE(2923)] = 109009, + [SMALL_STATE(2924)] = 109020, + [SMALL_STATE(2925)] = 109031, + [SMALL_STATE(2926)] = 109042, + [SMALL_STATE(2927)] = 109053, + [SMALL_STATE(2928)] = 109064, + [SMALL_STATE(2929)] = 109075, + [SMALL_STATE(2930)] = 109086, + [SMALL_STATE(2931)] = 109097, + [SMALL_STATE(2932)] = 109108, + [SMALL_STATE(2933)] = 109119, + [SMALL_STATE(2934)] = 109130, + [SMALL_STATE(2935)] = 109141, + [SMALL_STATE(2936)] = 109152, + [SMALL_STATE(2937)] = 109161, + [SMALL_STATE(2938)] = 109172, + [SMALL_STATE(2939)] = 109183, + [SMALL_STATE(2940)] = 109194, + [SMALL_STATE(2941)] = 109205, + [SMALL_STATE(2942)] = 109216, + [SMALL_STATE(2943)] = 109227, + [SMALL_STATE(2944)] = 109238, + [SMALL_STATE(2945)] = 109249, + [SMALL_STATE(2946)] = 109260, + [SMALL_STATE(2947)] = 109271, + [SMALL_STATE(2948)] = 109282, + [SMALL_STATE(2949)] = 109291, + [SMALL_STATE(2950)] = 109300, + [SMALL_STATE(2951)] = 109309, + [SMALL_STATE(2952)] = 109320, + [SMALL_STATE(2953)] = 109331, + [SMALL_STATE(2954)] = 109342, + [SMALL_STATE(2955)] = 109353, + [SMALL_STATE(2956)] = 109364, + [SMALL_STATE(2957)] = 109373, + [SMALL_STATE(2958)] = 109384, + [SMALL_STATE(2959)] = 109395, + [SMALL_STATE(2960)] = 109406, + [SMALL_STATE(2961)] = 109417, + [SMALL_STATE(2962)] = 109426, + [SMALL_STATE(2963)] = 109439, + [SMALL_STATE(2964)] = 109450, + [SMALL_STATE(2965)] = 109461, + [SMALL_STATE(2966)] = 109472, + [SMALL_STATE(2967)] = 109483, + [SMALL_STATE(2968)] = 109494, + [SMALL_STATE(2969)] = 109505, + [SMALL_STATE(2970)] = 109516, + [SMALL_STATE(2971)] = 109527, + [SMALL_STATE(2972)] = 109538, + [SMALL_STATE(2973)] = 109551, + [SMALL_STATE(2974)] = 109562, + [SMALL_STATE(2975)] = 109573, + [SMALL_STATE(2976)] = 109584, + [SMALL_STATE(2977)] = 109595, + [SMALL_STATE(2978)] = 109606, + [SMALL_STATE(2979)] = 109617, + [SMALL_STATE(2980)] = 109628, + [SMALL_STATE(2981)] = 109639, + [SMALL_STATE(2982)] = 109650, + [SMALL_STATE(2983)] = 109661, + [SMALL_STATE(2984)] = 109669, + [SMALL_STATE(2985)] = 109677, + [SMALL_STATE(2986)] = 109685, + [SMALL_STATE(2987)] = 109693, + [SMALL_STATE(2988)] = 109701, + [SMALL_STATE(2989)] = 109709, + [SMALL_STATE(2990)] = 109717, + [SMALL_STATE(2991)] = 109725, + [SMALL_STATE(2992)] = 109733, + [SMALL_STATE(2993)] = 109741, + [SMALL_STATE(2994)] = 109749, + [SMALL_STATE(2995)] = 109757, + [SMALL_STATE(2996)] = 109765, + [SMALL_STATE(2997)] = 109773, + [SMALL_STATE(2998)] = 109781, + [SMALL_STATE(2999)] = 109789, + [SMALL_STATE(3000)] = 109797, + [SMALL_STATE(3001)] = 109805, + [SMALL_STATE(3002)] = 109813, + [SMALL_STATE(3003)] = 109821, + [SMALL_STATE(3004)] = 109829, + [SMALL_STATE(3005)] = 109837, + [SMALL_STATE(3006)] = 109845, + [SMALL_STATE(3007)] = 109855, + [SMALL_STATE(3008)] = 109863, + [SMALL_STATE(3009)] = 109871, + [SMALL_STATE(3010)] = 109879, + [SMALL_STATE(3011)] = 109887, + [SMALL_STATE(3012)] = 109895, + [SMALL_STATE(3013)] = 109903, + [SMALL_STATE(3014)] = 109911, + [SMALL_STATE(3015)] = 109919, + [SMALL_STATE(3016)] = 109927, + [SMALL_STATE(3017)] = 109935, + [SMALL_STATE(3018)] = 109945, + [SMALL_STATE(3019)] = 109953, + [SMALL_STATE(3020)] = 109961, + [SMALL_STATE(3021)] = 109969, + [SMALL_STATE(3022)] = 109977, + [SMALL_STATE(3023)] = 109985, + [SMALL_STATE(3024)] = 109993, + [SMALL_STATE(3025)] = 110001, + [SMALL_STATE(3026)] = 110009, + [SMALL_STATE(3027)] = 110017, + [SMALL_STATE(3028)] = 110025, + [SMALL_STATE(3029)] = 110033, + [SMALL_STATE(3030)] = 110041, + [SMALL_STATE(3031)] = 110049, + [SMALL_STATE(3032)] = 110057, + [SMALL_STATE(3033)] = 110065, + [SMALL_STATE(3034)] = 110073, + [SMALL_STATE(3035)] = 110081, + [SMALL_STATE(3036)] = 110089, + [SMALL_STATE(3037)] = 110097, + [SMALL_STATE(3038)] = 110105, + [SMALL_STATE(3039)] = 110113, + [SMALL_STATE(3040)] = 110121, + [SMALL_STATE(3041)] = 110129, + [SMALL_STATE(3042)] = 110139, + [SMALL_STATE(3043)] = 110149, + [SMALL_STATE(3044)] = 110157, + [SMALL_STATE(3045)] = 110165, + [SMALL_STATE(3046)] = 110173, + [SMALL_STATE(3047)] = 110181, + [SMALL_STATE(3048)] = 110189, + [SMALL_STATE(3049)] = 110197, + [SMALL_STATE(3050)] = 110205, + [SMALL_STATE(3051)] = 110213, + [SMALL_STATE(3052)] = 110223, + [SMALL_STATE(3053)] = 110231, + [SMALL_STATE(3054)] = 110239, + [SMALL_STATE(3055)] = 110247, + [SMALL_STATE(3056)] = 110255, + [SMALL_STATE(3057)] = 110263, + [SMALL_STATE(3058)] = 110271, + [SMALL_STATE(3059)] = 110279, + [SMALL_STATE(3060)] = 110287, + [SMALL_STATE(3061)] = 110297, + [SMALL_STATE(3062)] = 110307, + [SMALL_STATE(3063)] = 110315, + [SMALL_STATE(3064)] = 110323, + [SMALL_STATE(3065)] = 110331, + [SMALL_STATE(3066)] = 110339, + [SMALL_STATE(3067)] = 110347, + [SMALL_STATE(3068)] = 110355, + [SMALL_STATE(3069)] = 110363, + [SMALL_STATE(3070)] = 110371, + [SMALL_STATE(3071)] = 110379, + [SMALL_STATE(3072)] = 110387, + [SMALL_STATE(3073)] = 110395, + [SMALL_STATE(3074)] = 110403, + [SMALL_STATE(3075)] = 110411, + [SMALL_STATE(3076)] = 110419, + [SMALL_STATE(3077)] = 110427, + [SMALL_STATE(3078)] = 110435, + [SMALL_STATE(3079)] = 110445, + [SMALL_STATE(3080)] = 110455, + [SMALL_STATE(3081)] = 110463, + [SMALL_STATE(3082)] = 110471, + [SMALL_STATE(3083)] = 110479, + [SMALL_STATE(3084)] = 110487, + [SMALL_STATE(3085)] = 110495, + [SMALL_STATE(3086)] = 110503, + [SMALL_STATE(3087)] = 110511, + [SMALL_STATE(3088)] = 110519, + [SMALL_STATE(3089)] = 110529, + [SMALL_STATE(3090)] = 110537, + [SMALL_STATE(3091)] = 110545, + [SMALL_STATE(3092)] = 110553, + [SMALL_STATE(3093)] = 110563, + [SMALL_STATE(3094)] = 110571, + [SMALL_STATE(3095)] = 110579, + [SMALL_STATE(3096)] = 110587, + [SMALL_STATE(3097)] = 110595, + [SMALL_STATE(3098)] = 110603, + [SMALL_STATE(3099)] = 110611, + [SMALL_STATE(3100)] = 110619, + [SMALL_STATE(3101)] = 110627, + [SMALL_STATE(3102)] = 110637, + [SMALL_STATE(3103)] = 110645, + [SMALL_STATE(3104)] = 110653, + [SMALL_STATE(3105)] = 110663, + [SMALL_STATE(3106)] = 110671, + [SMALL_STATE(3107)] = 110679, + [SMALL_STATE(3108)] = 110687, + [SMALL_STATE(3109)] = 110695, + [SMALL_STATE(3110)] = 110703, + [SMALL_STATE(3111)] = 110711, + [SMALL_STATE(3112)] = 110721, + [SMALL_STATE(3113)] = 110729, + [SMALL_STATE(3114)] = 110737, + [SMALL_STATE(3115)] = 110745, + [SMALL_STATE(3116)] = 110753, + [SMALL_STATE(3117)] = 110761, + [SMALL_STATE(3118)] = 110769, + [SMALL_STATE(3119)] = 110777, + [SMALL_STATE(3120)] = 110785, + [SMALL_STATE(3121)] = 110793, + [SMALL_STATE(3122)] = 110801, + [SMALL_STATE(3123)] = 110809, + [SMALL_STATE(3124)] = 110817, + [SMALL_STATE(3125)] = 110825, + [SMALL_STATE(3126)] = 110833, + [SMALL_STATE(3127)] = 110841, + [SMALL_STATE(3128)] = 110849, + [SMALL_STATE(3129)] = 110857, + [SMALL_STATE(3130)] = 110867, + [SMALL_STATE(3131)] = 110875, + [SMALL_STATE(3132)] = 110883, + [SMALL_STATE(3133)] = 110891, + [SMALL_STATE(3134)] = 110899, + [SMALL_STATE(3135)] = 110907, + [SMALL_STATE(3136)] = 110915, + [SMALL_STATE(3137)] = 110923, + [SMALL_STATE(3138)] = 110931, + [SMALL_STATE(3139)] = 110939, + [SMALL_STATE(3140)] = 110947, + [SMALL_STATE(3141)] = 110955, + [SMALL_STATE(3142)] = 110963, + [SMALL_STATE(3143)] = 110971, + [SMALL_STATE(3144)] = 110979, + [SMALL_STATE(3145)] = 110987, + [SMALL_STATE(3146)] = 110995, + [SMALL_STATE(3147)] = 111003, + [SMALL_STATE(3148)] = 111011, + [SMALL_STATE(3149)] = 111019, + [SMALL_STATE(3150)] = 111027, + [SMALL_STATE(3151)] = 111035, + [SMALL_STATE(3152)] = 111043, + [SMALL_STATE(3153)] = 111051, + [SMALL_STATE(3154)] = 111059, + [SMALL_STATE(3155)] = 111067, + [SMALL_STATE(3156)] = 111075, + [SMALL_STATE(3157)] = 111083, + [SMALL_STATE(3158)] = 111091, + [SMALL_STATE(3159)] = 111099, + [SMALL_STATE(3160)] = 111107, + [SMALL_STATE(3161)] = 111115, + [SMALL_STATE(3162)] = 111125, + [SMALL_STATE(3163)] = 111135, + [SMALL_STATE(3164)] = 111143, + [SMALL_STATE(3165)] = 111151, + [SMALL_STATE(3166)] = 111159, + [SMALL_STATE(3167)] = 111167, + [SMALL_STATE(3168)] = 111175, + [SMALL_STATE(3169)] = 111183, + [SMALL_STATE(3170)] = 111191, + [SMALL_STATE(3171)] = 111199, + [SMALL_STATE(3172)] = 111209, + [SMALL_STATE(3173)] = 111217, + [SMALL_STATE(3174)] = 111225, + [SMALL_STATE(3175)] = 111233, + [SMALL_STATE(3176)] = 111241, + [SMALL_STATE(3177)] = 111249, + [SMALL_STATE(3178)] = 111259, + [SMALL_STATE(3179)] = 111267, + [SMALL_STATE(3180)] = 111275, + [SMALL_STATE(3181)] = 111283, + [SMALL_STATE(3182)] = 111291, + [SMALL_STATE(3183)] = 111301, + [SMALL_STATE(3184)] = 111309, + [SMALL_STATE(3185)] = 111317, + [SMALL_STATE(3186)] = 111325, + [SMALL_STATE(3187)] = 111333, + [SMALL_STATE(3188)] = 111341, + [SMALL_STATE(3189)] = 111349, + [SMALL_STATE(3190)] = 111357, + [SMALL_STATE(3191)] = 111365, + [SMALL_STATE(3192)] = 111375, + [SMALL_STATE(3193)] = 111383, + [SMALL_STATE(3194)] = 111391, + [SMALL_STATE(3195)] = 111399, + [SMALL_STATE(3196)] = 111407, + [SMALL_STATE(3197)] = 111415, + [SMALL_STATE(3198)] = 111423, + [SMALL_STATE(3199)] = 111431, + [SMALL_STATE(3200)] = 111439, + [SMALL_STATE(3201)] = 111447, + [SMALL_STATE(3202)] = 111455, + [SMALL_STATE(3203)] = 111463, + [SMALL_STATE(3204)] = 111471, + [SMALL_STATE(3205)] = 111479, + [SMALL_STATE(3206)] = 111489, + [SMALL_STATE(3207)] = 111497, + [SMALL_STATE(3208)] = 111505, + [SMALL_STATE(3209)] = 111513, + [SMALL_STATE(3210)] = 111521, + [SMALL_STATE(3211)] = 111529, + [SMALL_STATE(3212)] = 111537, + [SMALL_STATE(3213)] = 111545, + [SMALL_STATE(3214)] = 111555, + [SMALL_STATE(3215)] = 111563, + [SMALL_STATE(3216)] = 111571, + [SMALL_STATE(3217)] = 111579, + [SMALL_STATE(3218)] = 111587, + [SMALL_STATE(3219)] = 111595, + [SMALL_STATE(3220)] = 111603, + [SMALL_STATE(3221)] = 111611, + [SMALL_STATE(3222)] = 111619, + [SMALL_STATE(3223)] = 111627, + [SMALL_STATE(3224)] = 111635, + [SMALL_STATE(3225)] = 111643, + [SMALL_STATE(3226)] = 111651, + [SMALL_STATE(3227)] = 111659, + [SMALL_STATE(3228)] = 111667, + [SMALL_STATE(3229)] = 111675, + [SMALL_STATE(3230)] = 111683, + [SMALL_STATE(3231)] = 111691, + [SMALL_STATE(3232)] = 111699, + [SMALL_STATE(3233)] = 111709, + [SMALL_STATE(3234)] = 111719, + [SMALL_STATE(3235)] = 111727, + [SMALL_STATE(3236)] = 111735, + [SMALL_STATE(3237)] = 111743, + [SMALL_STATE(3238)] = 111751, + [SMALL_STATE(3239)] = 111761, + [SMALL_STATE(3240)] = 111769, + [SMALL_STATE(3241)] = 111777, + [SMALL_STATE(3242)] = 111785, + [SMALL_STATE(3243)] = 111795, + [SMALL_STATE(3244)] = 111803, + [SMALL_STATE(3245)] = 111811, + [SMALL_STATE(3246)] = 111819, + [SMALL_STATE(3247)] = 111827, + [SMALL_STATE(3248)] = 111835, + [SMALL_STATE(3249)] = 111843, + [SMALL_STATE(3250)] = 111851, + [SMALL_STATE(3251)] = 111859, + [SMALL_STATE(3252)] = 111867, + [SMALL_STATE(3253)] = 111875, + [SMALL_STATE(3254)] = 111883, + [SMALL_STATE(3255)] = 111891, + [SMALL_STATE(3256)] = 111899, + [SMALL_STATE(3257)] = 111909, + [SMALL_STATE(3258)] = 111917, + [SMALL_STATE(3259)] = 111925, + [SMALL_STATE(3260)] = 111933, + [SMALL_STATE(3261)] = 111943, + [SMALL_STATE(3262)] = 111951, + [SMALL_STATE(3263)] = 111959, + [SMALL_STATE(3264)] = 111967, + [SMALL_STATE(3265)] = 111975, + [SMALL_STATE(3266)] = 111983, + [SMALL_STATE(3267)] = 111991, + [SMALL_STATE(3268)] = 111999, + [SMALL_STATE(3269)] = 112007, + [SMALL_STATE(3270)] = 112015, + [SMALL_STATE(3271)] = 112023, + [SMALL_STATE(3272)] = 112031, + [SMALL_STATE(3273)] = 112039, + [SMALL_STATE(3274)] = 112047, + [SMALL_STATE(3275)] = 112055, + [SMALL_STATE(3276)] = 112063, + [SMALL_STATE(3277)] = 112071, + [SMALL_STATE(3278)] = 112079, + [SMALL_STATE(3279)] = 112087, + [SMALL_STATE(3280)] = 112095, + [SMALL_STATE(3281)] = 112103, + [SMALL_STATE(3282)] = 112111, + [SMALL_STATE(3283)] = 112119, + [SMALL_STATE(3284)] = 112127, + [SMALL_STATE(3285)] = 112135, + [SMALL_STATE(3286)] = 112143, + [SMALL_STATE(3287)] = 112151, + [SMALL_STATE(3288)] = 112159, + [SMALL_STATE(3289)] = 112167, + [SMALL_STATE(3290)] = 112175, + [SMALL_STATE(3291)] = 112183, + [SMALL_STATE(3292)] = 112191, + [SMALL_STATE(3293)] = 112201, + [SMALL_STATE(3294)] = 112209, + [SMALL_STATE(3295)] = 112217, + [SMALL_STATE(3296)] = 112225, + [SMALL_STATE(3297)] = 112233, + [SMALL_STATE(3298)] = 112241, + [SMALL_STATE(3299)] = 112249, + [SMALL_STATE(3300)] = 112257, + [SMALL_STATE(3301)] = 112267, + [SMALL_STATE(3302)] = 112275, + [SMALL_STATE(3303)] = 112283, + [SMALL_STATE(3304)] = 112291, + [SMALL_STATE(3305)] = 112299, + [SMALL_STATE(3306)] = 112307, + [SMALL_STATE(3307)] = 112315, + [SMALL_STATE(3308)] = 112323, + [SMALL_STATE(3309)] = 112331, + [SMALL_STATE(3310)] = 112339, + [SMALL_STATE(3311)] = 112347, + [SMALL_STATE(3312)] = 112355, + [SMALL_STATE(3313)] = 112363, + [SMALL_STATE(3314)] = 112373, + [SMALL_STATE(3315)] = 112381, + [SMALL_STATE(3316)] = 112391, + [SMALL_STATE(3317)] = 112399, + [SMALL_STATE(3318)] = 112407, + [SMALL_STATE(3319)] = 112415, + [SMALL_STATE(3320)] = 112425, + [SMALL_STATE(3321)] = 112435, + [SMALL_STATE(3322)] = 112443, + [SMALL_STATE(3323)] = 112451, + [SMALL_STATE(3324)] = 112459, + [SMALL_STATE(3325)] = 112467, + [SMALL_STATE(3326)] = 112477, + [SMALL_STATE(3327)] = 112485, + [SMALL_STATE(3328)] = 112493, + [SMALL_STATE(3329)] = 112501, + [SMALL_STATE(3330)] = 112509, + [SMALL_STATE(3331)] = 112519, + [SMALL_STATE(3332)] = 112527, + [SMALL_STATE(3333)] = 112535, + [SMALL_STATE(3334)] = 112543, + [SMALL_STATE(3335)] = 112551, + [SMALL_STATE(3336)] = 112559, + [SMALL_STATE(3337)] = 112567, + [SMALL_STATE(3338)] = 112575, + [SMALL_STATE(3339)] = 112585, + [SMALL_STATE(3340)] = 112593, + [SMALL_STATE(3341)] = 112601, + [SMALL_STATE(3342)] = 112609, + [SMALL_STATE(3343)] = 112617, + [SMALL_STATE(3344)] = 112625, + [SMALL_STATE(3345)] = 112633, + [SMALL_STATE(3346)] = 112641, + [SMALL_STATE(3347)] = 112649, + [SMALL_STATE(3348)] = 112657, + [SMALL_STATE(3349)] = 112665, + [SMALL_STATE(3350)] = 112673, + [SMALL_STATE(3351)] = 112681, + [SMALL_STATE(3352)] = 112689, + [SMALL_STATE(3353)] = 112697, + [SMALL_STATE(3354)] = 112705, + [SMALL_STATE(3355)] = 112713, + [SMALL_STATE(3356)] = 112721, + [SMALL_STATE(3357)] = 112729, + [SMALL_STATE(3358)] = 112737, + [SMALL_STATE(3359)] = 112745, + [SMALL_STATE(3360)] = 112753, + [SMALL_STATE(3361)] = 112761, + [SMALL_STATE(3362)] = 112769, + [SMALL_STATE(3363)] = 112777, + [SMALL_STATE(3364)] = 112785, + [SMALL_STATE(3365)] = 112793, + [SMALL_STATE(3366)] = 112801, + [SMALL_STATE(3367)] = 112809, + [SMALL_STATE(3368)] = 112817, + [SMALL_STATE(3369)] = 112825, + [SMALL_STATE(3370)] = 112833, + [SMALL_STATE(3371)] = 112841, + [SMALL_STATE(3372)] = 112849, + [SMALL_STATE(3373)] = 112857, + [SMALL_STATE(3374)] = 112865, + [SMALL_STATE(3375)] = 112873, + [SMALL_STATE(3376)] = 112881, + [SMALL_STATE(3377)] = 112889, + [SMALL_STATE(3378)] = 112897, + [SMALL_STATE(3379)] = 112905, + [SMALL_STATE(3380)] = 112913, + [SMALL_STATE(3381)] = 112921, + [SMALL_STATE(3382)] = 112929, + [SMALL_STATE(3383)] = 112937, + [SMALL_STATE(3384)] = 112945, + [SMALL_STATE(3385)] = 112953, + [SMALL_STATE(3386)] = 112961, + [SMALL_STATE(3387)] = 112969, + [SMALL_STATE(3388)] = 112977, + [SMALL_STATE(3389)] = 112985, + [SMALL_STATE(3390)] = 112993, + [SMALL_STATE(3391)] = 113003, + [SMALL_STATE(3392)] = 113011, + [SMALL_STATE(3393)] = 113019, + [SMALL_STATE(3394)] = 113027, + [SMALL_STATE(3395)] = 113037, + [SMALL_STATE(3396)] = 113045, + [SMALL_STATE(3397)] = 113053, + [SMALL_STATE(3398)] = 113061, + [SMALL_STATE(3399)] = 113069, + [SMALL_STATE(3400)] = 113077, + [SMALL_STATE(3401)] = 113085, + [SMALL_STATE(3402)] = 113093, + [SMALL_STATE(3403)] = 113101, + [SMALL_STATE(3404)] = 113109, + [SMALL_STATE(3405)] = 113117, + [SMALL_STATE(3406)] = 113125, + [SMALL_STATE(3407)] = 113133, + [SMALL_STATE(3408)] = 113141, + [SMALL_STATE(3409)] = 113149, + [SMALL_STATE(3410)] = 113157, + [SMALL_STATE(3411)] = 113165, + [SMALL_STATE(3412)] = 113173, + [SMALL_STATE(3413)] = 113181, + [SMALL_STATE(3414)] = 113189, + [SMALL_STATE(3415)] = 113197, + [SMALL_STATE(3416)] = 113205, + [SMALL_STATE(3417)] = 113213, + [SMALL_STATE(3418)] = 113221, + [SMALL_STATE(3419)] = 113229, + [SMALL_STATE(3420)] = 113237, + [SMALL_STATE(3421)] = 113245, + [SMALL_STATE(3422)] = 113253, + [SMALL_STATE(3423)] = 113261, + [SMALL_STATE(3424)] = 113271, + [SMALL_STATE(3425)] = 113279, + [SMALL_STATE(3426)] = 113287, + [SMALL_STATE(3427)] = 113295, + [SMALL_STATE(3428)] = 113303, + [SMALL_STATE(3429)] = 113311, + [SMALL_STATE(3430)] = 113319, + [SMALL_STATE(3431)] = 113327, + [SMALL_STATE(3432)] = 113335, + [SMALL_STATE(3433)] = 113343, + [SMALL_STATE(3434)] = 113351, + [SMALL_STATE(3435)] = 113359, + [SMALL_STATE(3436)] = 113367, + [SMALL_STATE(3437)] = 113375, + [SMALL_STATE(3438)] = 113383, + [SMALL_STATE(3439)] = 113391, + [SMALL_STATE(3440)] = 113399, + [SMALL_STATE(3441)] = 113407, + [SMALL_STATE(3442)] = 113415, + [SMALL_STATE(3443)] = 113423, + [SMALL_STATE(3444)] = 113431, + [SMALL_STATE(3445)] = 113439, + [SMALL_STATE(3446)] = 113447, + [SMALL_STATE(3447)] = 113455, + [SMALL_STATE(3448)] = 113463, + [SMALL_STATE(3449)] = 113471, + [SMALL_STATE(3450)] = 113479, + [SMALL_STATE(3451)] = 113487, + [SMALL_STATE(3452)] = 113495, + [SMALL_STATE(3453)] = 113503, + [SMALL_STATE(3454)] = 113511, + [SMALL_STATE(3455)] = 113519, + [SMALL_STATE(3456)] = 113529, + [SMALL_STATE(3457)] = 113537, + [SMALL_STATE(3458)] = 113545, + [SMALL_STATE(3459)] = 113553, + [SMALL_STATE(3460)] = 113561, + [SMALL_STATE(3461)] = 113569, + [SMALL_STATE(3462)] = 113577, + [SMALL_STATE(3463)] = 113585, + [SMALL_STATE(3464)] = 113593, + [SMALL_STATE(3465)] = 113601, + [SMALL_STATE(3466)] = 113609, + [SMALL_STATE(3467)] = 113617, + [SMALL_STATE(3468)] = 113625, + [SMALL_STATE(3469)] = 113633, + [SMALL_STATE(3470)] = 113641, + [SMALL_STATE(3471)] = 113649, + [SMALL_STATE(3472)] = 113657, + [SMALL_STATE(3473)] = 113667, + [SMALL_STATE(3474)] = 113675, + [SMALL_STATE(3475)] = 113683, + [SMALL_STATE(3476)] = 113691, + [SMALL_STATE(3477)] = 113701, + [SMALL_STATE(3478)] = 113709, + [SMALL_STATE(3479)] = 113717, + [SMALL_STATE(3480)] = 113725, + [SMALL_STATE(3481)] = 113733, + [SMALL_STATE(3482)] = 113741, + [SMALL_STATE(3483)] = 113749, + [SMALL_STATE(3484)] = 113757, + [SMALL_STATE(3485)] = 113765, + [SMALL_STATE(3486)] = 113775, + [SMALL_STATE(3487)] = 113783, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -179176,3255 +180883,3286 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 17), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 40), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 17), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 40), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2221), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3135), - [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1831), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 40), + [177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 17), + [179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 17), + [181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 40), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(477), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2251), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3161), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1838), [221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3136), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2473), - [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(527), - [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(743), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(743), - [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(96), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1287), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1481), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1057), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3456), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3454), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1004), - [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2749), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3450), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1327), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1269), - [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(28), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(942), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1025), - [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1036), - [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3449), - [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(981), - [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2474), - [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2053), - [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2378), - [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2882), - [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2837), - [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(749), - [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3108), - [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2880), - [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(424), - [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3443), - [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(664), - [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3115), - [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3130), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3215), - [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2832), - [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3196), - [340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(816), - [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(815), - [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3436), - [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3435), - [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3428), - [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2323), - [358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1199), - [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2475), - [364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2424), - [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1199), - [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1193), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 0), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(462), - [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2233), - [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3265), - [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1823), - [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3206), - [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2658), - [509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(180), - [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1311), - [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1495), - [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1040), - [521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2838), - [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2799), - [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(760), - [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3217), - [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2835), - [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(425), - [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3448), - [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(635), - [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3214), - [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3212), - [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3273), - [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2790), - [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3195), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 0), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(465), - [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2229), - [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3016), - [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1873), - [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3017), - [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2691), - [593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(192), - [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1303), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1480), - [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1050), - [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), - [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2815), - [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2942), - [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(797), - [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3252), - [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2776), - [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(411), - [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3315), - [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(646), - [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3220), - [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2997), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3026), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2762), - [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3369), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), - [661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), - [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(469), - [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2219), - [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3363), - [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1807), - [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3458), - [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2472), - [681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(527), - [684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(743), - [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(743), - [690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1318), - [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1509), - [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1043), - [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3456), - [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3454), - [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1004), - [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2749), - [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3450), - [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1327), - [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1269), - [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(27), - [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(942), - [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1025), - [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1036), - [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3449), - [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(981), - [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2474), - [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2053), - [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2378), - [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2751), - [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2755), - [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(842), - [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3444), - [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2757), - [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(430), - [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3441), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(647), - [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3440), - [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3439), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3437), - [783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(816), - [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(815), - [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3436), - [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3435), - [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3428), - [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2323), - [801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1670), - [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2475), - [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2424), - [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1670), - [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1193), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 0), - [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(468), - [823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), - [825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(527), - [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(743), - [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(743), - [834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(96), - [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1287), - [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1481), - [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1025), - [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3456), - [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3454), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1004), - [858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2749), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3450), - [864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(28), - [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(942), - [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1036), - [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3449), - [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(981), - [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2474), - [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2053), - [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2378), - [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2882), - [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2837), - [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2880), - [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(424), - [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3443), - [903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(664), - [906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3115), - [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3130), - [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3215), - [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2832), - [918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3196), - [921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(816), - [924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(815), - [927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3436), - [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3435), - [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3428), - [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2323), - [939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1199), - [942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2475), - [945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2424), - [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1199), - [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1193), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3162), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2508), + [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(508), + [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(813), + [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(92), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1313), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1511), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1080), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3304), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3389), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1044), + [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2776), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3484), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1354), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1298), + [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(25), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(947), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1020), + [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1048), + [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3106), + [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(974), + [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2606), + [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2077), + [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2412), + [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2909), + [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2866), + [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(722), + [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3305), + [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2904), + [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(429), + [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3470), + [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(688), + [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3312), + [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3318), + [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3242), + [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2862), + [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3346), + [340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(832), + [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(805), + [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3139), + [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3150), + [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3173), + [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2381), + [358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1209), + [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2574), + [364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2465), + [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1209), + [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1226), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(476), + [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2250), + [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3041), + [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1880), + [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3042), + [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2560), + [445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(219), + [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1317), + [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), + [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1073), + [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2914), + [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2971), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(866), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3148), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2916), + [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(444), + [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3342), + [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(693), + [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3146), + [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3102), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3051), + [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2822), + [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3348), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(470), + [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2243), + [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3292), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1900), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3233), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2546), + [545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(220), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1299), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1494), + [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1083), + [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(24), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2867), + [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2833), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(760), + [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3247), + [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2865), + [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(427), + [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3475), + [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(690), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3241), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3239), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3300), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2829), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3220), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 0), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 0), + [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), + [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(480), + [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2241), + [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3455), + [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1843), + [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3394), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2590), + [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(508), + [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(813), + [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1305), + [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1510), + [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1084), + [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3304), + [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3389), + [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1044), + [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2776), + [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3484), + [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1354), + [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1298), + [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(27), + [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(947), + [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1020), + [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1048), + [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3106), + [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(974), + [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2606), + [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2077), + [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2412), + [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2930), + [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2932), + [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(818), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3093), + [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2896), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(464), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3025), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(629), + [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3180), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3099), + [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3101), + [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(832), + [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(805), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3139), + [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3150), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3173), + [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2381), + [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1703), + [802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2574), + [805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2465), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1703), + [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1226), + [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(469), + [819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(508), + [824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(813), + [833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(92), + [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1313), + [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1511), + [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1020), + [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3304), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3389), + [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1044), + [854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2776), + [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3484), + [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(25), + [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(947), + [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1048), + [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3106), + [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(974), + [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2606), + [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2077), + [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2412), + [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2909), + [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2866), + [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2904), + [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(429), + [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3470), + [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(688), + [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3312), + [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3318), + [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3242), + [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2862), + [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3346), + [917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(832), + [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(805), + [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3139), + [926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3150), + [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3173), + [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2381), + [935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1209), + [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2574), + [941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2465), + [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1209), + [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1226), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 9), [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2, 0, 0), - [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 9), - [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 9), - [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 9), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(466), - [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(192), - [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1303), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1480), - [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), - [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2815), - [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2942), - [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2776), - [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(411), - [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3315), - [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(646), - [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3220), - [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2997), - [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3026), - [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2762), - [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3369), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(463), - [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(243), - [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1318), - [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1509), - [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(27), - [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2751), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2755), - [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2757), - [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(430), - [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3441), - [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(647), - [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3440), - [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3439), - [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3437), - [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2874), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3236), - [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), - [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(467), - [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(180), - [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1311), - [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1495), - [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2838), - [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2799), - [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2835), - [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(425), - [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3448), - [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(635), - [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3214), - [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3212), - [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3273), - [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2790), - [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3195), - [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 9), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [1158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(461), - [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(499), - [1164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1317), - [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1496), - [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2802), - [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2783), - [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2798), - [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(452), - [1185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3451), - [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(620), - [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3093), - [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3092), - [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3293), - [1200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2780), - [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3065), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 27), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 27), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, 0, 8), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, 0, 8), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 35), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 35), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 47), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 47), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 62), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 62), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 76), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 76), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, 0, 113), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, 0, 113), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, 0, 114), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, 0, 114), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 64), - [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 64), - [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 7, 0, 126), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 7, 0, 126), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, 0, 102), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, 0, 102), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 91), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 91), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 90), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 90), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 28), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 28), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 85), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 85), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 47), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 47), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 28), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 28), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 76), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 76), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 29), - [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 29), - [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 31), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 31), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 81), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 81), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), - [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, 0, 95), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, 0, 95), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 117), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 117), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 71), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 71), - [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 67), - [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 67), - [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 73), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 73), - [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 68), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 68), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 92), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 92), - [1386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), - [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 66), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 66), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 6, 0, 118), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 6, 0, 118), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 2), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 2), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 99), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 99), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 61), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 61), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, 0, 97), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, 0, 97), - [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 40), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 40), - [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 39), - [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 39), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 41), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 41), - [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 40), - [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 40), - [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 4), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 4), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 72), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 72), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 38), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 38), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 96), - [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 96), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, 0, 36), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, 0, 36), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 33), - [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 33), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, 0, 23), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, 0, 23), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 18), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 18), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 17), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 17), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 16), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 16), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2, 0, 0), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2, 0, 0), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), - [1498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), - [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 2), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 2), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 57), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 57), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1113), - [1611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(527), - [1614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(743), - [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(743), - [1620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(755), - [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2753), - [1626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2945), - [1629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(42), - [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2944), - [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2881), - [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(734), - [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3392), - [1644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2938), - [1647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(447), - [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3438), - [1653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(676), - [1656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3365), - [1659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3333), - [1662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3145), - [1665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2933), - [1668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3110), - [1671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(816), - [1674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(815), - [1677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3436), - [1680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3435), - [1683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3428), - [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2323), - [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1199), - [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2475), - [1695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2424), - [1698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1199), - [1701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1193), - [1704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1097), - [1707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(180), - [1710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(32), - [1713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2838), - [1716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2799), - [1719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(760), - [1722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3217), - [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2835), - [1728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(425), - [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3448), - [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(635), - [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3214), - [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3212), - [1743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3273), - [1746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2790), - [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3195), - [1752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1114), - [1755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(192), - [1758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(38), - [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2815), - [1764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2942), - [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(797), - [1770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3252), - [1773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2776), - [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(411), - [1779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3315), - [1782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(646), - [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3220), - [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2997), - [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3026), - [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2762), - [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3369), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [1810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1103), - [1813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(96), - [1816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(28), - [1819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2882), - [1822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2837), - [1825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(749), - [1828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3108), - [1831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2880), - [1834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(424), - [1837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3443), - [1840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(664), - [1843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3115), - [1846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3130), - [1849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3215), - [1852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2832), - [1855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3196), - [1858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1099), - [1861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(499), - [1864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(37), - [1867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2802), - [1870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2783), - [1873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2798), - [1876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(452), - [1879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3451), - [1882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(620), - [1885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3093), - [1888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3092), - [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3293), - [1894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2780), - [1897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3065), - [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1096), - [1903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(243), - [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(27), - [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2751), - [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2755), - [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(842), - [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3444), - [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2757), - [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(430), - [1927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3441), - [1930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(647), - [1933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3440), - [1936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3439), - [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3437), - [1942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2874), - [1945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3236), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), - [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1958] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(1499), - [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [1964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [1988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(387), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), - [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4, 0, 0), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4, 0, 0), - [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), - [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 17), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 17), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 40), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 40), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1271), - [2120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3288), - [2123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1816), - [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), - [2128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3067), - [2131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2619), - [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1768), - [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1451), - [2140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1036), - [2143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1025), - [2146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3456), - [2149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3454), - [2152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1004), - [2155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2883), - [2158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3450), - [2161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2764), - [2164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1090), - [2167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3449), - [2170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1161), - [2173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2671), - [2176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2045), - [2179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2376), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [2210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), - [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3298), - [2215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1870), - [2218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3165), - [2221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2582), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [2238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3205), - [2241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1863), - [2244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3284), - [2247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2695), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 2, 0, 34), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 0, 34), - [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 2, 0, 34), - [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 0, 34), - [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 107), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 0), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 56), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 84), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 40), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2536] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(1505), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 56), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1000), - [2555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1036), - [2558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1025), - [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3456), - [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3454), - [2567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1004), - [2570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2883), - [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3450), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), - [2578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(942), - [2581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3449), - [2584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(981), - [2587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2474), - [2590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2053), - [2593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2378), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(872), - [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2424), - [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), - [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), - [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), - [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), - [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), - [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), - [2674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1036), - [2677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1025), - [2680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3456), - [2683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3454), - [2686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1004), - [2689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2883), - [2692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3450), - [2695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3449), - [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [2710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(898), - [2713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2457), - [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 42), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 42), - [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 79), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 79), - [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 73), - [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 73), - [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), - [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), - [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 99), - [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 99), - [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 79), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 79), - [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 40), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 40), - [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 41), - [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 41), - [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), - [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 42), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 42), - [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), - [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), - [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 72), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 72), - [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 40), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 40), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), - [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), - [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), - [2814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(995), - [2817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(935), - [2820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(3425), - [2823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1202), - [2826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1248), - [2829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3358), - [2832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3139), - [2835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1170), - [2838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2839), - [2841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3359), - [2844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3360), - [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), - [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), - [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), - [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(941), - [2862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(978), - [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), - [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), - [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [2873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), - [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), - [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), - [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), - [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), - [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), - [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), - [2921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [2926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), - [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), - [2933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(3358), - [2936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(3139), - [2939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(1170), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 25), - [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 25), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), - [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), - [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), - [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), - [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 53), - [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 53), - [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), - [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 7), - [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 7), - [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), - [2980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [2983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [2985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [2988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1499), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 30), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 30), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 1, 0, 0), - [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 1, 0, 0), - [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 5), - [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 5), - [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 5), - [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 5), - [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), - [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), - [3039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 25), - [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 25), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 45), - [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 45), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 5), - [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 5), - [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 9), - [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 9), - [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), - [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 50), - [3061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), SHIFT(3358), - [3064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), SHIFT(3139), - [3067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), SHIFT(1170), - [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 30), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 30), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 98), - [3080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 98), - [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 70), - [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 70), - [3086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), - [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), - [3090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 7), - [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 7), - [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), - [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), - [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 5, 0, 0), - [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 5, 0, 0), - [3102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 3, 0, 0), - [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 3, 0, 0), - [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 13), - [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 13), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 132), - [3118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 132), - [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 136), - [3122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 136), - [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), - [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), - [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 110), - [3130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 110), - [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), - [3134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), - [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 54), - [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 54), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), - [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 131), - [3144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 131), - [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), - [3148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), - [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 8), - [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 8), - [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), - [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 52), - [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 52), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), - [3164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), - [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 12), - [3168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 12), - [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [3172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), - [3176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), - [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 69), - [3180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 69), - [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 125), - [3184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 125), - [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 57), - [3188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 57), - [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), - [3192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), - [3194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 80), - [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 80), - [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 124), - [3202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 124), - [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), - [3206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), - [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), - [3210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8, 0, 0), - [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), - [3214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), - [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 45), - [3218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 45), - [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 111), - [3222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 111), - [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), - [3226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), - [3228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 26), - [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 26), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), - [3236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), - [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 24), - [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 24), - [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [3246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 37), - [3250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 37), - [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), - [3254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), - [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 108), - [3258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 108), - [3260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 54), - [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 54), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), - [3266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 52), - [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 52), - [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 25), - [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 25), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [3278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1086), - [3281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 8), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 8), - [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), - [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 78), - [3295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), SHIFT(3358), - [3298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), SHIFT(3139), - [3301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), SHIFT(1170), - [3304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1154), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 24), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 24), - [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 8), - [3323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(3358), - [3326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(3139), - [3329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(1170), - [3332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 26), - [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 26), - [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 7), - [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 7), - [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), - [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 24), - [3346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(3358), - [3349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(3139), - [3352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(1170), - [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 8), - [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 8), - [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 26), - [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 26), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [3367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 24), - [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 24), - [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 53), - [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 53), - [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), - [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 80), - [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 80), - [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 52), - [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 52), - [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), - [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 9, 0, 52), - [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 9, 0, 52), - [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 9, 0, 53), - [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 9, 0, 53), - [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 9, 0, 80), - [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 9, 0, 80), - [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 9, 0, 54), - [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 9, 0, 54), - [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 24), - [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 24), - [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), - [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), - [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 7), - [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 7), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [3441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 26), - [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 26), - [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 10, 0, 80), - [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 10, 0, 80), - [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 25), - [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 25), - [3453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(2547), - [3456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1315), - [3459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1476), - [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [3464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, 0, 7), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, 0, 7), - [3468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 8), - [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 8), - [3472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, 0, 24), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, 0, 24), - [3476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, 0, 25), - [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, 0, 25), - [3480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), - [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), - [3484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 24), - [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 24), - [3488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 7), - [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 7), - [3492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 8), - [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 8), - [3496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), - [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), - [3500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, 0, 26), - [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, 0, 26), - [3504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 7), - [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 7), - [3508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 8), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 8), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [3542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 50), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 50), - [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, 0, 8), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, 0, 8), - [3550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, 0, 52), - [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, 0, 52), - [3554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 78), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 78), - [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, 0, 26), - [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, 0, 26), - [3562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, 0, 54), - [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, 0, 54), - [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, 0, 53), - [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, 0, 53), - [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, 0, 52), - [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, 0, 52), - [3574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, 0, 25), - [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, 0, 25), - [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, 0, 24), - [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, 0, 24), - [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), - [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [3592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), - [3595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), - [3598] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1476), - [3602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), - [3605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(3456), - [3608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(3454), - [3611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(1004), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), - [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), - [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), - [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [3674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), SHIFT(3456), - [3677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), SHIFT(3454), - [3680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), SHIFT(1004), - [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), - [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), - [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), - [3697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), - [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), - [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_modifier, 1, 0, 0), - [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_modifier, 1, 0, 0), - [3719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(3456), - [3722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(3454), - [3725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(1004), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [3740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(3456), - [3743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(3454), - [3746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(1004), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [3751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), SHIFT(3456), - [3754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), SHIFT(3454), - [3757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), SHIFT(1004), - [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [3852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), - [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [3892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 77), - [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 77), - [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), - [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), - [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), - [3964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1597), - [3967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1594), - [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 44), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [4028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), - [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), - [4032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1671), - [4035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3314), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [4096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 83), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 104), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 105), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 82), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 106), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 63), - [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), - [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [4142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), - [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3, 0, 0), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 119), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 120), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 0, 121), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [4234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(2990), - [4237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 14), - [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 3), - [4241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 3), - [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 14), - [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [4247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1751), - [4250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1751), - [4253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1725), - [4256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1703), - [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [4265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 14), - [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 14), - [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 2, 0, 34), - [4271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 14), - [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 14), - [4275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 3), - [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 3), - [4279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 3), - [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 3), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, 0, 34), - [4287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, 0, 34), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), - [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [4297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1854), - [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), - [4302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(3433), - [4305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(3304), - [4308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1906), - [4311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), - [4313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1732), - [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, 0, 34), - [4330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, 0, 34), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), - [4338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), - [4340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1505), - [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), - [4367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), SHIFT(1703), - [4370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), SHIFT(1772), - [4373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), SHIFT(1703), - [4376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), SHIFT(1764), - [4379] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(1703), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [4415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), SHIFT(1703), - [4418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1760), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [4429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1513), - [4432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1787), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), - [4451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), SHIFT(1703), - [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [4456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1765), - [4459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1766), - [4462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1762), - [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 42), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [4509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [4513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), - [4541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), - [4549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), - [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [4553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), - [4561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), - [4563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), - [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [4575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1990), - [4578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1990), - [4581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3395), - [4584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [4586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [4596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [4600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, 0, 22), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [4676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 32), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [4684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), - [4686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), - [4689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [4701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 32), - [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 60), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [4707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 22), - [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [4711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 89), - [4713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 112), - [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 60), - [4717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), - [4719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), - [4721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 89), - [4723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 32), - [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 32), - [4727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), - [4729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2785), - [4732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), - [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 112), - [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [4738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 40), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [4746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 17), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [4752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), - [4754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), - [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 5, -10, 0), - [4758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 5, -10, 0), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [4766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), - [4770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 22), - [4772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 22), - [4774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 0, 34), - [4776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 0, 34), - [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 115), - [4782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 115), - [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [4786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), - [4788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), - [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 4, 0, 34), - [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), - [4796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), - [4798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), - [4800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3432), - [4803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3302), - [4806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2128), - [4809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), - [4811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), - [4813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 22), - [4815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 22), - [4817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 93), - [4819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 93), - [4821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 51), - [4823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 51), - [4825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 93), - [4827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 93), - [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), - [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [4841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 112), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 34), - [4851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 34), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 32), - [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), - [4859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), - [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 89), - [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 21), - [4865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 21), - [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), - [4869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), - [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), - [4873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 1), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), - [4881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 22), - [4887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 22), - [4889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 22), - [4891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 22), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 60), - [4897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 115), - [4899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 115), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [4903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 5, -10, 0), - [4905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 5, -10, 0), - [4907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), - [4909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), - [4911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2803), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, 0, 103), - [4920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), SHIFT_REPEAT(2144), - [4923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), - [4925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 22), - [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 48), - [4929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 40), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 17), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [4947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 17), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), SHIFT_REPEAT(2018), - [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), - [4958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 40), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 17), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [4988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), - [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 48), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [4994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2488), - [4997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1862), - [5000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3124), - [5003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2668), - [5006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [5010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 40), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [5032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), - [5034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), - [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 22), - [5038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 22), - [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, 0, 32), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 93), - [5046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 93), - [5048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 22), - [5050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 22), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [5058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 115), - [5060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 115), - [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 5, -10, 0), - [5064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 5, -10, 0), - [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), - [5068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), - [5070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [5074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [5078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 0), - [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [5098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 35), - [5100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 6), - [5102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 6), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [5106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2488), - [5109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), - [5111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), - [5113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(2243), - [5116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), - [5118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [5144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [5148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [5164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(833), - [5167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), - [5169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(3134), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 43), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [5192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [5196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 40), - [5198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 40), - [5200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 99), - [5202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 99), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [5214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 19), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [5220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 60), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [5230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), - [5232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), - [5234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 75), - [5236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 73), - [5238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 73), - [5240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 40), - [5242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 40), - [5244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 72), - [5246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 72), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [5262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 89), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [5268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 41), - [5270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 41), - [5272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), - [5274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [5280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), - [5282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2406), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [5289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 46), - [5291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 32), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [5315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), - [5317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 93), - [5319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 34), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [5331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 20), - [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [5341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), - [5343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), - [5345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 74), - [5347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), - [5349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 22), - [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [5355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 6), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [5359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), - [5361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 32), - [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [5367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 0), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [5373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 94), - [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [5377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 22), - [5379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 115), - [5381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 100), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [5385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, 0, 116), - [5387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 5, 0, 0), - [5389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 0), - [5391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), - [5393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 0), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [5401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 0), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [5409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 86), - [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [5423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [5427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 86), - [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [5433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), - [5435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 109), - [5437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), - [5439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2428), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [5446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [5448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2433), - [5451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2433), - [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [5468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 122), SHIFT_REPEAT(2257), - [5471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 122), - [5473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [5475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 109), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [5479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 123), - [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [5505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), - [5507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [5515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 49), - [5517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 122), SHIFT_REPEAT(2244), - [5520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 122), - [5522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 129), - [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [5530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 134), SHIFT_REPEAT(2231), - [5533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 134), - [5535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 11), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [5553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [5561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_arg, 1, 0, 0), - [5563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [5569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [5573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [5585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_arg, 2, 0, 0), - [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [5593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [5597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [5629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_arg_repeat1, 2, 0, 0), - [5631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_arg_repeat1, 2, 0, 0), SHIFT_REPEAT(2505), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [5644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2767), - [5647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [5683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), SHIFT_REPEAT(1716), - [5686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [5700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3219), - [5703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_specifier_repeat1, 2, 0, 0), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [5733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(615), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [5754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1810), - [5757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(2872), - [5760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), - [5762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(702), - [5765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), - [5767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 101), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [5923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2547), - [5926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [5936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), - [5938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(609), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [5967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [5969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [6001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 86), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [6013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [6031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 128), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [6045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 86), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [6049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 130), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [6059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 133), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [6069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1494), - [6072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [6098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 138), - [6100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 138), - [6102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 137), SHIFT_REPEAT(3197), - [6105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 137), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [6109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 135), - [6111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 123), - [6113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 128), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [6119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [6129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 130), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [6135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 6), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [6143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), - [6145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), - [6147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [6155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 5, 0, 127), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), - [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [6173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), - [6175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [6181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 49), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [6187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), - [6189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [6193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [6340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [6344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 99), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [6358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 17), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [6364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 41), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [6374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 73), - [6376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 72), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [6412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 72), - [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [6420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 40), - [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [6432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 41), - [6434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 41), - [6436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 73), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [6460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 41), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [6518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 41), - [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [6570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [6584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 99), - [6586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 72), - [6588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 72), - [6590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 73), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [6594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 73), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [6612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 72), - [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [6618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 73), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [6680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [6752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 99), - [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [6758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 99), - [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [6764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 99), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), - [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [7004] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 0), + [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 9), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 9), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(473), + [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(255), + [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1305), + [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1510), + [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(27), + [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2930), + [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2932), + [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2896), + [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(464), + [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3025), + [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(629), + [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3180), + [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3099), + [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3101), + [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2901), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2983), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), + [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 9), + [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), + [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(474), + [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(220), + [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1299), + [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1494), + [1042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(24), + [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2867), + [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2833), + [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2865), + [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(427), + [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3475), + [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(690), + [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3241), + [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3239), + [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3300), + [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2829), + [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3220), + [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(475), + [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(219), + [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1317), + [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), + [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2914), + [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2971), + [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2916), + [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(444), + [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3342), + [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(693), + [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3146), + [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3102), + [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3051), + [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2822), + [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3348), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [1158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(471), + [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(513), + [1164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1306), + [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1501), + [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(44), + [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2834), + [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2820), + [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2832), + [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(426), + [1185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3478), + [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(664), + [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3126), + [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3125), + [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3320), + [1200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2818), + [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3115), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 27), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 27), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 35), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 35), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, 0, 113), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, 0, 113), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 7, 0, 126), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 7, 0, 126), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 47), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 47), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), + [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 28), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 28), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 62), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 62), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 28), + [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 28), + [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, 0, 102), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, 0, 102), + [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 64), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 64), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 29), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 29), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 31), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 31), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, 0, 114), + [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, 0, 114), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 76), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 76), + [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, 0, 8), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, 0, 8), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 85), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 85), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 81), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 81), + [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), + [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 76), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 76), + [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 47), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 47), + [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 90), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 90), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 91), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 91), + [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 68), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 68), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 40), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 40), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 17), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 17), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 92), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 92), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, 0, 95), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, 0, 95), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 96), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 96), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 16), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 16), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 73), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 73), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, 0, 97), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, 0, 97), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 99), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 99), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 117), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 117), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 72), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 72), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 71), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 71), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 18), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 18), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 2), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 2), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 67), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 67), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, 0, 23), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, 0, 23), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 66), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 66), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 61), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 61), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 4), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 4), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 33), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 33), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 41), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 41), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 6, 0, 118), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 6, 0, 118), + [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 40), + [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 40), + [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 39), + [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 39), + [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [1505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 38), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 38), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, 0, 36), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, 0, 36), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 2), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 2), + [1530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 57), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 57), + [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [1568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1050), + [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1119), + [1614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(508), + [1617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(848), + [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(848), + [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(813), + [1626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(513), + [1629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2972), + [1632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(44), + [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2834), + [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2820), + [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(842), + [1644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3062), + [1647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2832), + [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(426), + [1653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3478), + [1656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(664), + [1659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3126), + [1662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3125), + [1665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3320), + [1668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2818), + [1671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3115), + [1674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(832), + [1677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(805), + [1680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3139), + [1683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3150), + [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3173), + [1689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2381), + [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1209), + [1695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2574), + [1698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2465), + [1701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1209), + [1704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1226), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1111), + [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(219), + [1755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(39), + [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2914), + [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2971), + [1764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(866), + [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3148), + [1770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2916), + [1773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(444), + [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3342), + [1779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(693), + [1782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3146), + [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3102), + [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3051), + [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2822), + [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3348), + [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1101), + [1800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(220), + [1803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(24), + [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2867), + [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2833), + [1812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(760), + [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3247), + [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2865), + [1821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(427), + [1824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3475), + [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(690), + [1830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3241), + [1833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3239), + [1836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3300), + [1839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2829), + [1842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3220), + [1845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1126), + [1848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(92), + [1851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(25), + [1854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2909), + [1857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2866), + [1860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(722), + [1863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3305), + [1866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2904), + [1869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(429), + [1872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3470), + [1875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(688), + [1878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3312), + [1881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3318), + [1884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3242), + [1887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2862), + [1890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3346), + [1893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1109), + [1896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2859), + [1899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(31), + [1902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2770), + [1905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2908), + [1908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2970), + [1911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(433), + [1914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3465), + [1917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(669), + [1920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3069), + [1923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3070), + [1926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3171), + [1929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2965), + [1932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3123), + [1935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1124), + [1938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(255), + [1941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(27), + [1944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2930), + [1947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2932), + [1950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(818), + [1953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3093), + [1956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2896), + [1959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(464), + [1962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3025), + [1965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(629), + [1968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3180), + [1971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3099), + [1974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3101), + [1977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2901), + [1980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2983), + [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1987] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(1505), + [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(376), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [2044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), + [2053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 17), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 17), + [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 40), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 40), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [2140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1293), + [2143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3315), + [2146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1897), + [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [2151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3092), + [2154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2626), + [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1792), + [2160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1469), + [2163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1048), + [2166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1020), + [2169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3304), + [2172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3389), + [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1044), + [2178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2910), + [2181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3484), + [2184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2786), + [2187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1113), + [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3106), + [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1181), + [2196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2702), + [2199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2088), + [2202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2391), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [2213] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(1520), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [2229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3232), + [2232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1879), + [2235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3338), + [2238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2684), + [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [2275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3325), + [2278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1901), + [2281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3191), + [2284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2735), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 0), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 56), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 40), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2477] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(1506), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 107), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 56), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 84), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [2563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1012), + [2566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1048), + [2569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1020), + [2572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3304), + [2575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3389), + [2578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1044), + [2581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2910), + [2584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3484), + [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), + [2589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(947), + [2592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3106), + [2595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(974), + [2598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2606), + [2601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2077), + [2604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2412), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [2647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_macro_invocation_parameter_list, 3, 0, 0), REDUCE(sym_parameter_list, 3, 0, 0), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation_parameter_list, 3, 0, 0), + [2652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_macro_invocation_parameter_list, 3, 0, 0), REDUCE(sym_parameter_list, 3, 0, 0), + [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation_parameter_list, 3, 0, 0), + [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), + [2659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_macro_invocation_parameter_list, 2, 0, 0), REDUCE(sym_parameter_list, 2, 0, 0), + [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation_parameter_list, 2, 0, 0), + [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_macro_invocation_parameter_list, 2, 0, 0), REDUCE(sym_parameter_list, 2, 0, 0), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation_parameter_list, 2, 0, 0), + [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), + [2671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(885), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2465), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1048), + [2694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1020), + [2697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3304), + [2700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3389), + [2703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1044), + [2706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2910), + [2709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3484), + [2712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3106), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [2717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(898), + [2720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2433), + [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 40), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 40), + [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), + [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 42), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 42), + [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 99), + [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 99), + [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 73), + [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 73), + [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 72), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 72), + [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation_parameter_list, 5, 0, 0), + [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation_parameter_list, 5, 0, 0), + [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), + [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), + [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 42), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 42), + [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 79), + [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 79), + [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation_parameter_list, 4, 0, 0), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation_parameter_list, 4, 0, 0), + [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 2, 0, 34), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 2, 0, 34), + [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 79), + [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 79), + [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), + [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), + [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 41), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 41), + [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 40), + [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 40), + [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1240), + [2834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1258), + [2837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3385), + [2840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3165), + [2843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1154), + [2846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2868), + [2849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3386), + [2852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3387), + [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), + [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), + [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), + [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), + [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [2871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1010), + [2874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(943), + [2877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(3452), + [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), + [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(948), + [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(988), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), + [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), + [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), + [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), + [2926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), + [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), + [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), + [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), + [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 53), + [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 53), + [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 7), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 7), + [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [2974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [2981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 25), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 25), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [2990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), + [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), + [2994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(3385), + [2997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(3165), + [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(1154), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [3007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1505), + [3010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [3017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 30), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 30), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 30), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 30), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 98), + [3062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 98), + [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 45), + [3070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 45), + [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 5), + [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 5), + [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 5), + [3078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 5), + [3080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 5, 0, 0), + [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 5, 0, 0), + [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 70), + [3090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 70), + [3092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [3096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), + [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 50), + [3100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), SHIFT(3385), + [3103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), SHIFT(3165), + [3106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), SHIFT(1154), + [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 25), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 25), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 5), + [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 5), + [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 9), + [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 9), + [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 1, 0, 0), + [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 1, 0, 0), + [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 7), + [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 7), + [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 3, 0, 0), + [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 3, 0, 0), + [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 124), + [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 124), + [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 57), + [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 57), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), + [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8, 0, 0), + [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), + [3149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), + [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 69), + [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 69), + [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 13), + [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 13), + [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 12), + [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 12), + [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 136), + [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 136), + [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 24), + [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 24), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 110), + [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 110), + [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 132), + [3187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 132), + [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 131), + [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 131), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), + [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), + [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), + [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), + [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 108), + [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 108), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 26), + [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 26), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 80), + [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 80), + [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), + [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 111), + [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 111), + [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 37), + [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 37), + [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), + [3229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), + [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 8), + [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 8), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), + [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), + [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), + [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), + [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 45), + [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 45), + [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), + [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), + [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), + [3263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), + [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 125), + [3267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 125), + [3269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 54), + [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 54), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), + [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), + [3277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), + [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 52), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 52), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), + [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), + [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 8), + [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 8), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 25), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 25), + [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 24), + [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 24), + [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [3311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1099), + [3314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 26), + [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 26), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [3322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 26), + [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 26), + [3326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 24), + [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 24), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 53), + [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 53), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), + [3346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1143), + [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 54), + [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 54), + [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 52), + [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 52), + [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), + [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 78), + [3367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), SHIFT(3385), + [3370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), SHIFT(3165), + [3373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), SHIFT(1154), + [3376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 8), + [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 8), + [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), + [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 24), + [3384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(3385), + [3387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(3165), + [3390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(1154), + [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 7), + [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 7), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 80), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 80), + [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 8), + [3409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(3385), + [3412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(3165), + [3415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(1154), + [3418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 52), + [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 52), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [3424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, 0, 26), + [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, 0, 26), + [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, 0, 25), + [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, 0, 25), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 10, 0, 80), + [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 10, 0, 80), + [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 78), + [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 78), + [3442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 7), + [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 7), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [3448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 8), + [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 8), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [3462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 8), + [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 8), + [3466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(2635), + [3469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1322), + [3472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1520), + [3475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 9, 0, 54), + [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 9, 0, 54), + [3479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 9, 0, 80), + [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 9, 0, 80), + [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 7), + [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 7), + [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 9, 0, 53), + [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 9, 0, 53), + [3491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 9, 0, 52), + [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 9, 0, 52), + [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 26), + [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 26), + [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 25), + [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 25), + [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 24), + [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 24), + [3507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), + [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, 0, 7), + [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, 0, 7), + [3519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, 0, 24), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, 0, 24), + [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, 0, 26), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, 0, 26), + [3527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, 0, 54), + [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, 0, 54), + [3531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [3535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, 0, 53), + [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, 0, 53), + [3539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, 0, 52), + [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, 0, 52), + [3543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, 0, 25), + [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, 0, 25), + [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 50), + [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 50), + [3551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, 0, 24), + [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, 0, 24), + [3555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 7), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 7), + [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [3561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 24), + [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 24), + [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [3593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [3597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 8), + [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 8), + [3601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, 0, 8), + [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, 0, 8), + [3605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, 0, 52), + [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, 0, 52), + [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [3613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [3621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(3304), + [3624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(3389), + [3627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(1044), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [3636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), + [3639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), + [3642] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1520), + [3646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), + [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), + [3693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), SHIFT(3304), + [3696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), SHIFT(3389), + [3699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), SHIFT(1044), + [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), + [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), + [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [3740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), SHIFT(3304), + [3743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), SHIFT(3389), + [3746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), SHIFT(1044), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [3753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(3304), + [3756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(3389), + [3759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(1044), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [3772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(3304), + [3775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(3389), + [3778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(1044), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_modifier, 1, 0, 0), + [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_modifier, 1, 0, 0), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 77), + [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 77), + [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [3995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1620), + [3998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1624), + [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 44), + [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [4079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [4083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1695), + [4086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3341), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 106), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 63), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 105), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3, 0, 0), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 119), + [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 104), + [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), + [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [4185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 120), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_invocation_parameter_list_repeat1, 2, 0, 0), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 0, 121), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [4213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_invocation_parameter_list_repeat1, 3, 0, 0), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 83), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 82), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [4279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(3084), + [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 14), + [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 3), + [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 14), + [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 3), + [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [4292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1759), + [4295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1759), + [4298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1757), + [4301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1720), + [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [4310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 3), + [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 3), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 2, 0, 34), + [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 0, 34), + [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 0, 34), + [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [4330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 14), + [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 14), + [4334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 14), + [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 14), + [4338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 3), + [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 3), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), + [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, 0, 34), + [4356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, 0, 34), + [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [4362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1506), + [4365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1761), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [4374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1823), + [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), + [4379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(3460), + [4382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(3331), + [4385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1931), + [4388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), + [4390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, 0, 34), + [4392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, 0, 34), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [4400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [4402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1790), + [4405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1514), + [4408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1784), + [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [4413] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(1720), + [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [4421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), SHIFT(1801), + [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [4426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), SHIFT(1720), + [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [4435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), SHIFT(1720), + [4438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1793), + [4441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1778), + [4444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1782), + [4447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), SHIFT(1800), + [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [4500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), SHIFT(1720), + [4503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), SHIFT(1720), + [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), + [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [4530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [4532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), + [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [4540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), + [4542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [4576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [4578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [4580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), + [4582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [4606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2017), + [4609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2017), + [4612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3422), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [4623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 42), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [4637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), + [4641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [4653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [4661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [4663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, 0, 22), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [4723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), + [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [4737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), + [4739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), + [4742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [4762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 32), + [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 32), + [4766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 112), + [4768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 89), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 22), + [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [4776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 60), + [4778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 32), + [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 89), + [4782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 112), + [4784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [4786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [4790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2821), + [4793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [4795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 32), + [4797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 60), + [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [4809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 17), + [4811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 40), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [4815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [4817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [4819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 0, 34), + [4821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 0, 34), + [4823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 93), + [4825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 93), + [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 5, -10, 0), + [4829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 5, -10, 0), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [4837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [4839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 51), + [4847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 51), + [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [4851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 22), + [4853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 22), + [4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), + [4857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), + [4859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [4861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3459), + [4864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3329), + [4867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2144), + [4870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 22), + [4872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 22), + [4874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 115), + [4876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 115), + [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 4, 0, 34), + [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [4886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [4888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 112), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), + [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 34), + [4908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 34), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), + [4916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), + [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [4920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 115), + [4926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 115), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [4930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 5, -10, 0), + [4932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 5, -10, 0), + [4934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [4936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 21), + [4940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 21), + [4942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), + [4944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 1), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [4948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 22), + [4950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 22), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [4954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 89), + [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 60), + [4958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 32), + [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 22), + [4962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 22), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [4966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 93), + [4968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 93), + [4970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2835), + [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [4975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 40), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [4981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 48), + [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, 0, 103), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), SHIFT_REPEAT(2184), + [4996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [5014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 40), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [5022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), SHIFT_REPEAT(2057), + [5025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), + [5027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2703), + [5030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1896), + [5033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3238), + [5036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2699), + [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), + [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 40), + [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 22), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 48), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [5073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 17), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 17), + [5083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 17), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [5089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [5091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [5095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 5, -10, 0), + [5097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 5, -10, 0), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [5103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [5105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [5107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, 0, 32), + [5109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), + [5111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [5117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 115), + [5119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 115), + [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [5127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 22), + [5129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 22), + [5131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 22), + [5133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 22), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 93), + [5139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 93), + [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [5147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [5151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 0), + [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [5161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 6), + [5163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 6), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [5167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2703), + [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [5172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [5174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 35), + [5176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(2265), + [5179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [5181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [5209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [5213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [5237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(850), + [5240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), + [5242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(3060), + [5245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), + [5247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), + [5249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 89), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [5269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 73), + [5271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 73), + [5273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 75), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [5277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 40), + [5279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 40), + [5281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 41), + [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 41), + [5285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), + [5287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [5295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), + [5297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2475), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [5310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 43), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [5314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 19), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [5340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 60), + [5342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 99), + [5344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 99), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [5348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 72), + [5350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 72), + [5352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [5356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 40), + [5358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 40), + [5360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 32), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [5368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 46), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [5378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 115), + [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [5382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 93), + [5384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 22), + [5386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 5, 0, 0), + [5388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), + [5390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 20), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [5398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 100), + [5400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), + [5402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 34), + [5404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [5410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, 0, 116), + [5412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 32), + [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [5422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 74), + [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [5426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 94), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [5434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 22), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [5438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 6), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [5442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [5446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 0), + [5448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), + [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [5452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 122), SHIFT_REPEAT(2268), + [5455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 122), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [5459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 86), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [5465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 49), + [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [5473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 0), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [5503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), + [5505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2448), + [5508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 134), SHIFT_REPEAT(2255), + [5511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 134), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [5519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 129), + [5521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [5523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2460), + [5526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2460), + [5529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 123), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [5533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 109), + [5535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 109), + [5537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 122), SHIFT_REPEAT(2262), + [5540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 122), + [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [5566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), + [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [5576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 0), + [5578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 0), + [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [5588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 11), + [5590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 86), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [5622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), SHIFT_REPEAT(1732), + [5625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [5645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 101), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [5665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(713), + [5668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [5680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2635), + [5683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [5707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 128), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [5713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(2962), + [5716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [5720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [5730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(618), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [5737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1878), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [5786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_invocation_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(84), + [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [5807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 86), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [5813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(625), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [5836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 86), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [5846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 130), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [5856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 133), + [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [5860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1492), + [5863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [5867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3384), + [5870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_specifier_repeat1, 2, 0, 0), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [5876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 128), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [5880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 123), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [5884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 135), + [5886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 137), SHIFT_REPEAT(3260), + [5889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 137), + [5891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 138), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [5895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 138), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [5915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_arg, 1, 0, 0), + [5917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [5925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [5929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [5951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [5981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [5991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2794), + [5994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [6120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_arg_repeat1, 2, 0, 0), + [6122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_arg_repeat1, 2, 0, 0), SHIFT_REPEAT(2738), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [6155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_arg, 2, 0, 0), + [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [6189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [6195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 6), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [6211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 5, 0, 127), + [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [6217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 130), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [6225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), + [6227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 49), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [6231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_invocation_parameter_list_repeat1, 2, 0, 0), REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [6242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), + [6244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [6250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [6257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), + [6259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), + [6261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [6265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), + [6267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [6307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 41), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [6327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [6335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 17), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [6347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [6383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [6385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [6403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [6419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [6421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [6425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 41), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [6459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [6499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 99), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [6505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 73), + [6507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 72), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [6551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 72), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [6555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 40), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [6559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 41), + [6561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 41), + [6563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 73), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [6571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 41), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [6603] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [6631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 99), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [6637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 72), + [6639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 72), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [6659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 73), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [6671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 73), + [6673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 72), + [6675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 73), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [6709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 99), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [6719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 99), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [6723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 99), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [6795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), + [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), }; #ifdef __cplusplus